@charset "UTF-8";
/*
|--------------------------------------------------------------------------
| @acab/reset.css
|--------------------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@700&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*
|--------------------------------------------------------------------------
| Settings
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Mixins
|--------------------------------------------------------------------------
*/
.--fss {
  font-size: 1.4rem;
}

.--fsm {
  font-size: 1.6rem;
}

.--fsl {
  font-size: 1.8rem;
}

.--fsxl {
  font-size: 2rem;
}

.--fsxxl {
  font-size: 2.2rem;
}

.--bold {
  font-weight: bold;
}

.--normal {
  font-weight: normal;
}

.--accent {
  color: #D64D00;
}

.--mt20 {
  margin-top: 20px;
}

.--mt30 {
  margin-top: 30px;
}

.--txc {
  text-align: center;
}

.--txr {
  text-align: right;
}

.--textLink {
  color: #000;
  text-decoration: underline;
}
.--textLink:hover, .--textLink:focus, .--textLink:active {
  text-decoration: none;
}

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

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

/*
|--------------------------------------------------------------------------
| Original CSS
|--------------------------------------------------------------------------
*/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  background: #fff;
  color: #000;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

body, body * {
  box-sizing: border-box;
}

p + p {
  margin-top: 1em;
}

.header {
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  transition: background 0.3s, height 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
}
.header--fixed {
  background: white;
  height: 70px;
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .header--fixed {
    height: 50px;
    background: none;
    box-shadow: none;
  }
}
.header__title {
  margin-left: 0;
  margin-right: auto;
  width: 400px;
  background: #fff;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1009px) {
  .header__title {
    width: 290px;
  }
}
@media screen and (max-width: 767px) {
  .header__title {
    width: 200px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  }
}
.header__nav {
  flex: 1;
  margin-right: 6px;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__contact {
  background: #fff;
  width: 160px;
  height: 100%;
}
@media screen and (max-width: 1009px) {
  .header__contact {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .header__contact {
    width: 100px;
  }
}

.title {
  height: 100%;
}
.title__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  padding: 15px 60px 0px 18px;
  color: #000;
  transition: background 0.3s, opacity 0.3s;
}
@media screen and (max-width: 1009px) {
  .title__link {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .title__link {
    padding: 7px 10px 0 5px;
  }
}
.title__text {
  display: block;
  line-height: 1;
  font-weight: normal;
  font-size: 1.6rem;
  padding-left: 8px;
  overflow: hidden;
  transition: max-height 0.3s;
  max-height: 30px;
}
@media screen and (max-width: 1009px) {
  .title__text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .title__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .title__logo {
    width: 160px;
    margin-left: 4px;
    margin-top: -1px;
  }
}
.title--fixed {
  padding-top: 3px;
}
@media screen and (max-width: 1009px) {
  .title--fixed {
    padding-top: 10px;
  }
}
.title--fixed .title__link {
  padding-top: 0;
}
.title--fixed .title__link:hover, .title--fixed .title__link:focus, .title--fixed .title__link:active {
  opacity: 0.6;
}
.title--fixed .title__text {
  max-height: 0;
}
@media screen and (max-width: 767px) {
  .title--fixed .title__text {
    max-height: 30px;
  }
}

.gNav {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.gNavList {
  font-size: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1009px) {
  .gNavList {
    font-size: 1.4rem;
  }
}
.gNavList__item {
  margin-left: 1em;
  margin-right: 1em;
}
.gNavList__link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}
.gNavList__link::after {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s;
}
.gNavList__link--current {
  opacity: 0.6;
}
.gNavList__link--current::after {
  width: 100%;
}
.gNavList__link:hover::after, .gNavList__link:focus::after, .gNavList__link:active::after {
  width: 100%;
}
.gNavList__link--fixed {
  color: #00538F;
}
.gNavList__link--fixed::after {
  background: #00538F;
}

.headerContact {
  font-size: 1.8rem;
  background: linear-gradient(101.62deg, #00538F 0.06%, #057A9F 100%);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  position: relative;
}
@media screen and (max-width: 1009px) {
  .headerContact {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .headerContact {
    font-size: 1.2rem;
    padding-top: 9px;
  }
}
.headerContact__icon {
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .headerContact__icon {
    width: 12px;
  }
}
.headerContact__text {
  margin-top: 3px;
}
.headerContact::after {
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 0px;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0);
  transition: width 0.3s, height 0.3s, left 0.3s, top 0.3s, background 0.3s;
}
.headerContact:hover::after, .headerContact:focus::after, .headerContact:active::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
}

.contactForm__inner {
  margin-left: auto;
  margin-right: auto;
  width: 560px;
  height: 120px;
}
@media screen and (max-width: 1009px) {
  .contactForm__inner {
    max-width: 560px;
    width: calc(100% - 40px);
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .contactForm__inner {
    width: 100%;
    height: 80px;
  }
}
.contactForm__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #D64D00;
  color: #fff;
  border-radius: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 1009px) {
  .contactForm__link {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .contactForm__link {
    font-size: 1.8rem;
    border-radius: 5px;
  }
}
.contactForm__link::before {
  content: "";
  display: block;
  width: 20px;
  height: 6px;
  position: absolute;
  right: 40px;
  margin-top: -4px;
  border: #fff solid;
  border-width: 0 2px 1px 0;
  transform: skew(50deg, 0);
  transition: width 0.3s, right 0.3s;
}
@media screen and (max-width: 767px) {
  .contactForm__link::before {
    right: 20px;
  }
}
.contactForm__link::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s;
}
.contactForm__link:hover::before, .contactForm__link:focus::before, .contactForm__link:active::before {
  width: 50px;
  right: 10px;
}
.contactForm__link:hover::after, .contactForm__link:focus::after, .contactForm__link:active::after {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  left: 0;
  top: 0;
}

.section--white {
  background: #fff;
}
.section--gray {
  background: #F6F6F6;
}
.section--blue {
  color: #fff;
  background: #00538F;
  background: linear-gradient(101.62deg, #00538F 0.06%, #057A9F 100%);
}
.section__inner {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1009px) {
  .section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .section__inner {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 768px) {
  .section__inner--zero {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section__inner--xxs {
    padding-top: 40px;
  }
  .section__inner--xs {
    padding-top: 50px;
  }
  .section__inner--s {
    padding-top: 60px;
  }
  .section__inner--m {
    padding-top: 70px;
  }
  .section__inner--l {
    padding-top: 80px;
  }
}

.sectionTitle {
  font-size: 4rem;
}
@media screen and (max-width: 1009px) {
  .sectionTitle {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .sectionTitle {
    font-size: 2.4rem;
    text-align: center;
  }
}
.sectionTitle::after {
  content: attr(data-en);
  display: block;
  font-size: 2.4rem;
  color: #00538F;
}
@media screen and (max-width: 1009px) {
  .sectionTitle::after {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sectionTitle::after {
    font-size: 1.8rem;
  }
}
.sectionTitle--txc {
  text-align: center;
}
.sectionTitle--white::after {
  color: #85CAD7;
}

.balloon {
  text-align: center;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .balloon {
    padding-bottom: 16px;
  }
}
.balloon__inner {
  display: inline-block;
  background: linear-gradient(101.62deg, #00538F 0.06%, #057A9F 100%);
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  border-radius: 30px;
  height: 60px;
  line-height: 60px;
  padding-left: 2em;
  padding-right: 2em;
  min-width: 360px;
  z-index: 1;
}
@media screen and (max-width: 1009px) {
  .balloon__inner {
    min-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .balloon__inner {
    font-size: 1.7rem;
    height: 40px;
    line-height: 40px;
    min-width: 240px;
    padding-left: 1em;
    padding-right: 1em;
  }
}
.balloon__inner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  left: calc(50% - 6px);
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #016697 transparent transparent transparent;
}

.box {
  border-radius: 10px;
  padding: 30px 40px;
}
.box--white {
  background: #fff;
}
.box--gray {
  background: #F6F6F6;
}

.price {
  text-align: center;
}
.price__inner {
  color: #D64D00;
  font-size: 6.4rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 1009px) {
  .price__inner {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .price__inner {
    font-size: 4rem;
  }
}
.price__unit {
  font-size: 3.2rem;
}
@media screen and (max-width: 1009px) {
  .price__unit {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .price__unit {
    font-size: 2rem;
  }
}
.price__tax {
  position: absolute;
  right: -4em;
  bottom: 6px;
  color: #000;
  font-size: 2.4rem;
}
@media screen and (max-width: 1009px) {
  .price__tax {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .price__tax {
    font-size: 1.4rem;
    bottom: 4px;
  }
}

.indentList--item {
  text-indent: -1em;
  padding-left: 1em;
}

.mainVisual {
  position: relative;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.mainVisual__slick {
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mainVisual__slick {
    max-height: 580px;
  }
}
.mainVisual__slick::before {
  content: "";
  display: block;
  padding-top: 52.8571428571%;
}
@media screen and (max-width: 767px) {
  .mainVisual__slick::before {
    padding-top: 101.3333333333%;
  }
}
.mainVisual__slick .slick {
  transition: opacity 0.1s;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mainVisual__slick .slick {
    max-height: 580px;
    overflow: hidden;
  }
}
.mainVisual__inner {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: calc(100% - 100px);
}
@media screen and (max-width: 767px) {
  .mainVisual__inner {
    top: 60px;
    height: auto;
  }
}
.mainVisual__catchcopy {
  font-size: 4.6vw;
  margin-top: 4.6vw;
}
@media screen and (max-width: 1009px) {
  .mainVisual__catchcopy {
    margin-top: 2.6vw;
    font-size: 4.2vw;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__catchcopy {
    font-size: 8.6vw;
    margin-top: 5vw;
  }
}
.mainVisual__about {
  font-size: 2.28vw;
  margin-top: 1.2vw;
  margin-bottom: 3vw;
}
@media screen and (max-width: 1009px) {
  .mainVisual__about {
    margin-top: 0.8vw;
    margin-bottom: 1.4vw;
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__about {
    margin-top: 3vw;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
.mainVisual__contact {
  position: absolute;
  width: 100%;
  bottom: 8vw;
  left: 0;
}
@media screen and (max-width: 767px) {
  .mainVisual__contact {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 18vw;
  }
}
.mainVisual__contact .contactForm__inner {
  height: 8.5vw;
}
@media screen and (max-width: 767px) {
  .mainVisual__contact .contactForm__inner {
    height: 80px;
  }
}
.mainVisual__contact .contactForm__link {
  pointer-events: all;
}

.campaignBanner {
  color: #000;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #F0C93F;
  padding: 24px 40px 40px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1009px) {
  .campaignBanner {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 767px) {
  .campaignBanner {
    margin-top: -35px;
    padding: 16px 10px 30px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.campaignBanner:hover, .campaignBanner:focus, .campaignBanner:active {
  opacity: 0.6;
}
.campaignBanner__title {
  width: 100%;
  line-height: 1.32;
  font-size: 4.8rem;
  font-weight: 700;
  font-family: "BIZ UDGothic", sans-serif;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1009px) {
  .campaignBanner__title {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 767px) {
  .campaignBanner__title {
    font-size: 2.4rem;
  }
}
.campaignBanner__title::before, .campaignBanner__title::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: #000;
}
@media screen and (max-width: 767px) {
  .campaignBanner__title::before, .campaignBanner__title::after {
    width: 2px;
    height: 1.1em;
    position: absolute;
  }
}
.campaignBanner__title::before {
  transform: rotate(-45deg) translateX(-0.55em) translateY(-0.3em);
}
@media screen and (max-width: 767px) {
  .campaignBanner__title::before {
    left: calc(50% - 6.3em);
    bottom: 7px;
  }
}
.campaignBanner__title::after {
  transform: rotate(45deg) translateX(0.55em) translateY(-0.3em);
}
@media screen and (max-width: 767px) {
  .campaignBanner__title::after {
    right: calc(50% - 6.3em);
    bottom: 7px;
  }
}
.campaignBanner__img {
  width: 345px;
  margin-bottom: -10px;
  margin-right: 32px;
  margin-left: -20px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .campaignBanner__img {
    order: 3;
    width: 240px;
    margin: 0 auto -20px;
  }
}
.campaignBanner__text {
  font-weight: bold;
  font-size: 1.9rem;
  margin-top: 21px;
}
@media screen and (max-width: 1009px) {
  .campaignBanner__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .campaignBanner__text {
    padding-left: 10px;
    padding-right: 10px;
    order: 2;
    font-size: 1.4rem;
    margin-top: 5px;
  }
}

.aboutBlock {
  display: flex;
}
.aboutBlock__img {
  max-width: 700px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .aboutBlock__img {
    display: none;
  }
}
.aboutBlock__img img {
  height: 100%;
}
.aboutBlock__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  padding-top: 40px;
  padding-bottom: 40px;
}
.aboutBlock__text p {
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .aboutBlock__text p {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.meritList {
  padding-top: 20px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.meritList__item {
  width: 300px;
  margin-left: 15px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .meritList__item {
    margin: 0;
    width: 100%;
  }
}
.meritList__icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .meritList__icon {
    width: 160px;
  }
}

.merit__title {
  text-align: center;
  font-size: 2.3rem;
  color: #00538F;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .merit__title {
    font-size: 1.8rem;
  }
}
.merit__title span {
  display: block;
}
@media screen and (max-width: 767px) {
  .merit__title span {
    display: inline-block;
  }
}
.merit__detail {
  margin-top: 8px;
  padding-bottom: 30px;
}

.usageList {
  padding-top: 10px;
}
.usageList__item {
  display: flex;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .usageList__item {
    flex-direction: column;
  }
}
.usageList__dl {
  flex: 1;
}
.usageList__dl--left {
  order: 1;
}
@media screen and (max-width: 767px) {
  .usageList__dl--left {
    order: 1;
  }
}
.usageList__dl--right {
  order: 2;
}
@media screen and (max-width: 767px) {
  .usageList__dl--right {
    order: 1;
  }
}
.usageList__img {
  width: 394px;
}
@media screen and (max-width: 1009px) {
  .usageList__img {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .usageList__img {
    width: 240px;
  }
}
.usageList__img--left {
  order: 1;
  margin-right: 30px;
}
@media screen and (max-width: 1009px) {
  .usageList__img--left {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .usageList__img--left {
    order: 2;
    margin: 10px auto 0;
  }
}
.usageList__img--right {
  order: 2;
  margin-left: 30px;
}
@media screen and (max-width: 1009px) {
  .usageList__img--right {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .usageList__img--right {
    order: 2;
    margin: 10px auto 0;
  }
}

.usage__title {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 1009px) {
  .usage__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .usage__title {
    font-size: 1.8rem;
  }
}
.usage__title::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #00538F;
  margin-top: 22px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .usage__title::after {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

.featureList {
  overflow: hidden;
}
.featureList__ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-left: -12px;
  margin-right: -12px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1009px) {
  .featureList__ul {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .featureList__ul {
    flex-direction: column;
    align-items: center;
  }
}
.featureList__item {
  margin-left: 12px;
  margin-right: 12px;
  width: 330px;
  background: #fff;
  border-radius: 10px;
  color: #000;
  padding: 30px 40px 22px;
  margin-top: 20px;
  border: 4px solid #F6F6F6;
}
@media screen and (max-width: 767px) {
  .featureList__item {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 20px 20px;
  }
}

.feature__title {
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .feature__title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }
}
.feature__iconCircle {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background: linear-gradient(101.62deg, #00538F 0.06%, #057A9F 100%);
}
@media screen and (max-width: 767px) {
  .feature__iconCircle {
    width: 60px;
    height: 60px;
  }
}
.feature__iconImg {
  max-width: 48px;
}
@media screen and (max-width: 767px) {
  .feature__iconImg {
    max-width: 32px;
  }
}
.feature__text {
  margin-top: 20px;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  color: #00538F;
  text-align: center;
}
.feature__text span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .feature__text {
    flex: 1;
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.4;
  }
}

.optionList {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .optionList {
    flex-direction: column;
  }
}
.optionList__item {
  width: calc(50% - 20px);
  background: #fff;
  border-radius: 10px;
  padding: 30px 40px;
}
@media screen and (max-width: 1009px) {
  .optionList__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .optionList__item {
    width: 100%;
    margin-bottom: 10px;
  }
}

.faqList {
  margin-top: 35px;
  padding-top: 20px;
  padding-bottom: 30px;
  border: 10px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .faqList {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.faqList__item {
  padding: 30px 60px 20px;
}
@media screen and (max-width: 767px) {
  .faqList__item {
    padding: 30px 20px 30px;
  }
}
.faqList__item:not(:last-child) {
  border-bottom: 1px solid #D8D8D8;
}

.faq__question {
  background: url(../img/icon_q.svg) left center no-repeat;
  padding-left: 60px;
  color: #00538F;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .faq__question {
    line-height: 1.2;
    font-size: 1.8rem;
    padding-left: 36px;
    background-size: 24px;
  }
}
.faq__questionIcon {
  font-family: "BIZ UDGothic", sans-serif;
}
.faq__answer {
  background: url(../img/icon_a.svg) left top 5px no-repeat;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding-left: 36px;
    background-size: 24px;
  }
}

.footer {
  text-align: center;
  background: #F6F6F6;
  padding-top: 42px;
  padding-bottom: 12px;
}
.footer__logo {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}
.footer__sns {
  margin-bottom: 30px;
}
.footer__nav {
  margin-bottom: 14px;
}
.footer__company {
  margin-bottom: 32px;
}

.snsList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 137px;
  margin-left: auto;
  margin-right: auto;
}
.snsList__link {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.snsList__link svg .circle {
  fill: #fff;
  transition: fill 0.3s;
}
.snsList__link svg .facebook {
  fill: #3B5998;
  transition: fill 0.3s;
}
.snsList__link svg .twitter {
  fill: #1DA1F2;
  transition: fill 0.3s;
}
.snsList__link:hover .facebook,
.snsList__link:hover .twitter, .snsList__link:focus .facebook,
.snsList__link:focus .twitter, .snsList__link:active .facebook,
.snsList__link:active .twitter {
  fill: #fff;
}
.snsList__link:hover .circle--facebook, .snsList__link:focus .circle--facebook, .snsList__link:active .circle--facebook {
  fill: #3B5998;
}
.snsList__link:hover .circle--twitter, .snsList__link:focus .circle--twitter, .snsList__link:active .circle--twitter {
  fill: #1DA1F2;
}

.fNavList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.fNavList__item {
  margin-left: 1em;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .fNavList__item {
    margin: 0.25em 1em;
  }
}
.fNavList__link {
  display: block;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}
.fNavList__link::after {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 0;
  height: 1px;
  background: #00538F;
  transition: width 0.3s;
}
.fNavList__link:hover, .fNavList__link:focus, .fNavList__link:active {
  color: #00538F;
}
.fNavList__link:hover::after, .fNavList__link:focus::after, .fNavList__link:active::after {
  width: 100%;
}

/*
|--------------------------------------------------------------------------
| Slick CSS
|--------------------------------------------------------------------------
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../js/slick-1.8.1/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../js/slick-1.8.1/fonts/slick.eot");
  src: url("../js/slick-1.8.1/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../js/slick-1.8.1/fonts/slick.woff") format("woff"), url("../js/slick-1.8.1/fonts/slick.ttf") format("truetype"), url("../js/slick-1.8.1/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 0.8;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 2vw;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: 1vw;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  transition: opacity 0.3;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 0.8;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: white;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #00538F;
  opacity: 0.75;
}

.slick__item {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .slick__item::before {
    content: "";
    display: block;
    padding-top: 101.3333333333%;
  }
  .slick__item img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: auto;
    width: 190%;
    max-width: 190%;
  }
}
.slick__link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s;
}
.slick__link:hover::after, .slick__link:focus::after, .slick__link:active::after {
  opacity: 1;
}/*# sourceMappingURL=index.css.map */