@charset "UTF-8";


@media screen and (max-width: 850px) {}

/*flex*/
.flex-4 {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 20px 0;
}
.flex-4 > div {
  width: 24%;
}
.flex-2 {
  display: flex;
  justify-content: space-between;
}
.flex-2 > * {
  width: 48.5%;
}
.flex-5 {
  display: flex;
  justify-content: space-between;
}
.flex-5 > * {
  width: 18%;
}
@media screen and (max-width: 850px) {
  .flex-2 {
    justify-content: flex-start;
    flex-flow: column;
    gap: 20px;
  }
  .flex-2 > * {
    width: 100%;
  }
  .flex-5 {
    flex-wrap: wrap;
    gap: 10px 0;
    margin: 30px auto 0;
  }
  .flex-5 > * {
    width: 48%;
  }
  .flex-4 {
    flex-flow: wrap;
    gap: 20px 0;
    flex-wrap: wrap;
  }
  .flex-4 > div {
    width: 48%;
  }
  section.contInt .flex-2 {
    margin: 20px auto 0;
  }
}

/*btn*/
.btn-down-w a {
  background: #fff;
  border-radius: 30px;
  padding: 7px 42px 7px 30px;
  color: #499be0;
  font-weight: 500;
  position: relative;
  border: 1px solid #499be0;
}
.btn-down-w a:hover {
  background: #499be0;
  color: #fff;
  border: 1px solid #fff;
}
.btn-down-w a::after {
  content: "";
  background: url(../images/common/btn-down.png) center no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  right: 25px;
  position: absolute;
  top: 15px;
}
.btn-down-w a:hover::after {
  content: "";
  background: url(../images/common/btn-down_w.png) center no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  right: 25px;
  position: absolute;
  top: 15px;
}

.btn-down a {
  background: #499be0;
  border-radius: 30px;
  padding: 7px 42px 7px 30px;
  color: #fff;
  font-weight: 500;
  position: relative;
  border: 1px solid #499be0;
}
.btn-down a:hover {
  background: #fff;
  color: #499be0;
  border: 1px solid #499be0;
}
.btn-down a::after {
  content: "";
  background: url(../images/common/btn-down_w.png) center no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  right: 25px;
  position: absolute;
  top: 15px;
}
.btn-down a:hover::after {
  content: "";
  background: url(../images/common/btn-down.png) center no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  right: 25px;
  position: absolute;
  top: 15px;
}

.btn-next a {
  background: #499be0;
  border-radius: 30px;
  padding: 7px 42px 7px 30px;
  color: #fff;
  font-weight: 500;
  position: relative;
  border: 1px solid #499be0;
}
.btn-next a:hover {
  background: #fff;
  color: #499be0;
  border: 1px solid #499be0;
}
.btn-next a::after {
  content: "";
  background: url(../images/common/btn-next_w.png) center no-repeat;
  background-size: contain;
  width: 16px;
  height: 9px;
  right: 25px;
  position: absolute;
  top: 19px;
}
.btn-next a:hover::after {
  content: "";
  background: url(../images/common/btn-next.png) center no-repeat;
  background-size: contain;
  width: 16px;
  height: 9px;
  right: 25px;
  position: absolute;
  top: 19px;
}

.btn-next-w a {
  background: #fff;
  border-radius: 30px;
  padding: 7px 42px 7px 30px;
  color: #499be0;
  font-weight: 500;
  position: relative;
  border: 1px solid #fff;
}
.btn-next-w a:hover {
  background: #499be0;
  color: #fff;
  border: 1px solid #fff;
}
.btn-next-w a::after {
  content: "";
  background: url(../images/common/btn-next.png) center no-repeat;
  background-size: contain;
  width: 16px;
  height: 9px;
  right: 25px;
  position: absolute;
  top: 19px;
}
.btn-next-w a:hover::after {
  content: "";
  background: url(../images/common/btn-next_w.png) center no-repeat;
  background-size: contain;
  width: 16px;
  height: 9px;
  right: 25px;
  position: absolute;
  top: 19px;
}

