@charset "UTF-8";
/* CSS Document */
/*トップ*/
.top-image {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../images/top-image-bg5.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-treatment {
  padding: 60px 20px 70px;
  max-width: 500px;
  margin: 0 auto;
}
.treatment-discription {
  margin-bottom: 30px;
  text-align: justify;
}
.treatment-content {
  background-color: #fff;
  border: dashed 2.5px #c0e035;
  border-radius: 15px;
  padding: 40px 30px 45px;
  max-width: 500px;
  margin: 0 auto;
}
.step-title {
  margin: 0 auto 15px;
  max-width: 320px;
}
.step-title img {
  width: 100%;
  object-fit: cover;
}
.treatment-flow {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.treatment-flow li {
  list-style: none;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.treatment-flow li:last-of-type {
  margin: 0 auto 35px;
}
.flow-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.step-heading {
  margin: 0 auto;
  text-align: center;
}
.step-no {
  color: #85C16C;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  font-weight: 500;
}
.step-no span {
  font-size: 1.8rem;
}
.step-heading h3 {
  font-size: 2.4rem;
  font-family: 'Zen Maru Gothic', serif;
  letter-spacing: 0.1rem;
  font-weight: 500;
  border-bottom: dashed 2.5px #c0e035;
  display: inline-block;
  padding: 0 5px 3px;
}
.step-heading h3 span {
  display: inline-block;
}
.step-illust {
  width: 37vw;
  max-width: 200px;
  margin: 20px 0 5px;
}
.flow-arrow {
  width: 40px;
  height: 25px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #c0e035;
  margin-top: 25px;
  border-radius: 5px;
}
.step-discription {
  text-align: justify;
  width: 100%;
  display: block;
}
.step-discription.center {
  text-align: center;
}
.treatment-image-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.treatment-image {
  width: 85%;
  max-width: 320px;
  aspect-ratio: 3/2;
}
.image-wrapper {
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
  height: 100%;
}
.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image1 {
  margin: 0 auto 30px 0;
  position: relative;
}
.image1::after {
  content: "";
  width: 38%;
  max-width: 160px;
  background: url(../images/trees05@2x.png) no-repeat center/contain;
  position: absolute;
  aspect-ratio: 4/3;
  bottom: -9%;
  right: -15%;
}
.image2 {
  margin: 0 0 0 auto;
  position: relative;
}
.image2::after {
  content: "";
  width: 23%;
  max-width: 100px;
  background: url(../images/trees12@2x.png) no-repeat center/contain;
  transform: scale(-1, 1);
  position: absolute;
  aspect-ratio: 3/4;
  bottom: -6%;
  left: -15%;
}
/*施術の流れ（タブレット）*/
@media(min-width:600px) {
  .section-treatment {
    padding: 80px 70px;
    max-width: none;
  }
  .treatment-discription {
    margin: 0 auto 40px;
    max-width: 720px;
  }
  .treatment-content {
    border: dashed 3px #c0e035;
    border-radius: 20px;
    padding: 50px;
    max-width: 720px;
    margin: 0 auto;
  }
  .step-title {
    margin: 0 auto 20px;
  }
  .treatment-flow {
    margin: 0 auto;
    display: flex;
    max-width: 500px;
  }
  .treatment-flow li {
    margin: 0 auto 30px;
  }
  .treatment-flow li:last-of-type {
    margin: 0 auto 40px;
  }
  .flow-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }
  .step-no {
    font-size: 1.6rem;
  }
  .step-no span {
    font-size: 2.0rem;
  }
  .step-heading h3 {
    border-bottom: dashed 3px #c0e035;
  }
  .step-illust {
    width: 200px;
    margin: 25px 0 10px;
  }
  .treatment-image-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    position: relative;
  }
  .treatment-image {
    border-radius: 20px;
    width: 85%;
  }
  .image-wrapper {
    border-radius: 20px;
  }
  .image1 {
    margin: 0 auto 30px 0;
    position: static;
  }
  .image1::after {
    width: 150px;
    top: 26%;
    right: 1%;
  }
  .image2 {
    margin: 0 0 0 auto;
    position: static;
  }
  .image2::after {
    bottom: -3%;
    left: 0%;
  }
}
/*施術の流れ（PC）*/
@media(min-width:1000px) {
  .section-treatment {
    padding: 100px 110px 100px;
  }
  .treatment-discription {
    margin: 0 auto 50px;
    max-width: 1000px;
  }
  .treatment-content {
    border: dashed 3px #c0e035;
    border-radius: 20px;
    padding: 60px 60px 70px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .step-title {
    margin: 0 auto 30px;
    max-width: 480px;
  }
  .treatment-flow {
    margin: 0 auto;
    display: flex;
    max-width: 500px;
  }
  .treatment-flow li {
    margin: 0 auto 30px;
  }
  .treatment-flow li:last-of-type {
    margin: 0 auto 80px;
  }
  .step-no {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .step-no span {
    font-size: 2.2rem;
  }
  .step-heading h3 {
    padding: 0 8px 3px;
    font-size: 2.4rem;
  }
  .step-illust {
    width: 200px;
    margin: 30px 0 10px;
  }
  .treatment-image-container {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    max-width: 900px;
  }
  .treatment-image {
    width: 35vw;
    height: 100%;
    max-width: none;
    aspect-ratio: 4/3;
  }
  .image1 {
    margin: 0 40px 0 0;
    position: static;
  }
  .image1::after {
    width: 160px;
    top: -8%;
    right: 2%;
    max-width: none;
  }
  .image2 {
    margin: 130px 0 0 auto;
    position: static;
  }
  .image2::after {
    bottom: -9%;
    left: 1%;
    width: 105px;
    max-width: none;
  }
}
/*施術の流れ（PC）*/
@media(min-width:1220px) {
  .treatment-discription {
    margin-bottom: 30px;
  }
  .treatment-discription {
    margin: 0 auto 50px;
    max-width: 1000px;
  }
  .treatment-content {
    padding: 70px 45px 100px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .step-title {
    margin: 0 auto 35px;
    max-width: 480px;
  }
  .treatment-flow {
    margin: 0 auto 80px;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-evenly;
    justify-items: center;
    max-width: 1000px;
  }
  .treatment-flow li {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
  }
  .treatment-flow li:last-of-type {
    margin: 0 auto;
    align-items: flex-start;
  }
  .flow-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 270px;
    margin-right: 15px;
  }
  .flow-wrapper:last-of-type {
    margin-right: 0px;
  }
  .step-heading {
    margin: 0 auto;
    text-align: center;
  }
  .step-no {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .step-no span {
    font-size: 2.0rem;
  }
  .step-heading h3 {
    font-size: 2.4rem;
    border-bottom: dashed 3px #c0e035;
    display: inline-block;
    padding: 0 8px 3px;
  }
  .step-illust {
    max-width: 180px;
    margin: 30px 0 10px;
  }
  .flow-arrow {
    margin: 0 auto;
    transform: rotate(-90deg);
  }
  .step-discription.center {
    text-align: justify;
  }
  .treatment-image-container {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    max-width: 900px;
  }
  .treatment-image {
    width: 430px;
    height: 322.500px;
    max-width: none;
  }
  .image1 {
    margin: 0 40px 0 0;
    position: static;
  }
  .image1::after {
    width: 180px;
    top: -8%;
    right: 2%;
    max-width: none;
  }
  .image2 {
    margin: 130px 0 0 auto;
    position: static;
  }
  .image2::after {
    bottom: -9%;
    left: 1%;
    width: 105px;
    max-width: none;
  }
}
/*お客様の声*/
.section-voice {
  padding: 60px 20px;
  background: url("../images/BG_green.jpg") no-repeat center/cover;
  position: relative;
}
.section-voice::before {
  position: absolute;
  content: "";
  background-image: url(../images/wave_long.svg);
  left: 0;
  transform: scale(1, -1);
  background-repeat: repeat-x;
  height: 17px;
  background-position: center;
  width: 100%;
  top: -1px;
  background-size: 1200px;
}
.section-voice::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: -2px;
  background-size: 1200px;
}
.voice-title {
  width: 50vw;
  height: auto;
  margin: 0 auto 20px;
  max-width: 320px;
}
.voice-content {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  color: #fff;
  font-weight: 500;
  max-width: 460px;
}
.voice-content li:first-of-type {
  margin-bottom: 40px;
}
.customer-img-wrapper1 {
  position: relative;
}
.voice-illust1 {
  position: absolute;
  width: 19vw;
  top: 0%;
  left: 0%;
  max-width: 110px;
}
.voice-illust2 {
  position: absolute;
  width: 17vw;
  bottom: 0%;
  right: 0%;
  max-width: 100px;
}
.customer-img-wrapper2 {
  position: relative;
}
.voice-illust3 {
  position: absolute;
  width: 12vw;
  top: 0%;
  right: 3%;
  max-width: 60px;
}
.voice-illust4 {
  position: absolute;
  width: 19vw;
  bottom: 0%;
  left: 0%;
  max-width: 100px;
}
.customer-image {
  width: 45vw;
  max-width: 220px;
  aspect-ratio: 1/1;
  margin: 0 auto 10px;
}
.customer-name {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
    font-family: 'Zen Maru Gothic', serif;
  margin-bottom: 10px;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
.customer-voice {
  text-align: justify;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.6;
}
/*お客様の声（タブレット）*/
@media(min-width:600px) {
  .section-voice {
    padding: 80px 70px;
    position: relative;
  }
  .voice-title {
    width: 30vw;
    height: auto;
    margin: 0 auto 30px;
  }
  .voice-content {
    max-width: 600px;
    margin: 0 auto;
  }
  .voice-content li:first-of-type {
    margin-bottom: 60px;
  }
  .voice-illust1 {
    width: 16vw;
    top: 0%;
    left: 0%;
    max-width: 100px;
  }
  .voice-illust2 {
    width: 14vw;
    bottom: 0%;
    right: 0%;
    max-width: 80px;
  }
  .voice-illust3 {
    width: 12vw;
    top: 0%;
    right: 3%;
    max-width: 60px;
  }
  .voice-illust4 {
    width: 16vw;
    bottom: 0%;
    left: 0%;
    max-width: 90px;
  }
  .customer-image {
    width: 32vw;
    max-width: 300px;
    aspect-ratio: 1/1;
    margin: 0 auto 15px;
  }
  .customer-name {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 10px;
    letter-spacing: 0.1rem;
    line-height: 1.4;
  }
}
/*お客様の声（PC）*/
@media(min-width:1000px) {
  .section-voice {
    padding: 90px 110px 100px;
  }
  .section-voice::before {
    top: -5px;
    height: 27px;
    background-size: 1500px;
  }
  .section-voice::after {
    bottom: -5px;
    height: 27px;
    background-size: 1500px;
  }
  .voice-title {
    width: 28vw;
    margin: 0 auto 30px;
    max-width: 340px;
  }
  .voice-content {
    max-width: 1000px;
    flex-direction: row;
    justify-content: space-between;
  }
  .voice-content li {
    width: 420px;
    margin: 0 25px;
  }
  .voice-content li:first-of-type {
    margin-bottom: 0;
  }
  .voice-illust1 {
    width: 7vw;
    bottom: 5%;
    left: -4%;
    top: auto;
  }
  .voice-illust2 {
    width: 6vw;
    bottom: 0%;
    right: 3%;
    transform: scale(-1, 1);
  }
  .voice-illust3 {
    width: 4vw;
    right: 3%;
    top: auto;
    bottom: 27%;
  }
  .voice-illust4 {
    width: 7vw;
    bottom: -11%;
    left: -3%;
  }
  .customer-image {
    width: 18vw;
    max-width: 300px;
    aspect-ratio: 1/1;
    margin: 0 auto 15px;
  }
  .customer-name {
    text-align: center;
    font-size: 3.0rem;
    margin-bottom: 15px;
    letter-spacing: 0.1rem;
    line-height: 1.4;
  }
  .customer-voice {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}
/*料金・システム*/
.section-system {
  padding: 50px 20px 60px;
}
.system-title {
  margin: 0 auto 20px;
  max-width: 320px;
}
.system-discription {
  max-width: 460px;
  margin: 0 auto 30px;
}
.system-discription p {
  margin: 0 auto 15px;
}
.system-content {
  display: flex;
  border: dotted 2.5px #DBC8AD;
  border-radius: 15px;
  padding: 40px 25px;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}
.system-content li {
  width: 100%;
  text-align: center;
}
.treatment-fee {
  margin-bottom: 50px;
}
.treatment-fee h3, .transportation h3 {
  color: #fff;
  padding: 8px 0px;
  border-radius: 50px;
  width: 200px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 2.4rem;
    font-family: 'Zen Maru Gothic', serif;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.treatment-fee h3 {
  background-color: #abd91d;
}
.transportation h3 {
  background-color: #85C16C;
}
.treatment-fee h4, .transportation h4 {
  margin: 0 auto;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.4;
    font-family: 'Zen Maru Gothic', serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-bottom: 15px;
}
.treatment-fee h4 span {
  display: inline-block;
  white-space: nowrap;
}
.add-fee {
  margin-bottom: 20px;
}
.add-fee span {
  display: inline-block;
  white-space: nowrap;
}
.add-fee_transportation {
  margin-bottom: 20px;
  text-align: justify;
}
.system-list {
  max-width: 400px;
  margin: 0 auto;
}
.system-list li {
  border-bottom: dotted 2.5px #DBC8AD;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
}
.system-list li:first-of-type {
  border-top: dotted 2.5px #DBC8AD;
}
.list-wrapper {
  display: flex;
  text-align: left;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
}
.fee {
  flex-shrink: 0;
  margin-left: 10px;
font-weight: 500;
  letter-spacing: 0.1rem;
}
.treatment-precautions, .transportation-precautions {
  text-align: justify;
}
.transportation-precautions {
  padding-top: 25px;
  max-width: 400px;
  margin: 0 auto;
}
/*料金・システム（タブレット）*/
@media(min-width:600px) {
  .section-system {
    padding: 70px 70px 80px;
  }
  .system-title {
    margin: 0 auto 25px;
    max-width: 320px;
  }
  .system-discription {
    max-width: 720px;
    margin: 0px auto 35px;
  }
  .system-content {
    border: dotted 3px #DBC8AD;
    border-radius: 20px;
    padding: 50px;
    max-width: 720px;
    margin: 0 auto;
  }
  .treatment-fee {
    margin-bottom: 50px;
  }
  .treatment-fee h3, .transportation h3 {
    color: #fff;
    padding: 8px 0px;
    border-radius: 80px;
    width: 220px;
  }
  .treatment-fee h4, .transportation h4 {
    margin: 0 auto;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    margin-bottom: 15px;
  }
  .add-fee_transportation {
    max-width: 480px;
    margin: 0 auto 20px;
  }
  .treatment-fee h4 span {
    display: inline-block;
    white-space: nowrap;
  }
  .system-list {
    max-width: 480px;
    margin: 0 auto;
  }
  .system-list li {
    border-bottom: dotted 3px #DBC8AD;
    padding: 16px 40px;
    align-items: center;
  }
  .system-list li:first-of-type {
    border-top: dotted 3px #DBC8AD;
  }
  .list-wrapper {
    width: 352px;
  }
  .treatment-precautions {
    width: 352px;
  }
  .transportation-precautions {
    padding-top: 25px;
    max-width: 480px;
  }
}
/*料金・システム（PC）*/
@media(min-width:1000px) {
  .section-system {
    padding: 90px 110px 100px;
  }
  .system-title {
    margin: 0 auto 35px;
    max-width: 480px;
  }
  .system-discription {
    max-width: 1000px;
    margin: 0px auto 40px;
    text-align: justify;
  }
  .system-content {
    border: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: row;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0);
  }
  .treatment-fee, .transportation {
    background-color: #fff;
    border: dotted 3px #DBC8AD;
    border-radius: 20px;
    max-width: 480px;
  }
  .treatment-fee {
    margin: 0 40px 0 0;
    padding: 50px 50px 51px;
  }
  .transportation {
    padding: 50px 50px 32px 50px;
  }
  .treatment-fee h3, .transportation h3 {
    color: #fff;
    padding: 8px 0px;
    border-radius: 80px;
    width: 220px;
  }
  .treatment-fee h3 {
    background-color: #abd91d;
  }
  .transportation h3 {
    background-color: #85C16C;
  }
  .treatment-fee h4, .transportation h4 {
    margin: 0 auto;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    margin-bottom: 15px;
  }
  .treatment-fee h4 span {
    display: inline-block;
    white-space: nowrap;
  }
  .system-list {
    max-width: 400px;
    margin: 0 auto;
    font-weight: 100%;
  }
  .system-list li {
    border-bottom: dotted 3px #DBC8AD;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
  }
  .system-list li:first-of-type {
    border-top: dotted 3px #DBC8AD;
  }
  .treatment-fee li:last-of-type {
    border-bottom: none;
    padding: 16px 24px 0;
  }
  .list-wrapper {
    display: flex;
    text-align: left;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .fee {
    flex-shrink: 0;
    margin-left: 10px;
  }
  .treatment-precautions {
    width: 100%;
  }
  .transportation-precautions {
    padding-top: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
}
/*お問い合わせ*/
.section-contact {
  padding: 0 20px 80px;
}
.contact-content {
  background-color: #fff;
  border: solid 4px #c0e035;
  padding: 35px 25px;
  text-align: center;
  border-radius: 15px;
  max-width: 460px;
  margin: 0 auto;
}
.contact-illust {
  width: 60px;
  margin: 0 auto 15px;
}
.contact-illust img {
  width: 100%;
  object-fit: contain;
}
.contact-content h2 {
  margin-bottom: 10px;
}
.contact-discription {
  margin-bottom: 20px;
}
.contact-mail {
  margin: 0 auto 15px;
  max-width: 320px;
}
.contact-line {
  margin: 0 auto 5px;
  max-width: 320px;
}
.contact-mail a, .contact-line a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  font-family: 'Zen Maru Gothic', serif;
  font-weight: 500;
  background-color: #85C16C;
  color: #fff;
  padding: 15px 0px;
  border-radius: 50px;
  transition: .4s;
}
.contact-mail a::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
    margin: 3px 8px 0 0;
}
.contact-line a::before {
content: "";
    width: 26px;
    height: 26px;
    background-image: url(../images/icon_chat.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 2px 7px 0 0;
}
.contact-mail a:hover, .contact-line a:hover {
  background-color: #abd91d;
}
/*お問い合わせ（タブレット）*/
@media(min-width:600px) {
  .section-contact {
    padding: 0 70px 100px;
  }
  .contact-content {
    max-width: 720px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 50px;
    border-radius: 20px;
  }
  .contact-illust {
    width: 65px;
    margin: 0 auto 20px;
  }
  .contact-content h2 {
    margin-bottom: 8px;
  }
  .contact-discription {
    margin-bottom: 25px;
  }
  .contact-mail {
    margin: 0 auto 20px;
  }
  .contact-line {
    margin: 0 auto 10px;
  }
}
/*お問い合わせ（PC）*/
@media(min-width:1000px) {
  .section-contact {
    padding: 0 110px 140px;
  }
  .contact-content {
    max-width: 1000px;
    padding: 70px;
    border-radius: 20px;
    border: solid 6px #abd91d;
  }
  .contact-content h2 {
    margin-bottom: 10px;
  }
  .contact-discription {
    margin-bottom: 30px;
  }
  .contact-links {
    display: flex;
    max-width: 800px;
    justify-content: space-evenly;
    margin: 0 auto;
  }
  .contact-mail a, .contact-line a {
    padding: 18px 0px;
    border-radius: 50px;
  }
  .contact-mail {
    width: 360px;
    margin: 0 20px 0;
  }
  .contact-line {
    width: 360px;
    margin: 0 20px;
  }
  .contact-line p {
    margin-top: 5px;
  }
}