@charset "UTF-8";
/* ブレイクポイント */
.section-top {
  text-align: center;
}
.section-title {
  position: relative;
  color: #004E91;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  z-index: 0;
}
@media (min-width: 992px) {
  .section-title {
    margin-bottom: 64px;
    font-size: 3.6rem;
  }
}
.section-title::before {
  position: absolute;
  content: "";
  background: url(../img/mark.svg) no-repeat center center/contain;
  width: 45px;
  height: 45px;
  top: -21px;
  left: -28px;
  z-index: -1;
}
@media (min-width: 992px) {
  .section-title::before {
    width: 60px;
    height: 60px;
    top: -31px;
    left: -35px;
  }
}
.section-title--primary {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .section-title--primary {
    margin-bottom: 64px;
  }
}
.section-title--contact {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .section-title--contact {
    margin-bottom: 64px;
  }
}

/* cv */
.cv01 {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .cv01 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.cv02 {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .cv02 {
    margin-top: 100px;
    margin-bottom: 140px;
  }
}

.cv03 {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cv03 {
    margin-top: 120px;
  }
}

.cv-box {
  position: relative;
  background-color: #004E91;
  border-radius: 10px;
  padding: 56px 36px 50px;
}
@media (min-width: 992px) {
  .cv-box {
    padding: 48px 0 46px;
  }
}
.cv-box::before {
  position: absolute;
  content: "";
  background: url(../img/cv-bg-left.svg) no-repeat center center/contain;
  width: 63px;
  height: 60px;
  top: 19px;
  left: 18px;
}
@media (min-width: 992px) {
  .cv-box::before {
    width: 74px;
    height: 70px;
    top: 20px;
    left: 22px;
  }
}
.cv-box::after {
  position: absolute;
  content: "";
  background: url(../img/cv-bg-right_sp.svg) no-repeat center center/contain;
  width: 83px;
  height: 86px;
  bottom: 9px;
  right: 9px;
}
@media (min-width: 992px) {
  .cv-box::after {
    background: url(../img/cv-bg-right.svg) no-repeat center center/contain;
    width: 134px;
    height: 134px;
  }
}

.cv__lead {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0 auto 48px;
  width: 87%;
}
@media (min-width: 992px) {
  .cv__lead {
    font-size: 2.4rem;
    line-height: initial;
    margin-bottom: 48px;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .cv-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cv-tel-pc {
  color: #fff;
  display: none;
  font-size: 2.8rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .cv-tel-pc {
    position: relative;
    display: block;
    font-family: "Poppins", sans-serif;
    margin-right: 40px;
    padding-left: 37px;
  }
  .cv-tel-pc::before {
    position: absolute;
    content: "";
    background: url(../img/tel-pc.png) no-repeat center center/contain;
    width: 21px;
    height: 35px;
    bottom: 10px;
    left: 0;
  }
}

.cv-tel-pc span {
  display: block;
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .cv-tel-sp {
    display: none;
  }
}
.cv-tel-sp img {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}

.cv-tel-sp,
.cv-line {
  margin-bottom: 28px;
}
@media (min-width: 992px) {
  .cv-tel-sp,
  .cv-line {
    margin-bottom: initial;
  }
}

.cv-tel-sp,
.cv-line,
.cv-mail {
  width: 100%;
}
@media (min-width: 992px) {
  .cv-tel-sp,
  .cv-line,
  .cv-mail {
    max-width: 260px;
    width: 100%;
  }
}

.cv-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 15px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cv-button:hover {
  opacity: 0.7;
}
.cv-button--tel {
  background-color: #0185D8;
  color: #fff;
}
.cv-button--line {
  background-color: #2FD066;
  color: #fff;
}
.cv-button--mail {
  background-color: #fff;
  color: #004E91;
}

.cv-line img,
.cv-mail img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .cv-line {
    margin-right: 40px;
  }
}

/* header */
.header {
  position: fixed;
  background-color: #1A60A2;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  height: 66px;
  z-index: 20;
}
@media (min-width: 1200px) {
  .header {
    height: 100px;
  }
}

.header-child {
  position: relative;
}

.header__inner {
  height: 66px;
  margin: auto;
  max-width: 1280px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1200px) {
  .header__inner {
    height: 100px;
  }
}

.header__logo {
  max-width: 157px;
  width: 100%;
}
@media (min-width: 992px) {
  .header__logo {
    max-width: 243px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    max-width: 280px;
  }
}

.header-box {
  display: none;
}
@media (min-width: 1200px) {
  .header-box {
    display: block;
    margin-left: auto;
    width: 71%;
  }
}

@media (min-width: 1200px) {
  .header-contact {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    top: -3px;
  }
}

.header-link {
  max-width: 180px;
  width: 100%;
}
.header-link--tel {
  position: relative;
  top: 5px;
}
.header-link--line, .header-link--web {
  height: 43px;
  max-width: 150px;
}

.header-link:not(:last-child) {
  margin-right: 14px;
}

.header-link img {
  max-width: 15px;
  width: 100%;
  height: 22px;
  margin-bottom: 5px;
  position: relative;
  right: -5px;
}

.header-button {
  border-radius: 4px;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 7px 0;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header-button:hover {
  opacity: 0.7;
}
.header-button--tel {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 10px;
  padding: 0;
}
.header-button--line, .header-button--web {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-button--line {
  color: #fff;
  background-color: #2FD066;
  border-radius: 0 0 10px 10px;
  padding: 9px 0;
}
.header-button--web {
  color: #004E91;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 9px 0;
}

.header-button span {
  display: block;
  font-weight: 700;
}

.head-time {
  display: block;
  font-size: 1rem;
  font-weight: 400 !important;
  padding-left: 12px;
}

.header-nav__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-nav__item a {
  color: #fff;
  font-size: 1.6rem;
  display: block;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 0;
}
@media (min-width: 1200px) {
  .header-nav__item a {
    font-size: 1.4rem;
  }
}
.header-nav__item a:hover {
  opacity: 0.7;
}

/* ドロワーメニュー */
.drawer-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  margin-left: auto;
  width: 30px;
}
@media (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
@media (min-width: 1400px) {
  .drawer-icon.is-active .drawer-icon__bars {
    position: absolute;
    top: 30px;
    right: 50px;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  width: 30px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__ruby {
  display: none;
}

.drawer-icon__bars {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}
@media (min-width: 1400px) {
  .drawer-icon__bars {
    width: 0px;
  }
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  height: 1px;
  top: 0;
  right: 0;
}

.drawer-icon__bar1 {
  background: #fff;
  top: 0;
  width: 30px;
}

.drawer-icon__bar2 {
  background: #fff;
  top: 10px;
  width: 30px;
}

.drawer-icon__bar3 {
  background: #fff;
  top: 20px;
  width: 30px;
}

.drawer-content {
  background: rgba(26, 96, 162, 0.9);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  width: 84%;
  position: fixed;
  top: 66px;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  z-index: 299;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__items {
  position: relative;
}
@media (min-width: 1200px) {
  .drawer-content__items {
    margin-left: 32px;
  }
}

.drawer-content__item {
  position: relative;
  font-weight: 600;
}

.drawer-content__item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.drawer-content__item a {
  position: relative;
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 16px 16px 16px 24px;
}
.drawer-content__item a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-bottom.svg) no-repeat center center/contain;
  width: 15px;
  height: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 22px;
}

.drawer-content__bottom {
  margin: 3.2rem 0 3.2rem 0;
}

.drawer-contact:not(:first-child) {
  margin-top: 20px;
}

.drawer-contact img {
  margin-right: 10px;
}

.drawer-accordion {
  position: absolute;
  background: #EFEFEF;
  border: 1px solid #707070;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  right: 24px;
  top: 20px;
}
.drawer-accordion.is-open .drawer-accordion-bar2 {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.drawer-accordion-bar1 {
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #707070;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer-accordion-bar2 {
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #707070;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.drawer-nav {
  display: none;
  padding: 1rem 0;
}

.drawer-nav__link {
  position: relative;
  display: block;
  font-size: 1.4rem !important;
  font-weight: 600;
  padding: 1rem 0 1rem 3rem !important;
}
.drawer-nav__link::after {
  position: absolute;
  content: "";
  background: url(../img/common/arrow-drawer.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 27px;
}

/* footer */
.footer {
  background-color: #004E91;
  padding-top: 14px;
  padding-bottom: 79px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.footer-copyright {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

.bottom-contact {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 30;
}
@media (min-width: 992px) {
  .bottom-contact {
    display: none;
  }
}

.tel,
.line,
.mail {
  width: 33.3%;
  height: 65px;
}

.tel img {
  margin: 0 auto 0;
  width: 40px;
  height: 28px;
}

.line img,
.mail img {
  width: 40px;
  height: 28px;
  margin: 0 auto 0;
}

.bottom-contact__link {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  height: inherit;
  text-align: center;
}
.bottom-contact__link--tel {
  background-color: #0185D8;
  color: #fff;
}
.bottom-contact__link--line {
  background-color: #fff;
  border: 3px solid #28C45E;
  color: #28C45E;
}
.bottom-contact__link--mail {
  background-color: #004E91;
  color: #fff;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  body {
    font-size: 1.8rem;
  }
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.inner01 {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.inner02 {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

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

@media (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

@media (min-width: 992px) {
  .only-sp-tab {
    display: none;
  }
}

/* main-visual */
.main-visual {
  position: relative;
  border-radius: 10px;
  margin-top: 80px;
  padding-top: 175.2%;
  margin-right: 20px;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .main-visual {
    padding-top: 110.5%;
    height: initial;
  }
}
@media (min-width: 992px) {
  .main-visual {
    margin-right: 30px;
    margin-left: 30px;
    padding-top: 26.5%;
  }
}
@media (min-width: 1200px) {
  .main-visual {
    margin-top: 130px;
    padding-top: 25.5%;
  }
}
@media (min-width: 1600px) {
  .main-visual {
    padding-top: 28%;
  }
}
.main-visual--01 {
  background: url(../img/main-visual_sp.jpg) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .main-visual--01 {
    background: url(../img/main-visual_tab.jpg) no-repeat center center/cover;
  }
}
@media (min-width: 992px) {
  .main-visual--01 {
    background: url(../img/main-visual_pc.jpg) no-repeat center center/cover;
  }
}
.main-visual--02 {
  background: url(../img/main-visual02_sp.jpg) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .main-visual--02 {
    background: url(../img/main-visual02_tab.jpg) no-repeat center center/cover;
  }
}
@media (min-width: 992px) {
  .main-visual--02 {
    background: url(../img/main-visual02_pc.jpg) no-repeat center center/cover;
  }
}

.main-visual__inner {
  padding-right: 14px;
  padding-left: 14px;
}
@media (min-width: 768px) {
  .main-visual__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.main-visual__top {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 95%;
}
@media (min-width: 576px) {
  .main-visual__top {
    top: 56px;
  }
}
@media (min-width: 768px) {
  .main-visual__top {
    top: 10%;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
    width: initial;
  }
}
@media (min-width: 1600px) {
  .main-visual__top {
    top: 15%;
  }
}

.main-visual__lead,
.main-visual__title,
.main-visual__text {
  text-align: center;
}
@media (min-width: 768px) {
  .main-visual__lead,
  .main-visual__title,
  .main-visual__text {
    text-align: initial;
  }
}

.main-visual__lead {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
@media (max-width: 374px) {
  .main-visual__lead {
    font-size: 4.26vw;
  }
}
@media (min-width: 576px) {
  .main-visual__lead {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .main-visual__lead {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
  }
  .main-visual__lead::after {
    position: absolute;
    content: "";
    background-color: #B1B1B1;
    width: 180px;
    height: 1px;
    top: 60%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -190px;
  }
}
@media (min-width: 1400px) {
  .main-visual__lead {
    font-size: 2rem;
  }
}
@media (min-width: 1600px) {
  .main-visual__lead {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
}
.main-visual__lead span {
  font-size: 1.8rem;
}
@media (min-width: 1200px) {
  .main-visual__lead span {
    font-size: 2.6rem;
  }
}
@media (min-width: 1400px) {
  .main-visual__lead span {
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
}

.main-visual__title {
  color: #004E91;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 18px;
}
@media (max-width: 374px) {
  .main-visual__title {
    font-size: 5.75vw;
    margin-bottom: 6px;
  }
}
@media (min-width: 768px) {
  .main-visual__title {
    font-size: 3rem;
    letter-spacing: initial;
    line-height: 1.375;
  }
}
@media (min-width: 1200px) {
  .main-visual__title {
    margin-bottom: 22px;
  }
}
@media (min-width: 1400px) {
  .main-visual__title {
    font-size: 3.6rem;
  }
}
@media (min-width: 1600px) {
  .main-visual__title {
    font-size: 4rem;
    margin-bottom: 32px;
  }
}
.main-visual__title span {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .main-visual__title span {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .main-visual__title span {
    font-size: 2.4rem;
  }
}
@media (min-width: 1400px) {
  .main-visual__title span {
    font-size: 2.8rem;
  }
}
.main-visual__title .title-large {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .main-visual__title .title-large {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .main-visual__title .title-large {
    font-size: 2.4rem;
  }
}
@media (min-width: 1400px) {
  .main-visual__title .title-large {
    font-size: 2.8rem;
  }
}

.main-visual__title-01 {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
@media (max-width: 374px) {
  .main-visual__title-01 {
    font-size: 3.5vw;
  }
}
@media (min-width: 768px) {
  .main-visual__title-01 {
    font-size: 3rem;
    letter-spacing: initial;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .main-visual__title-01 {
    font-size: 3.6rem;
  }
}
@media (min-width: 1600px) {
  .main-visual__title-01 {
    font-size: 4rem;
  }
}
.main-visual__title-01 span {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}
@media (max-width: 374px) {
  .main-visual__title-01 span {
    font-size: 3.5vw;
  }
}
@media (min-width: 768px) {
  .main-visual__title-01 span {
    font-size: 2rem;
    letter-spacing: initial;
  }
}
@media (min-width: 1200px) {
  .main-visual__title-01 span {
    font-size: 2.4rem;
  }
}
@media (min-width: 1400px) {
  .main-visual__title-01 span {
    font-size: 2.8rem;
  }
}

.main-visual__title-02 {
  line-height: 1.4;
}
@media (min-width: 768px) {
  .main-visual__title-02 {
    font-size: 3rem;
    line-height: 1.375;
  }
}

.main-visual__textBox {
  text-align: center;
}
@media (min-width: 768px) {
  .main-visual__textBox {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .main-visual__textBox-01 {
    margin-bottom: 8px;
  }
}

.main-visual__text {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(35%, #FFEF2E));
  background: linear-gradient(transparent 65%, #FFEF2E 35%);
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 374px) {
  .main-visual__text {
    font-size: 4vw;
  }
}
@media (min-width: 992px) {
  .main-visual__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 1400px) {
  .main-visual__text {
    font-size: 2rem;
  }
}
@media (min-width: 1600px) {
  .main-visual__text {
    font-size: 2.8rem;
  }
}

.main-visual__bottom01 {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 576px) {
  .main-visual__bottom01 {
    bottom: 40px;
  }
}
@media (min-width: 768px) {
  .main-visual__bottom01 {
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    max-width: 632px;
    width: 100%;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .main-visual__bottom01 {
    position: initial;
    bottom: initial;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
    max-width: 450px;
    min-height: 160px;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .main-visual__bottom01 {
    max-width: 550px;
    min-height: 170px;
    height: 100%;
  }
}
@media (min-width: 1400px) {
  .main-visual__bottom01 {
    max-width: 750px;
    min-height: 240px;
  }
}

.main-visual__content {
  border-radius: 10px;
  background-color: #D6ECFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .main-visual__content {
    width: 100%;
    min-height: 200px;
    height: 100%;
    padding-top: 24px;
  }
}
@media (min-width: 992px) {
  .main-visual__content {
    min-height: initial;
    height: initial;
    padding-top: 6px;
  }
}
@media (min-width: 1400px) {
  .main-visual__content {
    min-height: 240px;
    height: 100%;
    padding-top: 24px;
  }
}

.main-visual__num {
  color: #004E91;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .main-visual__num {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .main-visual__num {
    font-size: 2rem;
  }
}

.main-visual__img {
  border-radius: 10px;
  margin: 0 auto 8px;
  max-width: 77px;
  width: 100%;
}
@media (min-width: 768px) {
  .main-visual__img {
    margin-bottom: 8px;
    max-width: 150px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .main-visual__img {
    max-width: 100px;
  }
}
@media (min-width: 1400px) {
  .main-visual__img {
    max-width: 150px;
    margin-bottom: 14px;
  }
}
.main-visual__img--03 {
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .main-visual__img--03 {
    margin-bottom: 8px;
  }
}
.main-visual__img img {
  border-radius: 10px;
}

.main-visual__bottom-text {
  font-weight: 500;
  font-size: 10px;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  transform: scale(0.9);
}
@media (min-width: 768px) {
  .main-visual__bottom-text {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    -webkit-transform: initial;
            transform: initial;
    -webkit-transform-origin: initial;
            transform-origin: initial;
    transform: initial;
  }
}
@media (min-width: 1200px) {
  .main-visual__bottom-text {
    font-size: 1.5rem;
  }
}
.main-visual__bottom-text--02 {
  letter-spacing: -0.05em;
  display: block;
  font-size: 10px;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  transform: scale(0.9);
}
@media (min-width: 768px) {
  .main-visual__bottom-text--02 {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
  }
}
@media (min-width: 1200px) {
  .main-visual__bottom-text--02 {
    font-size: 1.5rem;
  }
}
.main-visual__bottom-text--03 {
  line-height: 1.2;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .main-visual__bottom-text--03 {
    line-height: initial;
    margin-bottom: initial;
  }
}

.main-visual__bottom02 {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 768px) {
  .main-visual__bottom02 {
    max-width: 632px;
  }
}
@media (min-width: 992px) {
  .main-visual__bottom02 {
    position: initial;
    bottom: initial;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
    max-width: initial;
    width: initial;
  }
}

.main-visual__item {
  background-color: #D6ECFF;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 12px 14px 16px;
}
@media (min-width: 768px) {
  .main-visual__item {
    max-width: 632px;
    width: 100%;
    max-height: 200px;
    height: 100%;
    padding: 28px 20px 38px 20px;
  }
}
@media (min-width: 992px) {
  .main-visual__item {
    max-width: 450px;
    max-height: 160px;
  }
}
@media (min-width: 1200px) {
  .main-visual__item {
    max-width: 550px;
    max-height: 170px;
    padding: 28px 40px 38px 40px;
  }
}
@media (min-width: 1400px) {
  .main-visual__item {
    max-width: 750px;
    max-height: 240px;
    padding: 46px 57px 38px 61px;
  }
}

.main-visual__item-img {
  border-radius: 10px;
  margin-right: 16px;
  width: 125px;
}
@media (min-width: 768px) {
  .main-visual__item-img {
    margin-right: 24px;
    max-width: 232px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .main-visual__item-img {
    max-width: 140px;
  }
}
@media (min-width: 1200px) {
  .main-visual__item-img {
    margin-right: 32px;
    max-width: 168px;
  }
}
@media (min-width: 1400px) {
  .main-visual__item-img {
    margin-right: 46px;
    max-width: 250px;
  }
}

.main-visual__result-month {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (min-width: 768px) {
  .main-visual__result-month {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
  }
}
@media (min-width: 992px) {
  .main-visual__result-month {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .main-visual__result-month {
    font-size: 1.8rem;
  }
}
@media (min-width: 1400px) {
  .main-visual__result-month {
    font-size: 2.2rem;
  }
}

.large {
  color: #004E91;
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .large {
    font-size: 5.5rem;
    letter-spacing: initial;
    padding-left: 18px;
    padding-right: 8px;
  }
}
@media (min-width: 992px) {
  .large {
    font-size: 3.8rem;
  }
}
@media (min-width: 1200px) {
  .large {
    font-size: 4rem;
  }
}
@media (min-width: 1400px) {
  .large {
    font-size: 5rem;
  }
}

.bold {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .bold {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 992px) {
  .bold {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .bold {
    font-size: 1.8rem;
  }
}
@media (min-width: 1400px) {
  .bold {
    font-size: 2.2rem;
  }
}

.main-visual__result-num {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (min-width: 768px) {
  .main-visual__result-num {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 992px) {
  .main-visual__result-num {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .main-visual__result-num {
    font-size: 1.8rem;
  }
}
@media (min-width: 1400px) {
  .main-visual__result-num {
    font-size: 2.2rem;
  }
}

.main-visual__result-note {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .main-visual__result-note {
    font-size: 1.6rem;
    margin-top: 6px;
  }
}

/* primary */
.primary {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#D9EAF4));
  background: linear-gradient(to bottom, #FFFFFF, #D9EAF4);
  padding-top: 120px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .primary {
    padding-top: 140px;
    padding-bottom: 88px;
  }
}

@media (min-width: 768px) {
  .primary-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;
  }
}

.primary-contents__img {
  margin: 0 auto 28px;
  width: 60%;
}
@media (min-width: 768px) {
  .primary-contents__img {
    margin: initial;
    width: 21%;
  }
}

.primary-contents__text {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 36px;
}
@media (min-width: 992px) {
  .primary-contents__text {
    font-size: 2.4rem;
    padding-left: 46px;
  }
}
.primary-contents__text::before {
  position: absolute;
  content: "";
  background: url(../img/check.svg) no-repeat center center/contain;
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
}
@media (min-width: 992px) {
  .primary-contents__text::before {
    width: 30px;
    height: 30px;
    top: 6px;
  }
}

.primary-contents__text:not(:last-child) {
  margin-bottom: 18px;
}

.primary__bottom {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 992px) {
  .primary__bottom {
    margin-top: 72px;
    font-size: 2.4rem;
  }
}

.primary__bottom span {
  color: #0185D8;
  font-size: 2.2rem;
  font-weight: 500;
}
@media (max-width: 374px) {
  .primary__bottom span {
    font-size: 1.9rem;
  }
}
@media (min-width: 992px) {
  .primary__bottom span {
    font-size: 3.6rem;
  }
}

.triangle {
  display: block;
  margin: 28px auto 18px;
  max-width: 124px;
  width: 100%;
}
@media (min-width: 992px) {
  .triangle {
    margin-bottom: 28px;
    max-width: 230px;
  }
}

.primary-note {
  background-color: #fff;
  border-radius: 20px;
  padding: 26px 6px;
  text-align: center;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .primary-note {
    border-radius: 15px;
    padding: 42px 40px 30px;
    letter-spacing: 0.04em;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.primary-note__text01, .primary-note__text02 {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (max-width: 374px) {
  .primary-note__text01, .primary-note__text02 {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .primary-note__text01, .primary-note__text02 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .primary-note__text01, .primary-note__text02 {
    font-size: 2.8rem;
  }
}
.primary-note .primary-note__text01 {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .primary-note .primary-note__text01 {
    margin-bottom: 0;
  }
}
.primary-note .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(35%, #FFEF2E));
  background: linear-gradient(transparent 65%, #FFEF2E 35%);
  font-weight: 500;
  display: inline;
}
.primary-note .color {
  color: #004E91;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .primary-note .color {
    margin-bottom: initial;
  }
}
.primary-note .text {
  line-height: 1.7;
}
.primary-note .text-large {
  font-size: 2.2rem;
}
@media (max-width: 374px) {
  .primary-note .text-large {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .primary-note .text-large {
    font-size: 3.6rem;
  }
}
.primary-note .text-small {
  font-size: 2.2rem;
}
@media (min-width: 1200px) {
  .primary-note .text-small {
    font-size: 2.8rem;
  }
}
.primary-note .text-large.padding {
  display: inline-block;
  padding-bottom: 12px;
}
@media (min-width: 1200px) {
  .primary-note .text-large.padding {
    padding-top: 3px;
  }
}

/* about */
.about {
  background-color: #F8FCFF;
  margin-top: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .about {
    padding-top: initial;
    padding-bottom: initial;
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .about {
    background-color: initial;
  }
}

@media (min-width: 768px) {
  .about-items {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .about-items {
    background-color: #F8FCFF;
  }
}

.about-inner {
  margin: auto;
  max-width: 1080px;
}

.box:not(:last-child) {
  margin-bottom: 72px;
}
@media (min-width: 992px) {
  .box:not(:last-child) {
    margin-bottom: 100px;
  }
}

@media (min-width: 768px) {
  .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contents__img {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .contents__img {
    margin-top: initial;
    width: 41%;
  }
}

@media (min-width: 768px) {
  .contents__content {
    margin-right: 2.4%;
    width: 56.5%;
  }
}

.contents__text {
  line-height: 2;
}
@media (min-width: 992px) {
  .contents__text {
    line-height: 1.777;
  }
}

.about__title {
  position: relative;
  color: #004E91;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 24px;
  padding-left: 30px;
}
@media (min-width: 992px) {
  .about__title {
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    margin-bottom: 48px;
  }
}
.about__title::before {
  position: absolute;
  content: "";
  background: url(../img/square.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.about__text {
  line-height: 2;
}
@media (min-width: 992px) {
  .about__text {
    line-height: 1.777;
  }
}

/* treatment */
.treatment-box {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#D8EEFF), to(#F4FAFF));
  background: linear-gradient(to right, #D8EEFF, #F4FAFF);
  padding-top: 80px;
  padding-right: 28px;
  padding-bottom: 158px;
  padding-left: 28px;
  z-index: 0;
}
@media (min-width: 768px) {
  .treatment-box {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .treatment-box {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .treatment-box {
    padding-right: initial;
    padding-left: initial;
  }
}
.treatment-box::after {
  position: absolute;
  content: "";
  background: url(../img/treatment-bg.png) no-repeat center center/contain;
  width: 305px;
  height: 243px;
  bottom: 75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 768px) {
  .treatment-box::after {
    right: 10%;
    left: initial;
    bottom: 50px;
    -webkit-transform: initial;
            transform: initial;
  }
}
@media (min-width: 1200px) {
  .treatment-box::after {
    width: 42%;
    height: 60%;
  }
}

.treatment-inner {
  margin: auto;
  max-width: 1080px;
}

.treatment-title::before {
  position: absolute;
  content: "";
  background: url(../img/mark-white.svg) no-repeat center center/contain;
  width: 45px;
  height: 45px;
  top: -21px;
  left: -15px;
  z-index: -1;
}
@media (min-width: 768px) {
  .treatment-title::before {
    width: 60px;
    height: 60px;
    top: -31px;
    left: -35px;
  }
}

@media (min-width: 768px) {
  .treatment-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.treatment-contents__img {
  border-radius: 10px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .treatment-contents__img {
    margin-right: 4.5%;
    margin-bottom: initial;
    width: 39%;
  }
}
.treatment-contents__img img {
  border-radius: 10px;
}

@media (min-width: 768px) {
  .treatment-contents__content {
    width: 56%;
  }
}

.treatment-contents__text {
  line-height: 2;
}
@media (min-width: 992px) {
  .treatment-contents__text {
    line-height: 1.777;
  }
}

/* feature */
.feature {
  padding-top: 70px;
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  .feature {
    padding-top: 160px;
    margin-bottom: 140px;
  }
}

.feature__lead {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 auto 40px;
  max-width: 1080px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 992px) {
  .feature__lead {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 100px;
  }
}

@media (min-width: 768px) {
  .feature-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 768px) {
  .feature-contents:nth-child(odd) .feature-contents__img {
    margin-left: calc(50% - 50vw);
  }
}
@media (min-width: 768px) {
  .feature-contents:nth-child(odd) .feature-contents__content {
    margin-right: calc(50% - 50vw);
    padding: 20px;
  }
}
@media (min-width: 1400px) {
  .feature-contents:nth-child(odd) .feature-contents__content {
    padding: 40px;
  }
}

@media (min-width: 768px) {
  .feature-contents:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .feature-contents:nth-child(even) .feature-contents__img {
    margin-right: calc(50% - 50vw);
  }
}
@media (min-width: 768px) {
  .feature-contents:nth-child(even) .feature-contents__content {
    margin-left: calc(50% - 50vw);
    padding: 20px;
  }
}
@media (min-width: 1400px) {
  .feature-contents:nth-child(even) .feature-contents__content {
    padding: 40px;
  }
}

@media (min-width: 768px) {
  .feature-contents__img {
    width: 50%;
  }
}

.feature-contents__content {
  background-color: #F2F8FF;
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .feature-contents__content {
    padding: initial;
    width: 50%;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.feature-contents__num {
  color: #9ED2F4;
  font-size: 7rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .feature-contents__num {
    font-size: 5.5rem;
    line-height: 1.1;
  }
}
@media (min-width: 1400px) {
  .feature-contents__num {
    font-size: 7rem;
  }
}

.feature-contents__title {
  color: #004E91;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .feature-contents__title {
    margin-bottom: 14px;
  }
}
@media (min-width: 992px) {
  .feature-contents__title {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .feature-contents__title {
    font-size: 1.55vw;
  }
}
@media (min-width: 1400px) {
  .feature-contents__title {
    margin-bottom: 16px;
    font-size: 2.2rem;
  }
}
@media (min-width: 1600px) {
  .feature-contents__title {
    font-size: 2.6rem;
  }
}

.feature-contents__text {
  line-height: 2;
}
@media (min-width: 992px) {
  .feature-contents__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .feature-contents__text {
    font-size: 1.18vw;
  }
}
@media (min-width: 1400px) {
  .feature-contents__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .feature-contents__text {
    font-size: 2rem;
  }
}

/* related */
.related {
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .related {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}

.related__inner {
  max-width: 1120px;
}

.related-top {
  text-align: center;
}

.related-box {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .related-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 48px;
  }
}

.related-content {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .related-content {
    margin-right: 3.5%;
    margin-bottom: initial;
    width: 48.5%;
  }
}

.related-content__title {
  color: #004E91;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .related-content__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}

.related-content__text {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .related-content__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}

@media (min-width: 768px) {
  .related-content__img {
    width: 48.5%;
  }
}

.related-bottom {
  padding-bottom: 32px;
  border-bottom: 1px solid #004E91;
}
@media (min-width: 992px) {
  .related-bottom {
    padding-bottom: 24px;
  }
}

.related-bottom__title {
  color: #004E91;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media (min-width: 992px) {
  .related-bottom__title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
.related-bottom__title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #004E91;
  margin-left: 30px;
}

.related-bottom__text {
  position: relative;
  line-height: 1.8;
  padding-left: 14px;
}
@media (min-width: 768px) {
  .related-bottom__text {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .related-bottom__text {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.related-bottom__text::before {
  position: absolute;
  content: "";
  background: url(../img/cost-mark.svg) no-repeat center center/contain;
  width: 6px;
  height: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media (min-width: 768px) {
  .related-bottom__text::before {
    width: 8px;
    height: 8px;
  }
}

.related-bottom__text a {
  color: #0065BC;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.related-bottom__text a:hover {
  opacity: 0.7;
}

/* greeting */
.greeting-inner {
  max-width: 1380px !important;
}

.greeting-box {
  background-color: #F8FCFF;
  padding-top: 64px;
  padding-right: 27px;
  padding-left: 27px;
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  .greeting-box {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .greeting-box {
    padding-right: 0;
    padding-left: 0;
  }
}

.greeting-contents {
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .greeting-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    max-width: 1220px;
    width: 100%;
  }
}
.greeting-contents::before {
  position: absolute;
  content: "";
  background: url(../img/mark.svg) no-repeat center center/contain;
  width: 45px;
  height: 45px;
  bottom: -35px;
  right: -15px;
  z-index: -1;
}
@media (min-width: 992px) {
  .greeting-contents::before {
    width: 60px;
    height: 60px;
    bottom: 0;
    right: 0;
  }
}

.greeting-contents__img {
  border-radius: 10px;
  margin: 0 auto 20px;
  width: 280px;
}
@media (min-width: 768px) {
  .greeting-contents__img {
    margin: initial;
    margin-right: 4.2%;
    width: 37%;
  }
}

@media (min-width: 768px) {
  .greeting-contents__content {
    width: 58.5%;
  }
}

.greeting-contents__text {
  line-height: 2;
}
@media (min-width: 992px) {
  .greeting-contents__text {
    line-height: 1.777;
  }
}

.greeting-contents__text span {
  display: block;
}

.greeting-contents__text span:not(:first-child) {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .greeting-contents__text span:not(:first-child) {
    padding-top: 16px;
  }
}

.greeting-contents__clinic {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 4px;
  text-align: right;
}
@media (min-width: 992px) {
  .greeting-contents__clinic {
    font-size: 1.6rem;
  }
}

.greeting-contents__row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.greeting-contents__position {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-right: 6px;
}
@media (min-width: 992px) {
  .greeting-contents__position {
    font-size: 1.6rem;
  }
}

.greeting-contents__name {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .greeting-contents__name {
    font-size: 2rem;
  }
}

.greeting-contents__name span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 1px;
}
@media (min-width: 768px) {
  .greeting-contents__name span {
    padding-left: 5px;
  }
}

/* step */
.step {
  position: relative;
  background: url(../img/step-bg.jpg) no-repeat center center/cover;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 992px) {
  .step {
    padding-top: 97px;
    padding-bottom: 87px;
  }
}

.step-box {
  background-color: #fff;
  padding: 72px 10px 50px;
}
@media (min-width: 768px) {
  .step-box {
    padding: 72px 64px 50px;
  }
}
@media (min-width: 992px) {
  .step-box {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 120px 157.5px 140px;
  }
}

.step-img {
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 992px) {
  .step-img {
    margin-bottom: 56px;
  }
}

.step-top-pc,
.step-top-sp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.step-top-pc {
  display: none;
}
@media (min-width: 768px) {
  .step-top-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 56px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .step-top-pc .step-top__item {
    width: 160px;
  }
}

.step-top-pc .step-top__item:not(:last-child) {
  position: relative;
}
.step-top-pc .step-top__item:not(:last-child)::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-black.svg) no-repeat center center/contain;
  width: 15px;
  height: 30px;
  bottom: 67px;
  right: -54px;
}

.step-top-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .step-top-sp {
    display: none;
  }
}
.step-top-sp .step-top__item {
  width: 70px;
}

.step-top-sp .step-top__item:not(:last-child) {
  position: relative;
}
.step-top-sp .step-top__item:not(:last-child)::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-black.svg) no-repeat center center/contain;
  width: 5px;
  height: 12px;
  top: 0;
  left: 0;
}

.step-lists__list:not(:last-child) {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .step-lists__list:not(:last-child) {
    margin-bottom: 56px;
  }
}

.step-lists__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .step-lists__title {
    font-size: 2.4rem;
    margin-bottom: 28px;
  }
}

.step-lists__title span {
  color: #0185D8;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.step-lists__text {
  line-height: 2;
}
@media (min-width: 992px) {
  .step-lists__text {
    line-height: 1.777;
  }
}

/* cost */
.cost {
  background-color: #EFF8FD;
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .cost {
    padding-top: 140px;
    padding-bottom: 120px;
  }
}

.cost-inner {
  margin: auto;
  max-width: 990px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.cost__lead {
  font-size: 1.8rem;
  line-height: 1.777;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cost__lead {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 64px;
  }
}

.cost-contents {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 24px;
  padding: 50px 16px;
}
@media (min-width: 768px) {
  .cost-contents {
    margin-bottom: 20px;
    padding: 82px 66px 70px;
  }
}

.cost-contents__row {
  border-bottom: 2px solid #E2F4FD;
  padding-top: 26px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cost-contents__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px;
    padding-bottom: 22px;
    padding-left: 54px;
  }
}

.cost-contents__row:first-child {
  padding-top: 0;
}

.cost-contents__text01 {
  position: relative;
  color: #004E91;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-left: 14px;
}
@media (min-width: 768px) {
  .cost-contents__text01 {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .cost-contents__text01 {
    font-size: 2.4rem;
    margin-right: 46px;
    margin-bottom: initial;
  }
}
.cost-contents__text01::before {
  position: absolute;
  content: "";
  background: url(../img/cost-mark.svg) no-repeat center center/contain;
  width: 6px;
  height: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media (min-width: 768px) {
  .cost-contents__text01::before {
    width: 8px;
    height: 8px;
  }
}

.cost-contents__yen {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .cost-contents__yen {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.cost-contents__img {
  margin-right: 14px;
  max-width: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .cost-contents__img {
    max-width: 34px;
  }
}
@media (min-width: 992px) {
  .cost-contents__img {
    margin-right: 40px;
  }
}

.cost-contents__text02 {
  color: #0185D8;
  font-size: 2.1rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 992px) {
  .cost-contents__text02 {
    font-size: 2.8rem;
  }
}

.cost-contents__text02 span {
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 992px) {
  .cost-contents__text02 span {
    font-size: 2.4rem;
  }
}

.cost-contents__bottom {
  padding-left: 14px;
}
@media (min-width: 992px) {
  .cost-contents__bottom {
    padding-left: 54px;
  }
}

.cost-contents__bottom-text01 {
  color: #004E91;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 28px;
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .cost-contents__bottom-text01 {
    font-size: 2rem;
    margin-top: 32px;
    margin-bottom: 12px;
  }
}

.cost-contents__bottom-text02 {
  font-size: 1.4rem;
}

.cost__note01 {
  font-size: 1.4rem;
  padding-left: 16px;
}
@media (min-width: 576px) {
  .cost__note01 {
    padding-left: initial;
  }
}

.cost__note02 {
  font-size: 1.8rem;
  margin-top: 32px;
  padding-left: 16px;
}
@media (min-width: 576px) {
  .cost__note02 {
    padding-left: initial;
  }
}
@media (min-width: 992px) {
  .cost__note02 {
    font-size: 2rem;
    line-height: 2;
    margin-top: 20px;
  }
}

/* clinic-bg */
.clinic-bg {
  position: relative;
  background: url(../img/clinic-bg.jpg) no-repeat center center/cover;
  padding-top: 43%;
}
@media (min-width: 768px) {
  .clinic-bg {
    padding-top: 44%;
  }
}

/* faq */
.faq {
  position: relative;
  background-color: #E7EFF5;
  padding-top: 20px;
  padding-bottom: 223px;
}
@media (min-width: 768px) {
  .faq {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) {
  .faq::after {
    position: absolute;
    content: "";
    background: url(../img/faq-bg_pc.png) no-repeat center center/contain;
    width: 100%;
    height: 120px;
    bottom: 0;
    left: 0;
  }
}

.faq-box {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 82px 18px 28px;
}
@media (min-width: 768px) {
  .faq-box {
    padding: 98px 64px 110px;
  }
}
@media (min-width: 1200px) {
  .faq-box {
    padding: 98px 145px 110px;
  }
}
.faq-box::after {
  position: absolute;
  content: "";
  background: url(../img/faq-bg_sp.png) no-repeat center center/contain;
  width: 303px;
  height: 155px;
  bottom: -186px;
  left: 0;
}
@media (min-width: 768px) {
  .faq-box::after {
    display: none;
  }
}

.faq-items {
  max-width: 960px;
  width: 100%;
  margin: auto;
}

.faq-items__box:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .faq-items__box:not(:last-child) {
    margin-bottom: 40px;
  }
}

.faq-items__question {
  background-color: #0185D8;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 16px 21px 16px 38px;
}
@media (min-width: 768px) {
  .faq-items__question {
    padding: 24px 72px;
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  .faq-items__question {
    font-size: 2rem;
    padding: 24px 92px 24px 74px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 1200px) {
  .faq-items__question {
    padding: 24px 92px 24px 74px;
  }
}
.faq-items__question::before {
  position: absolute;
  content: "Q";
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  top: 9px;
  left: 10px;
}
@media (min-width: 768px) {
  .faq-items__question::before {
    width: 32px;
    height: 40px;
    top: 20px;
    left: 17px;
  }
}
@media (min-width: 992px) {
  .faq-items__question::before {
    font-size: 3.2rem;
    left: 30px;
  }
}

@media (min-width: 768px) {
  .faq-items__question-icon {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 20px;
    width: 30px;
    height: 30px;
  }
}
.faq-items__question-icon.is-open .faq-items__question-bar2 {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

@media (min-width: 768px) {
  .faq-items__question-bar1 {
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #0185D8;
    border: 20px;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media (min-width: 768px) {
  .faq-items__question-bar2 {
    position: absolute;
    width: 2px;
    height: 12px;
    background-color: #0185D8;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
}

.faq-items__answer {
  position: relative;
  display: none;
}
@media (min-width: 768px) {
  .faq-items__answer::before {
    position: absolute;
    content: "A";
    color: #004E91;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    width: 32px;
    height: 40px;
    left: 21px;
    top: 16px;
  }
}
@media (min-width: 992px) {
  .faq-items__answer::before {
    font-size: 3.2rem;
    top: 17px;
    left: 30px;
  }
}

.faq-items__answer-content {
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  padding: 12px 10px 20px 9px;
}
@media (min-width: 768px) {
  .faq-items__answer-content {
    padding: 20px 72px;
  }
}
@media (min-width: 992px) {
  .faq-items__answer-content {
    font-size: 1.8rem;
    line-height: 1.777;
    padding: 32px 83px 14px 74px;
  }
}
@media (min-width: 1200px) {
  .faq-items__answer-content {
    padding: 32px 83px 14px 74px;
  }
}

.faq-items__answer-content a {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.faq-items__answer-content a:hover {
  opacity: 0.7;
}

.faq-items__answer-content a {
  color: #3D8EDF;
  text-decoration: underline;
}

/* info */
.info {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .info {
    padding-top: 160px;
    padding-bottom: 98px;
  }
}

.info-img {
  border-radius: 10px;
  position: relative;
  background: url(../img/clinic-bg02.jpg) no-repeat center center/cover;
  padding-top: 31.4%;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .info-img {
    margin-bottom: 72px;
    padding-top: 31.4%;
  }
}

@media (min-width: 992px) {
  .info-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 992px) {
  .info-content {
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 4%;
    width: 46%;
  }
}

.info-content__img {
  margin-bottom: 20px;
  max-width: 260px;
  width: 100%;
}
@media (min-width: 768px) {
  .info-content__img {
    margin-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .info-content__img {
    max-width: 330px;
  }
}

.info-content__address {
  font-size: 1.6rem;
  font-weight: 500;
}

.info-content__address span {
  display: block;
  font-size: 1.4rem;
}

.info-content__address01 {
  margin-bottom: 6px;
}

.info-content__note {
  margin-top: 16px;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .info-content__note {
    margin-bottom: 20px;
  }
}

.info-content__text {
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  padding-left: 16px;
}
.info-content__text::before {
  position: absolute;
  content: "";
  background: url(../img/dotted.svg) no-repeat center center/contain;
  width: 6px;
  height: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.info-content__schedule {
  margin-bottom: 20px;
}

.info-content__time {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .info-content__time {
    font-size: 1.8rem;
  }
}

.info-content__pay {
  margin-bottom: 20px;
}

.info-content__pay-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .info-content__pay-title {
    font-size: 1.8rem;
  }
}

.info-content__pay-text {
  font-size: 1.4rem;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .info-content__pay-text {
    font-size: 1.6rem;
  }
}

.info-content__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .info-content__bottom {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .info-content__bottom {
    margin-bottom: initial;
  }
}

.info-content__bottom-arrow {
  position: relative;
  margin-right: 8px;
  width: 20px;
  top: -8px;
}
@media (min-width: 992px) {
  .info-content__bottom-arrow {
    width: 26px;
  }
}

.info-content__bottom-link {
  border-bottom: 1px solid #006DED;
  color: #006DED;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .info-content__bottom-link {
    font-size: 1.6rem;
  }
}
.info-content__bottom-link:hover {
  opacity: 0.7;
}

.access-map {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .access-map {
    margin-bottom: initial;
    width: 50%;
  }
}

.iframe-wrap {
  width: 100%;
  padding-top: 88.6567164179%;
  position: relative;
}
.iframe-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .iframe-wrap {
    padding-top: 125.4612546125%;
  }
}

/* contact */
.contact {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .contact {
    margin-bottom: 90px;
  }
}

.contact-bg {
  position: relative;
  background: url(../img/contact-bg_sp.jpg) no-repeat center center/cover;
  border-radius: 10px;
  padding: 26px 16px 17px;
}
@media (min-width: 768px) {
  .contact-bg {
    background: url(../img/contact-bg.jpg) no-repeat center center/cover;
    padding: 72px 80px 64px;
  }
}

.contact-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 72px 20px 45px;
}
@media (min-width: 768px) {
  .contact-box {
    padding: 73px 80px 88px 80px;
  }
}
@media (min-width: 1200px) {
  .contact-box {
    padding: 73px 140px 88px 140px;
  }
}

.contact-title {
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .contact-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contact-row:not(:last-child) {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .contact-row-line {
    margin-top: 10px;
    margin-bottom: 32px;
  }
}

.contact-row__text {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .contact-row__text {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .contact-row__text {
    width: initial;
  }
}

.contact-tel-pc {
  display: none;
}
@media (min-width: 768px) {
  .contact-tel-pc {
    display: block;
  }
}
.contact-tel-pc .contact-button--tel {
  background-color: initial;
  color: #333;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.contact-tel-pc img {
  margin-right: 10px;
  width: 34px;
}

.contact-tel-sp {
  width: 100%;
}
@media (min-width: 768px) {
  .contact-tel-sp {
    display: none;
  }
}
.contact-tel-sp .contact-button--tel img {
  margin-right: 12px;
  width: 30px;
  height: 30px;
}

.contact-tel-sp,
.contact-line,
.contact-mail {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .contact-tel-sp,
  .contact-line,
  .contact-mail {
    margin-bottom: initial;
  }
}

.contact-tel-pc,
.contact-line,
.contact-mail {
  width: 100%;
}
@media (min-width: 992px) {
  .contact-tel-pc,
  .contact-line,
  .contact-mail {
    margin-right: 30px;
    max-width: 320px;
    width: 100%;
  }
}

.contact-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 15px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.contact-button:hover {
  opacity: 0.7;
}
.contact-button--tel {
  background-color: #0185D8;
  color: #fff;
}
.contact-button--line {
  background-color: #2FD066;
  color: #fff;
}
@media (min-width: 992px) {
  .contact-button--line {
    font-size: 2rem;
    padding: 18px 0;
  }
}
.contact-button--mail {
  background-color: #004E91;
  color: #fff;
}
@media (min-width: 992px) {
  .contact-button--mail {
    font-size: 2rem;
    padding: 18px 0;
  }
}

.contact-line img,
.contact-mail img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}
@media (min-width: 992px) {
  .contact-line img,
  .contact-mail img {
    width: 44px;
    height: 44px;
  }
}

.contact-mail img {
  background-color: #004E91;
}/*# sourceMappingURL=style.css.map */