@media screen and (max-width: 850px) {
  .btn-down-w a {
    width: 80%;
  }
  .btn-next a {
    border-radius: 50px;
    width: 80%;
  }
  .btn-next-w a {
    width: 80%;
  }
}



/*top_______________________________________________*/
/* fv */
section.fv {
  position: relative;
  background: url(../images/top/fv-bg.png) bottom center no-repeat;
  background-size: cover;
  /* padding: 0 0 140px; */
  z-index: 1;
}
section.fv h2 {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-size: 4.6rem;
  line-height: 1.5;
  bottom: 110px;
  left: 70px;
}
.topFv {
  margin: 130px 80px 0 auto;
  position: relative;
  width: 1130px;
}

.topFv div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 1130px;
  height: 600px;
  margin: 0;
}
.topFv .img01 {
  background-image: url(../images/top/slide1.jpg);
  border-radius: 20px;
}
.topFv .img02 {
  background-image: url(../images/top/slide2.jpg);
  border-radius: 20px;
}
.topFv .img03 {
  background-image: url(../images/top/slide3.jpg);
  border-radius: 20px;
}

@media screen and (max-width: 850px) {
  section.fv {
    /*background: url(../images/top/fv-bg_sp.png) bottom center no-repeat;*/
    background-size: cover;
    padding: 0px 0 170px;
  }
  section.fv h2 {
    font-size: 3rem;
    bottom: 0px;
    left: 32px;
  }
  .topFv {
    margin: 90px auto 0;
    position: relative;
    width: 90%;
  }
  .topFv div {
    width: 100%;
    height: 300px;
    margin: 0;
  }
}

section.topAbout {
  background: #499be0;
  padding: 150px 0 0;
  margin: -10px 0 0;
}
section.topAbout .topAboutFlex {
  display: flex;
  justify-content: space-between;
}
section.topAbout .topAboutFlex .topAboutTxt {
  padding: 0 0 0 8.33%;
  width: 46%;
}
section.topAbout .topAboutFlex .topAboutTxt .cont-title-w {
  color: #fff;
}
section.topAbout .topAboutFlex .topAboutTxt > p {
  color: #fff;
  margin: 0 auto 50px;
}
section.topAbout .topAboutFlex .topAboutImg {
  width: 47%;
}
section.topAbout .topAboutFlex .topAboutImg img {
  border-radius: 20px 0 0;
}

@media screen and (max-width: 850px) {
  section.topAbout {
    padding: 70px 0 0;
    margin: -10px 0 0;
  }
  section.topAbout .topAboutFlex {
    flex-flow: column;
    gap: 50px;
  }
  section.topAbout .topAboutFlex .topAboutTxt {
    padding: 0 8.33%;
    width: 100%;
  }
  section.topAbout .topAboutFlex .topAboutTxt > p {
    margin: 0 auto 30px;
  }
  section.topAbout .topAboutFlex .topAboutImg {
    width: 100%;
  }
  section.topAbout .topAboutFlex .topAboutImg img {
    border-radius: 0;
  }
}

section.topOther {
  display: flex;
  justify-content: space-between;
  margin: 100px auto;
}
section.topOther h4 {
  font-size: 2.4rem;
  border-bottom: 1px solid #d6d6d6;
  padding: 0 0 10px;
  font-weight: 500;
}
section.topOther .topNews {
  width: 48%;
}
section.topOther .topOpen {
  width: 48%;
}
section.topOther .topNews .topNewsBox {
  border-bottom: 1px solid #d6d6d6;
  padding: 30px 0;
}
section.topOther .topNews .topNewsBox h5 {
  font-size: 1.6rem;
}
section.topOther .topNews .topNewsBox h6 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 5px auto;
}
section.topOther .topNews .topNewsBox a {
  color: #499be0;
  text-decoration: underline;
  margin: 5px 0 0;
}
section.topOther .topOpen .contactOpen .open-table {
  margin: 30px auto;
}
section.topOther .topNews .newsBox {
  overflow: auto;
  height: 370px;
}
section.topOther .topNews .newsBox::-webkit-scrollbar {
  width: 10px;
}
section.topOther .topNews .newsBox::-webkit-scrollbar-track {
  background: #f4faff;
  border-radius: 10px;
}
section.topOther .topNews .newsBox::-webkit-scrollbar-thumb {
  background: #499be0;
  border-radius: 10px;
}

