@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  color: #333;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
footer {
  padding: 16px 0;
  background-color: #274e93;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.company__info {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.copyright {
  padding: 1em;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.3888888889;
}

header {
  position: relative;
  z-index: 100;
  background-color: #e6f6fb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 10px 2%;
}

header .logo {
  max-width: 156px;
  width: 100%;
  height: 100%;
}

header .logo-link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.contact-btn {
  max-width: 392px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="3" /><feOffset dx="5" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, .2));
          filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, .2));
}

.contact-btn:hover {
  opacity: 0.6;
}

.contact-btn img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  header {
    padding-left: 101px;
    padding-right: 102px;
    gap: 0;
  }
  header .logo {
    width: 111px;
  }
  .contact-btn {
    width: 365px;
  }
  .contact-btn img {
    width: 100%;
    max-width: 365px;
  }
}
@media screen and (max-width: 619px) {
  header {
    gap: 10px;
  }
  header .logo {
    max-width: 120px;
    min-width: 80px;
    width: 100%;
    height: 100%;
  }
  .contact-btn {
    max-width: 300px;
  }
}
.home {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .home {
    max-width: 75rem;
  }
}

.inner {
  padding: 0 25px;
}

[data-aos^=fade].aos-animate.animation {
  -webkit-animation-name: jump;
          animation-name: jump; /* アニメーション名 */
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s; /* アニメーションの時間 */
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1; /* アニメーションの回数 */
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  99.9% {
    -webkit-transform: translateY(18%) rotateX(50deg);
            transform: translateY(18%) rotateX(50deg);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  99.9% {
    -webkit-transform: translateY(18%) rotateX(50deg);
            transform: translateY(18%) rotateX(50deg);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.home main {
  position: relative;
}

.cta-fix-btn {
  padding: 0 10px;
  position: fixed;
  z-index: 1111;
  bottom: 7px;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="3" /><feOffset dx="5" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, .2));
          filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, .2));
}

.cta-fix-btn.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cta-fix-btn:hover {
  opacity: 0.6;
}

.cta-fix-btn-show {
  display: none;
}

@media screen and (max-width: 619px) {
  .cta-fix-btn-show {
    display: block;
  }
}
/* CTA */
.cta {
  padding: 30px 25px;
  position: relative;
  z-index: 1;
  background-image: url(../images/cta-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: #2b5195;
}

.cta-inner {
  position: relative;
  margin: 0 auto;
  max-width: 590px;
  width: 100%;
  background-color: #fff;
  padding: 40px 10px;
  -webkit-box-shadow: 7px 7px 5px rgba(0, 0, 0, .2);
          box-shadow: 7px 7px 5px rgba(0, 0, 0, .2);
}

.cta-text {
  margin-left: 30px;
  width: 370px;
}

.cta-btn {
  display: inline-block;
  max-width: 532px;
  vertical-align: bottom;
}

.cta-btn picture {
  max-width: 532px;
}

.cta-btn-img {
  margin-top: 10px;
  margin-left: 15px;
  width: 532px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="3" /><feOffset dx="5" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, .2));
          filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, .2));
}

.cta-btn:hover {
  opacity: 0.6;
}

.cta-char {
  position: absolute;
  top: 20px;
  right: -22px;
  width: 193px;
}

