@charset "UTF-8";
/* ================
reset
==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
@media (max-width: 767px) {
  html,
  body {
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  color: #2D344B;
}

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

ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

p {
  margin: 0;
}

.hidden-fields-container {
  border: none;
}

/* ================
共通
==================== */
.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-tab {
  display: block;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .pc-tab {
    display: none;
  }
}

.inner {
  width: 1000px;
  max-width: 95%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    padding: 0 15px;
  }
}

.btn {
  display: block;
  background-color: #FFB300;
  text-align: center;
  border-radius: 32px;
  box-shadow: 0 5px 10px rgba(0, 26, 99, 0.2);
  transition: all 0.3s ease 0s;
}
.btn:hover {
  box-shadow: none;
  background-color: #FFC631;
  transition-property: all;
  transform: translateY(3px);
}

.section__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 22px;
  }
}

.circle-arrow {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .circle-arrow {
    width: 50px;
    height: 50px;
  }
}
.circle-arrow::before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  animation: swing 1s infinite alternate;
}
@media (max-width: 767px) {
  .circle-arrow::before {
    width: 16px;
    height: 16px;
  }
}

@keyframes swing {
  from {
    transform: translateY(-16%);
  }
  to {
    transform: translateY(16%);
  }
}
/* ================
header
==================== */
.header {
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 26, 99, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  width: 1400px;
  max-width: 96%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  cursor: pointer;
  width: 270.75px;
  margin-right: 24px;
}
@media (max-width: 1000px) {
  .header__logo {
    width: 170px;
  }
}
.header__logo > img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  position: relative;
  display: inline-block;
}
.header__nav-item::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: #2D344B;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.header__nav-item:hover::after {
  transition-property: all;
  transform-origin: left top;
  transform: scale(1, 1);
}
.header__nav-item > span {
  font-weight: bold;
  line-height: 1.25;
  font-size: 14px;
}
.header__ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1000px) {
  .header__ul {
    gap: 18px;
  }
}
.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 32px;
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
}
.header__btn > span {
  font-weight: bold;
  line-height: 1.25;
  font-size: 14px;
}