@media screen and (max-width: 850px) {
  section.topOther {
    margin: 50px auto;
    flex-flow: column;
    gap: 30px;
  }
  section.topOther .topNews {
    width: 100%;
  }
  section.topOther h4 {
    font-size: 2rem;
  }
  section.topOther .topNews .topNewsBox h6 {
    font-size: 1.6rem;
  }
  section.topOther .topOpen {
    width: 100%;
  }
}

section.topContents {
  background: #f4faff;
  padding: 100px 0;
}
section.topContents .topContentsTitle {
  display: flex;
  justify-content: space-between;
  align-items: anchor-center;
}
section.topContents .topContentsBox {
  background: #fff;
  border-radius: 20px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.topContents .topContentsBox p {
  font-weight: 500;
  line-height: 1.5;
}
section.topContents .topContentsBox .topContentsBoxImg {
  width: 30%;
}
section.topContents ul.list-com {
  margin: 30px auto 0;
}
li.txt-red {
  color: #EB4B4B;
}

@media screen and (max-width: 850px) {
  section.topContents {
    padding: 50px 0;
  }
  section.topContents .topContentsTitle {
    align-items: baseline;
    flex-flow: column;
  }
  section.topContents .flex-4 {
    margin: 20px auto;
    gap: 10px;
  }
  section.topContents .topContentsBox {
    padding: 10px;
  }
  section.topContents .topContentsBox .topContentsBoxImg {
    width: 40%;
  }
  .btn-next {
    width: 100%;
    position: relative;
    margin: 20px auto 0;
  }
}

section.topContact {
  background: #499be0;
  padding: 100px 0;
}
section.topContact .cont-title {
  text-align: center;
  color: #fff;
}
section.topContact .cont-title p {
  color: #fff;
}
section.topContact .inner > p {
  color: #fff;
  text-align: center;
  margin: 0 auto 50px;
}
section.topContact h4 {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
section.topContact .topContactArea {
  margin: 30px auto 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #fff;
  text-align: center;
  align-items: center;
}
section.topContact .topContactArea .topContactBox {
  border: 1px solid;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  padding: 50px 0 0;
  font-weight: 500;
  line-height: 1.5;
}
section.topContact .topContactSupport {
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.topContact .topContactSupport .topContactSupportTxt {
  padding: 40px;
}
section.topContact .topContactSupport .topContactSupportTxt h5 {
  font-size: 2rem;
  font-weight: 500;
  color: #499be0;
  margin: 0 auto 20px;
}
section.topContact .topContactSupport .topContactSupportTxt .topContactSupportTxtBox {
  display: flex;
  gap: 20px;
}
section.topContact .topContactSupport .topContactSupportTxt .topContactSupportTxtBox h6 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  background: #f4faff;
  border-radius: 20px;
  padding: 20px;
}
section.topContact .topContactSupport .topContactSupportImg {
  width: 400px;
}
section.topContact .topContactSupport .topContactSupportImg img {
  border-radius: 0 20px 20px 0;
}
section.topContact .btn-next-w {
  margin: 70px auto 0;
  text-align: center;
}
section.topContact .topContactSupport .topContactSupportTxt .topContactSupportTxtBox li {
  position: relative;
  padding: 0 0 0 15px;
}
section.topContact .topContactSupport .topContactSupportTxt .topContactSupportTxtBox li:before {
  content: "";
  background: #499be0;
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 14px;
}

@media screen and (max-width: 850px) {
  section.topContact {
    padding: 50px 0;
  }
  section.topContact .inner > p {
    text-align: left;
    margin: 0 auto 30px;
  }
  section.topContact h4 {
    font-size: 2rem;
  }
  section.topContact .inner > p {
    text-align: left;
    margin: 0 auto 30px;
  }
  section.topContact h4 {
    font-size: 2rem;
  }
  section.topContact .topContactArea {
    margin: 30px auto 50px;
    gap: 20px;
    color: #fff;
    flex-flow: wrap;
  }
  section.topContact .topContactArea .topContactBox {
    width: 145px;
    height: 145px;
    padding: 45px 0 0;
  }
  section.topContact .topContactSupport {
    flex-flow: column;
  }
  section.topContact .topContactSupport .topContactSupportTxt {
    padding: 20px;
  }
  section.topContact .topContactSupport .topContactSupportTxt .topContactSupportTxtBox {
    flex-flow: column;
  }
  section.topContact .topContactSupport .topContactSupportImg {
    width: 100%;
  }
  section.topContact .topContactSupport .topContactSupportImg img {
    border-radius: 0 0 20px 20px;
  }
}


/*about_______________________________________________*/
section.aboutAccess {
  margin: 100px auto;
}
section.aboutAccess .aboutAccessBox {
  background: #f4faff;
  border-radius: 20px;
  padding: 30px;
  margin: 30px auto 0;
}
section.aboutAccess .aboutAccessBox h4 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #499be0;
  margin: 0 auto 15px;
}
section.aboutAccess .aboutAccessBox iframe {
  border-radius: 20px;
}
section.aboutAccess .aboutAccessBox .aboutAccessBoxPark img {
  margin: 20px auto 10px;
  border-radius: 20px;
}

@media screen and (max-width: 850px) {
  section.aboutAccess {
    margin: 50px auto;
  }
  section.aboutAccess .aboutAccessBox h4 {
    font-size: 2rem;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
.aboutClinicGallery {
  display: flex;
  overflow: hidden;
}
.aboutClinicGallery ul {
  display: flex;
  list-style: none;
  padding: 0;
  animation: infinity-scroll-left 200s infinite linear 0.5s both;
  gap: 40px;
}
.aboutClinicGallery ul li {
  width: calc(100vw / 2);
}
.aboutClinicGallery ul li>img {
  width: 100%;
  border-radius: 20px;
}

@media screen and (max-width: 850px) {
  .aboutClinicGallery ul {
    gap: 10px;
  }
  .aboutClinicGallery ul li {
    width: calc(100vw / 1);
  }
  .aboutClinicGallery ul li>img {
    border-radius: 10px;
  }
}

section.aboutAccess .aboutAccessBox .footer-tel {
  background: #fff;
  border: none;
}




/*contents_______________________________________________*/
section.contentsDiagnosis {
  margin: 100px auto;
}
section.contentsDiagnosis .contentsDiagnosisBox {
  margin: 0 auto 50px;
}
section.contentsDiagnosis .contentsDiagnosisBox h4 {
  font-size: 2.4rem;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 2px solid #d6d6d6;
  position: relative;
  margin: 0 auto 30px;
}
section.contentsDiagnosis .contentsDiagnosisBox h4::after {
  content: "";
  background: #499be0;
  width: 100px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
section.contentsDiagnosis .contentsDiagnosisBox .contentsDiagnosisBoxFlex {
  display: flex;
  justify-content: space-between;
}
section.contentsDiagnosis .contentsDiagnosisBox .contentsDiagnosisBoxFlex .contentsDiagnosisBoxFlexTxt {
  width: 55%;
}
section.contentsDiagnosis .contentsDiagnosisBox .contentsDiagnosisBoxFlex .contentsDiagnosisBoxFlexDetail {
  width: 40%;
  border: 1px solid #499be0;
  border-radius: 20px;
  padding: 20px;
}
section.contentsDiagnosis .contentsDiagnosisBox h5 {
  color: #499be0;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 auto 10px;
}
section.contentsDiagnosis .contentsDiagnosisBox .contentsDiagnosisBoxFlex .contentsDiagnosisBoxFlexDetail h6 {
  font-weight: 500;
  padding: 0 0 0 10px;
  border-left: 2px solid #499be0;
  line-height: 1;
  font-size: 1.6rem;
  margin: 0 auto 10px;
}
p.txt-r {
  text-align: right;
}
section.contentsSipplement {
  padding: 100px 0;
  background: #f4faff;
}
section.contentsSipplement .contentsSipplementBox img {
  border-radius: 20px;
}

section.contentsSipplement .contentsSipplementBox p {
  text-align: center;
  font-weight: 500;
}

section.contentsSipplement .contentsSipplementTxt {
  margin: 40px auto 0;
}

section.contentsSipplement .contentsSipplementTxt h4 {
  color: #499be0;
  font-weight: 500;
  font-size: 2.4rem;
  margin: 0 auto 10px;
}

section.contentsSipplement .contentsSipplementTxt ul.list-disc {
  font-weight: 600;
}


/*contact_______________________________________________*/
section.contInt .contactOpen {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 30px;
}
section.contInt .contactOpen thead {
  color: #646464;
}
section.contInt .contactOpen th {
  color: #646464;
}
section.contInt .contactOpen ul.list-com, section.contInt .contactOpen ul.list-disc {
  color: #646464;
  width: 48%;
}
section.contInt .contactOpen .open-table {
  width: 49%;
}
section.contInt .contactDetail {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}
section.contInt .contactDetail h4 {
  color: #499be0;
  font-size: 2.4rem;
  margin: 0 auto 20px;
}
section.contInt .contactDetail p {
  color: #646464;
}
section.contInt dl.contactAttention {
  display: flex;
  align-items: flex-start;
  margin: auto;
}
section.contInt dl.contactAttention dt {
  width: 20%;
  border-left: 2px solid;
  line-height: 1;
  padding: 0 0 0 10px;
  font-weight: 500;
  margin: 5px auto 0;
}

@media screen and (max-width: 850px) {
  section.contInt .contactOpen {
    border-radius: 20px;
    margin: 0;
    flex-flow: column;
    gap: 20px;
  }
  section.contInt .contactOpen .open-table {
    width: 100%;
  }
  section.contInt .contactOpen ul.list-com, section.contInt .contactOpen ul.list-disc {
    width: 100%;
  }
  section.contentsDiagnosis {
    margin: 50px auto;
  }
  section.contentsDiagnosis .contentsDiagnosisBox .contentsDiagnosisBoxFlex {
    flex-flow: column;
    gap: 20px;
  }
  section.contentsDiagnosis .contentsDiagnosisBox .contentsDiagnosisBoxFlex .contentsDiagnosisBoxFlexTxt {
    width: 100%;
  }
  section.contentsDiagnosis .contentsDiagnosisBox h5 {
    font-size: 2rem;
    margin: 0 auto 10px;
  }
  section.contentsDiagnosis .contentsDiagnosisBox .contentsDiagnosisBoxFlex .contentsDiagnosisBoxFlexDetail {
    width: 100%;
  }
  section.contentsDiagnosis .contentsDiagnosisBox {
    margin: 0px auto 40px;
  }
  section.contInt dl.contactAttention {
    margin: auto;
    flex-flow: column;
  }
  section.contInt dl.contactAttention dt {
    width: 100%;
    margin: 40px auto 20px;
  }
}

section.contactStep {
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section.contactStep .contactStepInt {
  width: 40%;
  position: sticky;
  top: 180px;
}
section.contactStep .contactStepDetail {
  width: 50%;
  display: flex;
  flex-flow: column;
  gap: 30px;
}
section.contactStep .contactStepDetail .contactStepDetailBox {
  display: flex;
  justify-content: space-between;
  border: 1px solid #499be0;
  border-radius: 20px;
  padding: 20px;
}
section.contactStep .contactStepDetail .contactStepDetailBox h4 {
  width: 11%;
}
section.contactStep .contactStepDetail .contactStepDetailBox dl {
  width: 85%;
}
section.contactStep .contactStepDetail .contactStepDetailBox dl dt {
  font-size: 1.8rem;
  font-weight: 500;
  color: #499be0;
}

@media screen and (max-width: 850px) {
  section.contentsSipplement {
    padding: 50px 0;
  }
  section.contactStep {
    margin: 50px auto;
    flex-flow: column;
    gap: 30px;
  }
  section.contactStep .contactStepInt {
    width: 100%;
    position: relative;
    top: 0;
  }
  section.contactStep .contactStepDetail {
    width: 100%;
    gap: 10px;
  }
}

section#contactGet {
  background: #F4FAFF;
  padding: 100px 0;
}
section#contactGet .btn-down {
  display: flex;
  justify-content: space-between;
  margin: 30px auto 0;
}
section#contactGet .btn-down a {
  width: 23%;
  text-align: center;
}
section#contactGet .contactGetBox {
  margin: 50px auto 0;
}
section#contactGet .contactGetBox h4 {
  font-size: 2.4rem;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 2px solid #d6d6d6;
  position: relative;
}
section#contactGet .contactGetBox h4::after {
  content: "";
  background: #499be0;
  width: 100px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