@media screen and (min-width: 1024px) {
  .cta {
    padding: 40px 25px;
  }
  .cta-inner {
    border: 4px solid #ccc;
    padding: 20px 50px 5px;
    width: 600px;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cta-text {
    width: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 0;
  }
  .cta-btn-img {
    width: 389px;
    margin-top: 20px;
    margin-left: 48px;
    margin-bottom: 30px;
  }
  .cta-char {
    position: absolute;
    top: 86px;
    right: -112px;
  }
}
@media screen and (max-width: 619px) {
  .cta-inner {
    padding: 30px 10px;
  }
  .cta-text {
    margin-left: 0;
    width: 64.6296%;
  }
  .cta-btn-img {
    margin-left: 0;
  }
  .cta-char {
    width: 35.15625%;
    top: 5px;
    right: 0%;
  }
}
.subtitle {
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  color: #274e93;
}

/* お客様の声 */
.customer-voice {
  padding: 40px 0 50px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f9fb calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f9fb calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.customer-voice-inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.customer-voice-title-wrap {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.customer-voice-icon {
  width: 63px;
}

.customer-voice-title {
  font-size: 54px;
  line-height: 2.037037037;
}

.customer-voice-list {
  margin-top: 25px;
  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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 24px;
}

.drop-shadow {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="4" dy="4" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, .2));
          filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, .2));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.customer-voice-item {
  padding: 35px 20px 40px;
  position: relative;
  -webkit-clip-path: polygon(0 0, 93% 0, 100% 10%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 93% 0, 100% 10%, 100% 100%, 0 100%);
  max-width: 590px;
  width: 100%;
  background-color: #02a1e9;
  border: 1px solid #02a1e9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-betwee;
      -ms-flex-pack: space-betwee;
          justify-content: space-betwee;
}

.customer-voice-item::before {
  position: absolute;
  inset: 0;
  content: "";
  -webkit-clip-path: polygon(0 0, 93% 0, 100% 10%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 93% 0, 100% 10%, 100% 100%, 0 100%);
  background-color: #f0f9fb;
  z-index: -1;
}

.customer-voice-item::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
}

.customer-voice-item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
}

.customer-voice-item-heading-img {
  width: 169px;
}

.customer-voice-item-heading-text {
  position: relative;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 41px;
  line-height: 1.3982926829;
  color: #274e93;
  letter-spacing: -0.06em;
}

.drop-shadow:last-child .customer-voice-item-heading-text {
  margin-top: 30px;
}