/* ================
drawer
==================== */
.drawer-icon {
  width: 26px;
  height: 18px;
  position: fixed;
  top: 21px;
  right: 15px;
  z-index: 100;
  cursor: pointer;
  display: none;
}
@media (max-width: 1000px) {
  .drawer-icon {
    display: block;
    top: 26px;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .drawer-icon {
    top: 21px;
    right: 15px;
  }
}
.drawer-icon.clicked .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.clicked .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.clicked .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}
.drawer-icon__bar1, .drawer-icon__bar2, .drawer-icon__bar3 {
  width: 100%;
  height: 2px;
  background-color: #0054AC;
  position: absolute;
  transition: transform 0.3s ease 0s;
}
.drawer-icon__bar1 {
  top: 0;
}
.drawer-icon__bar2 {
  top: 8px;
}
.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  padding-bottom: 26px;
  z-index: 98;
  transform: translateY(-130%);
  transition: transform 0.3s ease 0s;
  background-color: #fff;
  display: none;
}
@media (max-width: 1000px) {
  .drawer-content {
    display: block;
  }
}
.drawer-content.clicked {
  transform: translateY(0);
}
.drawer-content__item {
  display: block;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid #D6D8DF;
}
.drawer-content__item:nth-last-child(2) {
  border-bottom: 1px solid #D6D8DF;
}
.drawer-content__item > span {
  font-size: 14px;
  line-height: 40px;
  font-weight: bold;
}
.drawer-content__btn {
  max-width: 314px;
  margin: 26.5px auto 0;
  padding: 20px 0;
  border-top: none;
}
.drawer-content__btn > span {
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

/* ================
fixed__btn-wrap
==================== */
.fixed__btn-wrap {
  position: fixed;
  bottom: 50px;
  right: 106px;
  z-index: 100;
  width: 188px;
  height: 188px;
  visibility: hidden;
  opacity: 0;
  transition-property: visibility opacity;
  transition-duration: 0.3s;
}
.fixed__btn-wrap.active {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .fixed__btn-wrap {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .fixed__btn-wrap {
    background-color: rgba(255, 255, 255, 0.76);
    width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
    padding: 15px 0;
  }
}

.fixed__btn {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .fixed__btn {
    max-width: 314px;
    padding: 20px 0;
    margin: 0 auto;
    border-radius: 32px;
  }
}
.fixed__btn > span {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .fixed__btn > span {
    font-weight: bold;
    line-height: 19px;
  }
}
.fixed__btn > span > img {
  position: absolute;
  bottom: -36px;
}
@media (max-width: 767px) {
  .fixed__btn > span > img {
    position: static;
    width: 20px;
    height: 20px;
  }
}

/* ================
top
==================== */
.top {
  width: 100%;
  height: 640px;
  margin-top: 70px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .top {
    height: 590px;
    margin-top: 60px;
    display: block;
  }
}
.top::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/top__img__default.jpg) no-repeat right center/cover;
}
@media (max-width: 767px) {
  .top::after {
    width: 345px;
    max-width: 100%;
    height: 266px;
    background: url(../images/top__img__default-sp.jpg) no-repeat center center/cover;
    z-index: 3;
  }
}
.top__container {
  background-color: #F2F5FF;
  width: 50.75vw;
  min-width: 540px;
  max-width: 70%;
  display: flex;
  align-items: center;
  padding: 53px 35px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .top__container {
    max-width: 100%;
    width: 100%;
    min-width: auto;
    padding: 41px 25px 122px 30px;
  }
}
.top__container-contents {
  width: 477px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .top__container-contents {
    margin-left: 0;
  }
}
.top__logo {
  width: 313px;
}
@media (max-width: 767px) {
  .top__logo {
    display: none;
  }
}
.top__logo > img {
  width: 100%;
  height: auto;
}
.top__head {
  font-size: 52px;
  font-weight: 900;
  line-height: 76px;
  color: #0054AC;
}
@media (max-width: 767px) {
  .top__head {
    font-size: 38px;
    line-height: 58px;
  }
}
.top__text {
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .top__text {
    font-size: 20px;
    line-height: 36px;
    margin-top: 23px;
  }
}
.top__btn {
  width: 352px;
  padding: 20px 0;
  margin-top: 42px;
}
@media (max-width: 767px) {
  .top__btn {
    display: none;
  }
}
.top__btn > span {
  font-size: 18px;
  font-weight: bold;
}

/* ================
intro
==================== */
.intro {
  width: 100%;
  height: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .intro {
    padding-top: 50px;
    padding-bottom: 54px;
  }
}
.intro::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/intro__bg.png) no-repeat center center/cover;
  z-index: -1;
}
@media (max-width: 767px) {
  .intro::after {
    background: url(../images/intro__bg-sp.png) no-repeat center center/cover;
  }
}
.intro__inner {
  max-width: 95%;
  width: 772px;
  margin: 0 auto;
}
.intro__title {
  color: #fff;
}
.intro__ul {
  margin-top: 67px;
}
@media (max-width: 767px) {
  .intro__ul {
    margin-top: 31px;
  }
}
.intro__li {
  padding-left: 32px;
  position: relative;
  color: #fff;
}
@media (max-width: 767px) {
  .intro__li {
    font-size: 14px;
  }
}
.intro__li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/checked.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .intro__li::before {
    width: 20px;
    height: 20px;
    top: 3px;
  }
}
.intro__li:not(:first-child) {
  margin-top: 23px;
}
.intro__li > span {
  font-weight: bold;
}
.intro__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  max-width: 352px;
  margin: 59px auto 0;
}
@media (max-width: 767px) {
  .intro__btn {
    margin: 38px auto 0;
    height: 56px;
  }
}
.intro__btn > span {
  font-size: 18px;
  font-weight: bold;
}

