@charset "UTF-8";
body {
  max-width: 1440px;
  margin-inline: auto;
  color: #464646;
  font-family: "Noto Sans JP", sans-serif;
  line-height: normal;
}

.no-scroll {
  overflow: hidden;
}

.sp-hidden {
  display: none;
}
@media screen and (min-width:768px) {
  .sp-hidden {
    display: block;
  }
}

.pc-hidden {
  display: block;
}
@media screen and (min-width:768px) {
  .pc-hidden {
    display: none;
  }
}

.sp-and-tb {
  display: block;
}
@media screen and (min-width:1025px) {
  .sp-and-tb {
    display: none;
  }
}

@media screen and (max-width:767px) {
  .only-pc {
    display: none;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .only-pc {
    display: none;
  }
}
@media screen and (min-width:1025px) {
  .only-pc {
    display: block;
  }
}

.section__inner {
  padding-inline: 20px;
}
@media screen and (min-width:768px) {
  .section__inner {
    padding-inline: 80px;
  }
}

.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section__title--line {
  width: 8px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #464646;
}
@media screen and (min-width:768px) {
  .section__title--line {
    width: 8px;
    height: 50px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width:374px) {
  .section__title--line {
    height: 30px;
  }
}

@media screen and (min-width:768px) {
  .section__title--line--contactpc {
    background: #fff;
  }
}

.section__title--j {
  margin-left: 8px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .section__title--j {
    margin-left: 10px;
    font-size: 40px;
    line-height: 100%;
  }
}
@media screen and (max-width:374px) {
  .section__title--j {
    font-size: 20px;
  }
}

.section__title--e {
  margin-top: 15px;
  margin-left: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width:768px) {
  .section__title--e {
    font-size: 16px;
    margin-top: 25px;
    margin-left: 20px;
  }
}
@media screen and (max-width:374px) {
  .section__title--e {
    font-size: 12px;
  }
}

.pagetitle {
  padding-top: 24px;
  padding-bottom: 23px;
  margin-top: 60px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width:768px) {
  .pagetitle {
    padding-top: 109px;
    padding-bottom: 110px;
    margin-top: 110px;
  }
}

#inspection-pagetitle {
  background-image: url(../img/inspection-sp.png);
}
@media screen and (min-width:768px) {
  #inspection-pagetitle {
    background-image: url(../img/inspection-pc.png);
  }
}

#photo-and-movie-pagetitle {
  background-image: url(../img/photoandmovie-sp.png);
}
@media screen and (min-width:768px) {
  #photo-and-movie-pagetitle {
    background-image: url(../img/photoandmovie-pc.png);
  }
}

#outline-pagetitle {
  background-image: url(../img/pagetitle-sp.png);
}
@media screen and (min-width:768px) {
  #outline-pagetitle {
    background-image: url(../img/pagetitle-pc.png);
  }
}

#contact-pagetitle {
  background-image: url(../img/contactback-sp.png);
}
@media screen and (min-width:768px) {
  #contact-pagetitle {
    background-image: url(../img/contactback-pc.png);
  }
}

.pagetitle__j {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  height: 30px;
}
@media screen and (min-width:768px) {
  .pagetitle__j {
    font-size: 64px;
  }
}