section#contactGet .contactGetBox  .contactGetBoxCont {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  margin: 30px auto 0;
}
section#contactGet .contactGetBox .contactGetBoxCont h5 {
  font-size: 2rem;
  font-weight: 500;
  color: #499be0;
  margin: 0 auto 10px;
}
section#contactGet .contactGetBox .contactGetBoxCont .contactGetBoxContBox {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
section#contactGet .contactGetBox .contactGetBoxCont .contactGetBoxContBox dl {
  width: 48%;
}
section#contactGet .contactGetBox .contactGetBoxCont .contactGetBoxContBox dl dt {
  font-size: 2rem;
  font-weight: 500;
}
section#contactGet .contactUse {
  margin: 50px auto 0;
}
section#contactGet .contactUse h4 {
  line-height: 1;
  font-weight: 500;
  border-left: 2px solid #499be0;
  padding: 0 0 0 10px;
  margin: 0 auto 15px;
  font-size: 2rem;
}
section#contactGet .contactUse ul.list-disc {
  font-weight: 600;
}

@media screen and (max-width: 850px) {
  section#contactGet {
    padding: 50px 0;
  }
  section#contactGet .btn-down {
    flex-flow: column;
    gap: 10px;
    align-items: center;
  }
  section#contactGet .btn-down a {
    width: 80%;
    text-align: center;
  }
  section#contactGet .contactGetBox .contactGetBoxCont .contactGetBoxContBox {
    flex-flow: column;
  }
  section#contactGet .contactGetBox .contactGetBoxCont .contactGetBoxContBox dl {
    width: 100%;
  }
  section#contactGet .contactGetBox .contactGetBoxCont .contactGetBoxContBox dl dt {
    font-size: 1.6rem;
  }
  section#contactGet .contactUse h4 {
    font-size: 1.6rem;
  }
}