/* ================
form
==================== */
.form {
  background-color: #F2F5FF;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .form {
    padding: 64px 0;
  }
}

.form-body {
  max-width: 560px;
  margin: 56px auto 0;
}
@media (max-width: 767px) {
  .form-body {
    margin: 40px auto 0;
  }
}
.form-body .form-body__inner {
  background-color: #fff;
  border-radius: 15px;
  padding: 32px;
}
@media (max-width: 767px) {
  .form-body .form-body__inner {
    padding: 16px;
  }
}
.form-body * {
  font-family: "Noto Sans JP", sans-serif;
}
.form-body input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.form-body select,
.form-body textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.6rem;
  font-size: 16px;
}
.form-body input[type=checkbox],
.form-body input[type=radio],
.form-body input[type=submit] {
  margin-bottom: 0.75rem;
}
.form-body textarea {
  height: 120px;
}
.form-body input[type=checkbox],
.form-body input[type=radio] {
  transform: scale(1.5);
  margin-right: 10px;
}
.form-body label {
  display: block;
  font-weight: bold;
}
.form-body label + br {
  display: none;
}
.form-body small {
  font-size: 12px;
  color: #63697F;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
  margin-top: 0.5rem;
}
.form-body input[type=submit] {
  background-color: #0054AC;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  width: 60%;
  max-width: 360px;
  padding: 20px;
  height: auto;
  cursor: pointer;
  transition: 0.2s;
  margin: 40px auto 0;
  display: block;
  appearance: none;
  -webkit-appearance: none;
}
@media (max-width: 767px) {
  .form-body input[type=submit] {
    width: 100% !important;
  }
}
.form-body input[type=submit]:hover {
  background-color: #3171CA;
}
.form-body input[type=submit][disabled] {
  background-color: #B8BCC9;
  cursor: auto;
}
.form-body ._required,
.form-body ._optional {
  padding: 4px;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 6px;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  vertical-align: text-bottom;
  border: 1px solid currentColor;
}
.form-body ._required {
  color: #DE4D4D;
}
.form-body ._optional {
  color: #2D344B;
}
.form-body ._link {
  color: #0054AC;
  text-decoration: underline;
}
.form-body ._notes {
  margin-top: 40px;
}
.form-body .wpcf7-list-item-label {
  font-weight: 400;
  font-size: 14px;
}
.form-body .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 1.4rem;
}
.form-body .screen-reader-response,
.form-body .wpcf7-response-output,
.form-body .wpcf7-not-valid-tip {
  font-weight: bold;
  color: #DE4D4D;
}
.form-body .screen-reader-response {
  margin-bottom: 1rem;
  text-align: center;
}
.form-body .screen-reader-response p + ul {
  display: none;
}
.form-body .wpcf7-response-output {
  margin-top: 24px;
  text-align: center;
}

