@charset "UTF-8";
:root {
  --vw: 1vw;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* common */
.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

.va_top {
  vertical-align: top;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

body {
  color: #555555;
}

.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 55px 10px 35px;
}

h2 {
  font-size: 38px;
  font-family: "wfbd";
  text-align: center;
  margin-bottom: 32px;
}

.cont_wrap {
  background-color: #fff;
  border-radius: 12px;
}

.contact_btn {
  max-width: 396px;
  background-color: #55C2F0;
  border-radius: 6px;
  color: #fff;
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  font-family: "wfbd";
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
}

.contact_btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 19px;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg);
}

.contact_btn:hover {
  opacity: 0.7;
}

.more_btn {
  max-width: 395px;
  background-color: #F4A91F;
  border-radius: 6px;
  color: #fff;
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  font-family: "wfbd";
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
}

.more_btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 19px;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg);
}

.more_btn:hover {
  opacity: 0.7;
}

/* header */
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0 16px;
}

header img {
  display: block;
}

header .site {
  font-size: 17px;
}

header .site a {
  color: #555555;
}

.catch {
  background: url(/hfs/img/header_border.png) no-repeat;
  background-size: 100%;
  text-align: center;
  padding: 17px 0 10px;
}

.catch p {
  font-size: 20px;
  font-family: "wfbd";
}

.catch cite {
  font-size: 12px;
  font-family: "wfre";
  font-style: normal;
}

/* お問い合わせ */
.contact {
  background-color: #55C2F0;
}

.contact .inner {
  padding: 55px 10px 58px;
}

.contact h2 {
  color: #fff;
  margin-bottom: 38px;
}

.contact_wrap {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 40px 35px;
}

.contact_wrap a {
  margin: 0;
  flex: 1;
}

.contact_wrap .contact_btn {
  width: 396px;
  margin: 0 0 0 auto;
}

.contact_tel {
  flex-basis: 38%;
  text-align: center;
  border-right: 4px dotted #C2C2C2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.contact_tel p {
  position: relative;
}

.contact_tel p:first-child {
  font-size: 28px;
  font-family: "wfbd";
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.contact_tel p:last-child {
  font-size: 12px;
  font-family: "wfre";
  margin-top: -8px;
}

.contact_tel p:first-child::before {
  content: "";
  background: url(/hfs/img/icon_tel.png);
  position: absolute;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  left: -36px;
  top: 25%;
}

/* footer */
footer .inner {
  text-align: center;
}

.footer_ttl {
  font-size: 18px;
  font-family: "wfbd";
  margin-bottom: 25px;
}

.footer_logo.jasda {
  margin-bottom: 8px;
}

.footer_logo.lohc {
  margin-bottom: 40px;
}

.footer_address {
  font-size: 12px;
  font-family: "wfre";
  margin-bottom: 20px;
}

.footer_address:last-child {
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  /* common */
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  img {
    width: 100%;
  }
  .inner {
    padding: 30px 20px;
  }
  h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .contact_btn {
    max-width: 315px;
    font-size: 15px;
    padding: 12px 0;
    margin: 0 auto;
  }
  .more_btn {
    padding: 12px 0;
    font-size: 15px;
  }
  /* header */
  header .inner {
    padding: 9px 15px;
  }
  header img {
    width: 225px;
    height: auto;
  }
  header .site {
    background-size: 100% 3px;
    font-size: 10px;
  }
  .catch {
    padding: 15px 15px 8px;
  }
  .catch p {
    font-size: 15px;
    line-height: 1.5;
  }
  .catch cite {
    display: block;
    font-size: 10px;
    margin-top: 3px;
  }
  /* お問い合わせ */
  .contact .inner {
    padding: 25px 10px 40px;
  }
  .contact h2 {
    margin-bottom: 32px;
  }
  .contact_wrap {
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }
  .contact_tel {
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 0;
    margin-bottom: 10px;
  }
  .contact_tel p:first-child {
    font-size: 21px;
  }
  .contact_tel p:last-child {
    font-size: 10px;
  }
  .contact_tel p:first-child::before {
    content: "";
    width: 19px;
    height: 20px;
    left: -40px;
    top: 20%;
  }
  .contact_tel::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 38px;
    width: 7px;
    height: 7px;
    border-top: 2.5px solid #55C2F0;
    border-right: 2.5px solid #55C2F0;
    transform: rotate(45deg);
  }
  .contact_wrap a {
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: 6px;
    padding: 13.5px 0;
  }
  .contact_wrap .contact_btn {
    width: 100%;
    margin: 0 auto;
  }
  /* TOPへ戻る */
  #page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
  }
  #page_top a img:hover {
    opacity: 1;
  }
  #page_top img {
    width: 50px;
    height: 50px;
  }
  /* footer */
  footer .inner {
    padding: 30px 25px;
  }
  .footer_ttl {
    font-size: 13.5px;
    margin-bottom: 27px;
  }
  .footer_logo.jasda {
    margin-bottom: 3px;
  }
  .footer_logo.lohc {
    margin-bottom: 30px;
  }
  .footer_logo.lohc img {
    width: 229px;
    height: auto;
  }
  .footer_address {
    font-size: 10px;
    line-height: 1.5;
  }
}
img {
  max-width: 100%;
  vertical-align: top;
}