@media screen and (min-width:768px) {
  .pagetitle__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.pagetitle__e {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (min-width:768px) {
  .pagetitle__e {
    font-size: 32px;
    padding-left: 24px;
  }
}

.feature {
  padding-top: 70px;
  padding-bottom: 50px;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width:768px) {
  .feature {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

.feature__discripsion {
  font-size: 14px;
  font-weight: 400;
}
.feature__discripsion--2 {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .feature__discripsion--2 {
    margin-top: 0;
  }
}

.feature__container {
  margin-top: 20px;
  padding-block: 50px;
  padding-inline: 23px;
  background-color: #edf0f2;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:1025px) {
  .feature__container {
    gap: 25px;
  }
}

@media screen and (min-width:1025px) {
  .feature__3cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-height: 321px;
    width: 100%;
    max-width: 1185px;
  }
}

.feature__card {
  text-align: center;
  max-width: 450px;
}
@media screen and (min-width:1025px) {
  .feature__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 250px;
    max-width: 335px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__card {
    width: 250px;
    height: 280px;
  }
}

.feature__image--1 {
  width: 82px;
  height: 59px;
  margin-inline: auto;
}
@media screen and (min-width:1025px) {
  .feature__image--1 {
    width: 134px;
    height: 100px;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__image--1 {
    width: 82px;
    height: 59px;
  }
}

.feature__image--2 {
  width: 77px;
  height: 77px;
  margin-inline: auto;
  margin-top: 24px;
}
@media screen and (min-width:1025px) {
  .feature__image--2 {
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__image--2 {
    width: 77px;
    height: 77px;
  }
}

.feature__image--3 {
  width: 77px;
  height: 81px;
  margin-inline: auto;
  margin-top: 24px;
}
@media screen and (min-width:1025px) {
  .feature__image--3 {
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__image--3 {
    width: 77px;
    height: 81px;
  }
}

.feature__image--4 {
  width: 125px;
  height: 57px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: auto;
  margin-top: 0px;
}
.feature__image--4 img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width:1025px) {
  .feature__image--4 {
    width: 198px;
    height: 115px;
    margin-top: 24px;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__image--4 {
    width: 125px;
    height: 57px;
  }
}

.feature__image--5 {
  width: 68px;
  height: 78px;
  margin-inline: auto;
  margin-top: 24px;
}
@media screen and (min-width:1025px) {
  .feature__image--5 {
    width: 120px;
    height: 120px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .feature__image--5 img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__image--5 {
    width: 68px;
    height: 78px;
  }
}

.feature__image--6 {
  width: 100px;
  height: 72px;
  margin-inline: auto;
  margin-top: 24px;
}
@media screen and (min-width:1025px) {
  .feature__image--6 {
    width: 130px;
    height: 100px;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__image--6 {
    width: 100px;
    height: 72px;
  }
}

.feature__title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (min-width:1025px) {
  .feature__title {
    font-size: 32px;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__title {
    font-size: 20px;
  }
}

.feature__text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width:1025px) {
  .feature__text {
    font-size: 16px;
    margin-top: 24px;
    height: 92px;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .feature__text {
    font-size: 14px;
  }
}

.feature__underline {
  display: block;
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
  height: 1px;
  background-color: #464646;
}
@media screen and (min-width:1025px) {
  .feature__underline {
    display: none;
  }
}

.feature__vline {
  display: none;
}
@media screen and (min-width:1025px) {
  .feature__vline {
    display: block;
    padding-inline: 1.875%;
  }
  .feature__vline img {
    height: 100%;
  }
}

.inspection-photo {
  padding-top: 0;
  padding-bottom: 70px;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width:1025px) {
  .inspection-photo {
    padding-bottom: 100px;
  }
}

.inspection-photo__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width:1025px) {
  .inspection-photo__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    padding-inline: 40px;
  }
}

.inspection__img {
  max-width: 335px;
  max-height: 268px;
  aspect-ratio: 16/9;
}
.inspection-photo__text {
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width:1025px) {
  .inspection-photo__text {
    font-size: 16px;
  }
}

.step {
  padding-block: 70px;
  background-color: #edf0f2;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width:768px) {
  .step {
    padding-block: 100px;
  }
}

.step__contents {
  padding-block: 50px;
  padding-inline: 14px;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (min-width:768px) {
  .step__contents {
    padding-inline: 42px;
  }
}
@media screen and (min-width:1025px) {
  .step__contents {
    padding-block: 70px;
  }
}

@media screen and (min-width:1025px) {
  .step__text-step {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.step__discription {
  font-size: 14px;
  font-weight: 400;
  padding-block: 50px;
}
@media screen and (min-width:1025px) {
  .step__discription {
    font-size: 16px;
    padding-block: 0;
    margin-top: 25px;
    width: 26.2745098039%;
  }
}

@media screen and (min-width:1025px) {
  .step__steps {
    width: 67.2156862745%;
  }
}

.step__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.step__icon {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 7px;
}
@media screen and (min-width:1025px) {
  .step__icon {
    width: 40px;
    height: 40px;
    margin-top: 21px;
  }
}

.step__vline {
  position: absolute;
  top: 48px;
  left: 17px;
  width: 1px;
  height: 105px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.step__vline img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width:1025px) {
  .step__vline {
    top: 69px;
    left: 19px;
    height: 116px;
  }
}

.step__right--group {
  padding-left: 60px;
}
@media screen and (max-width:374px) {
  .step__right--group {
    padding-left: 20px;
  }
}
@media screen and (min-width:1025px) {
  .step__right--group {
    padding-left: 185px;
  }
}

.step__title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.step__number {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 3px;
}
@media screen and (min-width:1025px) {
  .step__number {
    font-size: 32px;
  }
}

.step__title {
  font-size: 20px;
  font-weight: 600;
  padding-left: 27px;
}
@media screen and (min-width:1025px) {
  .step__title {
    font-size: 32px;
  }
}

.step__hline {
  width: calc(100% - 36px);
  height: 1px;
  background-color: #464646;
  position: absolute;
  top: 27px;
  left: 36px;
}
@media screen and (min-width:1025px) {
  .step__hline {
    top: 43px;
    left: 40px;
  }
}

.step__text {
  font-size: 14px;
  font-weight: 400;
  height: 120px;
}
.step__text--5 {
  font-size: 14px;
  font-weight: 400;
  height: auto;
}
@media screen and (min-width:1025px) {
  .step__text--5 {
    font-size: 16px;
  }
}
@media screen and (min-width:1025px) {
  .step__text {
    font-size: 16px;
  }
}

.about {
  padding-block: 70px;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width:768px) {
  .about {
    padding-block: 100px;
  }
}

.pandm__discripsion {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .pandm__discripsion {
    font-size: 16px;
  }
}

.about__contents {
  padding-top: 70px;
}
@media screen and (min-width:768px) {
  .about__contents {
    padding-top: 35px;
  }
}

.pandm__cards {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .pandm__cards {
    margin-top: 48px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pandm__card {
  max-width: 335px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  border: 2px solid #000;
  background: #fff;
  padding: 28px 23px 39px 23px;
  position: relative;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .pandm__card {
    width: calc((100% - 60px) / 3);
    height: 420px;
  }
}

.pandm__number {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 500;
  background-color: #fff;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 35px;
  padding: 5px 5px 5px 5px;
}

.pandm__img {
  width: 288px;
  height: 222px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pandm__title {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .pandm__title {
    font-size: 24px;
  }
}

.pandm__text {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .pandm__text {
    margin-top: 12px;
  }
}

.pandm__work {
  padding-block: 70px;
  background-color: #edf0f2;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width:768px) {
  .pandm__work {
    padding-block: 100px;
  }
}

.pandm__work--contents {
  margin-top: 50px;
}
@media screen and (min-width:768px) {
  .pandm__work--contents {
    margin-top: 0px;
  }
}

@media screen and (min-width:768px) {
  .pandm__photos {
    margin-inline: auto;
  }
}

.pandm__work-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width:768px) {
  .pandm__work-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
    padding-bottom: 15px;
    padding-left: 85px;
  }
}

.pandm__photo-group {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .pandm__photo-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 70px;
    padding-left: 10.7981220657%;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .pandm__photo-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.pandm__photogroup1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.pandm__photogroup2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width:767px) {
  .pandm__photogroup2 {
    height: 100%;
  }
}

.pc-photo {
  width: 100%;
  height: auto;
}

@media screen and (min-width:768px) {
  .pandm__button--container {
    padding-left: 10.7981220657%;
  }
}

.pandm__button {
  margin-top: 30px;
  width: 240px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  background-color: #464646;
  margin-inline: auto;
  padding-inline: 13px;
  padding-block: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向に中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向に中央揃え */
}
.pandm__button:hover {
  -webkit-transform: translate(1px, 1px);
          transform: translate(1px, 1px);
}

.pandm__button--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.pandm__icon--instagram {
  display: block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pandm__icon--instagram img {
  width: 100%;
  height: 100%;
  margin-top: -2px;
}

.pandm__button--text {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-left: 12px;
  padding-right: 8px;
}

.icon-camera {
  display: block;
  width: 13px;
  height: 13px;
}
.icon-camera img {
  margin-top: -2px;
}

@media screen and (min-width:768px) {
  .pandm__work-text--movie {
    padding-left: 50px;
  }
}

.pandm__movie {
  padding-top: 140px;
}
@media screen and (max-width:767px) {
  .pandm__movie {
    padding-top: 70px;
  }
}

.pandm__youtubeiframe {
  margin-top: 30px;
  aspect-ratio: 16/9;
  position: relative;
  border: 0px solid #464646; /* 境界線の幅と色を指定 */
}
@media screen and (min-width:768px) {
  .pandm__youtubeiframe {
    margin-left: 10.7981220657%;
  }
}

.iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width:768px) {
  .iframe {
    max-width: 1050px;
    max-height: 668px;
  }
}

@media screen and (min-width:768px) {
  .contact {
    width: 100%;
    position: relative;
  }
}

.contact__photo {
  width: 100%;
  max-height: 200px;
  position: relative;
}
@media screen and (min-width:1025px) {
  .contact__photo {
    max-height: 400px;
  }
}
.contact__photo img {
  width: 100%;
  max-height: 200px;
}
@media screen and (min-width:1025px) {
  .contact__photo img {
    max-height: 400px;
    height: 400px;
  }
}

.contact__section--title {
  position: absolute;
  bottom: 13px;
  left: 20px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .contact__section--title {
    padding-left: 60px;
  }
}
@media screen and (min-width:1025px) {
  .contact__section--title {
    bottom: 0;
    left: 80px;
    top: 106px;
    color: #fff;
    z-index: 1;
  }
}

@media screen and (min-width:1025px) {
  .contact__title--line {
    background-color: #fff;
  }
}

.contact__contents {
  background-color: #45697e;
  padding: 20px 20px 70px 20px;
  max-height: 200px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .contact__contents {
    padding-left: 80px;
  }
}
@media screen and (min-width:1025px) {
  .contact__contents {
    background: rgba(69, 105, 126, 0.69);
    position: absolute;
    top: 0;
    left: 0;
    max-height: 400px;
    padding: 176px 80px 106px 80px;
    height: auto;
  }
}

.contact__text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width:1025px) {
  .contact__text {
    font-size: 16px;
  }
}

.contact__button {
  display: inline-block;
  margin-top: 20px;
  border-radius: 5px;
  background: #fff;
  padding-block: 13px;
  padding-left: 32px;
  padding-right: 77px;
  color: #464646;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.contact__button:hover {
  background: #45697e;
  color: #fff;
}
.contact__button:hover::after {
  background-image: url(../img/contact-button-arrow-white.png);
}
@media screen and (max-width:374px) {
  .contact__button {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 48px;
  }
}
@media screen and (min-width:1025px) {
  .contact__button {
    margin-top: 20px;
    padding: 22px 85px 23px 28px;
    font-size: 28px;
  }
}
.contact__button::after {
  content: "";
  width: 26.994px;
  height: 28px;
  display: block;
  background-image: url(../img/contact-button-arrow.png);
  background-size: 100% 100%;
  background-position: center center;
  position: absolute;
  top: 12px;
  right: 32px;
}
@media screen and (max-width:374px) {
  .contact__button::after {
    width: 20px;
    height: 20px;
    top: 14px;
    right: 19px;
  }
}
@media screen and (min-width:1025px) {
  .contact__button::after {
    width: 49px;
    height: 49px;
    top: 20px;
    right: 28px;
  }
}

.footer {
  background-color: #464646;
  width: 100%;
  height: 60px;
  display: grid;
  place-items: center;
}
.footer small {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .footer small {
    font-size: 16px;
  }
}

.header {
  padding-top: 17px;
  padding-bottom: 13px;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1440px;
  z-index: 999;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width:768px) {
  .header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.header__inner {
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width:768px) {
  .header__inner {
    padding-inline: 80px;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3px;
}
.header__logo img {
  width: 129px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:768px) {
  .header__logo img {
    width: 258px;
    height: 36px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width:768px) {
  .header__nav {
    display: block;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .header__nav {
    display: none;
  }
}

@media screen and (min-width:768px) {
  .header__nav--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

@media screen and (min-width:768px) {
  .header__nav--item {
    font-size: 16px;
    font-weight: 500;
  }
}

.header__nav--link {
  position: relative;
}
.header__nav--link:hover {
  color: #45697e;
}
.header__nav--link::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #45697e;
  border-radius: 2px;
  top: -15px;
  left: calc(50% - 5px);
  /*不透明度0で非表示*/
  opacity: 0;
  /*下方向へ50%移動*/
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.header__nav--link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  color: #45697e;
}

.header__nav--link-contact {
  width: 140px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact-button {
  width: 140px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  display: grid;
  place-items: center center;
  background: #464646;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
#contact-button:hover {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background-color: #45697e;
  color: #fff;
  cursor: pointer;
}

.drawer--icon {
  position: relative;
  display: block;
  width: 30px;
  height: 25px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .drawer--icon {
    width: 50px;
    height: 50px;
  }
}
.drawer--icon.is-checked .drawer-icon-bar {
  background-color: #fff;
  margin-top: -10px;
}
.drawer--icon.is-checked .drawer-icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 25px;
}
.drawer--icon.is-checked .drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.drawer--icon.is-checked .drawer-icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 25px;
}
@media screen and (min-width:768px) {
  .drawer--icon {
    display: none;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .drawer--icon {
    display: block;
  }
}

.drawer-icon-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 103;
  width: 30px;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 6px;
  background: #464646;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .drawer-icon-bar {
    width: 50px;
  }
}
.drawer-icon-bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon-bar:nth-of-type(2) {
  top: 12.5px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .drawer-icon-bar:nth-of-type(2) {
    top: 23px;
  }
}
.drawer-icon-bar:nth-of-type(3) {
  top: 25px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .drawer-icon-bar:nth-of-type(3) {
    top: 48px;
  }
}

/* modal */
.drawer {
  width: 100%;
  height: 100vh;
  background: rgba(70, 70, 70, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer.is-checked {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.modal-logo {
  width: 129px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 30px;
  left: 20px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .modal-logo {
    width: 258px;
    height: 36px;
    left: 80px;
    top: 20px;
  }
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 40px;
  padding: 150px 113px 239px 113px;
}

.drawer-content__link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .drawer-content__link {
    font-size: 20px;
  }
}

.drawer-content__button {
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  width: 150px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: auto;
  padding-top: 10px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .drawer-content__button {
    font-size: 20px;
    width: 200px;
    height: 60px;
  }
}

@media screen and (min-width:768px) {
  .fv__h {
    width: 100%;
    background-size: cover;
  }
}

.fv {
  padding-top: 238px;
  padding-bottom: 51px;
}
@media screen and (min-width:768px) {
  .fv {
    padding-top: 180px;
    padding-bottom: 136px;
  }
}

.fv__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .fv__title {
    font-size: 72px;
    font-weight: 500;
  }
}

.fv__subtitle {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}
@media screen and (min-width:768px) {
  .fv__subtitle {
    font-size: 20px;
    font-weight: 400;
  }
}

.fv__scroll-text {
  margin-top: 150px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}

.fv__arrow {
  margin-top: 15px;
  margin-inline: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #45697e;
  -webkit-box-shadow: 0 0 20px #45697e;
          box-shadow: 0 0 20px #45697e;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  cursor: pointer;
}
.fv__arrow img {
  width: 100%;
}
@media screen and (min-width:768px) {
  .fv__arrow {
    display: none;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv__arrow::before,
.fv__arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #45697e;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -webkit-animation: pulsate 2s linear infinite;
          animation: pulsate 2s linear infinite;
}

.fv__arrow::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
.service {
  padding-top: 10px;
  padding-bottom: 30px;
}
@media screen and (min-width:768px) {
  .service {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

.service__cards {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
  height: auto;
}
@media screen and (min-width:768px) {
  .service__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .service__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-inline: auto;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .service__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-inline: auto;
  }
}

.service__card1,
.service__card2,
.service__card3 {
  width: 100%;
  height: 100%;
  padding: 8px 10px 33.7313432836% 8px;
  position: relative;
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (min-width:768px) {
  .service__card1,
  .service__card2,
  .service__card3 {
    width: 100%;
    height: auto;
    padding: 10px 20px 15px 20px;
    -webkit-animation-name: fadeInAnime;
            animation-name: fadeInAnime;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
    cursor: pointer;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .service__card1,
  .service__card2,
  .service__card3 {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .service__card1,
  .service__card2,
  .service__card3 {
    width: 100%;
    height: auto;
  }
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width:768px) {
  @-webkit-keyframes pulsate {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes pulsate {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}
.service__card1 {
  background-image: url(../img/service-sp-gray1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-image 1s ease;
  transition: background-image 1s ease;
}
.service__card1:hover {
  background-image: url(../img/service-sp-1.png);
  -webkit-filter: brightness(108%);
          filter: brightness(108%);
}
@media screen and (min-width:1025px) {
  .service__card1 {
    background-image: url(../img/service-pc-gray1.png);
    background-size: 100% 100%;
  }
  .service__card1:hover {
    background-image: url(../img/service-pc-1.png);
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .service__card1 {
    background-image: url(../img/service-pc-gray1.png);
    background-size: 100% 100%;
  }
}
.service__card1:hover {
  background-image: url(../img/service-pc-1.png);
}

.service__card2 {
  background-image: url(../img/service-sp-gray2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-image 1s ease;
  transition: background-image 1s ease;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.service__card2:hover {
  background-image: url(../img/service-sp-2.png);
  -webkit-filter: saturate(110%);
          filter: saturate(110%);
  -webkit-filter: brightness(108%);
          filter: brightness(108%);
}
@media screen and (min-width:1025px) {
  .service__card2 {
    background-image: url(../img/service-pc-gray2.png);
  }
  .service__card2:hover {
    background-image: url(../img/service-pc-2.png);
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .service__card2 {
    background-image: url(../img/service-pc-gray2.png);
  }
  .service__card2:hover {
    background-image: url(../img/service-pc-2.png);
  }
}

.service__card3 {
  background-image: url(../img/service-sp-gray3.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-transition: background-image 1s ease;
  transition: background-image 1s ease;
}
.service__card3:hover {
  background-image: url(../img/service-sp-3.png);
  -webkit-filter: saturate(110%);
          filter: saturate(110%);
  -webkit-filter: brightness(108%);
          filter: brightness(108%);
}
@media screen and (min-width:1025px) {
  .service__card3 {
    background-image: url(../img/service-pc-gray3.png);
  }
  .service__card3:hover {
    background-image: url(../img/service-pc-3.png);
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .service__card3 {
    background-image: url(../img/service-pc-gray3.png);
  }
  .service__card3:hover {
    background-image: url(../img/service-pc-gray3.png);
  }
}

.service__card--number {
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  display: block;
}
@media screen and (min-width:768px) {
  .service__card--number {
    font-size: 40px;
  }
}

.service__card--icon1 {
  width: 71.0588235294%;
  height: 53.3333333333%;
  text-align: center;
  margin-inline: auto;
}

.service__card--icon2 {
  width: 71.0588235294%;
  height: 53.3333333333%;
  text-align: center;
  margin-inline: auto;
}

@media screen and (min-width:768px) {
  .service__card--icon3 {
    width: 58.8235294118%;
    height: 30.3333333333%;
    text-align: center;
    margin-top: 30px;
    padding-left: 0px;
    margin-inline: auto;
  }
}
@media screen and (min-width:1025px) and (max-width:1350px) {
  .service__card--icon3 {
    padding-left: 30px;
  }
}

.service__card--titlegroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media screen and (min-width:768px) {
  .service__card--titlegroup--3 {
    margin-top: 9.3333333333%;
  }
}

.service__card--title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: block;
}
@media screen and (min-width:768px) {
  .service__card--title {
    font-size: 36px;
  }
}

.service__card--subtitle {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .service__card--subtitle {
    font-size: 20px;
  }
}

.service__card--discription {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: block;
  letter-spacing: -0.2px;
}
@media screen and (min-width:768px) {
  .service__card--discription {
    font-size: 16px;
  }
}

.service__card--arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin-top: 63px;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service__card--arrow img {
  width: 100%;
}
@media screen and (min-width:768px) {
  .service__card--arrow {
    width: 60px;
    height: 60px;
  }
}

.outline {
  padding-block: 70px;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width:768px) {
  .outline {
    padding-block: 100px;
  }
}

.outline__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-block: auto;
}
@media screen and (min-width:1025px) {
  .outline__contents {
    gap: 60px;
    padding-inline: 90px;
  }
}

.outline__text--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.outline__title {
  width: 112px;
  font-size: 16px;
  font-weight: 400;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.outline__title--service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .outline__title {
    width: 300px;
    padding-left: 70px;
  }
}

.outline__discription {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .outline__discription {
    font-size: 20px;
  }
}

.outline__line {
  width: 100%;
  height: 1px;
  background: #45697e;
  margin-top: 24px;
}

.profile {
  padding-bottom: 70px;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width:1025px) {
  .profile {
    padding-bottom: 100px;
  }
}

@media screen and (min-width:1025px) {
  .profile__inner {
    padding-inline: 170px;
  }
}

@media screen and (min-width:1025px) {
  .profile__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 9.9090909091%;
  }
}

.profile__photo {
  width: 280px;
  margin-inline: auto;
}
@media screen and (min-width:1025px) {
  .profile__photo {
    padding-top: 82px;
    width: 342px;
  }
}
.profile__photo img {
  width: 250px;
  height: 250px;
}
@media screen and (min-width:1025px) {
  .profile__photo img {
    width: 286px;
    height: 286px;
  }
}

.profile__back {
  width: 215px;
  height: 215px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: rgba(69, 105, 126, 0.69);
  margin-top: -184px;
  margin-left: 60px;
}
@media screen and (min-width:1025px) {
  .profile__back {
    margin-top: -162px;
    margin-left: 136px;
  }
}

.profile__text--group {
  margin-top: 50px;
}
@media screen and (min-width:1025px) {
  .profile__text--group {
    margin-top: 0;
  }
}

.profile__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.profile__name--title {
  font-size: 16px;
  font-weight: 500;
}
.profile__name--name {
  padding-left: 15px;
  font-size: 24px;
  font-weight: 400;
}

.profile__text {
  margin-top: 27px;
  font-weight: 400;
}
@media screen and (min-width:1025px) {
  .profile__text {
    margin-top: 16px;
    font-weight: 500;
  }
}

.profile__text--small {
  margin-top: 50px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width:1025px) {
  .profile__text--small {
    margin-top: 65px;
  }
}

.form {
  padding-block: 70px;
  background: #edf0f2;
  color: #464646;
}
@media screen and (min-width:768px) {
  .form {
    background-color: #fff;
  }
}

@media screen and (min-width:768px) {
  .form__contents {
    border-radius: 5px;
    background: #edf0f2;
    padding-block: 100px;
    padding-inline: 150px;
    margin-top: 50px;
  }
}

.form__discription {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .form__discription {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
  }
}

.form__form {
  margin-top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
}

.form__title {
  font-size: 16px;
  font-weight: 500;
}

.form__tag {
  font-size: 16px;
  font-weight: 500;
  color: #45697e;
  padding-left: 14px;
}
@media screen and (min-width:768px) {
  .form__tag {
    padding-left: 17px;
  }
}

.form__text {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 2px;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 5px;
  background: #fff;
  padding: 22px 16px 22px 16px;
  line-height: 100%; /* 16px */
}

.form__textarea {
  height: 200px;
}

.checkbox__group {
  margin-top: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.checkbox__item {
  position: relative;
  padding-left: 25px;
}

@media screen and (min-width:768px) {
  .checkbox__item--privacy {
    text-align: center;
    padding-left: 41px;
  }
}

.form__checkbox--input {
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form__checkbox--input:checked + .form__checkbox--icon {
  background-image: url(../img/icon-check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px 15px;
  outline: 1px solid #45697e;
}

.form__checkbox--icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: 1px solid #464646;
}

.form-checkbox__text {
  font-size: 14px;
  font-weight: 500;
}

.privacy__link {
  text-decoration-line: underline;
  text-decoration-color: #45697e;
  color: #45697e;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .privacy__link {
    font-size: 16px;
  }
}

.contact__button--button {
  border-radius: 5px;
  background: #45697e;
  width: 100%;
  height: 50px;
}
@media screen and (min-width:768px) {
  .contact__button--button {
    height: 80px;
  }
}

.button__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mail-icon {
  width: 30px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:768px) {
  .mail-icon {
    width: 42px;
    height: 31px;
  }
}
.mail-icon img {
  width: 100%;
  height: auto;
}

.form__button-text {
  padding-left: 29px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .form__button-text {
    font-size: 24px;
    font-weight: 700;
  }
}

.thanks__contents {
  padding-block: 200px;
}

.thanks__text {
  font-size: 14px;
}
@media screen and (min-width:768px) {
  .thanks__text {
    font-size: 20px;
  }
}

input::-webkit-input-placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

input::-moz-placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

input:-ms-input-placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

input::-ms-input-placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

input::placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

/* フォーカス時のplaceholderの色を設定 */
input:focus::-webkit-input-placeholder {
  color: #45697e;
}
input:focus::-moz-placeholder {
  color: #45697e;
}
input:focus:-ms-input-placeholder {
  color: #45697e;
}
input:focus::-ms-input-placeholder {
  color: #45697e;
}
input:focus::placeholder {
  color: #45697e;
}

input:focus {
  outline: none;
  border: 2px solid #45697e;
}

textarea:focus {
  outline: none;
  border: 2px solid #45697e;
}

textarea::-webkit-input-placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

textarea::-moz-placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

textarea:-ms-input-placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

textarea::-ms-input-placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

textarea::placeholder {
  color: #9e9e9e;
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
}

/* フォーカス時のplaceholderの色を設定 */
textarea:focus::-webkit-input-placeholder {
  color: #45697e;
}
textarea:focus::-moz-placeholder {
  color: #45697e;
}
textarea:focus:-ms-input-placeholder {
  color: #45697e;
}
textarea:focus::-ms-input-placeholder {
  color: #45697e;
}
textarea:focus::placeholder {
  color: #45697e;
}

.error {
  border: 1px solid red;
  background-color: #fff;
}

.privacy {
  padding-block: 70px;
}
@media screen and (min-width:768px) {
  .privacy {
    padding-block: 100px;
  }
}

.privacy__title {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .privacy__title {
    font-size: 32px;
  }
}

@media screen and (min-width:768px) {
  .privacy__texts {
    margin-top: 20px;
  }
}

.privacy__texts--title {
  font-size: 14px;
  font-weight: 400;
  text-decoration-line: underline;
  margin-top: 50px;
}
@media screen and (min-width:768px) {
  .privacy__texts--title {
    font-size: 16px;
    margin-top: 69px;
  }
}

.privacy__texts--text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .privacy__texts--text {
    font-size: 16px;
    margin-top: 23px;
  }
}

.praivacy__texts--google-policy {
  display: block;
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .praivacy__texts--google-policy {
    margin-top: 23px;
  }
}

.google-link {
  text-decoration-line: underline;
}