@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  /* color: #333; */
  color: #4d4d4d;
}

@media screen and (max-width: 768px) {
  .is_pc {
    display: none;
  }
}

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

/* リキッドレイアウト対応 */
/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* 下線 */
.line {
  text-decoration: underline double black;
}



/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

section {
  padding: 0 1rem;
  margin-top: 50px;
}

.inner {
  width: 100%;
  margin: 0 auto;
  max-width: 750px;
  padding-top: 50px;
  /*
  max-width: 800px;
  padding-right: 25px;
  padding-left: 25px;
  */
}
section:not(:first-of-type) .inner {
  border-top: #00679e 1px solid;
}
@media screen and (max-width: 768px) {
  .inner {
    /*
    padding-right: 20px;
    padding-left: 20px;
    */
  }
}

.page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: auto;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
@media screen and (max-width: 768px) {
  .page-top {
    right: 15px;
  }
}

.page-top a {
  display: block;
}

/*上に上がる動き*/
.page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*下に下がる動き*/
.page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #deefe9;
  text-align: center;
  color: #fff;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#splash_logo img {
  width: 200px;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.about {
  /* padding-top: 72px; */
  /*color: #727171; */
}
@media screen and (max-width: 768px) {
  .about {
    /* padding-top: 40px; */
  }
}

.about__title {
  text-align: center;
  font-size: clamp(23px, 6vw, 38px);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: normal;
  letter-spacing: 0.2em;
}

.about__inner {
  /*
  max-width: 800px;
  width: 100%;
  */
}

.about__doctor {
  /*aspect-ratio: 1200/730;*/
  /* margin: 60px auto 0; */
  /*background: url(../images/common/about_doctor.png) no-repeat center center/contain; */
}
@media screen and (max-width: 768px) {
  .about__doctor {
    background: none;
    aspect-ratio: auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.about__subject {
  text-align: center;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: normal;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .about__subject {
    font-size: 20px;
  }
}

.about__reserve {
  background-color: #39b89d;
  color: #ffffff;
  max-width: 425px;
  padding: 1rem;
  margin: 2rem auto;
  display: block;
  border-radius: 5px;
  text-align: center;
  font-size: 24px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: normal;
  letter-spacing: 8px;
}
.about__reserve:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about__reserve--info {
  display: flex;
  justify-content: center;
  text-align: left;
  font-size: 18px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .about__reserve--info {
    font-size: 16px;
  }
}

.doctor__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 86px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .doctor__inner {
    display: block;
    padding: 0;
  }
}

.doctor__img {
  width: 32.3974082%;
}
@media screen and (max-width: 768px) {
  .doctor__img {
    width: 50%;
    margin: 0 auto;
  }
}

.doctor__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .doctor__body {
    margin-top: 16px;
    padding-left: 0;
  }
}

.doctor__subTitle {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .doctor__subTitle {
    text-align: center;
  }
}

.doctor__name {
  font-size: 20px;
  font-weight: bold;
  color: #271e1b;
}
.doctor__name span {
  font-size: 16px;
  font-weight: normal;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .doctor__name {
    text-align: center;
  }
}

.doctor__careerTitle {
  margin-top: 30px;
}

.career__text {
  font-size: 14px;
}

.careerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
.careerList:not(:first-child) {
  margin-top: 5px;
}

.careerYear {
  width: 82px;
}

.careerContents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__dl {
  margin-top: 20px;
  font-size: 18px;
  font-family: "Kosugi Maru", sans-serif;
}
@media screen and (max-width: 768px) {
  .about__dl {
    font-size: 16px;
  }
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.about__row > div {
  width: calc(100% - 142px);
}
.about__row:not(:first-child) {
  margin-top: 12px;
}
.about__dt {
  width: 142px;
  background-color: #c1e4ea;
  border: 1px solid #4d4d4d;
  padding: 0.5rem;
  margin-bottom: -1px;
  margin-right: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__dd {
  border: 1px solid #4d4d4d;
  padding: 0.5rem 1rem;
  margin-bottom: -1px;
  margin-right: -1px;
}
@media screen and (max-width: 768px) {
  .about__row {
    /* display: block; */
  }
  .about__dt {
    width: 100%;
    margin-right: 0;
    padding: 0.2rem 0.5rem;
  }
  .about__dd {
    margin-right: 0;
    padding: 0.5rem 0.5rem;
  }
  .about__row > div {
    width: 100%;
  }
}

.footer {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 80px;
  }
}

.footer__top {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer__btn {
  position: relative;
  width: 100%;
  font-size: 38px;
  font-family: "Kosugi Maru", sans-serif;
  color: #fff;
}
.footer__btn a {
  display: block;
}
.footer__btn a span {
  position: relative;
  display: inline-block;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  .footer__btn a span {
    padding-left: 60px;
  }
}
.footer__btn a span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: url(../images/common/footer_btn-left.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .footer__btn a span::after {
    width: 40px;
    height: 40px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__btn a {
    font-size: 24px;
  }
}

/*
.footer__btn--web {
  background-color: #44b89d;
  padding: 28px 10px 28px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__btn--web:hover {
  background-color: #236f5d;
}
@media screen and (max-width: 768px) {
  .footer__btn--web {
    padding: 20px;
  }
}
*/

.footer__btnText {
  margin-top: 22px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .footer__btnText {
    font-size: 14px;
  }
}

.footer__map {
  /*
  width: 100vw;
  margin: 236px calc(50% - 50vw) 0;
  */
}
@media screen and (max-width: 768px) {
  .footer__map {
    /* margin-top: 100px; */
  }
}

.footer__mapInner iframe {
  width: 100%;
  aspect-ratio: 1920/550;
}
@media screen and (max-width: 768px) {
  .footer__mapInner iframe {
    aspect-ratio: 4/3;
  }
}

.footer__bottom {
  max-width: 750px;
  width: 100%;
  margin: 100px auto 0;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin-top: 80px;
    padding-bottom: 24px;
  }
}

.footer__bottomInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__bottomInner {
    display: block;
  }
}

.footer__bottomLogo {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .footer__bottomLogo {
    width: 80%;
    margin: 0 auto;
  }
}

.copyright {
  margin-top: 170px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .copyright {
    margin-top: 120px;
    font-size: 12px;
  }
}

.footer__bottomMeta {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__bottomMeta {
    text-align: center;
    margin-top: 60px;
  }
}

.footer__address {
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 16px;
  }
}