a.link-text {
  color: #528FEF;
  text-decoration: underline;
}
a.link-text:hover {
  text-decoration: none;
}

header .catch {
  display: none;
}
header + .header__border img {
  display: block;
  max-width: unset;
  width: 100%;
}

.sec--mv {
  background: url(../img/mv_01.jpg) no-repeat center top/cover;
  height: 535px;
}
@media only screen and (max-width: 768px) {
  .sec--mv {
    background-image: url(../img/mv_01_sp.jpg);
    height: calc(142.6666666667 * var(--vw));
  }
}
.sec--mv .inner {
  padding-top: 46px;
  padding-left: 7px;
}
@media only screen and (max-width: 768px) {
  .sec--mv .inner {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    padding: 0 0 calc(9.6 * var(--vw));
  }
}
.sec--mv .mv__heading {
  width: 514px;
}
@media only screen and (max-width: 768px) {
  .sec--mv .mv__heading {
    width: calc(78.6666666667 * var(--vw));
    margin: calc(1.8666666667 * var(--vw)) auto 0;
  }
}
.sec--mv .mv__text {
  width: 492px;
  margin-top: 40px;
  margin-left: 4px;
}
@media only screen and (max-width: 768px) {
  .sec--mv .mv__text {
    width: calc(87.4666666667 * var(--vw));
    margin: auto auto 0;
  }
}
.sec--mv .mv__btn {
  padding: 44px 0 0 50px;
}
@media only screen and (max-width: 768px) {
  .sec--mv .mv__btn {
    margin-top: calc(6.1333333333 * var(--vw));
    padding: 0;
  }
}
.sec--mv .mv__btn .contact_btn {
  margin-left: 0;
}
@media only screen and (max-width: 768px) {
  .sec--mv .mv__btn .contact_btn {
    margin: 0 auto;
  }
}

