@charset "UTF-8";
:root {
  --black: 31,25,25;
  --red: 255,0,0;
  --border: rgba(var(--black),.6);
  --contents_width: 1092px;
  --body_padding_side: 76px;
  --contents_width_with_padding: 1168px;
  --sidebar_width: 250px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

/* 02_base
================================================ */
html {
  overflow: auto;
}

body {
  min-width: 360px;
  font-family: "M PLUS 1p", sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 1.57;
  padding-bottom: 136px;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 165px;
  }
}

.l-wrapper {
  background-color: #fff;
  position: relative;
}

/* sp <--> tb ~ pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1168px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 767px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-font-poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 767px) {
  .u-inner {
    max-width: 600px;
  }
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    padding-left: 0;
    padding-right: 0;
  }
}

/*  .c-faq01
================================================== */
.c-faq01 {
  line-height: 1.71;
}
.c-faq01 + .c-faq01 {
  margin-top: 20px;
}
.c-faq01__ico {
  position: absolute;
  font-family: "Poppins", sans-serif;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  text-align: center;
  background: #2B99D3;
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  font-size: 1.8rem;
}
.c-faq01__head {
  position: relative;
  background-color: #ACE1FF;
  padding: 14px 14px 14px 45px;
  font-weight: 800;
  line-height: 1.57;
}
.c-faq01__head[class*=toggle] {
  cursor: pointer;
}
.c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 3px;
  background-color: #2B99D3;
  transition: all 0.3s ease;
}
.c-faq01__head[class*=toggle]::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.c-faq01__head.is-active::after {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}
.c-faq01__txt {
  position: relative;
  font-weight: 500;
  padding: 13px 10px 5px 45px;
}
.c-faq01__txt .c-faq01__ico {
  background: #fff;
  color: #2B99D3;
  box-shadow: 0 0 0 2px #2B99D3 inset;
  top: 5px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media all and (min-width: 768px) {
  .c-faq01__ico {
    width: 40px;
    height: 40px;
    left: 20px;
  }
  .c-faq01__head {
    padding: 18px 77px;
  }
  .c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
    width: 24px;
    right: 20px;
  }
  .c-faq01__txt {
    padding: 18px 18px 18px 77px;
  }
  .c-faq01__txt .c-faq01__ico {
    top: 10px;
  }
}