.footer__tel {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  font-size: 36px;
  padding-left: 46px;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .footer__tel {
    margin-top: 0;
  }
}

.footer__tel::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/common/tel.png) no-repeat center center/contain;
}

.footer__email {
  margin-top: 18px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .footer__email {
    margin-top: 12px;
    font-size: 16px;
  }
}

.footer__email span {
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .footer__email span {
    padding-left: 32px;
  }
}

.footer__email span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 50px;
  background: url(../images/common/footer_mail.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .footer__email span::before {
    width: 20px;
    height: 20px;
  }
}

.fv {
  position: relative;
  display: grid;
  justify-items: center;
  /* aspect-ratio: 1920/1397;*/
  aspect-ratio: 4000/2908;
  padding-top: 87px;
  background: url(../images/common/fv.jpg) no-repeat center bottom/cover;
}
@media screen and (max-width: 375px) {
  .fv {
    aspect-ratio: auto;
    height: 80vh;
    padding-top: 150px;
  }
}

.fv__lead {
  position: absolute;
  top: 73px;
  left: 90px;
  max-width: 340px;
  width: 19.7674419%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
  .fv__lead {
    top: 40px;
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fv__lead {
    top: 14px;
    left: 20px;
    max-width: 140px;
    width: 28%;
  }
}

.fv__title {
  max-width: 800px;
  width: 46%;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .fv__title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 58%;
  }
}

.tel,
.reserve,
.consultation-time,
.acsess {
  position: fixed;
  z-index: 100;
}
.tel a,
.reserve a,
.consultation-time a,
.acsess a {
  display: block;
}

.tel {
  top: 30px;
  right: 68px;
  font-size: 28px;
  font-weight: bold;
  border-bottom: 1px solid #333;
}
.tel a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  letter-spacing: 0.05em;
  color: #1e232d;
}
@media screen and (max-width: 768px) {
  .tel a {
    padding-left: 28px;
  }
}
.tel a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/common/tel.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .tel a::before {
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .tel {
    top: 20px;
    right: 15px;
    font-size: 22px;
  }
}

.reserve {
  top: 120px;
  right: 30px;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .reserve {
    width: 36px;
    right: 15px;
  }
}

.consultation-time {
  top: 200px;
  right: 30px;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .consultation-time {
    width: 36px;
    right: 15px;
  }
}

.acsess {
  top: 270px;
  right: 30px;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .acsess {
    width: 36px;
    right: 15px;
  }
}



.fv__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .fv__bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.fv__img {
  width: calc(100% / 4);
}
.fv__img > img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .fv__img {
    width: 50%;
  }
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 90px;
}

.header__inner {
  position: relative;
  height: inherit;
}

/* promise */
.promise {
  /*margin-top: 180px; */
  color: #00679f;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .promise {
    /* margin-top: 80px; */
  }
}

.promise__title {
  /*width: 80%;*/
  /*margin: 0 auto;*/
  display: none;
}
@media screen and (max-width: 768px) {
  .promise__title {
    width: 100%;
  }
}

.promise__items {
/*
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  max-width: 800px;
  */
  width: 100%;
  /*margin: 108px auto 0;*/
}
.promise__items .swiper-pagination {
  bottom: 8%!important;
}
@media screen and (max-width: 768px) {
  .promise__items {
    /* margin-top: 40px; */
  }
}

.promise__item {
  display: grid;
  justify-items: center;
  width: 260px;
  height: 260px;
  background: url(../images/common/promise-item.png) no-repeat center center/contain;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .promise__item {
    width: 200px;
    height: 200px;
    font-size: 18px;
    padding-top: 64px;
  }
}

/* training */
.training {
  /* margin-top: 180px; */
  text-align: center;
}
@media screen and (max-width: 768px) {
  .training {
    /*margin-top: 80px; */
  }
}