.sec--about .about__header {
  position: relative;
  background: #DEF1FF;
}
.sec--about .about__header::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 150px 0 150px;
  border-color: #def1ff transparent transparent transparent;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__header::after {
    border-width: 32px 32px 0 32px;
  }
}
.sec--about .about__header .inner {
  padding: 48px 10px;
}
.sec--about .about__header .heading {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__header .heading {
    font-size: 24px;
  }
}
.sec--about .about__header .text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__header .text {
    text-align: justify;
  }
}
.sec--about .about__content {
  background: #fff;
}
.sec--about .about__content .inner {
  position: relative;
  padding: 112px 10px 80px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .inner {
    padding-top: 80px;
  }
}
.sec--about .about__content .container {
  position: relative;
  max-width: 620px;
  width: 100%;
}
.sec--about .about__content .orn-box {
  position: absolute;
  top: 112px;
  right: 0;
  max-width: 960px;
  width: 29.1666666667%;
  margin-left: 55px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .orn-box {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
}
.sec--about .about__content .orn-box .img {
  position: absolute;
  width: 64.2857142857%;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .orn-box .img {
    position: static;
    width: 28.1690140845%;
    margin: 0;
  }
}
.sec--about .about__content .orn-box .img + .img {
  margin-left: 2.8169014085%;
}
.sec--about .about__content .orn-box .img--01 {
  top: 0;
  right: 37.5%;
}
.sec--about .about__content .orn-box .img--02 {
  top: 170px;
  right: 2.1428571429%;
}
.sec--about .about__content .orn-box .img--03 {
  top: 343px;
  right: 31.7857142857%;
}
.sec--about .about__content .summary-box .heading {
  color: #3E6EB4;
  font-size: 24px;
  line-height: 1.45;
  text-align: left;
  white-space: nowrap;
  border-left: 5px solid #3E6EB4;
  margin-bottom: 32px;
  padding: 0 0 0 24px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .summary-box .heading {
    font-size: 18px;
    white-space: normal;
    margin-bottom: 20px;
    padding-left: 12px;
  }
}
.sec--about .about__content .summary-box .text {
  font-size: 16px;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .summary-box .text {
    margin-top: 20px;
  }
}
.sec--about .about__content .learn-box {
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .learn-box {
    margin-top: 20px;
  }
}
.sec--about .about__content .learn-box__header {
  background: #3E6EB4;
  color: #fff;
  text-align: center;
  border-radius: 16px 16px 0 0;
  padding: 8px 0 5px;
}
.sec--about .about__content .learn-box__header .heading {
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 1.45;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .learn-box__header .heading {
    font-size: 18px;
  }
}
.sec--about .about__content .learn-box__header .heading::before, .sec--about .about__content .learn-box__header .heading::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  margin: auto 0;
}
.sec--about .about__content .learn-box__header .heading::before {
  left: -45px;
  background-image: url(../img/orn_learn_heading_01.svg);
  width: 33px;
  height: 32px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .learn-box__header .heading::before {
    left: -36px;
    width: 26px;
    height: 25px;
  }
}
.sec--about .about__content .learn-box__header .heading::after {
  right: -40px;
  background-image: url(../img/orn_learn_heading_02.svg);
  width: 23px;
  height: 30px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .learn-box__header .heading::after {
    right: -32px;
    width: 18px;
    height: 24px;
  }
}
.sec--about .about__content .learn-box__content {
  background: #FAFDFF;
  border: 3px solid #3F6FB4;
  border-radius: 0 0 16px 16px;
  padding: 24px 24px 32px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .learn-box__content {
    padding: 20px;
  }
}
.sec--about .about__content .learn-box .check-list {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 123px;
  margin-top: -15px;
  margin-left: -32px;
}
@media only screen and (max-width: 768px) {
  .sec--about .about__content .learn-box .check-list {
    height: auto;
  }
}
.sec--about .about__content .learn-box .check-list__item {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  margin-top: 15px;
  margin-left: 32px;
  padding-left: 34px;
}
.sec--about .about__content .learn-box .check-list__item::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background: url(../img/ico_checkbox_01.svg) no-repeat 0 0/100% auto;
  width: 19px;
  height: 19px;
}