section.contactSubsc {
  margin: 100px auto 0;
  width: 60%;
  /* text-align: center; */
  border: 1px solid #499be0;
  border-radius: 20px;
  padding: 30px;
}
section.contactSubsc h4 {
  font-size: 2rem;
  font-weight: 500;
  color: #499be0;
  margin: 0 auto 10px;
  text-align: center;
}
section.contactSubsc p {
  text-align: center;
  margin: 0 auto 20px;
}
section.contactSubsc .btn-next {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 850px) {
  section.contactSubsc {
    margin: 50px auto 0;
    width: 80%;
    padding: 20px;
  }
}


/*recruit_______________________________________________*/
.secondTitle {
  background: url(../images/common/bg.png)top center no-repeat;
  background-size: cover;
  position: relative;
  margin: -200px auto 0;
  padding: 120px 0 60px;
}
.secondTitle h2 {
  color: #fff;
  font-size: 4.6rem;
  border-bottom: 3px solid;
  display: inline-block;
  margin: 0 auto 0 8.33%;
  line-height: 1;
  padding: 0 0 12px;
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 850px) {
  .secondTitle {
    background: url(../images/common/bg_sp.png)top center no-repeat;
    background-size: cover;
    margin: -100px auto 0;
    padding: 80px 0 30px;
  }
  .secondTitle h2 {
    font-size: 3.6rem;
    margin: 0 auto 0 8.33%;
  }
}