.training__title {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: normal;
  letter-spacing: 0.15em;
  line-height: 1.7;
  font-family: "Kosugi Maru", sans-serif;
}
.training__title div {
  font-size: clamp(20px, 3vw, 24px);
}
@media screen and (max-width: 768px) {
  /*
  .training__title {
    font-size: 20px;
  }
  .training__title span {
    font-size: 18px;
  }
  */
}
@media screen and (max-width: 768px) {
  /*
  .training__title {
    font-size: 18px;
  }
  .training__title span {
    font-size: 16px;
  }
  */
}

.training__items {
  max-width: 800px;
  width: 100%;
  margin: 40px auto 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .training__items {
    max-width: 500px;
    margin-top: 2rem;
  }
}

.training__item {
  padding: 1rem;
  padding-left: 200px;
  position: relative;
  font-size: 24px;
  font-family: "Kosugi Maru", sans-serif;
  color: #00679e;
  background-color: #c1e4ea;
  border-radius: 5px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .training__item {
    font-size: 16px;
    padding-left: 105px;
  }
}

.training__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 41px;
  width: 134px;
  height: 100%;
  background-image: url('../images/common/training__1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .training__item::before {
    width: 75px;
    left: 1rem;
  }
}

/*
.training__item::after {
  position: absolute;
  top: 50%;
  left: 44px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .training__item::after {
    font-size: 20px;
    left: 14px;
  }
}
*/


.training__item:nth-of-type(2)::before {
  background-image: url('../images/common/training__2.png');
}

.training__item:nth-of-type(3):before {
  background-image: url('../images/common/training__3.png');
}

.training__item:nth-of-type(4):before {
  background-image: url('../images/common/training__4.png');
}

.training__item:nth-of-type(5) {
  background-color: #f7dfdb;
}
.training__item:nth-of-type(5):before {
  background-image: url('../images/common/training__kids.png');
  background-position-y: bottom;
  bottom: 0;
  top: auto;
  width: 151px;
  height: 154px;
}
@media screen and (max-width: 768px) {
  .training__item:nth-of-type(5):before {
    width: 75px;
    left: 1rem;
  }
}


.training__item + .training__item {
  margin-top: 160px;
}

.training__footer {
  margin-top: 72px;
  font-size: clamp(35px, 4vw, 38px);
  font-family: "Kosugi Maru", sans-serif;
  color: #00679e;
  letter-spacing: 0.2em;

  display: flex;
  justify-content: center;
  align-items: center;
}
.training__footer > p,
.training__footer > figure {
  width: 50%;
}
.training__footer > figure > img {
  max-width: 270px;
}
@media screen and (max-width: 768px) {
  .training__footer {
    margin: 0 auto;
    margin-top: 32px;
    font-size: 16px;
    max-width: 500px;
    font-size: clamp(17px, 4vw, 26px);
  }
}

/* recruit */
.recruit {
  /*
  border-top: #00679e 1px solid;
  margin-top: 45px;
  padding-top: 45px;
  */
  text-align: center;
}
.recruit__inner {
  font-family: "Kosugi Maru", sans-serif;
  border-top: #00679e 1px solid;
}
.recruit__title {
  font-size: clamp(23px, 6vw, 38px);
  font-weight: normal;
  letter-spacing: 0.2em;
}
.recruit__img {
  max-width: 448px;
  margin: 30px auto;
  margin-top: 0;
}
.recruit__info {
  color: #00679e;
  font-size: 24px;
}
.recruit__job--title {
  font-size: 24px;
  font-weight: normal;
  margin-top: 30px;
}
.recruit__job--btn {
    background-color: #01679E;
    color: white;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    margin-top: 1rem
}
.recruit__job--btn:hover {
  opacity: 0.8;
}
.recruit__job--detail {
  font-size: 18px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 20px;
}
.recruit__job--detail dt {
  width: 8rem;
  padding: 0.5rem 1rem;
  background-color: #c1e4ea;
  border: 1px solid #4d4d4d;
  margin-bottom: -1px;
  margin-right: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit__job--detail dd {
  width: calc(100% - 8rem);
  text-align: left;
  padding: 0.5rem 1rem;
  border: 1px solid #4d4d4d;
  margin-bottom: -1px;
  margin-right: -1px;
}
@media screen and (max-width: 768px) {
  .recruit__info {
    color: #00679e;
    font-size: 20px;
  }
  .recruit__job--title {
    font-size: 20px;
  }
  .recruit__job--detail {
    font-size: 16px;
  }
  .recruit__job--detail dt {
    width: 100%;
    margin-right: 0;
    padding: 0.2rem 0.5rem;
  }
  .recruit__job--detail dd {
    width: 100%;
    margin-right: 0;
    padding: 0.5rem;
  }

}


.yellow {
  background: linear-gradient(transparent 45%, #f7ef90 45%);
}

.arrow {
  width: 41px;
  margin: 18px auto;
}
@media screen and (max-width: 768px) {
  .arrow {
    width: 20px;
    margin: 16px auto;
  }
}
/*# sourceMappingURL=styles.css.map */