.sec--recommend {
  background: #FAF3E1;
}
.sec--recommend .inner {
  padding: 40px 10px 80px;
}
.sec--recommend .heding {
  font-size: 40px;
  margin-bottom: 48px;
}
.sec--recommend .recommend__catch {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend__catch {
    font-size: 16px;
  }
}
.sec--recommend .recommend__catch--01 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend__catch--01 {
    margin-bottom: 32px;
  }
}
.sec--recommend .recommend__catch--02 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend__catch--02 {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 32px;
  }
}
.sec--recommend .recommend-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 854px;
  margin: 0 auto 48px;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend-list {
    margin-bottom: 20px;
  }
}
.sec--recommend .recommend-list__item {
  margin-left: 0.9367681499%;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend-list__item:not(:nth-of-type(3n + 1)) {
    margin-left: calc(2.6666666667 * var(--vw));
  }
  .sec--recommend .recommend-list__item:nth-of-type(n + 4) {
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
.sec--recommend .recommend-list__item--01 {
  width: 18.5011709602%;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend-list__item--01 {
    width: calc(28.8 * var(--vw));
  }
}
.sec--recommend .recommend-list__item--02 {
  width: 18.5011709602%;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend-list__item--02 {
    width: calc(28.8 * var(--vw));
  }
}
.sec--recommend .recommend-list__item--03 {
  width: 18.9110070258%;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend-list__item--03 {
    width: calc(29.3333333333 * var(--vw));
  }
}
.sec--recommend .recommend-list__item--04 {
  width: 18.5011709602%;
  margin-left: 0.9367681499%;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend-list__item--04 {
    width: calc(28.8 * var(--vw));
  }
}
.sec--recommend .recommend-list__item--05 {
  width: 20.3161592506%;
  margin-left: 0.7025761124%;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .recommend-list__item--05 {
    width: calc(31.4666666667 * var(--vw));
  }
}
.sec--recommend .box__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec--recommend .box__wrap .box {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  border: 3px solid #000;
  border-radius: 10px;
  width: 48.9583333333%;
  padding: 85px 3.0208333333% 5.5208333333%;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .box__wrap .box {
    width: 100%;
    padding-top: 64px;
  }
}
.sec--recommend .box__wrap .box--01 {
  border-color: #87CDE0;
}
.sec--recommend .box__wrap .box--01 .box__badge {
  background-color: #87CDE0;
}
.sec--recommend .box__wrap .box--02 {
  border-color: #EC8997;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .box__wrap .box--02 {
    margin-top: 20px;
  }
}
.sec--recommend .box__wrap .box--02 .box__badge {
  background-color: #EC8997;
}
.sec--recommend .box__wrap .box__badge {
  position: absolute;
  top: -3px;
  right: 0;
  left: 0;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  border-radius: 0 0 16px 16px;
  width: 197px;
  height: 64px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .box__wrap .box__badge {
    font-size: 18px;
    width: 148px;
    height: 48px;
  }
}
.sec--recommend .box__wrap .box__heading {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .box__wrap .box__heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.sec--recommend .box__wrap .box__text {
  font-size: 18px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .sec--recommend .box__wrap .box__text {
    font-size: 16px;
  }
}

.sec--summary {
  background: #F7F7F7;
}
.sec--summary .inner {
  padding: 48px 10px 80px;
}
.sec--summary .heading {
  font-size: 40px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .sec--summary .heading {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.sec--summary .table__wrap {
  background: #fff;
  border-radius: 10px;
  padding: 5% 8.3333333333%;
}
@media only screen and (max-width: 768px) {
  .sec--summary .table__wrap {
    padding: 20px 10px;
  }
}
.sec--summary .table {
  border-bottom: 2px solid #C2C2C2;
}
.sec--summary .table__row {
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid #C2C2C2;
  padding: 16px 0;
}
.sec--summary .table__term {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 700;
  width: 27%;
}
@media only screen and (max-width: 768px) {
  .sec--summary .table__term {
    font-size: 16px;
    width: 100%;
  }
}
.sec--summary .table__description {
  width: 73%;
}
@media only screen and (max-width: 768px) {
  .sec--summary .table__description {
    width: 100%;
    margin-top: 10px;
  }
}
.sec--summary .table__description > * + *:not(.text) {
  margin-top: 16px;
}
.sec--summary .table .text {
  font-size: 18px;
  line-height: 1.44;
}
@media only screen and (max-width: 768px) {
  .sec--summary .table .text {
    font-size: 14px;
  }
}
.sec--summary .table .text + .text {
  margin-top: 8px;
}
.sec--summary .table .note-list__item {
  font-size: 14px;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .sec--summary .table .note-list__item {
    font-size: 12px;
  }
}
.sec--summary .summary__btn {
  margin-top: 70px;
}
@media only screen and (max-width: 768px) {
  .sec--summary .summary__btn {
    margin-top: 32px;
  }
}

.sec--example .inner {
  padding: 48px 10px 80px;
}
.sec--example .heading {
  color: #3E6EB4;
  font-size: 40px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .sec--example .heading {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.sec--example .example-box__wrap {
  counter-reset: example;
  border-top: 4px solid #C2C2C2;
  padding-top: 8px;
}
.sec--example .example-box {
  counter-increment: example;
  border-top: 2px solid #C2C2C2;
  padding: 48px 0;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box {
    padding: 32px 0;
  }
}
.sec--example .example-box:last-of-type {
  padding-bottom: 0;
}
.sec--example .example-box__heading {
  position: relative;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 32px;
  padding-left: 52px;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__heading {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 40px;
  }
}
.sec--example .example-box__heading::before {
  content: counter(example);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #528FEF;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__heading::before {
    font-size: 18px;
    width: 27px;
    height: 27px;
  }
}
.sec--example .example-box__content .text {
  font-size: 18px;
  line-height: 1.9444444444;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__content .text {
    font-size: 16px;
  }
}
.sec--example .example-box__content .text--small {
  font-size: 16px;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__content .text--small {
    font-size: 14px;
  }
}
.sec--example .example-box__content .text + .text {
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__content .text + .text {
    margin-top: 20px;
  }
}
.sec--example .example-box__content .example__btn {
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__content .example__btn {
    margin-top: 20px;
  }
}
.sec--example .example-box__content .example__btn > a {
  position: relative;
  display: inline-flex;
  background: #87CDE0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  padding: 16px 64px 16px 16px;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__content .example__btn > a {
    padding-right: 48px;
  }
}
.sec--example .example-box__content .example__btn > a:hover {
  opacity: 0.7;
}
.sec--example .example-box__content .example__btn > a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  background: url(../img/ico_arrow_example_01.svg) no-repeat center/100% auto;
  width: 12px;
  height: 19px;
  margin: auto 0;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__content .example__btn > a::after {
    right: 12px;
    width: 9px;
    height: 14px;
  }
}
.sec--example .example-box__content .example__img {
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__content .example__img {
    margin-top: 32px;
  }
}
.sec--example .example-box__content .example__img .img--01 {
  max-width: 847px;
}
.sec--example .example-box__content .example__img .img--02 {
  max-width: 720px;
}
.sec--example .example-box__content .example__img .img--03 {
  max-width: 770px;
}
.sec--example .example-box__content .example__img + .text {
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .sec--example .example-box__content .example__img + .text {
    margin-top: 32px;
  }
}

.sec--app {
  background: #DEF1FF;
}
.sec--app .inner {
  padding: 54px 10px 68px;
}
.sec--app .heading {
  max-width: 684px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  .sec--app .heading {
    width: 85%;
    margin-bottom: 32px;
  }
}
.sec--app .summary-box {
  position: relative;
  background: #528FEF;
  border-radius: 16px;
  box-sizing: border-box;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px;
}
@media only screen and (max-width: 768px) {
  .sec--app .summary-box {
    padding: 20px 10px;
  }
}
.sec--app .summary-box::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 30px;
  background: url(../img/orn_app_summary_01.svg) no-repeat center/100% auto;
  width: 46px;
  height: 60px;
}
@media only screen and (max-width: 768px) {
  .sec--app .summary-box::before {
    top: 20px;
    left: 20px;
    width: 23px;
    height: 30px;
  }
}
.sec--app .summary-box .text {
  color: #fff;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec--app .summary-box .text {
    font-size: 16px;
    padding-left: 30px;
  }
}
.sec--app .point-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 64px;
}
@media only screen and (max-width: 768px) {
  .sec--app .point-list {
    flex-direction: column;
    margin-top: 32px;
  }
}
.sec--app .point-list__item {
  display: flex;
  flex-direction: column;
  width: 27.0833333333%;
}
@media only screen and (max-width: 768px) {
  .sec--app .point-list__item {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .sec--app .point-list__item + .point-list__item {
    margin-left: 5.5208333333%;
  }
}
@media only screen and (max-width: 768px) {
  .sec--app .point-list__item + .point-list__item {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .sec--app .point-list__item .img {
    width: 80px;
  }
}
.sec--app .point-list__item .text {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  border-radius: 16px;
  flex: 1;
  height: 100%;
  min-height: 0%;
  margin-top: 20px;
  padding: 8px 20px;
}
@media only screen and (max-width: 768px) {
  .sec--app .point-list__item .text {
    font-size: 18px;
    height: auto;
    margin: 0 0 0 10px;
  }
}
.sec--app .video-box {
  margin-top: 64px;
}
@media only screen and (max-width: 768px) {
  .sec--app .video-box {
    margin-top: 32px;
  }
}
.sec--app .video-box .video {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
.sec--app .video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  width: 100%;
  height: 100%;
}

.sec--use {
  background: #EFF8FF;
}
.sec--use .inner {
  padding: 70px 10px 80px;
}
.sec--use .heading {
  max-width: 686px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .sec--use .heading {
    width: 98%;
    margin-bottom: 32px;
  }
}
.sec--use .video-box {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .sec--use .video-box {
    margin-top: 32px;
  }
}
.sec--use .video-box__heading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #528FEF;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
  border-radius: 35px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  max-width: 920px;
  margin: 0 auto 64px;
  padding: 14px;
}
@media only screen and (max-width: 768px) {
  .sec--use .video-box__heading {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.sec--use .video-box__heading::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-style: solid;
  border-width: 18px 18px 0 18px;
  border-color: #fff transparent transparent transparent;
  width: 0;
  height: 0;
  margin: -1px auto 0;
}
.sec--use .video-box .video {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 720px;
  margin: 0 auto;
}
.sec--use .video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  width: 100%;
  height: 100%;
}
.sec--use .flow-box {
  margin-top: 80px;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .sec--use .flow-box {
    margin-top: 32px;
    padding: 0;
  }
}
.sec--use .flow-box__heading {
  color: #3E6EB4;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec--use .flow-box__heading {
    font-size: 18px;
  }
}
.sec--use .flow-box .flow-list {
  counter-reset: flow;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .sec--use .flow-box .flow-list {
    margin-top: 20px;
  }
}
.sec--use .flow-box .flow-list__item {
  position: relative;
  counter-increment: flow;
}
.sec--use .flow-box .flow-list__item .item__content {
  background: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  border-radius: 16px;
  padding: 24px 48px 24px 84px;
}
@media only screen and (max-width: 768px) {
  .sec--use .flow-box .flow-list__item .item__content {
    padding: 20px 10px 20px 44px;
  }
}
.sec--use .flow-box .flow-list__item:not(:first-of-type) {
  margin-top: 64px;
}
.sec--use .flow-box .flow-list__item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  border-style: solid;
  border-width: 18px 18px 0 18px;
  border-color: #2FAF88 transparent transparent transparent;
  width: 0;
  height: 0;
  margin: 0 auto;
}
.sec--use .flow-box .flow-list__item .text::before {
  content: counter(flow);
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #528FEF;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
@media only screen and (max-width: 768px) {
  .sec--use .flow-box .flow-list__item .text::before {
    top: 0;
    bottom: 0;
    left: 10px;
    font-size: 18px;
    width: 27px;
    height: 27px;
    margin: auto 0;
  }
}
.sec--use .flow-box .flow-list__item .text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}
@media only screen and (max-width: 768px) {
  .sec--use .flow-box .flow-list__item .text {
    font-size: 16px;
  }
}
.sec--use .flow-box .note-text {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .sec--use .flow-box .note-text {
    font-size: 14px;
    margin-top: 32px;
  }
}