/* ================
footer
==================== */
.footer {
  background-color: #fff;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 50px;
  }
}
.footer__inner {
  padding-bottom: 85px;
}
@media (max-width: 767px) {
  .footer__inner {
    padding-bottom: 53px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.footer__company {
  text-align: center;
}
.footer__company > p {
  font-weight: bold;
}
.footer__company > a {
  display: block;
  width: 245px;
  height: auto;
  margin: 15px auto 0;
}
@media (max-width: 767px) {
  .footer__company > a {
    width: 214px;
    margin-top: 11px;
  }
}
.footer__company > a > img {
  width: 100%;
  height: 100%;
}
.footer__head {
  margin-top: 47px;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__head {
    font-size: 16px;
    margin-top: 36px;
  }
}
.footer__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__text {
    margin-top: 20px;
  }
}
.footer__dl {
  width: 325px;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .footer__dl {
    margin: 46px auto 0;
  }
}
.footer__row {
  display: flex;
}
@media (max-width: 767px) {
  .footer__row {
    font-size: 14px;
  }
}
.footer__row > dt {
  width: 38.5%;
  font-weight: bold;
  line-height: 40px;
}
.footer__row > dd {
  width: 61.5%;
  margin: 0;
  line-height: 36px;
}
.footer__services {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .footer__services {
    margin-top: 50px;
  }
}
.footer__services > p {
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
.footer__services-list {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 42px;
}
@media (max-width: 767px) {
  .footer__services-list {
    max-width: 280px;
    margin: 20px auto 0;
    display: block;
  }
}
.footer__services-list .mf-me {
  width: 268px;
}
@media (max-width: 767px) {
  .footer__services-list .mf-me {
    width: 235px;
  }
}
.footer__services-list .mf-cloud {
  width: 318px;
}
@media (max-width: 767px) {
  .footer__services-list .mf-cloud {
    width: 280px;
    margin-top: 19px;
  }
}
.footer__copyright {
  padding: 30px 20px 25px;
  background-color: #2D344B;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__copyright {
    padding-top: 24px;
  }
}
.footer__copyright > P {
  margin-top: 19px;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copyright > P {
    margin-top: 17px;
  }
}
.footer__ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 0;
}
.footer__li {
  position: relative;
}
.footer__li:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background-color: #fff;
}
.footer__li > a {
  position: relative;
  display: inline-block;
}
.footer__li > a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  background: #fff;
}
.footer__li > a:hover::after {
  transition-property: all;
  transform-origin: left top;
  transform: scale(1, 1);
}
.footer__li > a > span {
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__li > a > span {
    font-size: 12px;
  }
}

/* ================
cost
==================== */
.cost {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F2F5FF;
}
@media (max-width: 767px) {
  .cost {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cost .cost__content {
  display: flex;
  align-items: flex-start;
  column-gap: 40px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .cost .cost__content {
    flex-direction: column;
    row-gap: 24px;
    margin-top: 48px;
  }
}
.cost .cost__content__item {
  width: 100%;
}
.cost .cost__case__inner {
  display: flex;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .cost .cost__case__inner {
    column-gap: 10px;
  }
}
.cost .cost__description {
  line-height: 2.2;
  font-size: 20px;
  margin-top: -10px;
}
.cost .cost__description span {
  font-weight: bold;
  color: #0054AC;
  font-size: 24px;
}
@media (max-width: 767px) {
  .cost .cost__description span {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .cost .cost__description {
    margin-top: 0;
    font-size: 16px;
    line-height: 2;
  }
}
.cost .cost__case__discription {
  font-size: 14px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .cost .cost__case__discription {
    font-size: 12px;
  }
}
.cost .cost__case__item {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 16px 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .cost .cost__case__item {
    padding-top: 32px;
    padding-bottom: 16px;
  }
}
.cost .cost__case__item__img {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 68px;
  height: 68px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .cost .cost__case__item__img {
    width: 50px;
    height: 50px;
  }
}
.cost .cost__case__item__text {
  font-weight: bold;
}
.cost .cost__case__item__title {
  font-size: 18px;
}
@media (max-width: 767px) {
  .cost .cost__case__item__title {
    font-size: 16px;
  }
}
.cost .cost__case__item__price {
  font-size: 24px;
  line-height: 1.25;
  color: #0054AC;
}
@media (max-width: 767px) {
  .cost .cost__case__item__price {
    font-size: 16px;
  }
}
.cost .cost__case__item__price .num {
  font-size: 54px;
}
@media (max-width: 767px) {
  .cost .cost__case__item__price .num {
    font-size: 34px;
  }
}
.cost .cost__case__item__price .hyphen {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cost .cost__case__item__price .hyphen {
    font-size: 30px;
  }
}
.cost .cost__case__item__price .sup {
  vertical-align: super;
  font-size: 0.5em;
}

/* ================
voice
==================== */
.voice {
  position: relative;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 40px;
  }
}
.voice .circle-arrow {
  background-color: #fff;
  transform: translate(-50%, 50%);
  bottom: 0;
}
.voice .circle-arrow::before {
  background: url(../images/icon-arrow_blue.svg) no-repeat center center/cover;
}

@media (max-width: 767px) {
  .voice__inner {
    padding: 0 30px;
  }
}

.voice__title-icon {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .voice__title-icon {
    margin-bottom: 16px;
  }
}
.voice__title-icon > img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 74px;
}
@media (max-width: 767px) {
  .voice__title-icon > img {
    height: 50px;
  }
}

.voice__items {
  position: relative;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .voice__items {
    margin-top: 32px;
  }
}

.voice-item {
  background-color: #F2F5FF;
  border-radius: 32px 32px 32px 0;
  padding-top: 32px;
  height: 100%;
}

.voice-item__summary {
  position: relative;
  right: -8px;
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding-left: 24px;
}

.voice-item__summary__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.voice-item__summary__text {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 6px 16px;
  background-color: #C2D1FC;
  line-height: 1.33;
  min-height: 64px;
  border-radius: 12px 12px 12px 0;
  font-size: 18px;
  font-weight: bold;
  color: #0054AC;
}

.voice-item__content {
  padding: 20px 32px 32px;
}

.voice-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
}