section.contInt {
  background: #499be0;
  margin: -10px auto 0;
  color: #fff;
  padding: 0 0 100px;
}
section.contInt .btn-down-w {
  display: flex;
  gap: 20px;
  margin: 0 auto 80px;
}
section.contInt h4 {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 auto 30px;
}
section.contInt .inner > p {
  margin: 0 auto 50px;
}
section.contInt .recruitPointBox {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}
section.contInt .recruitPointBox img {
  margin: 50px auto;
}
section.contInt .recruitPointBox h5 {
  color: #499be0;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 auto 10px;
}
section.contInt .recruitPointBox p {
  color: #646464;
}
section.contInt {
  background: #499be0;
  margin: -10px auto 0;
  color: #fff;
  padding: 0 0 100px;
}
section.contInt h4 {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 auto 30px;
  line-height: 1.5;
}
section.contInt .inner > p {
  margin: 0 auto 50px;
}
section.contInt .recruitPointBox {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}
section.contInt .recruitPointBox img {
  margin: 50px auto;
}
section.contInt .recruitPointBox h5 {
  color: #499be0;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 auto 10px;
}
section.contInt .recruitPointBox p {
  color: #646464;
}

@media screen and (max-width: 850px) {
  section.contInt {
    margin: -40px auto 0;
    padding: 50px 0;
  }
  section.contInt h4 {
    font-size: 2.2rem;
  }
  section.contInt .inner > p {
    margin: 0 auto 20px;
  }
  section.contInt .recruitPointBox {
    padding: 20px;
  }
  section.contInt .recruitPointBox img {
    margin: 20px auto;
    width: 100%;
  }
  section.contInt .recruitPointBox h5 {
    font-size: 1.6rem;
  }
  section.contInt .btn-down-w {
    flex-flow: column;
    align-items: center;
  }
}

section.recruitRequirements {
  margin: 100px auto;
}
section.recruitRequirements .recruitRequirementsFlex {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin: 40px auto 0;
}
section.recruitRequirements .recruitRequirementsFlex dl {
  width: 48%;
  border-top: 1px solid #d6d6d6;
  padding: 30px 0;
  display: flex;
  gap: 30px;
}
section.recruitRequirements .recruitRequirementsFlex dl dt {
  width: 20%;
  color: #499be0;
  font-size: 2rem;
  font-weight: 500;
}
dl.recruitRequirementsBorder {
  border-bottom: 1px solid #d6d6d6;
}

@media screen and (max-width: 850px) {
  section.recruitRequirements {
    margin: 50px auto;
  }
  section.recruitRequirements .recruitRequirementsFlex dl {
    width: 100%;
    gap: 0;
  }
  section.recruitRequirements .recruitRequirementsFlex dl dt {
    width: 30%;
    font-size: 1.6rem;
  }
  section.recruitRequirements .recruitRequirementsFlex dl dd {
    width: 70%;
  }
}