.sec--note {
  background: #fff;
}
.sec--note .inner {
  padding: 48.5px 10px;
}
.sec--note .text {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .sec--note .text {
    font-size: 14px;
  }
}

/*==================================================
202311追加
==================================================*/
/*flow*/
.sec--flow {
  background-color: #f7f7f7
}
.sec--flow .inner {
  text-align: center;
  padding: 50px 10px 50px;
  position: relative;
}
.sec--flow .flow_balloon {
  max-width: 100px;
  position: absolute;
  top: 40px;
  right: calc(50% - 240px);
}
.sec--flow .inner .flow_ttl {
  font-size: 24px;
  font-family: "wfbd"
}
.sec--flow .inner .flow_catch {
  font-size: 18px;
  margin-bottom: 35px
}
.sec--flow .flow_wrap .flow_box {
  max-width: 714px;
  padding: 30px 0;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 40px;
  position: relative
}
.sec--flow .flow_wrap .flow_box:nth-child(2) {
  padding: 19px 0
}
.sec--flow .flow_wrap .flow_box:nth-child(3) {
  margin-bottom: 60px
}
.sec--flow .flow_wrap .flow_box:nth-child(3)::after {
  content: none;
  background: none
}
.sec--flow .flow_wrap .flow_box::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../img/icon_flow.png) no-repeat;
  width: 44px;
  height: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -32px
}
.sec--flow .flow_wrap .flow_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit
}
.sec--flow .flow_wrap .flow_box ul li:first-child {
  color: #55c2f0;
  font-size: 28px;
  font-family: "wfbd";
  border-right: 4px dotted #c2c2c2;
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
  margin-right: 30px
}
.sec--flow .flow_wrap .flow_box ul li:nth-child(2) {
  text-align: left;
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5
}
.sec--flow .flow_wrap .flow_box li p {
  font-size: 22px;
  font-family: "wfbd";
  line-height: 1.5;
  margin: 0 0 7px
}
.sec--flow .flow_wrap .flow_box li p:last-of-type {
  font-size: 16px;
  font-family: "wfre";
  line-height: 1.4;
  margin: 0
}
.sec--flow .flow_wrap .flow_box span {
  display: block;
  font-size: 12px
}
.sec--flow .flow_wrap .flow_box img {
  height: 132px;
  position: absolute;
  right: 35px;
  bottom: 10px
}
@media only screen and (max-width: 768px) {
  .sec--flow .inner {
    padding: 35px 10px 5%;
  }
  .sec--flow .flow_balloon {
    max-width: 80px;
    position: absolute;
    top: 20px;
    right: calc(50% - 180px);
  }
  .sec--flow .inner .flow_ttl {
    font-size: 15px
  }
  .sec--flow .inner .flow_catch {
    font-size: 15px;
    margin: 0 16px 13px 16px;
    text-align: left
  }
  .sec--flow h2 {
    margin-bottom: 25px
  }
  .sec--flow .flow_wrap .flow_box {
    border-radius: 6px;
    padding: 18px 8px;
    margin-bottom: 30px
  }
  .sec--flow .flow_wrap .flow_box:nth-child(2) {
    padding: 18px 8px
  }
  .sec--flow .flow_wrap .flow_box:nth-child(3) {
    margin-bottom: 15px
  }
  .sec--flow .flow_wrap .flow_box::after {
    background: url(../img/icon_flow.png) no-repeat;
    background-size: 33px 16px;
    width: 33px;
    height: 16px;
    right: 50%;
    bottom: -22px
  }
  .sec--flow .flow_wrap .flow_box span {
    font-size: 10px
  }
  .sec--flow .flow_wrap .flow_box li p {
    font-size: 18px
  }
  .sec--flow .flow_wrap .flow_box li p:last-of-type {
    font-size: 15px
  }
  .sec--flow .flow_wrap .flow_box ul {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
  .sec--flow .flow_wrap .flow_box ul li:first-child {
    font-size: 21px;
    -ms-flex-preferred-size: 66px;
    flex-basis: 66px;
    margin-right: 22px;
    border-right: 4px dotted #c2c2c2
  }
  .sec--flow .flow_wrap .flow_box ul li:nth-child(2) {
    font-size: 15px;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3
  }
}

/*sec--gift*/
.sec--gift .gift_ttl {
background-color: #f7f7f7;
border-radius: 12px;
font-size: 24px;
text-align: center;
padding: 20px 0;
font-family: "wfbd";
}
.sec--gift .inner {
padding: 0 10px 80px;
}
.sec--gift .gift_wrap ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: center;
gap:5%;
margin-top: 23px;
}
.sec--gift .gift_wrap ul li {
width: 48%;
text-align: center;
}
.sec--gift .gift_wrap ul li img {
width: 100%;
}
.sec--gift .gift_wrap ul li p {
font-size: 20px;
}
.sec--gift .gift_wrap ul li .notice {
font-size: 12px;
margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .sec--gift .gift_ttl {
  padding: 20px 10px;
  }
.sec--gift .gift_wrap ul li {
width: 90%;
text-align: center;
}
}

/*# sourceMappingURL=page.css.map */