.l-fixed-cv {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #F3F2E3;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  transition: all 0.3s ease;
}
.l-fixed-cv__txt {
  text-align: center;
  margin-top: 6px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #E35252;
}
.l-fixed-cv.is-shown {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media all and (min-width: 768px) {
  .l-fixed-cv {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  .l-fixed-cv .l-fixed-cv__btn {
    margin-top: 0;
  }
  .l-fixed-cv__txt {
    margin-top: 10px;
    font-size: 2rem;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  background: #2B99D3;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 10px;
}
.l-footer__info-logo {
  width: 130px;
  margin: auto;
}
.l-footer__cr {
  margin-top: 40px;
  font-size: 1rem;
}
@media all and (min-width: 768px) {
  .l-footer {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .l-footer__info-logo {
    width: 421px;
  }
  .l-footer__cr {
    margin-top: 60px;
    font-size: 1.2rem;
  }
}

/* .l-header
================================================ */
.l-header {
  position: relative;
  width: 100%;
  min-width: 320px;
  background-color: #fff;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
  }
  .l-header__inner {
    margin: auto;
    height: 88px;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  padding-left: 17px;
}
.l-header-info__logo {
  width: 104px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    padding-left: 30px;
  }
  .l-header-info__logo {
    width: 421px;
  }
}

/* .l-nav
================================================ */
.l-nav-list {
  display: flex;
  justify-content: flex-end;
  padding-right: 3px;
  padding-top: 8px;
}
.l-nav-tel__btn {
  width: 208px;
  background-color: #44B444;
  border-radius: 41px;
  box-shadow: 0 3px 0 0 #208420;
  display: block;
  padding: 9px 0 0 39px;
  line-height: 1.2;
  margin: auto;
  position: relative;
}
.l-nav-tel__btn::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 24px;
  height: 24px;
  background: url(../img/ico_tel02.png) no-repeat center/contain;
}
.l-nav-tel__btn-time {
  width: 116px;
  display: block;
  position: absolute;
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.l-nav-tel__btn-time img {
  display: block;
}
.l-nav-tel__btn-num {
  color: #fff;
  font-size: 1.9rem;
}
.l-nav-tel__btn-txt {
  width: 150px;
  margin: 6px auto 0;
}
.l-nav-tel__btn-txt img {
  display: block;
}
@media all and (min-width: 768px) {
  .l-nav-list {
    padding-right: 18px;
  }
  .l-nav-tel__btn {
    width: 290px;
    padding: 10px 10px 2px 49px;
    box-shadow: 0 4px 0 0 #208420;
  }
  .l-nav-tel__btn::before {
    width: 34px;
    height: 34px;
    top: 7px;
    left: 10px;
  }
  .l-nav-tel__btn-time {
    width: 150px;
    top: -10px;
  }
  .l-nav-tel__btn-num {
    font-size: 2.8rem;
  }
  .l-nav-tel__btn-txt {
    margin-top: 10px;
    width: 200px;
  }
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  background: url(../img/bg_mainimg01-sp.jpg) no-repeat center top/cover;
}
.l-main-img__inner {
  padding-top: 35px;
  padding-bottom: 38px;
}
.l-main-img__copy01 {
  width: 230px;
  margin-left: -8px;
}
.l-main-img__copy02 {
  margin-top: 10px;
  width: 332px;
}
.l-main-img__area-btn {
  margin-top: 24px;
}
.l-main-img__btn {
  background-color: #44B444;
  border-radius: 41px;
  box-shadow: 0 3px 0 0 #208420;
  display: block;
  padding: 8px 0 0 61px;
  max-width: 327px;
  margin: auto;
  position: relative;
}
.l-main-img__btn::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 13px;
  width: 41px;
  height: 41px;
  background: url(../img/ico_tel02.png) no-repeat center/contain;
}
.l-main-img__btn-time {
  width: 202px;
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.l-main-img__btn-time img {
  display: block;
}
.l-main-img__btn-num {
  color: #fff;
  font-size: 3.1rem;
}
.l-main-img__btn-txt {
  width: 250px;
  margin: auto;
}
@media all and (max-width: 767px) {
  .l-main-img__area-copy {
    margin: 0 -5px;
  }
}
@media all and (min-width: 768px) {
  .l-main-img {
    background: url(../img/bg_mainimg01-pc.jpg) no-repeat center top/1366px;
  }
  .l-main-img__inner {
    padding-top: 49px;
    padding-bottom: 57px;
  }
  .l-main-img__copy01 {
    width: 591px;
    margin: 0;
  }
  .l-main-img__copy02 {
    width: 587px;
    margin: 3px 10px 0;
  }
  .l-main-img__area-btn {
    width: 587px;
  }
  .l-main-img__btn {
    margin: 35px auto 0;
    max-width: 500px;
    box-shadow: 0 6px 0 0 #208420;
    padding: 10px 0 0 88px;
  }
  .l-main-img__btn::before {
    top: 12px;
    left: 18px;
    width: 58px;
    height: 58px;
  }
  .l-main-img__btn-time {
    width: 221px;
    top: -14px;
  }
  .l-main-img__btn-num {
    font-size: 4.7rem;
  }
  .l-main-img__btn-txt {
    width: 324px;
    margin-top: 10px;
  }
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* .home-intro
================================================ */
.home-intro {
  background-color: #F3F2E3;
}
.home-intro__inner {
  padding-top: 29px;
  padding-bottom: 60px;
}
.home-intro__list {
  padding: 0 30px;
}
.home-intro__item {
  background-color: #fff;
  border: 2px solid #2B99D3;
  color: #2B99D3;
  border-radius: 10px;
  padding: 15px 24px;
}
.home-intro__item + .home-intro__item {
  margin-top: 20px;
}
.home-intro__item-head {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 14px;
}
.home-intro__item-img {
  margin: auto;
  width: 156px;
}
.home-intro__item:nth-child(2) .home-intro__item-img {
  width: 198px;
}
@media all and (min-width: 768px) {
  .home-intro__inner {
    padding-top: 77px;
    padding-bottom: 97px;
  }
  .home-intro__list {
    display: flex;
    justify-content: center;
  }
  .home-intro__item {
    width: 440px;
    padding: 30px 24px 10px;
  }
  .home-intro__item + .home-intro__item {
    margin: 0 0 0 25px;
  }
  .home-intro__item-head {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .home-intro__item-img {
    width: 260px;
  }
  .home-intro__item:nth-child(2) .home-intro__item-img {
    width: 346px;
  }
}

/* .home-case
================================================ */
.home-case__head {
  background-color: #ACE1FF;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.36;
  padding: 15px 0;
  position: relative;
}
.home-case__head-sub {
  font-size: 1.6rem;
  color: #2B99D3;
  width: 78px;
  height: 78px;
  position: absolute;
  left: 50%;
  margin-left: -165px;
  top: -39px;
  background: url(../img/bg_fukidashi01.png) no-repeat center/contain;
  padding: 30px 0;
}
.home-case__inner {
  padding-top: 50px;
  padding-bottom: 42px;
}
.home-case__list {
  padding: 0 13px;
}
.home-case__item {
  position: relative;
  max-width: 600px;
  margin: auto;
}
.home-case__item + .home-case__item {
  margin-top: 40px;
}
.home-case__item-num {
  position: absolute;
  top: -20px;
  left: -20px;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  width: 60px;
  height: 60px;
  background-color: #F4D797;
  border-radius: 50%;
  line-height: 60px;
  display: block;
}
.home-case__item-head {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 15px;
  line-height: 1.47;
}
.home-case__foot {
  margin-top: 40px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.home-case__foot .large {
  color: #2B99D3;
  font-size: 2.4rem;
}
.home-case__foot .large > span {
  font-size: 2.8rem;
}
.home-case__foot .txt02 {
  max-width: 327px;
  display: block;
  margin: auto;
}
.home-case__foot .txt03 {
  font-size: 2.3rem;
}
@media all and (min-width: 768px) {
  .home-case__head {
    font-size: 3rem;
    padding-top: 32px;
    padding-bottom: 33px;
    line-height: 1.5;
  }
  .home-case__head-sub {
    font-size: 2.4rem;
    width: 108px;
    height: 108px;
    padding-top: 38px;
    top: -33px;
    left: 50%;
    margin-left: -365px;
  }
  .home-case__inner {
    padding-bottom: 37px;
  }
  .home-case__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-case__item {
    width: 232px;
    margin: 0;
  }
  .home-case__item + .home-case__item {
    margin: 0 0 0 83px;
  }
  .home-case__item-num {
    font-size: 3.3rem;
    width: 78px;
    height: 78px;
    line-height: 78px;
    top: -30px;
    left: -27px;
  }
  .home-case__item-head {
    margin-top: 20px;
    font-size: 1.9rem;
  }
  .home-case__foot {
    margin-top: 16px;
  }
  .home-case__foot .txt01 {
    font-size: 3rem;
  }
  .home-case__foot .txt01 .large {
    font-size: 3.6rem;
  }
  .home-case__foot .txt01 .large > span {
    font-size: 4.2rem;
  }
  .home-case__foot .txt02 {
    max-width: 450px;
    margin: 4px auto 0;
  }
  .home-case__foot .txt03 {
    font-size: 3.4rem;
  }
}

/* .home-trouble
================================================ */
.home-trouble {
  background-color: #F3F2E3;
}
.home-trouble__inner {
  padding-top: 37px;
  padding-bottom: 50px;
}
.home-trouble__head {
  font-weight: 700;
  position: relative;
}
.home-trouble__head .large {
  font-size: 1.8rem;
}
.home-trouble__head .marker {
  background: linear-gradient(transparent 70%, #FAD94C 30%);
}
.home-trouble__head .blue {
  color: #2B99D3;
}
.home-trouble__head .red {
  color: #FF475E;
}
.home-trouble__head .exlarge {
  font-size: 2.6rem;
  line-height: 1.2;
}
.home-trouble__head-main {
  margin-top: 20px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}
.home-trouble__head img {
  display: block;
  width: 148px;
  position: absolute;
  right: -10px;
  bottom: 0;
}
.home-trouble__example {
  margin-top: 30px;
  background: #FAD94C url(../img/bg_line01.png) repeat-x 0 0/auto 7px;
  padding: 22px 22px 36px;
  position: relative;
}
.home-trouble__example::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: url(../img/bg_line01.png) repeat-x 0 0/auto 7px;
}
.home-trouble__example-head {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.home-trouble__example-list {
  font-weight: 700;
}
.home-trouble__example-item {
  padding-left: 23px;
  font-size: 1.5rem;
  position: relative;
}
.home-trouble__example-item + .home-trouble__example-item {
  margin-top: 15px;
}
.home-trouble__example-item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 15px;
  background: url(../img/ico_caution01.png) no-repeat center/contain;
}
.home-trouble__detail {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 15px 18px;
  margin-top: 30px;
}
.home-trouble__detail p + p {
  margin-top: 6px;
}
.home-trouble__detail-img {
  margin-top: 15px;
}
@media all and (min-width: 768px) {
  .home-trouble__inner {
    padding-top: 92px;
    padding-bottom: 80px;
  }
  .home-trouble__head {
    background-color: #fff;
    padding: 37px 40px;
    font-size: 1.8rem;
  }
  .home-trouble__head .large,
.home-trouble__head .large-pc {
    font-size: 2.2rem;
  }
  .home-trouble__head .exlarge {
    font-size: 2.6rem;
  }
  .home-trouble__head-main {
    padding: 0;
  }
  .home-trouble__head img {
    width: 171px;
    right: 58px;
  }
  .home-trouble__head-main {
    margin-top: 30px;
  }
  .home-trouble__example {
    margin-top: 40px;
    text-align: center;
    padding: 40px 40px 60px;
    background-size: auto 10px;
  }
  .home-trouble__example::after {
    background-size: auto 10px;
    height: 10px;
  }
  .home-trouble__example-head {
    font-size: 3rem;
    margin-bottom: 26px;
  }
  .home-trouble__example-list {
    display: inline-block;
  }
  .home-trouble__example-item {
    text-align: left;
    font-size: 2.4rem;
    padding-left: 45px;
  }
  .home-trouble__example-item + .home-trouble__example-item {
    margin-top: 18px;
  }
  .home-trouble__example-item::before {
    top: 0px;
    width: 38px;
    height: 34px;
  }
  .home-trouble__detail {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 34px 40px 26px;
  }
  .home-trouble__detail-area-txt {
    width: 49%;
    font-size: 1.8rem;
    line-height: 2;
  }
  .home-trouble__detail-area-txt p + p {
    margin-top: 23px;
  }
  .home-trouble__detail-img {
    width: 48%;
    margin-top: 5px;
  }
}

/* .home-point
================================================ */
.home-point {
  background-color: #FAFAFA;
}
.home-point__inner {
  padding-top: 50px;
  padding-bottom: 80px;
}
.home-point__head {
  text-align: center;
  font-size: 1.6rem;
}
.home-point__head img {
  display: block;
  width: 210px;
  margin: auto;
}
.home-point__list {
  margin-top: 20px;
  padding: 0 20px;
}
.home-point__item {
  position: relative;
}
.home-point__item + .home-point__item {
  margin-top: 53px;
}
.home-point__item-num {
  position: absolute;
  top: -17px;
  left: -14px;
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2B99D3;
  text-align: center;
  line-height: 60px;
  z-index: 1;
}
.home-point__item-head {
  background-color: #ACE1FF;
  padding: 15px;
  position: relative;
}
.home-point__item-head::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #ACE1FF transparent transparent transparent;
}
.home-point__item-head img {
  display: block;
  height: 50px;
  width: auto;
  margin: auto;
}
.home-point__item-txt {
  padding-top: 18px;
}
.home-point__item-note {
  margin-top: 18px;
}
.home-point__message {
  margin-top: 54px;
  text-align: center;
  font-weight: 700;
}
.home-point__message .marker {
  font-size: 1.8rem;
  background: linear-gradient(transparent 75%, #FAD94C 25%);
}
.home-point__message p + p {
  margin-top: 15px;
}
.home-point__message strong {
  color: #2B99D3;
  font-size: 2.4rem;
}
.home-point__foot {
  background-color: #F3F2E1;
  border-radius: 10px;
  padding: 20px 8px;
  margin-top: 40px;
  text-align: center;
  font-size: 1.6rem;
}
.home-point__foot-txt {
  font-weight: 700;
}
.home-point__foot-txt strong {
  font-size: 2.4rem;
  color: #2B99D3;
}
.home-point__foot-note {
  font-size: 1rem;
  margin-top: 3px;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}
.home-point__foot-note::before {
  content: "※";
  position: relative;
}
.home-point__foot img {
  display: block;
  width: 169px;
  margin: 15px auto 0;
}
@media all and (min-width: 768px) {
  .home-point__inner {
    padding-top: 76px;
    padding-bottom: 120px;
  }
  .home-point__head {
    font-size: 2.4rem;
  }
  .home-point__head img {
    width: 237px;
  }
  .home-point__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 66px;
    padding: 0;
    -webkit-transform: translateX(16px);
    transform: translateX(16px);
  }
  .home-point__item {
    width: 300px;
  }
  .home-point__item + .home-point__item {
    margin: 0 0 0 49px;
  }
  .home-point__item-num {
    width: 78px;
    height: 78px;
    line-height: 78px;
    font-size: 3.3rem;
    top: -30px;
    left: -30px;
  }
  .home-point__item-head img {
    height: 52px;
  }
  .home-point__item-note {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  .home-point__message {
    margin-top: 37px;
    font-size: 1.8rem;
  }
  .home-point__message .marker {
    font-size: 2.2rem;
  }
  .home-point__message p + p {
    margin-top: 5px;
  }
  .home-point__message strong {
    font-size: 2.6rem;
  }
  .home-point__foot {
    position: relative;
    text-align: left;
    padding: 34px 10px 27px 314px;
    margin-top: 52px;
  }
  .home-point__foot-txt {
    font-size: 2.2rem;
  }
  .home-point__foot-txt strong {
    font-size: 3rem;
  }
  .home-point__foot-note {
    margin: 0;
    font-size: 1.4rem;
  }
  .home-point__foot img {
    margin: 0;
    position: absolute;
    left: 40px;
    bottom: 10px;
    width: 237px;
    height: 184px;
  }
}

/* .home-voice
================================================ */
.home-voice__inner {
  padding-bottom: 82px;
}
.home-voice__head {
  background-color: #ACE1FF;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.36;
  padding: 15px 0;
  position: relative;
}
.home-voice__head-sub {
  position: absolute;
  font-size: 1.6rem;
  color: #2B99D3;
  width: 78px;
  height: 78px;
  margin-left: -132px;
  top: -39px;
  left: 50%;
  background: url(../img/bg_fukidashi01.png) no-repeat center/contain;
  padding: 30px 0;
}
.home-voice__list {
  margin-top: 40px;
}
.home-voice__item + .home-voice__item {
  margin-top: 40px;
}
.home-voice__item img {
  display: block;
  width: 170px;
  margin: auto;
}
.home-voice__item-txt {
  margin-top: 23px;
  background-color: #EAF8FD;
  padding: 12px 15px 10px;
  line-height: 1.71;
  border-radius: 10px;
  position: relative;
}
.home-voice__item-txt::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 13px 22px 13px;
  border-color: transparent transparent #EAF8FD transparent;
}
@media all and (min-width: 768px) {
  .home-voice__inner {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .home-voice__head {
    padding-top: 56px;
    padding-bottom: 56px;
    font-size: 3rem;
  }
  .home-voice__head-sub {
    font-size: 2.4rem;
    width: 108px;
    height: 108px;
    padding: 40px 0;
    margin-left: -330px;
    top: -35px;
  }
  .home-voice__list {
    display: flex;
    margin: 0;
  }
  .home-voice__item {
    width: 526px;
  }
  .home-voice__item img {
    width: 200px;
  }
  .home-voice__item + .home-voice__item {
    margin: 0 0 0 40px;
  }
  .home-voice__item-txt {
    margin-top: 34px;
    min-height: 280px;
    padding: 18px 23px;
    line-height: 1.5;
  }
}

/* .home-flow
================================================ */
.home-flow {
  background-color: #F3F2E3;
}
.home-flow__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.home-flow__head {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
}
.home-flow__content {
  background-color: #FFF;
  border-radius: 10px;
  padding: 19px 20px 15px;
}
.home-flow__img {
  margin: 0 auto 20px;
}
.home-flow__list {
  margin-top: 18px;
}
.home-flow__item {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #2B99D3;
  display: flex;
}
.home-flow__item sup {
  font-size: 50%;
  vertical-align: top;
  position: relative;
}
.home-flow__item .num {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 1.6rem;
  border-radius: 50%;
  display: block;
  background-color: #2B99D3;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-style: normal;
  margin-right: 5px;
}
.home-flow__item:nth-child(1), .home-flow__item:nth-child(7) {
  color: #5FCB78;
}
.home-flow__item:nth-child(1) .num, .home-flow__item:nth-child(7) .num {
  background-color: #5FCB78;
}
.home-flow__item:nth-child(4) .num, .home-flow__item:nth-child(5) .num, .home-flow__item:nth-child(6) .num {
  color: #2B99D3;
  background-color: #fff;
  box-shadow: 0 0 0 2px #2B99D3 inset;
}
.home-flow__note {
  margin-top: 18px;
  font-size: 1rem;
}
@media all and (min-width: 768px) {
  .home-flow__inner {
    padding-top: 57px;
    padding-bottom: 80px;
  }
  .home-flow__head {
    font-size: 3rem;
    margin-bottom: 38px;
  }
  .home-flow__content {
    padding: 30px 40px 20px;
  }
  .home-flow__img {
    max-width: 1012px;
  }
  .home-flow__note {
    margin-top: -40px;
    line-height: 1.6;
    color: #2B99D3;
    font-size: 1.2rem;
  }
}

/* .home-reason
================================================ */
.home-reason {
  background-color: #FAFAFA;
}
.home-reason__inner {
  padding-top: 40px;
  padding-bottom: 55px;
}
.home-reason__head {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}
.home-reason__head img {
  width: 142px;
  display: block;
  margin: -3px auto 0;
}
.home-reason__item + .home-reason__item {
  margin-top: 37px;
}
.home-reason__item-num {
  width: 62px;
  margin-bottom: 5px;
}
.home-reason__item-num img {
  display: block;
}
.home-reason__item-head {
  font-size: 2rem;
  color: #2B99D3;
  margin-bottom: 5px;
}
.home-reason__item-head .small {
  font-size: 1.6rem;
}
.home-reason__item-img {
  margin-top: 17px;
}
.home-reason__item-note {
  margin-top: 5px;
  font-size: 1.2rem;
}
@media all and (max-width: 767px) {
  .home-reason__item-txt {
    line-height: 1.7;
  }
}
@media all and (min-width: 768px) {
  .home-reason__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home-reason__head {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .home-reason__head img {
    width: 160px;
  }
  .home-reason__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .home-reason__item + .home-reason__item {
    margin-top: 40px;
  }
  .home-reason__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .home-reason__item:nth-child(2n) .home-reason__item-area-txt {
    margin: 0 0 0 40px;
  }
  .home-reason__item-area-txt {
    width: 500px;
    margin-right: 40px;
  }
  .home-reason__item-num {
    width: 100px;
  }
  .home-reason__item-head {
    font-size: 2.4rem;
  }
  .home-reason__item-head .small {
    font-size: 1.8rem;
  }
  .home-reason__item-img {
    width: 439px;
    margin: 0;
  }
  .home-reason__item-note {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

/* .home-area
================================================ */
.home-area__inner {
  padding: 0;
}
.home-area__head {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #154788;
  font-size: 2.5rem;
}
.home-area__content {
  padding: 38px 44px 29px;
  border-radius: 10px;
  background-color: #E2F0F2;
}
.home-area__img {
  margin-right: -8px;
  text-align: center;
}
.home-area__img img {
  width: 400px;
}
.home-area__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 165px;
  margin: -60px 0 0 auto;
}
.home-area__item {
  font-weight: 800;
  line-height: 1.5;
  font-size: 2.2rem;
  padding-left: 24px;
  position: relative;
}
.home-area__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #3799d3;
}
@media all and (min-width: 768px) {
  .home-area__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home-area__content {
    width: 950px;
    height: 432px;
    margin: auto;
    box-sizing: border-box;
    padding: 44px 0 0 530px;
    position: relative;
    background-color: transparent;
  }
  .home-area__head {
    position: relative;
    text-align: left;
    margin-bottom: 20px;
    z-index: 1;
    font-size: 4.3rem;
  }
  .home-area__img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .home-area__img img {
    width: auto;
    max-width: 100%;
  }
  .home-area__list {
    position: relative;
    margin: 0;
  }
  .home-area__item {
    font-size: 3.8rem;
    padding-left: 50px;
  }
  .home-area__item::before {
    top: 16px;
    left: 15px;
    width: 22px;
    height: 22px;
  }
  .home-area__item + .home-area__item {
    margin-top: 3px;
  }
}

/* .home-apology
================================================ */
.home-apology {
  background-color: #F3F2E3;
}
.home-apology__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.home-apology__content {
  background-color: #fff;
  text-align: center;
  padding-bottom: 15px;
}
.home-apology__head {
  color: #fff;
  background-color: #E35252;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
  padding: 20px 20px 20px 65px;
  position: relative;
}
.home-apology__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -165px;
  width: 65px;
  height: 89px;
  background: url(../img/img_apology01.png) no-repeat center/contain;
}
.home-apology__txt {
  line-height: 1.4;
}
.home-apology__txt02 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-top: 16px;
}
.home-apology__txt02 strong {
  font-size: 2.4rem;
}
@media all and (min-width: 768px) {
  .home-apology__inner {
    padding-top: 77px;
    padding-bottom: 70px;
  }
  .home-apology__content {
    width: 660px;
    position: relative;
    margin: auto;
    text-align: left;
    padding-bottom: 30px;
  }
  .home-apology__content::before {
    content: "";
    position: absolute;
    left: -35px;
    bottom: 0;
    margin: 0;
    width: 233px;
    height: 321px;
    background: url(../img/img_apology01.png) no-repeat center/contain;
    z-index: 1;
  }
  .home-apology__head {
    font-size: 4rem;
    padding: 20px 0 18px 214px;
    margin-bottom: 24px;
    text-align: left;
  }
  .home-apology__head::before {
    display: none;
  }
  .home-apology__txt {
    font-size: 1.8rem;
    padding-left: 214px;
  }
  .home-apology__txt02 {
    margin-top: 10px;
    padding-left: 214px;
    font-size: 1.8rem;
  }
  .home-apology__txt02 strong {
    font-size: 3rem;
  }
}

/* .home-cv01
================================================ */
.home-cv01 {
  background-color: #FFF089;
}
.home-cv01__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.home-cv01__head {
  text-align: center;
  font-size: 1.6rem;
}
.home-cv01__txt {
  max-width: 327px;
  margin: auto;
}
.home-cv01__btn {
  background-color: #44B444;
  border-radius: 41px;
  box-shadow: 0 3px 0 0 #208420;
  display: block;
  padding: 8px 0 0 61px;
  max-width: 327px;
  margin: 35px auto 0;
  position: relative;
}
.home-cv01__btn::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 13px;
  width: 41px;
  height: 41px;
  background: url(../img/ico_tel02.png) no-repeat center/contain;
}
.home-cv01__btn-time {
  width: 202px;
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.home-cv01__btn-time img {
  display: block;
}
.home-cv01__btn-num {
  color: #fff;
  font-size: 3.1rem;
}
.home-cv01__btn-txt {
  width: 250px;
  margin: auto;
}
@media all and (min-width: 768px) {
  .home-cv01__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home-cv01__head {
    font-size: 2.6rem;
    margin-bottom: 5px;
  }
  .home-cv01__txt {
    max-width: 512px;
  }
  .home-cv01__btn {
    margin: 24px auto 0;
    max-width: 500px;
    box-shadow: 0 6px 0 0 #208420;
    padding: 10px 0 0 88px;
  }
  .home-cv01__btn::before {
    top: 12px;
    left: 18px;
    width: 58px;
    height: 58px;
  }
  .home-cv01__btn-time {
    width: 221px;
    top: -14px;
  }
  .home-cv01__btn-num {
    font-size: 4.7rem;
  }
  .home-cv01__btn-txt {
    width: 324px;
    margin-top: 8px;
  }
}

/* .home-qa
================================================ */
.home-qa__inner {
  padding-top: 57px;
  padding-bottom: 110px;
}
.home-qa__head {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
  font-size: 2.4rem;
}
@media all and (min-width: 768px) {
  .home-qa__inner {
    padding-top: 80px;
    padding-bottom: 178px;
  }
  .home-qa__head {
    margin-bottom: 58px;
    font-size: 3rem;
  }
  .home-qa__list {
    max-width: 956px;
    margin: auto;
  }
}