.voice-item__tag {
  border-radius: 4px 4px 0 4px;
  line-height: 1;
  padding: 4px 8px;
  font-size: 14px;
}

.voice-item__tag--fill {
  background-color: #3171CA;
  color: #fff;
}

.voice-item__tag--outline {
  border: 1px solid currentColor;
  color: #3171CA;
}

.voice-item__detail {
  line-height: 2;
  font-weight: 500;
}

.swiper {
  display: none;
}

.swiper.swiper-initialized {
  display: block;
}

.swiper-slide {
  padding-right: 8px;
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  transition: opacity 0.3s;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  width: 100%;
  height: 100%;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
}

.swiper-button-next {
  right: -64px;
}
@media (max-width: 1160px) {
  .swiper-button-next {
    right: -28px;
  }
}
.swiper-button-next::after {
  content: url(../images/icon-carousel-arrow-right.svg);
}

.swiper-button-prev {
  left: -64px;
}
@media (max-width: 1160px) {
  .swiper-button-prev {
    left: -28px;
  }
}
.swiper-button-prev::after {
  content: url(../images/icon-carousel-arrow-left.svg);
}

.swiper-button-disabled {
  display: none;
}

.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  column-gap: 16px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 32px 0 0 !important;
  background-color: #C2D1FC;
  opacity: 1;
}
@media (max-width: 1160px) {
  .swiper-pagination-bullet {
    margin: 24px 0 0 !important;
  }
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0054AC;
}