.customer-voice-item-heading-text::before {
  position: absolute;
  top: 9px;
  left: -15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  background-image: url(../images/cv-icon01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.7em;
  height: 0.7em;
}

.customer-voice-item-heading-text::after {
  position: absolute;
  bottom: 6px;
  right: -4px;
  -webkit-transform: translate(90%, 80%);
          transform: translate(90%, 80%);
  content: "";
  background-image: url(../images/cv-icon02.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.7em;
  height: 0.7em;
}

.drop-shadow:last-child .customer-voice-item-heading-text::before {
  top: 10px;
  left: -14px;
}

.drop-shadow:last-child .customer-voice-item-heading-text::after {
  bottom: 17px;
  right: 139px;
}

.customer-voice-item-desc {
  margin-top: 30px;
  font-family: "Noto Sans JP", serif;
  font-weight: normal;
  font-size: 29px;
  line-height: 1.8275862069;
  letter-spacing: -0.06em;
  color: #333;
}

@media screen and (min-width: 1024px) {
  .customer-voice-title-wrap {
    gap: 0;
  }
  .customer-voice-icon {
    width: 35px;
  }
  .customer-voice-title {
    font-size: 40px;
    line-height: 1.70825;
  }
  .customer-voice-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .customer-voice-item {
    padding: 20px;
    max-width: 100%;
    width: 388px;
  }
  .customer-voice-item-heading {
    gap: 27px;
  }
  .customer-voice-item-heading-img {
    width: 115px;
    margin-left: -11px;
  }
  .customer-voice-item-heading-text {
    font-size: 25px;
  }
  .customer-voice-item-heading-text::before {
    top: 1px;
    left: -7px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    content: "";
    background-image: url(../images/pc/cv-icon01.png);
    width: 0.8em;
    height: 0.8em;
  }
  .customer-voice-item:last-child .customer-voice-item-heading-text::after {
    bottom: 0;
    right: 0;
  }
  .customer-voice-item-desc {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7522222222;
  }
}
@media screen and (max-width: 619px) {
  .customer-voice-title {
    font-size: 42px;
  }
  .customer-voice-item {
    padding: 20px 15px 20px;
    -webkit-clip-path: polygon(0 0, 85% 0, 100% 10%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 85% 0, 100% 10%, 100% 100%, 0 100%);
  }
  .customer-voice-item::before {
    -webkit-clip-path: polygon(0 0, 85% 0, 100% 10%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 85% 0, 100% 10%, 100% 100%, 0 100%);
  }
  .customer-voice-item-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .customer-voice-item-heading-img {
    width: 120px;
  }
  .customer-voice-item-heading-text {
    font-size: 30px;
  }
  .drop-shadow:last-child .customer-voice-item-heading-text {
    margin-top: 5px;
  }
  .drop-shadow:last-child .customer-voice-item-heading-text::after {
    bottom: 0px;
    right: 0px;
  }
  .customer-voice-item-desc {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.faq {
  padding: 35px 0 55px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f9fb calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f9fb calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.faq-inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.faq-title {
  font-family: "din-2014", sans-serif;
  font-size: 61px;
  letter-spacing: 0.04em;
}

.faq-list {
  margin-top: 37px;
  max-width: 588px;
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.faq-item {
  width: 100%;
  -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, .2);
          box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, .2);
  background-color: #fff;
}

.question {
  position: relative;
  padding: 15px 11px 18px 63px;
  background-color: #02a1e9;
  font-family: "Noto Sans JP", serif;
  font-weight: normal;
  font-size: 29px;
  line-height: 1.724137931;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.question::before {
  position: absolute;
  top: 0.4em;
  left: 0.8em;
  content: "Q";
  font-family: "din-2014", sans-serif;
  font-size: 34px;
}

.answer {
  position: relative;
  padding: 21px 20px 40px 63px;
  font-family: "Noto Sans JP", serif;
  font-weight: normal;
  font-size: 29px;
  line-height: 1.724137931;
  color: #333;
}

.answer::before {
  position: absolute;
  top: 0.4em;
  left: 0.8em;
  content: "A";
  font-family: "din-2014", sans-serif;
  font-size: 34px;
  color: #02a1e9;
}

@media screen and (min-width: 1024px) {
  .faq {
    padding-top: 32px;
  }
  .faq-title {
    font-size: 49px;
  }
  .faq-list {
    margin-top: 25px;
    max-width: 100%;
    width: 800px;
    gap: 26px;
  }
  .faq-item {
    width: 100%;
  }
  .question {
    padding: 10px 0 10px 3.8em;
    font-size: 19px;
    line-height: 1.7368421053;
  }
  .question::before {
    font-size: 30px;
    top: 10px;
    left: 1em;
    line-height: 1;
  }
  .answer {
    padding: 13px 1em 30px 3.5em;
    font-size: 19px;
    line-height: 1.7368421053;
    letter-spacing: -0.06em;
  }
  .answer::before {
    font-size: 30px;
    top: 15px;
    left: 1em;
    line-height: 1;
  }
  .faq-item:nth-child(2) .answer::before {
    top: 19px;
  }
}
@media screen and (max-width: 619px) {
  .faq-list {
    margin-top: 0;
  }
  .question {
    font-size: 16px;
    padding: 13px 11px 13px 30px;
  }
  .faq-title {
    font-size: 48px;
    margin-bottom: 25px;
  }
  .question::before {
    font-size: 22px;
    top: 0.4em;
    left: 0.5em;
  }
  .answer {
    font-size: 16px;
    padding: 13px 11px 13px 30px;
    left: 0em;
  }
  .answer::before {
    font-size: 22px;
    top: 0.4em;
    left: 0.5em;
  }
}
.flow {
  position: relative;
  padding: 35px 0;
}

.flow-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.flow-inner {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flow-title {
  font-size: 54px;
  letter-spacing: 0.06em;
}

.flow-list {
  margin-top: 46px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}

.flow-item {
  max-width: 589px;
  width: 100%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, .2);
          box-shadow: 3px 3px 4px rgba(0, 0, 0, .2);
  border-radius: 0 0 6.335px 6.335px;
}

.flow-item-title {
  border-radius: 6.335px 6.335px 0 0;
  position: relative;
  padding: 11px 2em;
  width: 100%;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  background-color: #274e93;
  color: #fff;
}

.flow-item img {
  border-radius: 0 0 6.335px 6.335px;
}

.flow-item .flow-item-title::before {
  position: absolute;
  top: 0;
  left: 1rem;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  content: "";
  width: 80px;
  height: 80px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.flow-item:nth-child(1) .flow-item-title::before {
  background-image: url(../images/flow-num1.png);
}

.flow-item:nth-child(3) .flow-item-title::before {
  background-image: url(../images/flow-num2.png);
}

.flow-item:nth-child(5) .flow-item-title::before {
  background-image: url(../images/flow-num3.png);
}

.flow-item:nth-child(7) .flow-item-title::before {
  background-image: url(../images/flow-num4.png);
}

.flow-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (min-width: 1024px) {
  .flow {
    position: relative;
    padding: 55px 0 40px;
  }
  .flow-title {
    font-size: 40px;
    line-height: 1.5529545455;
  }
  .flow-list {
    margin-top: 39px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5px;
  }
  .flow-item {
    max-width: 177px;
  }
  .flow-item-title {
    white-space: nowrap;
    font-size: 1.34625rem;
    padding: 15px 0.875rem;
  }
  .flow-item img {
    aspect-ratio: 17.68/15;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow-item .flow-item-title::before {
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .flow-arrow {
    width: 16px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@media screen and (max-width: 619px) {
  .flow-title {
    font-size: 40px;
  }
  .flow-list {
    gap: 0;
  }
  .flow-item-title {
    font-size: 26px;
  }
  .flow-item .flow-item-title::before {
    width: 50px;
    height: 50px;
    left: -0.3em;
  }
  .flow-arrow {
    width: 20px;
  }
}
.fv {
  position: relative;
  margin-top: -119px;
  overflow-y: hidden;
}

.fv-char {
  display: inline-block;
  position: absolute;
  bottom: 0;
  opacity: 0;
  left: 10px;
  width: 311px !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  .fv {
    margin-top: 0;
  }
  .fv-char {
    width: 265px !important;
    left: 311px;
  }
}
@media screen and (max-width: 619px) {
  .fv {
    position: relative;
    margin-top: -60px;
  }
  .fv-char {
    width: 200px !important;
  }
}
.news {
  padding: 38px 0 55px;
  background-color: #e6f6fb;
}

.news-inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-title {
  font-size: 36px;
}

.news-list {
  max-width: 100%;
  width: 100%;
  margin-top: 30px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-item-link {
  width: 100%;
}

.news-item-link:hover {
  opacity: 0.6;
}

.news-item {
  width: 100%;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3em;
  border-bottom: 1px solid #333;
}

.news-date {
  font-family: "Noto Sans JP", serif;
  font-weight: normal;
  font-size: 29px;
  color: #333;
  line-height: 1.5;
}

.news-item-title {
  font-family: "Noto Sans JP", serif;
  font-weight: normal;
  font-size: 29px;
  color: #333;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (min-width: 1024px) {
  .news-inner {
    width: 800px;
    margin: 0 auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .news-title {
    font-size: 22px;
  }
  .news-list {
    max-width: 800px;
    margin-top: 9px;
  }
  .news-item {
    width: 100%;
    padding: 0.8em 0;
    gap: 2.5em;
  }
  .news-date {
    font-size: 19px;
    line-height: 1.7;
  }
  .news-item-title {
    font-size: 19px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 619px) {
  .news-date {
    font-size: 16px;
  }
  .news-item-title {
    font-size: 16px;
  }
}
.price {
  padding: 54px 0;
  background-color: #e6f6fb;
}

.price-inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price-title {
  font-size: 58px;
  line-height: 1.1781034483;
}

.price-list {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.price-item {
  max-width: 590px;
  width: 100%;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, .1);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, .1);
}

.price-caution {
  margin-top: 20px;
  font-family: "Noto Sans JP", serif;
  font-size: 22px;
  line-height: 1.6818181818;
  color: #333;
  letter-spacing: -0.05em;
}

.price-card-wrap {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.price-card {
  padding: 45px 2.5em;
  background-color: #fff;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, .2);
          box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, .2);
}

.price-card-title {
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 50px;
  line-height: 2.0806;
  color: #274e93;
}

.price-card-text {
  margin-top: 13px;
  font-family: "Noto Sans JP", serif;
  font-size: 29px;
  line-height: 1.724137931;
  color: #333;
  text-align: center;
}

.price-card-icon {
  margin-top: 30px;
  width: 290px;
}

.price-card:first-child .price-card-icon {
  width: 230px;
}

@media screen and (min-width: 1024px) {
  .price {
    padding: 45px 0 50px;
    background-color: #f0f9fb;
  }
  .price-title {
    font-size: 44px;
    line-height: 1.5529545455;
  }
  .price-list {
    margin-top: 35px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
  .price-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .price-item {
    max-width: 100%;
    width: 395px;
  }
  .price-caution {
    font-size: 15px;
  }
  .price-card-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  .price-card {
    padding: 24px 2em;
    max-width: 100%;
    width: 390px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .price-card-title {
    font-size: 36px;
    line-height: 1.65;
  }
  .price-card-text {
    margin-top: 22px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .price-card-icon {
    width: 166px;
  }
  .price-card:first-child .price-card-icon {
    width: 133px;
  }
}
@media screen and (max-width: 619px) {
  .price {
    padding-top: 30px;
  }
  .price-title {
    font-size: 42px;
  }
  .price-list {
    margin-top: 30px;
  }
  .price-caution {
    font-size: 16px;
  }
  .price-card {
    padding: 20px 1em;
  }
  .price-card-title {
    font-size: 32px;
    line-height: 1.7;
  }
  .price-card-text {
    font-size: 18px;
  }
  .price-card-icon {
    margin-top: 15px;
    width: 130px;
  }
  .price-card:first-child .price-card-icon {
    width: 80px;
  }
}
/* 選ばれる理由 */
.select {
  overflow: hidden;
  background-color: #e6f6fb;
  padding: 45px 0;
}

.select-inner {
  padding: 0 15px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select-title {
  font-size: 49.48px;
  line-height: 1.5529506871;
  letter-spacing: 0.06em;
}

.text-small {
  font-size: 41.61px;
  line-height: 1.8466714732;
}

.select-item-bg {
  width: 100%;
  height: 100%;
}

.select-item-bg.bg-odd {
  background: #e6f6fb;
}

.select-item-bg.bg-even {
  background: #e6f6fb;
}

.select-item-bg:nth-of-type(1) {
  margin-top: 72px;
}

.select-item-bg:nth-of-type(n+2) {
  margin-top: 80px;
}

.select-item {
  margin-inline: auto;
  max-width: 590px;
  width: 100%;
  padding: 40px 22px 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}

.select-item-content {
  display: contents;
  position: relative;
}

.select-item-num {
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  font-size: 113.87px;
  color: #02a1e9;
  letter-spacing: -0.04em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.select-item-title {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 42px;
  line-height: 1.8645238095;
  color: #274e93;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.select-item-title .text-accent {
  position: relative;
  z-index: 1;
  color: #cd2a23;
}

.select-item-title .text-accent::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 10px;
  background-color: #fcee21;
}

.select-item-title.select-item-title--small {
  font-size: 35px;
  white-space: nowrap;
}

.select-item img {
  margin-top: 27px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
}

.select-item p {
  padding: 0 10px;
  margin-top: 22px;
  font-family: "Noto Sans JP", serif;
  font-size: 29px;
  line-height: 1.8275862069;
  color: #333;
  letter-spacing: -0.06em;
}



@media screen and (min-width: 1024px) {
  .select {
    position: relative;
    z-index: 1;
    padding: 45px 0 50px;
  }
  .select::before {
    position: absolute;
    top: 212px;
    left: 0;
    z-index: -1;
    content: "";
    background-image: url(../images/pc/select-bg01.png);
    width: 100%;
    height: 34%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .select::after {
    position: absolute;
    bottom: 0;
    right: -30%;
    z-index: -1;
    content: "";
    background-image: url(../images/pc/select-bg02.png);
    width: 100%;
    height: 34%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .select-inner {
    padding: 0;
  }
  .select-item-bg:nth-of-type(even) > .select-item > .select-item-content {
    padding-left: 1em;
  }
  .select-title {
    font-size: 36.69px;
    line-height: 1.552739166;
  }
  .text-small {
    font-size: 30.85px;
    line-height: 1.6521880065;
  }
  .select-item-bg.bg-odd {
    background: linear-gradient(90deg, #fff 0, #fff 710px, transparent 711px, transparent 1200px);
  }
  .select-item-bg.bg-even {
    background: linear-gradient(-90deg, #fff 0, #fff 710px, transparent 711px, transparent 1200px);
  }
  .select-item-bg:nth-of-type(1) {
    margin-top: 30px;
  }
  .select-item-bg:nth-of-type(n+2) {
    margin-top: 50px;
  }
  .select-item {
    background: transparent;
    position: relative;
    width: 844px;
    padding-top: 35px;
    padding-bottom: 35px;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .select-item.odd {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 30px;
  }
  .select-item.even {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
  .select-item-content {
    display: block;
  }
  .select-item img {
    margin-top: 0;
    width: 309px;
    height: 202px;
    aspect-ratio: 30.9/20.2;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .select-item-num {
    font-size: 83.46px;
    line-height: 2.0301629774;
  }
  .select-item-num.num1 {
    top: 16px;
    left: 0;
  }
  .select-item-num.num2 {
    top: 37px;
    left: 13px;
  }
  .select-item-num.num3 {
    top: 38px;
    left: 0;
  }
  .select-item-num.num4 {
    top: 16px;
    left: 18px;
  }
  .select-item-num.num5 {
    top: 34px;
    left: 0;
  }
  .select-item-title {
    position: relative;
    font-size: 26px;
    line-height: 1.3846153846;
  }
  .select-item-bg:nth-of-type(2) > .select-item > .select-item-content > .select-item-title {
    text-align: left;
    padding-left: 4.5em;
  }
  .select-item-bg:nth-of-type(3) > .select-item > .select-item-content > .select-item-title {
    text-align: left;
    padding-left: 4.1em;
  }
  .select-item-bg:nth-of-type(4) > .select-item > .select-item-content > .select-item-title {
    text-align: left;
    padding-left: 4.5em;
  }
  .select-item-title.select-item-title--small {
    font-size: 21px;
    line-height: 1.5238095238;
    text-align: left;
    padding-left: 4.7em;
  }
  .select-item-title .text-accent::after {
    bottom: 2px;
    height: 5px;
  }
  .select-item p {
    padding: 0;
    font-size: 19px;
    line-height: 1.7368421053;
  }
}
@media screen and (max-width: 619px) {
  .select-title {
    font-size: 36px;
    letter-spacing: -0.06em;
  }
  .text-small {
    font-size: 28px;
  }
  .select-item {
    padding-bottom: 30px;
  }
  .select-item-num {
    font-size: 84px;
    left: 0.3em;
  }
  .select-item-title {
    font-size: 28px;
    white-space: nowrap;
    line-height: 1.4;
  }
  .select-item-title.select-item-title--small {
    font-size: 20px;
  }
  .select-item p {
    margin-top: 13px;
    font-size: 18px;
    line-height: 1.7777777778;
  }
}
.sp-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .sp-none {
    display: block;
  }
}

.sp-show {
  display: block;
}
@media screen and (min-width: 1024px) {
  .sp-show {
    display: none;
  }
}

@media screen and (max-width: 619px) {
  .sp-show.horizon {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
