@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "";
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
ul,
ol,
summary {
  padding-left: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

a {
  text-decoration: none;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1240px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

.sec-cta__box {
  margin-right: 16px;
  margin-left: 16px;
  padding: 20px 16px;
  border: 2px solid #707070;
  border-radius: 30px;
  background-color: #fff;
  -webkit-box-shadow: 10px 10px 7px rgba(0, 0, 0, .16);
          box-shadow: 10px 10px 7px rgba(0, 0, 0, .16);
}
@media screen and (min-width: 768px) {
  .sec-cta__box {
    margin-right: 50px;
    margin-left: 50px;
    padding: 64px;
  }
}

.sec-cta__box:not(.no-margin) {
  margin-top: -16px;
}
@media screen and (min-width: 768px) {
  .sec-cta__box:not(.no-margin) {
    margin-top: -50px;
  }
}

.sec-cta__title {
  text-align: center;
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .sec-cta__title {
    font-size: 46px;
  }
}

.cta input[type=text] {
  padding: 8px;
  border: 1px solid gray;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .cta input[type=text] {
    max-width: 500px;
  }
}
.cta input[type=submit] {
  border-radius: 10px;
  background-color: #06a859;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .cta input[type=submit] {
    font-size: 20px;
  }
}

.sec-cta__body {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .sec-cta__body {
    margin-right: auto;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.sec-cta__text {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .sec-cta__text {
    margin-right: auto;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
  }
}

.sec-cta__button[type=submit] {
  border-color: #18c16f;
  border-radius: 10px;
  background-color: #18c16f;
  color: #fff;
  text-wrap: wrap;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.sec-cta input[type=text] {
  padding: 4px;
  border: 1px solid #111;
  font-size: 16px;
}

.fv {
  position: relative;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .fv {
    padding: 80px 0;
  }
}
.fv::before, .fv::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (min-width: 768px) {
  .fv::before, .fv::after {
    width: 24%;
    height: 100%;
  }
}
.fv::before {
  top: 0;
  background-image: url(../images/fv_bg-right.png);
  background-position: 100% 0;
}
@media screen and (min-width: 768px) {
  .fv::before {
    right: 0;
  }
}
.fv::after {
  bottom: 0;
  left: 0;
  background-image: url(../images/fv_bg-left.png);
  background-position: 0 0;
}
@media screen and (min-width: 768px) {
  .fv::after {
    background-position: 0 100%;
  }
}

.fv__inner {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .fv__text-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -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;
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .fv__img-box {
    width: 50%;
  }
}

.fv__title {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 40px;
  }
}

.fv__title--blue {
  display: inline-block;
  color: #00a5fa;
}

.fv__text {
  margin-top: 16px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 20px;
  }
}

.sec-case-item {
  border-radius: 12px;
  -webkit-box-shadow: 2px 2px 4px rgba(17, 17, 17, .3);
          box-shadow: 2px 2px 4px rgba(17, 17, 17, .3);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .sec-case-item:hover {
    -webkit-transform: translate(4px, 4px);
            transform: translate(4px, 4px);
  }
}

.sec-case-item__link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: #fff;
}

.sec-case-item__img {
  aspect-ratio: 400/300;
}

.sec-case-item__text-box {
  padding: 10px;
}

.sec-case-item__text {
  margin-top: 8px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .sec-case-item__text {
    font-size: 18px;
  }
}

.sec-case {
  position: relative;
  background-color: #f6fcff;
}

@media screen and (min-width: 768px) {
  .sec-case__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

.sec-case__item + .sec-case__item {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .sec-case__item + .sec-case__item {
    margin-top: 0;
  }
}

.sec {
  padding: 50px 0;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .sec {
    padding: 80px 0;
  }
}

.sec__title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sec__title {
    font-size: 40px;
  }
}

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

.sec__body {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .sec__2col-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
  }
  .sec__2col-wrapper > * {
    width: 50%;
  }
}
.sec__2col-wrapper::before, .sec__2col-wrapper::after {
  content: none;
}

.sec__details {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .sec__details {
    font-size: 18px;
  }
}
.sec__details + .sec__details {
  margin-top: 20px;
}

.sec__summary {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #06a859;
  font-size: 18px;
  font-weight: bold;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .sec__summary {
    font-size: 22px;
  }
}
.sec__summary::before {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon_plus.png);
  content: "";
}

.sec__details[open] .sec__summary {
  margin-bottom: 20px;
}
.sec__details[open] .sec__summary::before {
  content: none;
}
.sec__details[open] .sec__summary::after {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #eee;
  content: "";
}

.sec__icon-box {
  display: inline-block;
  max-width: 36px;
}

@media screen and (min-width: 768px) {
  .tabs-body-item__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.tabs-body-item__img-box {
  -webkit-box-flex: 500px;
      -ms-flex: 500px 0 0px;
          flex: 500px 0 0;
}

.tabs-body-item__text-box {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .tabs-body-item__text-box {
    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;
    margin-top: 0;
  }
}

.tabs-body-item__title {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .tabs-body-item__title {
    font-size: 28px;
  }
}

.tabs-body-item__text {
  margin-top: 12px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .tabs-body-item__text {
    font-size: 20px;
  }
}

.tabs-body-item__link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid #06a859;
  border-radius: 10px;
  color: #06a859;
}
@media screen and (min-width: 768px) {
  .tabs-body-item__link {
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
  }
  .tabs-body-item__link:hover {
    background-color: #06a859;
    color: #fff;
  }
}

.tabs-body {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .tabs-body {
    padding: 0 100px;
  }
}

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

.tabs-body__item:not(:first-child) {
  display: none;
}

.tabs-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs-menu__item {
  padding: 10px 12px;
  border-bottom: 4px solid #eee;
  color: #4a4d49;
  font-size: 18px;
  -webkit-transition: color 0.3s, border-bottom-color 0.3s;
  transition: color 0.3s, border-bottom-color 0.3s;
}
@media screen and (min-width: 768px) {
  .tabs-menu__item {
    padding: 10px 40px;
    font-size: 22px;
  }
}

.tabs-menu__item.active {
  border-bottom-color: #18c16f;
  color: #18c16f;
}

.tabs__body {
  margin-top: 30px;
}

.u-blue {
  color: #00a5fa;
}

.u-bg-skyblue {
  background-color: #f6fcff;
}
/*# sourceMappingURL=styles.css.map */