/* ================
worried
==================== */
.worried {
  padding-top: 106px;
  padding-bottom: 80px;
  background-color: #F4F4F7;
}
@media (max-width: 767px) {
  .worried {
    padding-top: 57px;
    padding-bottom: 57px;
  }
}
.worried__items {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .worried__items {
    display: block;
    margin-top: 64px;
  }
}
.worried__item {
  width: 50%;
  height: auto;
  min-height: 405px;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .worried__item {
    width: 100%;
    min-height: 300px;
  }
}
.worried__item-tag {
  background-color: #3171CA;
  color: #fff;
  padding: 10px 0;
  width: 77.56%;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
}
@media (max-width: 767px) {
  .worried__item-tag {
    font-size: 16px;
    width: 79.4%;
    max-width: 300px;
    padding: 5px 0;
  }
}
.worried__item-tag01::before, .worried__item-tag02::before {
  content: "";
  display: block;
  position: absolute;
}
@media (max-width: 767px) {
  .worried__item-tag01 {
    padding-left: 10px;
  }
}
.worried__item-tag01::before {
  width: 51px;
  height: 51px;
  top: -8px;
  left: 35px;
  background: url(../images/worried__item01-icon.png) no-repeat center center/cover;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .worried__item-tag01::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .worried__item-tag01::before {
    width: 45px;
    height: 45px;
    top: -4px;
    left: 24px;
  }
}
@media (max-width: 767px) {
  .worried__item-tag02 {
    padding-left: 20px;
  }
}
.worried__item-tag02::before {
  width: 61px;
  height: 48px;
  top: -8px;
  left: 26px;
  background: url(../images/worried__item02-icon.png) no-repeat center center/cover;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .worried__item-tag02::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .worried__item-tag02::before {
    width: 55px;
    height: 43px;
    top: -2px;
    left: 15px;
  }
}
.worried__item-head {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  color: #00348A;
  text-align: center;
}
@media (max-width: 767px) {
  .worried__item-head {
    font-size: 18px;
    line-height: 30px;
  }
}
.worried__item-ul {
  width: 368px;
  max-width: 90%;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .worried__item-ul {
    max-width: 88%;
    margin: 28px auto 0;
  }
}
.worried__item-list {
  padding-left: 32px;
  position: relative;
  line-height: 30px;
}
@media (max-width: 767px) {
  .worried__item-list {
    font-size: 14px;
  }
}
.worried__item-list:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .worried__item-list:not(:first-child) {
    margin-top: 14px;
  }
}
.worried__item-list::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 5px;
  left: 0;
  background: url(../images/path2.png) no-repeat center center/cover;
}
.worried__item01 {
  padding-top: 80px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .worried__item01 {
    padding-top: 54px;
    padding-bottom: 50px;
  }
}
.worried__item02 {
  padding-top: 74px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .worried__item02 {
    padding-top: 54px;
    padding-bottom: 43px;
    margin-top: 55px;
  }
}
.worried__bottom {
  padding-top: 140px;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .worried__bottom {
    padding-top: 70px;
    margin-top: 20px;
  }
}
.worried__bottom-text {
  font-size: 30px;
  line-height: 50px;
  color: #0054AC;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .worried__bottom-text {
    max-width: 88%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 30px;
  }
}
.worried .circle-arrow {
  background-color: #fff;
  transform: translateX(-50%);
  top: 0;
}
.worried .circle-arrow::before {
  background: url(../images/icon-arrow_blue.svg) no-repeat center center/cover;
}

/* ================
about
==================== */
.about {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .about {
    padding-top: 73px;
    padding-bottom: 70px;
  }
}
.about__subtitle {
  margin-top: 51px;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .about__subtitle {
    font-size: 14px;
    line-height: 28px;
    margin-top: 27px;
  }
}
.about__items {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .about__items {
    margin-top: 40px;
    display: block;
  }
}
.about__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  min-height: 327px;
  height: auto;
  background-color: #F2F5FF;
  border-radius: 10px;
  gap: 28px;
}
@media (max-width: 767px) {
  .about__item {
    width: 100%;
    height: 272px;
    min-height: 272px;
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .about__item:not(:first-child) {
    margin-top: 16px;
  }
}
.about__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.about__item-icon > img {
  height: auto;
}
.about__item-icon01 {
  height: 59.7%;
}
.about__item-icon01 > img {
  width: 200px;
}
.about__item-icon02 > img {
  width: 171px;
}
@media (max-width: 767px) {
  .about__item-icon02 > img {
    width: 140px;
  }
}
.about__item-icon03 > img {
  width: 190px;
}
@media (max-width: 767px) {
  .about__item-icon03 > img {
    width: 168px;
  }
}
.about__item-text {
  height: 37.3%;
  padding: 0 24px;
  color: #00348A;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .about__item-text {
    line-height: 26px;
  }
}

/* ================
reason
==================== */
.reason {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F2F5FF;
}
@media (max-width: 767px) {
  .reason {
    padding-top: 60px;
    padding-bottom: 66px;
  }
}
.reason__items {
  margin-top: 56px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .reason__items {
    margin-top: 110px;
  }
}
@media (max-width: 767px) {
  .reason__items {
    margin-top: 110px;
    padding: 0 15px;
  }
}
.reason__item {
  width: 1140px;
  max-width: 85%;
  height: auto;
  background-color: #fff;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .reason__item {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .reason__item {
    width: 100%;
    max-width: 100%;
  }
}
.reason__item::before {
  content: "";
  display: block;
  width: 430px;
  height: 240px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1080px) {
  .reason__item::before {
    top: -65px;
    width: 278px;
    height: 155px;
  }
}
.reason__item-container {
  width: 470px;
}
@media (max-width: 1080px) {
  .reason__item-container {
    max-width: 100%;
    margin: 0 auto;
  }
}
.reason__item-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  padding: 8px 0;
  font-weight: bold;
  background-color: #0054AC;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  line-height: 28px;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .reason__item-tag {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .reason__item-tag {
    margin: 0 auto;
    font-size: 14px;
    line-height: 25px;
    padding: 4px 0;
  }
}
.reason__item-tag > span {
  font-size: 24px;
  line-height: 27px;
  margin-left: 4px;
}
@media (max-width: 767px) {
  .reason__item-tag > span {
    font-size: 19px;
    line-height: 23px;
  }
}
.reason__item-head {
  font-size: 20px;
  line-height: 30px;
  margin-top: 15px;
  font-weight: bold;
  color: #00348A;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .reason__item-head {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .reason__item-head {
    text-align: center;
    font-size: 18px;
  }
}
.reason__item-text {
  line-height: 30px;
  margin-top: 20px;
}
.reason__item01, .reason__item03 {
  padding-top: 55px;
  padding-bottom: 64px;
  padding-left: 303px;
  margin-left: auto;
}
@media (max-width: 1080px) {
  .reason__item01, .reason__item03 {
    padding-top: 121px;
    padding-bottom: 51px;
    padding-right: 28px;
    padding-left: 28px;
  }
}
.reason__item01::before, .reason__item03::before {
  left: -160px;
}
@media (max-width: 1080px) {
  .reason__item01::before, .reason__item03::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.reason__item01::before {
  background: url(../images/reason__item01.png) no-repeat center center/cover;
}
.reason__item02 {
  padding-top: 50px;
  padding-bottom: 72px;
  padding-right: 307px;
  margin-right: auto;
  margin-top: 56px;
}
@media (max-width: 1080px) {
  .reason__item02 {
    padding-top: 121px;
    padding-bottom: 51px;
    padding-right: 33px;
    padding-left: 33px;
    margin-top: 120px;
  }
}
.reason__item02::before {
  right: -160px;
  background-color: #000;
  background: url(../images/reason__item02.png) no-repeat center center/cover;
}
@media (max-width: 1080px) {
  .reason__item02::before {
    right: 50%;
    transform: translate(50%, 0);
  }
}
.reason__item02-container {
  margin-left: auto;
}
.reason__item03 {
  margin-top: 56px;
}
@media (max-width: 1080px) {
  .reason__item03 {
    margin-top: 120px;
  }
}
.reason__item03::before {
  background: url(../images/reason__item03.png) no-repeat center center/cover;
}

/* ================
flow
==================== */
.flow {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .flow {
    padding-top: 64px;
    padding-bottom: 43px;
  }
}
.flow__items {
  max-width: 100%;
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .flow__items {
    display: block;
    padding: 0 10px;
    margin-top: 46px;
  }
}
.flow__item {
  max-width: 240px;
  width: 24%;
  min-height: 436px;
  height: auto;
  padding: 0 20px;
  background-color: #F2F5FF;
  border-radius: 12px;
  position: relative;
}
@media (max-width: 767px) {
  .flow__item {
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
    min-height: 200px;
    padding: 0 13px 43px 13px;
  }
}
@media (max-width: 767px) {
  .flow__item:not(:first-child) {
    margin-top: 16px;
  }
}
.flow__item::after {
  content: "";
  display: block;
  width: 37px;
  height: 37px;
  position: absolute;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
  z-index: 3;
}
@media (max-width: 767px) {
  .flow__item::after {
    top: 97%;
    right: 45%;
    transform: rotate(90deg);
  }
}
.flow__item-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 42px;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  background-color: #3171CA;
  border-radius: 10px 0 10px 0;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}
.flow__item-tag > span {
  font-size: 19px;
  margin-left: 2px;
}
.flow__item-icon {
  height: 164px;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .flow__item-icon {
    height: 149px;
  }
}
.flow__item-icon > img {
  width: 100%;
  height: auto;
}
.flow__item-head {
  height: 60px;
  margin-top: 25px;
  color: #00348A;
  text-align: center;
  font-weight: bold;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .flow__item-head {
    height: auto;
  }
}
.flow__item-text {
  height: auto;
  font-size: 14px;
  line-height: 24px;
  margin-top: 9px;
}
@media (max-width: 767px) {
  .flow__item-text {
    margin-top: 23px;
  }
}
.flow__item01::after {
  background: url(../images/arrow-right.png) no-repeat center center/cover;
}
.flow__item01-icon {
  width: 75px;
}
.flow__item02::after {
  background: url(../images/arrow-right.png) no-repeat center center/cover;
}
.flow__item02-icon {
  width: 188px;
}
.flow__item03::after {
  background: url(../images/arrow-right.png) no-repeat center center/cover;
}
.flow__item03-icon {
  width: 87px;
}
.flow__item04-icon {
  width: 103px;
}

/* ================
qa
==================== */
.qa {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .qa {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.qa__items {
  margin-top: 56px;
}
@media (max-width: 767px) {
  .qa__items {
    margin-top: 33px;
  }
}
.qa__item:not(:first-child) {
  margin-top: 40px;
}
.qa__item-q {
  background-color: #F2F5FF;
  padding: 22px 10px 22px 58px;
  position: relative;
}
@media (max-width: 767px) {
  .qa__item-q {
    padding: 22px 10px 22px 41px;
  }
}
.qa__item-q::before {
  content: "Q.";
  display: block;
  position: absolute;
  top: 13px;
  left: 17px;
  font-size: 24px;
  font-family: "NotoSansCJKjp-Bold";
  color: #3171CA;
}
@media (max-width: 767px) {
  .qa__item-q::before {
    left: 10px;
  }
}
.qa__item-q > p {
  font-weight: bold;
  line-height: 26px;
}
.qa__item-a {
  padding: 22px 10px 0 58px;
  position: relative;
}
@media (max-width: 767px) {
  .qa__item-a {
    padding: 22px 10px 0 41px;
  }
}
.qa__item-a::before {
  content: "A.";
  display: block;
  position: absolute;
  top: 16px;
  left: 17px;
  font-size: 24px;
  font-family: "NotoSansCJKjp-Bold";
  color: #FFB300;
}
@media (max-width: 767px) {
  .qa__item-a::before {
    left: 10px;
  }
}
.qa__item-a > p {
  line-height: 26px;
}

/* ================
サンクス
==================== */
.page-thanks {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.page-thanks .thanks {
  flex-grow: 1;
}
.page-thanks .footer {
  padding: 0;
}

.thanks {
  padding: 160px 0;
  background-color: #F2F5FF;
}
.thanks .thanks__title {
  margin-bottom: 40px;
}
.thanks .thanks__description {
  text-align: center;
}
.thanks .btn {
  padding: 20px;
  max-width: 352px;
  background-color: #0054AC;
  color: #fff;
  margin: 40px auto 0;
  font-weight: 500;
}
.thanks .btn:hover {
  background-color: #3171CA;
}