@charset "UTF-8";
:root {
  --black: 51,51,51;
  --red: 255,0,0;
  --mint: 77,208,186;
  --orange: 248,180,121;
  --border: rgba(var(--black),.6);
  --contents_width: 980px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1040px;
  --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%;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

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: 375px;
  padding-top: 60px;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(var(--black));
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.71;
  font-weight: 300;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    padding-top: 132px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

body.page-id-211 button,
body.page-id-208 button,
body.page-id-2 button {
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media all and (max-width: 767px) {
  body.page-id-211,
body.page-id-208,
body.page-id-2 {
    padding-bottom: 60px;
  }
}
.l-wrapper {
  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: 1040px) {
  .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-lato {
  font-family: "Lato", sans-serif;
}

/* 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: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.u-inner02 {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner02 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/*  .c-btn01
================================================== */
.c-btn01 {
  margin: 18px auto 0;
}
.c-btn01__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: rgb(var(--orange));
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.2;
  padding: 10px;
  border-radius: 178px;
  text-align: center;
  min-height: 55px;
  position: relative;
  transition: all 0.3s ease;
}
.c-btn01__link::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(../img/home/ico_arrow01.png) no-repeat center/contain;
}
.c-btn01__link:hover {
  opacity: 0.7;
}
.c-btn01__txt {
  font-weight: 500;
}
.c-btn01__txt-small {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
}
.c-btn01.is-large .c-btn01__link {
  min-height: 70px;
  font-size: 2.4rem;
}
.c-btn01.is-large .c-btn01__link::before {
  width: 30px;
  height: 30px;
  right: 25px;
}
@media all and (max-width: 767px) {
  .c-btn01__link {
    font-size: 2rem;
  }
  .c-btn01.is-large .c-btn01__link {
    min-height: 50px;
    font-size: 2rem;
  }
  .c-btn01.is-large .c-btn01__link::before {
    width: 26px;
    height: 26px;
    right: 15px;
  }
}

.c-btn01.is-white .c-btn01__link {
  background-color: #fff;
  border: 2px solid rgb(var(--mint));
  color: rgb(var(--mint));
}
.c-btn01.is-white .c-btn01__link::before {
  background: url(../img/home/ico_arrow01_mint.png) no-repeat center/contain;
}
.c-btn01.is-white .c-btn01__link:hover {
  color: #fff;
  background-color: rgb(var(--mint));
}
.c-btn01.is-white .c-btn01__link:hover::before {
  background: url(../img/home/ico_arrow01.png) no-repeat center/contain;
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-blue
================================================== */
.c-color-blue {
  color: blue;
}

/*  .c-faq01
================================================== */
.c-faq01 {
  max-width: 750px;
  margin: auto;
}
.c-faq01 + .c-faq01 {
  margin-top: 20px;
}
.c-faq01__ico {
  font-size: 700px;
  position: absolute;
  top: 0;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}
.c-faq01__head {
  position: relative;
  padding: 10px 10px 10px 60px;
  background: rgb(var(--mint));
  font-size: 1.8rem;
  border-radius: 27px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.c-faq01__head::before, .c-faq01__head::after {
  position: absolute;
  top: 50%;
  right: 25px;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.c-faq01__head::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.c-faq01__head.is-active::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.c-faq01__head .c-faq01__ico {
  color: #fff;
}
.c-faq01__txt {
  position: relative;
  padding: 19px 10px 12px 60px;
}
.c-faq01__txt .c-faq01__ico {
  top: 12px;
  color: rgb(var(--mint));
}
@media all and (max-width: 767px) {
  .c-faq01__ico {
    font-size: 2.2rem;
    width: 20px;
    left: 10px;
    top: 1px;
  }
  .c-faq01__head {
    font-size: 1.6rem;
    border-radius: 10px;
    padding: 7px 37px 8px 37px;
    background-color: #4DD0BA;
  }
  .c-faq01__head::before, .c-faq01__head::after {
    width: 16px;
    right: 10px;
    top: 21px;
  }
  .c-faq01__txt {
    padding: 5px 18px 10px 37px;
  }
}

/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}

textarea.c-form-parts {
  height: 200px;
  resize: vertical;
}

select.c-form-parts {
  width: 300px;
  padding-right: 24px;
  background: no-repeat right 15px top 50%/8px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default th, .c-form.is-default td {
  padding: 15px 0;
  border-style: solid;
  border-width: 0;
}
.c-form.is-default th {
  padding: 15px;
  font-weight: 700;
  text-align: left;
  background: #ccc;
}
@media all and (max-width: 767px) {
  .c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default th, .c-form.is-default td {
    display: block;
  }
  .c-form.is-default th {
    border-bottom: 0;
  }
  .c-form.is-default tr + tr th {
    border-top: 0;
  }
}
@media all and (min-width: 768px) {
  .c-form.is-default th, .c-form.is-default td {
    padding: 20px;
    border-width: 1px 0;
  }
  .c-form.is-default th {
    width: 300px;
    border-color: #fff;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 20px;
  margin-left: 10px;
  background: rgb(var(--black));
  color: #fff;
  font-size: 1rem;
  border-radius: 2px;
}
.c-form-label.is-required {
  background: red;
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: 1.3rem;
}

td .c-form-note {
  margin-top: 10px;
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 14px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}
@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}
@media all and (min-width: 1040px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 15px;
  text-align: center;
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.c-form-btn {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 60px;
  padding: 5px 10px;
  font-size: 1.6rem;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}
.c-form-btn + .c-form-btn {
  margin-top: 10px;
}
@media all and (min-width: 768px) {
  .c-form-btn {
    width: 300px;
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}
.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
  margin-top: 10px;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}
.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
}
.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: rgb(var(--black));
}
@media all and (min-width: 768px) {
  .c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
    top: 5px;
  }
  .c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
    top: 6px;
  }
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}
.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}
.c-radio-list .mwform-radio-field + .mwform-radio-field, .c-radio-list .mwform-radio-field + .c-radio,
.c-radio-list .c-radio + .mwform-radio-field,
.c-radio-list .c-radio + .c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
  margin-top: 10px;
}
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
}
.c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
  position: absolute;
  top: 7px;
  left: 5px;
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media all and (min-width: 768px) {
  .c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
    top: 5px;
  }
  .c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
    top: 9px;
  }
}

.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field, .c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}

/*  .c-head01
================================================== */
.c-head01 {
  text-align: center;
}
.c-head01__sub {
  font-size: 2.4rem;
  color: rgb(var(--mint));
  text-transform: uppercase;
  letter-spacing: 0.3em;
  position: relative;
  padding-bottom: 17px;
}
.c-head01__sub::before {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 8px;
  background: url(../img/home/bg_head01.png) no-repeat center/contain;
}
.c-head01__main {
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.44;
}
.c-head01__lead {
  margin-top: 4px;
  font-size: 1.8rem;
}
@media all and (max-width: 767px) {
  .c-head01__sub {
    font-size: 2rem;
    font-weight: 500;
  }
  .c-head01__sub::before {
    bottom: 7px;
  }
  .c-head01__main {
    font-size: 2.2rem;
  }
  .c-head01__lead {
    font-size: 1.6rem;
  }
}

/*  .c-head02
================================================== */
.c-head02 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #219D85;
}
@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 2.4rem;
  }
}

/*  .c-note01
================================================== */
.c-note01 {
  font-size: 1rem;
}
@media all and (min-width: 768px) {
  .c-note01 {
    font-size: 1.2rem;
  }
}

/*  .c-table01
================================================== */
.c-table01 th, .c-table01 td {
  box-sizing: border-box;
}
.c-table01 th {
  width: 76px !important;
  text-align: right;
  font-weight: 400;
  padding: 5px 20px 5px 0;
}
.c-table01 td {
  font-weight: 400;
  max-width: 324px;
  padding: 5px 0;
}
@media all and (min-width: 768px) {
  .c-table01 th {
    width: 103px !important;
    padding: 4px 39px 4px 0;
  }
  .c-table01 td {
    width: 402px;
    padding: 4px 0;
  }
}

.l-fixed-cv {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 -3px 6px rgba(33, 157, 133, 0.2);
}
.l-fixed-cv.is-shown {
  bottom: 0;
}
.l-fixed-cv__inner {
  background-color: #fff;
  padding: 10px 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.l-fixed-cv__btn {
  width: 48%;
  max-width: 180px;
}
.l-fixed-cv__btn + .l-fixed-cv__btn {
  margin-left: 5px;
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  background: #fff;
  text-align: center;
}
.l-footer__nav {
  background-color: rgb(var(--mint));
}
.l-footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 34px 0 !important;
}
.l-footer__nav-item {
  position: relative;
  font-weight: 700;
}
.l-footer__nav-item::before {
  content: "｜";
  color: #fff !important;
}
.l-footer__nav-item:first-child::before {
  display: none;
}
.l-footer__nav-item-link {
  transition: all 0.3s ease;
  color: #fff !important;
  font-family: "Noto Sans JP", sans-serif !important;
  display: inline-block;
}
.l-footer__nav-item-link:hover {
  opacity: 0.7;
}
.l-footer__info {
  padding: 20px;
}
.l-footer__info-logo-link {
  color: #21A7A7 !important;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
}
.l-footer__info-list li {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif !important;
}
.l-footer__info-tel {
  font-size: 1.2rem;
  vertical-align: middle;
  margin-bottom: 14px;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif !important;
}
.l-footer__info-tel-num {
  vertical-align: middle;
  margin-left: 10px;
  padding-left: 40px;
  font-size: 2.2rem;
  color: rgb(var(--mint)) !important;
  font-family: "Lato", sans-serif !important;
  background: url(../img/common/ico_freedial01.png) no-repeat center left/30px;
}
.l-footer__info-tel a {
  display: inline;
}
.l-footer__info-note {
  display: block;
  max-width: 412px;
  margin: auto;
  text-align: left;
  color: rgb(var(--mint)) !important;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif !important;
}
.l-footer__cr {
  padding-bottom: 28px;
  color: #219D85 !important;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media all and (min-width: 768px) {
  .l-footer__info {
    width: 665px;
    margin: auto;
    text-align: left;
    position: relative;
    padding: 64px 0 74px;
  }
  .l-footer__info-logo-link {
    font-size: 3.8rem;
    letter-spacing: 0.04em;
  }
  .l-footer__info-list {
    position: absolute;
    right: 10px;
    top: 80px;
    border-left: 1px solid;
    padding-left: 17px !important;
    text-align: left;
    line-height: 1.6;
  }
  .l-footer__info-list li {
    font-size: 1.4rem;
  }
  .l-footer__info-tel {
    font-size: 2.9rem;
    margin-bottom: 0;
  }
  .l-footer__info-tel-num {
    font-size: 4.5rem;
    background-size: 51px;
    padding-left: 60px;
    letter-spacing: 0.05em;
  }
  .l-footer__info-note {
    width: 665px;
    max-width: initial;
  }
  .l-footer__cr {
    font-size: 1.4rem;
    padding-bottom: 19px;
  }
}
@media all and (max-width: 767px) {
  .l-footer__nav-list {
    display: block;
    padding: 15px 0 !important;
  }
  .l-footer__nav-item::before {
    display: none;
  }
  .l-footer__nav-item:first-child::before {
    display: none;
  }
  .l-footer__nav-item-link {
    padding: 4px 0;
    display: block;
    font-size: 1.3rem;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  background-color: #fff;
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
  }
  .l-header__inner {
    padding: 0;
  }
  .l-header__right {
    width: 847px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .l-header__right-tel {
    font-size: 1rem;
    line-height: 1.2;
    margin-right: 28px;
    width: 163px;
    font-family: "Noto Sans JP", sans-serif !important;
  }
  .l-header__right-tel .tel {
    white-space: nowrap;
    color: rgb(var(--mint));
    font-size: 2.5rem;
    display: block;
  }
  .l-header__right-btns {
    display: flex;
    width: 422px;
  }
  .l-header__right-btns .btn__link {
    font-weight: 500;
    display: block;
    border: 2px solid #F8B479;
    color: #F8B479 !important;
    font-family: "Noto Sans JP", sans-serif !important;
    background-color: #fff;
    text-align: center;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px !important;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .l-header__right-btns .btn {
    width: 180px;
  }
  .l-header__right-btns .btn01 .btn__link:hover {
    color: #fff !important;
    background-color: #F8B479;
  }
  .l-header__right-btns .btn02 {
    margin-left: 19px;
  }
  .l-header__right-btns .btn02 .btn__link {
    color: #fff !important;
    background-color: #F8B479;
    font-family: "Noto Sans JP", sans-serif !important;
  }
  .l-header__right-btns .btn02 .btn__link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) and (max-width: 1220px) {
  .l-header__right {
    width: auto;
  }
  .l-header__right-tel {
    margin-right: 15px;
  }
  .l-header__right-tel .tel {
    font-size: 2rem;
  }
  .l-header__right-btns {
    width: auto;
  }
  .l-header__right-btns .btn__link {
    font-size: 1.4rem;
    padding: 10px 5px;
  }
  .l-header__right-btns .btn02 {
    margin-left: 10px;
  }
}
@media (min-width: 1221px) {
  .l-header__right-btns .btn {
    width: 200px;
  }
  .l-header__right-btns .btn__link {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .l-header .l-header__right {
    display: flex;
    margin-top: 30px;
  }
}

/* カート部分
---------------------------------------------------------------*/
#cartmenu {
  text-align: right;
  margin-left: auto;
  margin-right: 10px;
  line-height: 1.4;
  margin-top: -4px;
}

#cartmenu .see_cart a {
  display: inline-block;
  text-decoration: none;
}

.fa-shopping-cart:before {
  content: "\f07a";
  color: rgb(var(--mint));
}

.cart_img {
  display: none !important;
}

.fa-shopping-cart {
  font-size: 1.2rem;
}

.cart_in_item_area {
  font-size: 1.2rem;
  color: inherit;
}

.app_content {
  font-size: 1.2rem;
}

.welcome_member_name {
  display: none;
}

.welcom_link_text_cmn {
  margin-left: 10px;
}

.l-header .is_welcome a.guide {
  display: block;
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  width: 43px;
  height: 39px;
  background: #66cccc;
  border-radius: 3px;
  padding: 8px 2px 0 0;
  transition: 0.3s ease-out;
}

.l-header .is_welcome a.guide:hover {
  opacity: 0.8;
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 15px;
}
.l-header-info__logo {
  width: 201px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: 80px;
    padding: 0 21px;
  }
  .l-header-info__logo {
    width: 326px;
  }
}
@media (min-width: 768px) and (max-width: 1220px) {
  .l-header-info__logo {
    width: 230px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #D5EDE0;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  padding: 0;
}
.l-nav-btn__line {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 2px;
  content: "";
  background: #219D85;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 12px;
}
.l-nav-btn__line:nth-child(2) {
  top: 18px;
}
.l-nav-btn__line:nth-child(3) {
  top: 24px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - 60px);
  min-width: 320px;
  padding: 50px 20px;
  background: #EAF2EE;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
@media all and (max-width: 767px) {
  .l-nav {
    overflow: auto;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    font-size: 1.6rem;
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media all and (min-width: 768px) {
  .l-nav {
    position: fixed;
    width: 100%;
    min-width: 980px;
    top: 80px;
    padding: 0;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list {
  text-align: left;
}
.l-nav-list__item + .l-nav-list__item {
  margin-top: 20px;
}
.l-nav-list__item-link {
  font-family: "Noto Sans JP", sans-serif !important;
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-top: 0;
  }
  .l-nav-list__item-link {
    display: block;
    font-size: 1.4rem;
    padding: 14px 35px;
    font-weight: 400;
  }
  .l-nav-list__item-link:hover {
    text-decoration: underline !important;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* reset
=========================== */
body.page-id-211 .skip-link,
body.page-id-211 .entry-title,
body.page-id-208 .skip-link,
body.page-id-208 .entry-title,
body.page-id-2 .skip-link,
body.page-id-2 .entry-title {
  display: none;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  background: #fff url(../img/home/bg_mainimg01-sp.jpg) no-repeat center top/cover;
}
.l-main-img__inner {
  padding: 0 10px 30px;
}
.l-main-img__copy {
  letter-spacing: -0.05em;
}
.l-main-img__copy-main {
  width: 345px;
  margin: auto;
  font-size: 2.8rem;
  line-height: 1.29;
}
.l-main-img__copy-main .large {
  font-size: 4.2rem;
  display: block;
}
.l-main-img__copy-sub {
  background-color: #4DD0BA;
  text-align: center;
  color: #fff;
  padding: 10px 2px;
  font-size: 1.3rem;
  margin: 0 -14px 22px;
  letter-spacing: 0.02em;
}
.l-main-img__img01 {
  max-width: 360px;
  margin: auto;
}
.l-main-img__ribbon {
  max-width: 327px;
  position: relative;
  z-index: 1;
  margin: auto;
}
.l-main-img__ribbon::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 110vw;
  min-width: 375px;
  height: 60px;
  background: linear-gradient(to left, #4DD0BA 0%, #67BDD1 100%);
  z-index: -1;
}
.l-main-img__medals {
  max-width: 307px;
  margin: 20px auto 0;
}
@media all and (min-width: 768px) {
  .l-main-img {
    background: #fff url(../img/home/bg_mainimg01-pc.jpg) no-repeat center/cover;
  }
  .l-main-img__inner {
    position: relative;
    padding: 53px 12px 70px;
  }
  .l-main-img__area-txt {
    width: 643px;
  }
  .l-main-img__copy-main {
    width: auto;
    margin: 0;
    font-size: 5.6rem;
    letter-spacing: 0.1em;
  }
  .l-main-img__copy-main .large {
    font-size: 5.6rem;
  }
  .l-main-img__copy-sub {
    text-align: left;
    font-size: 2.1rem;
    letter-spacing: 0.04em;
    background-color: transparent;
    color: #219D85;
    margin: 0;
    padding: 10px 0 0;
  }
  .l-main-img__img01 {
    max-width: 690px;
    margin: -6px 0 0 -40px;
  }
  .l-main-img__foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .l-main-img__ribbon {
    max-width: 650px;
    margin: -6px 0 11px -14px;
  }
  .l-main-img__ribbon::before {
    display: none;
  }
  .l-main-img__medals {
    margin: 0;
  }
  .l-main-img__note {
    padding-top: 100px;
  }
  .l-main-img__img02 {
    width: 506px;
    position: absolute;
    right: -153px;
    top: 0;
  }
}

/* .l-main-img02
================================================ */
.l-main-img02 {
  padding-bottom: 173%;
  position: relative;
  background: url(../img/home/bg_mainimg02-sp.jpg) no-repeat center bottom/cover;
}
.l-main-img02__btn {
  z-index: 1;
  position: absolute;
  bottom: 5%;
  left: 50%;
  margin-left: -10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 374px;
  height: 169px;
  display: block;
}
@media all and (min-width: 768px) {
  .l-main-img02 {
    padding-bottom: 722px;
    background: url(../img/home/bg_mainimg02-pc.jpg) no-repeat center bottom/1366px;
  }
  .l-main-img02__btn {
    max-width: 1058px;
    height: 222px;
    bottom: 58px;
    transition: all 0.3s ease;
  }
  .l-main-img02__btn:hover {
    opacity: 0.8;
  }
}

.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  transition: all 0.3s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  transition: all 0.3s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

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

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

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

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

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

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

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

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

.slider01 .slick-arrow {
  position: absolute;
  bottom: -61px;
  width: 27px;
  height: 27px;
  text-indent: -9999px;
  color: #fff;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/home/ico_arrow02.png) no-repeat center/contain;
}
.slider01 .slick-arrow.slick-prev {
  right: calc(50% + 70px);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.slider01 .slick-arrow.slick-next {
  left: calc(50% + 70px);
}
.slider01 .slick-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -56px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider01 .slick-dots li {
  margin: 0 5px;
  width: 16px;
  height: 16px;
}
.slider01 .slick-dots li.slick-active button:before {
  background: rgb(var(--mint));
}
.slider01 .slick-dots button {
  margin: 0;
  width: 100%;
  height: 100%;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  text-indent: -9999px;
  position: relative;
}
.slider01 .slick-dots button::before {
  position: absolute;
  background: #D5EDE0;
  opacity: 1;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media all and (max-width: 767px) {
  .slider01 .slick-arrow {
    width: 18px;
    height: 18px;
    bottom: -28px;
  }
  .slider01 .slick-arrow.slick-prev {
    right: calc(50% + 60px);
  }
  .slider01 .slick-arrow.slick-next {
    left: calc(50% + 60px);
  }
  .slider01 .slick-dots {
    bottom: -25px;
  }
  .slider01 .slick-dots li {
    width: 10px;
    height: 10px;
  }
}

@-webkit-keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.cvbtn01 {
  width: 151px;
  height: 145px;
  position: absolute;
  z-index: 10;
}
.cvbtn01__link {
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media all and (min-width: 768px) {
  .cvbtn01 {
    width: 334px;
    height: 282px;
  }
  .cvbtn01__link {
    transition: all 0.3s ease;
  }
  .cvbtn01__link:hover {
    opacity: 0.7;
  }
}

/* .home-cv01
================================================ */
.home-cv01 {
  background-color: #D5EDEA;
}
.home-cv01__inner {
  padding-top: 54px;
  padding-bottom: 49px;
}
.home-cv01__set {
  background-color: #fff;
  padding: 34px 36px 30px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-cv01__img {
  width: 309px;
}
.home-cv01__area-txt {
  width: 510px;
}
.home-cv01__list {
  display: inline-flex;
}
.home-cv01__list li {
  margin-right: 8px;
  text-align: center;
  font-weight: 500;
  padding: 0 12px;
  border-radius: 18px;
  min-width: 110px;
  color: #fff;
  font-size: 2rem;
  background-color: rgb(var(--mint));
}
.home-cv01__head {
  font-weight: 300;
  font-size: 2.2rem;
}
.home-cv01__price {
  font-size: 2.4rem;
  font-weight: 500;
}
.home-cv01__price .marker {
  background: linear-gradient(transparent 60%, #FCFACD 60%);
}
.home-cv01__price .large {
  font-weight: 400;
  font-size: 6.1rem;
}
@media all and (min-width: 768px) {
  .home-cv01__price {
    line-height: 1.2;
  }
  .home-cv01__btn {
    width: 502px;
    margin: 22px 0 0;
  }
  .home-cv01__btn .c-btn01__link::before {
    right: 25px;
  }
  .home-cv01__btn .c-btn01__txt {
    padding-right: 35px;
    letter-spacing: 0.05em;
  }
}
@media all and (max-width: 767px) {
  .home-cv01__inner {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .home-cv01__img {
    width: 126px;
  }
  .home-cv01__set {
    padding: 37px 7px 10px;
    position: relative;
    justify-content: center;
    align-items: center;
    max-width: 620px;
    margin: auto;
  }
  .home-cv01__area-txt {
    width: auto;
  }
  .home-cv01__list {
    position: absolute;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 314px;
    max-width: 100%;
  }
  .home-cv01__list li {
    min-width: initial;
    font-size: 1.2rem;
    padding: 0 9px 1px;
  }
  .home-cv01__list li:last-child {
    margin-right: 0;
  }
  .home-cv01__head {
    font-size: 1.4rem;
  }
  .home-cv01__price {
    font-size: 1.2rem;
  }
  .home-cv01__price .large {
    font-size: 2.6rem;
  }
  .home-cv01__btn {
    width: 320px;
    margin-top: 3px;
  }
  .home-cv01__btn .c-btn01__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-size: 1.4rem;
    padding: 0;
  }
  .home-cv01__btn .c-btn01__link::before {
    display: none;
  }
}

/* .home-news
================================================ */
.home-news {
  background-color: #F6FDFC;
}
.home-news__inner {
  padding-top: 74px;
  padding-bottom: 76px;
  position: relative;
}
.home-news__set {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.home-news__set::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 932px;
  height: 390px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../img/home/bg_news01.png) no-repeat center/contain;
  z-index: -1;
}
.home-news__set-img {
  position: relative;
  width: 320px;
  height: 330px;
}
.home-news__set-img .image {
  display: block;
  position: absolute;
  width: 100%;
  opacity: 0;
  -webkit-animation: change-img-anim 6s infinite;
  animation: change-img-anim 6s infinite;
}
.home-news__set-img .image:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.home-news__set-img .image:nth-of-type(2) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.home-news__set-txt {
  width: 318px;
  margin-right: 20px;
}
.home-news__txt {
  position: absolute;
  bottom: 70px;
  left: 228px;
}
@media all and (max-width: 767px) {
  .home-news__inner {
    padding-top: 35px;
    padding-bottom: 40px;
  }
  .home-news__set {
    margin-top: 16px;
    align-items: center;
  }
  .home-news__set::before {
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(15deg);
    transform: translate(-50%, -50%) rotate(15deg);
    width: 567px;
    height: 237px;
  }
  .home-news__set-img {
    width: 171px;
    height: 179px;
  }
  .home-news__set-txt {
    width: 148px;
    margin-right: 10px;
  }
  .home-news__txt {
    position: static;
    text-align: center;
  }
}

/* .home-about
================================================ */
.home-about {
  position: relative;
  background: url(../img/home/bg_about01.png) no-repeat top/1367px;
}
.home-about__inner {
  padding-top: 70px;
  padding-bottom: 178px;
  position: relative;
}
.home-about__head {
  margin-bottom: 5px;
}
.home-about__foot {
  position: absolute;
  bottom: 52px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 3.6rem;
  z-index: 1;
}
.home-about__cv {
  right: -208px;
  bottom: -110px;
}
@media all and (min-width: 768px) {
  .home-about__set {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .home-about__set:nth-child(2n+1) {
    margin-top: 20px;
    flex-direction: row-reverse;
  }
  .home-about__set-area-txt {
    width: 550px;
  }
  .home-about__set-head {
    margin-bottom: 20px;
  }
  .home-about__set-img {
    width: 416px;
  }
}
@media all and (max-width: 767px) {
  .home-about {
    background: url(../img/home/bg_about01-sp.png) no-repeat center bottom/cover;
  }
  .home-about__inner {
    padding-top: 35px;
    padding-bottom: 32%;
  }
  .home-about__set + .home-about__set {
    margin-top: 40px;
  }
  .home-about__set-img {
    width: 300px;
    margin: 0 auto 20px;
  }
  .home-about__cv {
    right: -41px;
    bottom: -50px;
  }
}

/* .home-merit
================================================ */
.home-merit {
  background-color: #fff;
  position: relative;
}
.home-merit::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 126px;
  background-color: #EDF7F0;
}
.home-merit__inner {
  padding-top: 40px;
  padding-bottom: 126px;
}
.home-merit__slider {
  margin-top: 60px;
  background-color: #EDF7F0;
  position: relative;
  padding-top: 70px;
}
.home-merit__slider .slick-slide {
  width: 420px;
  margin: 0 10px;
}
.home-merit__slider-head {
  width: 506px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -32px;
}
.home-merit__slider-item-txt {
  margin-top: 10px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .home-merit__inner {
    padding-bottom: 30px;
  }
  .home-merit__slider {
    padding-top: 38px;
    margin-right: -20px;
    margin-left: -20px;
  }
  .home-merit__slider-head {
    top: -15px;
    width: 276px;
  }
  .home-merit__slider .slick-slide {
    width: 305px;
  }
  .home-merit__slider .slick-dots {
    display: none;
  }
  .home-merit__slider .slick-arrow {
    display: none;
  }
  .home-merit__slider-item-img {
    width: 305px;
  }
  .home-merit__slider-item-txt {
    padding-left: 35px;
    font-size: 1.6rem;
  }
  .home-merit__note {
    margin-top: 20px;
    padding: 0 20px;
  }
}

/* .home-voice
================================================ */
.home-voice {
  background-color: #F6FDFC;
}
.home-voice__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
.home-voice__head-medals {
  width: 400px;
  margin: 12px auto 0;
}
.home-voice__head-note {
  margin-top: 10px;
}
.home-voice__slider-list {
  margin-top: 14px;
}
.home-voice__slider .slick-slide {
  width: 420px;
  margin: 0 10px;
  background-color: #fff;
  padding: 20px;
  height: 360px;
}
.home-voice__slider-item-area-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.home-voice__slider-item-area-txt {
  width: 240px;
}
.home-voice__slider-item-img {
  width: 120px;
}
.home-voice__slider-item-head {
  font-size: 1.8rem;
  color: #219D85;
  font-weight: 700;
}
.home-voice__slider-item-data {
  margin-top: 5px;
}
.home-voice__slider-item-txt {
  margin-top: 15px;
}
.home-voice__note {
  max-width: 980px;
  margin: 100px auto 0;
}
@media all and (max-width: 767px) {
  .home-voice__inner {
    padding-top: 34px;
    padding-bottom: 20px;
  }
  .home-voice__head-medals {
    width: 250px;
  }
  .home-voice__head-note {
    display: inline-block;
    text-align: left;
    text-indent: -1em;
    padding-left: 1em;
  }
  .home-voice__slider .slick-slide {
    width: 335px;
    height: 300px;
    padding: 10px;
    border-radius: 10px;
  }
  .home-voice__slider-item-area-txt {
    width: 205px;
  }
  .home-voice__slider-item-img {
    width: 100px;
  }
  .home-voice__slider-item-head {
    font-size: 1.6rem;
    line-height: 1.63;
  }
  .home-voice__slider-item-txt {
    margin-top: 10px;
    line-height: 1.71;
  }
  .home-voice__note {
    margin-top: 47px;
    width: auto;
  }
}

/* .home-cv02
================================================ */
.home-cv02__inner {
  padding-bottom: 80px;
}
.home-cv02__card {
  background-color: #fff;
  text-align: center;
  width: 460px;
}
.home-cv02__card-list {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-cv02__card-head {
  background-color: rgb(var(--mint));
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  border-radius: 10px 10px 0 0;
  padding: 10px 10px 5px;
}
.home-cv02__card-content {
  padding: 5px 20px 24px;
  border: 2px solid rgb(var(--mint));
}
.home-cv02__card-name {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
}
.home-cv02__card-name .sub {
  font-size: 1.6rem;
  display: block;
  font-weight: 300;
}
.home-cv02__card-img {
  width: 370px;
  margin: auto;
}
.home-cv02__card-tags {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.home-cv02__card-tags li {
  color: #fff;
  border-radius: 20px;
  font-weight: 500;
  text-align: center;
  min-width: 115px;
  padding: 5px 10px;
  background-color: rgb(var(--mint));
}
.home-cv02__card-tags li + li {
  margin-left: 10px;
}
.home-cv02__card-price {
  font-size: 2.4rem;
  font-weight: 500;
}
.home-cv02__card-price .marker {
  background: linear-gradient(transparent 60%, #FCFACD 60%);
}
.home-cv02__card-price .large {
  font-size: 6.1rem;
  padding-right: 5px;
}
.home-cv02__card-btn {
  width: 410px;
  margin-top: 5px;
}
.home-cv02__card-btn .c-btn01__link {
  min-height: 60px;
}
.home-cv02__note {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .home-cv02__card {
    width: auto;
  }
  .home-cv02__card + .home-cv02__card {
    margin-top: 33px;
  }
  .home-cv02__card-list {
    display: block;
  }
  .home-cv02__card-head {
    font-size: 2rem;
  }
  .home-cv02__card-content {
    padding: 17px 10px 23px;
  }
  .home-cv02__card-set {
    margin: auto;
    width: 286px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-cv02__card-name {
    width: 286px;
    text-align: left;
    font-size: 1.9rem;
    margin: 0 auto 10px;
  }
  .home-cv02__card-img {
    width: 169px;
  }
  .home-cv02__card .sub {
    text-align: left;
  }
  .home-cv02__card-tags li {
    min-width: initial;
    font-size: 1.3rem;
    padding: 2px 9px 1px;
  }
  .home-cv02__card-tags li + li {
    margin-left: 5px;
  }
  .home-cv02__card-tags li:last-child {
    margin-right: 0;
  }
  .home-cv02__card-price {
    font-size: 1.8rem;
  }
  .home-cv02__card-price .large {
    font-size: 5rem;
  }
  .home-cv02__card-btn {
    width: auto;
  }
  .home-cv02__note {
    margin-top: 33px;
  }
}

/* .home-check
================================================ */
.home-check {
  background: #F6FDFC url(../img/home/bg_check01.png) no-repeat center bottom/1366px;
  position: relative;
}
.home-check__inner {
  padding-top: 67px;
  padding-bottom: 200px;
  position: relative;
}
.home-check__area-txt {
  margin-top: 38px;
  width: 550px;
}
.home-check__item {
  background-color: #fff;
  border: 1px solid rgb(var(--mint));
  padding: 8px 8px 8px 20px;
  font-size: 2.4rem;
  font-weight: 400;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-check__item + .home-check__item {
  margin-top: 20px;
}
.home-check__img {
  position: absolute;
  bottom: 120px;
  right: -193px;
  width: 571px;
  height: 576px;
}
.home-check label {
  width: 470px;
}
.home-check input[type=checkbox] {
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  position: relative;
  display: block;
}
.home-check input[type=checkbox]::before,
.home-check input[type=checkbox]::after {
  content: "";
  display: block;
}
.home-check input[type=checkbox]::before {
  background-color: #E7F9F6;
  border-radius: 0%;
  border: 1px solid #4DD0BA;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 5px;
}
.home-check input[type=checkbox]::after {
  border-bottom: 3px solid #219D85;
  border-left: 3px solid #219D85;
  position: absolute;
  opacity: 0;
  height: 8px;
  width: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 5px;
  left: 5px;
}
.home-check input[type=checkbox]:checked::after {
  opacity: 1;
}
.home-check__cv {
  left: -208px;
  bottom: -130px;
}
@media all and (max-width: 767px) {
  .home-check {
    background: #F6FDFC url(../img/home/bg_check01-sp.png) no-repeat center bottom/cover;
  }
  .home-check__inner {
    padding-top: 33px;
    padding-bottom: 32%;
  }
  .home-check__area-txt {
    margin-top: 0;
    position: relative;
    padding-top: 119px;
    width: auto;
  }
  .home-check__list {
    max-width: 335px;
    margin: auto;
  }
  .home-check__item {
    font-size: 1.6rem;
    padding: 5px 5px 5px 10px;
  }
  .home-check__item + .home-check__item {
    margin-top: 10px;
  }
  .home-check label {
    width: 270px;
  }
  .home-check input[type=checkbox] {
    width: 20px;
    height: 20px;
    padding-right: 25px;
  }
  .home-check input[type=checkbox]::before {
    width: 20px;
    height: 20px;
  }
  .home-check input[type=checkbox]::after {
    border-bottom: 2px solid #219D85;
    border-left: 2px solid #219D85;
    height: 5px;
    width: 11px;
    left: 3px;
  }
  .home-check__img {
    position: absolute;
    top: 9px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 266px;
    height: 110px;
  }
  .home-check__cv {
    bottom: -50px;
    left: -34px;
  }
}

/* .home-fact
================================================ */
.home-fact {
  background-color: #F6FDFC;
}
.home-fact__inner {
  padding-top: 33px;
  padding-bottom: 126px;
}
.home-fact__slider {
  margin-top: 27px;
}
.home-fact__slider .slick-slide {
  width: 750px;
  background-color: #fff;
  margin: 0 20px;
  height: 420px;
}
.home-fact__slider-item {
  padding: 20px;
}
.home-fact__slider-item-area-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-fact__slider-item .set {
  width: 562px;
}
.home-fact__slider-item-num {
  color: #fff;
  background-color: rgb(var(--mint));
  border-radius: 50%;
  width: 110px;
  height: 110px;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.2;
  padding-top: 20px;
  text-align: center;
  margin-right: 20px;
}
.home-fact__slider-item-num .num {
  font-size: 4rem;
  display: block;
}
.home-fact__slider-item-head {
  font-size: 2.2rem;
}
.home-fact__slider-item-img {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .home-fact .slide02 .home-fact__slider-item-img {
    margin-top: 13px;
  }
}
@media all and (max-width: 767px) {
  .home-fact__head .small {
    font-size: 1.8rem;
  }
  .home-fact__slider {
    margin-top: 20px;
  }
  .home-fact__slider .slick-slide {
    width: 335px;
    height: 397px;
  }
  .home-fact__slider-item {
    position: relative;
    padding: 10px;
  }
  .home-fact__slider-item-area-head {
    font-size: 1.8rem;
  }
  .home-fact__slider-item-num {
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
  }
  .home-fact__slider-item-num .num {
    margin-top: -5px;
    font-size: 2.6rem;
  }
  .home-fact__slider-item .set {
    width: auto;
  }
  .home-fact__slider-item-head {
    position: absolute;
    left: 90px;
    top: 24px;
    font-size: 1.8rem;
  }
  .home-fact__slider-item-txt {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .home-fact__slider-item-img {
    margin-top: 10px;
    width: 315px;
  }
  .home-fact .slide02 .home-fact__slider-item-img {
    margin-top: 0;
  }
  .home-fact .slide03 .home-fact__slider-item-head {
    top: 9px;
  }
  .home-fact .slide03 .home-fact__slider-item-img {
    margin-top: 40px;
  }
}

/* .home-trouble
================================================ */
.home-trouble {
  position: relative;
}
.home-trouble__inner {
  padding-top: 75px;
  position: relative;
}
.home-trouble__head .c-head01__sub {
  letter-spacing: 0;
  font-weight: 400;
}
.home-trouble__list {
  margin-top: 33px;
  width: 750px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.home-trouble__item {
  background-color: #fff;
  width: 140px;
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.home-trouble__item-ico {
  width: 120px;
  margin: auto;
}
.home-trouble__item-txt {
  color: rgb(var(--mint));
}
.home-trouble__img {
  width: 553px;
  position: absolute;
  right: -193px;
  top: 180px;
}
.home-trouble__box {
  margin-top: 20px;
  width: 740px;
  background-color: #E7F9F6;
  border-radius: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
  padding: 0 0 28px;
}
.home-trouble__box-head {
  width: 240px;
  border-radius: 10px 0 10px 0;
  background-color: rgb(var(--mint));
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
}
.home-trouble__box-list {
  margin-top: 22px;
  display: inline-block;
  text-align: left;
  padding-right: 54px;
}
.home-trouble__box-list li {
  font-size: 1.8rem;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
}
.home-trouble__box-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 17px;
  height: 16px;
  background: url(../img/home/ico_check01.png) no-repeat center/contain;
}
.home-trouble__cv {
  right: -208px;
  bottom: -216px;
}
@media all and (max-width: 767px) {
  .home-trouble__inner {
    padding-top: 40px;
    padding-bottom: 57px;
  }
  .home-trouble__head {
    text-align: left;
  }
  .home-trouble__head .c-head02 {
    white-space: nowrap;
  }
  .home-trouble__list {
    width: auto;
    margin: 200px -5px 0;
  }
  .home-trouble__item {
    width: 30%;
    min-width: 100px;
    padding: 10px 0;
  }
  .home-trouble__item-ico {
    width: 80px;
    height: 80px;
  }
  .home-trouble__item-txt {
    margin-top: 5px;
    font-size: 1.4rem;
  }
  .home-trouble__img {
    top: 150px;
    width: 305px;
    right: 0;
  }
  .home-trouble__box {
    width: auto;
    padding: 0 10px 28px;
  }
  .home-trouble__box-head {
    font-size: 1.8rem;
    margin-left: -10px;
  }
  .home-trouble__box-list {
    padding-right: 0;
  }
  .home-trouble__box-list li {
    font-size: 1.4rem;
    padding-left: 20px;
  }
  .home-trouble__box-list li::before {
    top: 4px;
    width: 15px;
    height: 14px;
  }
  .home-trouble__cv {
    bottom: -50px;
    right: -34px;
  }
}

/* .home-proporsal
================================================ */
.home-proporsal__inner {
  padding-top: 114px;
  padding-bottom: 80px;
}
.home-proporsal__head-lead {
  font-size: 3.6rem;
  color: rgb(var(--mint));
}
.home-proporsal__set-img {
  width: 500px;
}
.home-proporsal__set-area-txt {
  width: calc(100% - 560px);
}
.home-proporsal__set-head {
  margin-bottom: 10px;
}
.home-proporsal__set-head .large {
  display: block;
  font-size: 3.6rem;
  color: #2F2F2F;
}
@media all and (min-width: 768px) {
  .home-proporsal__set {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .home-proporsal__set:nth-child(2n+1) {
    flex-direction: row-reverse;
  }
  .home-proporsal__set:nth-child(2n+1) .home-proporsal__set-area-txt {
    padding-left: 70px;
  }
}
@media all and (max-width: 767px) {
  .home-proporsal__inner {
    padding-top: 57px;
    padding-bottom: 40px;
    max-width: 500px;
    margin: auto;
  }
  .home-proporsal__head-lead {
    font-size: 2.2rem;
  }
  .home-proporsal__set + .home-proporsal__set {
    margin-top: 40px;
  }
  .home-proporsal__set-img {
    width: auto;
  }
  .home-proporsal__set-area-txt {
    margin-top: 20px;
    width: auto;
  }
  .home-proporsal__set-head .large {
    font-size: 2.4rem;
  }
}

/* .home-step
================================================ */
.home-step {
  background-color: #F6FDFC;
}
.home-step__inner {
  padding-top: 75px;
  padding-bottom: 80px;
}
.home-step__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-step__item {
  width: 170px;
  position: relative;
}
.home-step__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 53%;
  width: 100%;
  height: 2px;
  background-color: rgb(var(--mint));
}
.home-step__item:last-child::before {
  display: none;
}
.home-step__item-num {
  border-radius: 50%;
  text-align: center;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: auto;
  border: 2px solid;
  color: rgb(var(--mint));
  font-size: 2.8rem;
  background-color: #fff;
  z-index: 1;
  position: relative;
}
.home-step__item-txt {
  color: #219D85;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.56;
  letter-spacing: 0.05em;
}
.home-step__btn {
  width: 350px;
  margin: 0;
}
.home-step__btn + .home-step__btn {
  margin-left: 40px;
}
@media all and (min-width: 768px) {
  .home-step__area-btn {
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media all and (max-width: 767px) {
  .home-step__inner {
    padding-top: 35px;
    padding-bottom: 40px;
  }
  .home-step__list {
    max-width: 314px;
    display: block;
    margin: auto;
  }
  .home-step__item {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .home-step__item::before {
    top: 50%;
    left: 20px;
    height: 100%;
    width: 2px;
  }
  .home-step__item + .home-step__item {
    margin: 5px 0 0;
  }
  .home-step__item-num {
    display: block;
    font-size: 2rem;
    margin: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
  .home-step__item-img {
    margin: 0 10px;
    width: 120px;
  }
  .home-step__item-txt {
    font-size: 1.6rem;
    text-align: left;
  }
  .home-step__area-btn {
    margin-top: 20px;
  }
  .home-step__btn {
    width: auto;
  }
  .home-step__btn + .home-step__btn {
    margin: 10px 0 0;
  }
}

/* .home-point
================================================ */
.home-point__inner {
  padding-top: 74px;
}
.home-point__list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  margin-top: 13px;
}
.home-point__item {
  width: 300px;
  border: 2px solid rgb(var(--mint));
  border-radius: 5px;
  position: relative;
  padding: 43px 20px 20px;
}
.home-point__item + .home-point__item {
  margin-left: 40px;
}
.home-point__item:nth-child(3n+1) {
  margin-left: 0;
}
.home-point__item-num {
  text-transform: uppercase;
  background-color: rgb(var(--mint));
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 2.4rem;
  border-radius: 20px;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 200px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.home-point__item-head {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
  color: #219D85;
}
.home-point__item-img {
  width: 260px;
}
.home-point__item-txt {
  margin-top: 15px;
}
.home-point__box {
  margin-top: 40px;
  padding-top: 33px;
  padding-bottom: 29px;
  background-color: #E7F9F6;
}
.home-point__box-head {
  color: rgb(var(--mint));
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
}
.home-point__box-head-txt {
  display: inline-block;
  padding-left: 100px;
  position: relative;
  line-height: 1.5;
  text-align: left;
}
.home-point__box-head .sub {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.home-point__box-head .ico {
  width: 81px;
  position: absolute;
  top: 10px;
  left: 0;
}
.home-point__box-img {
  width: 400px;
  margin: auto;
}
.home-point__box-note {
  margin-top: 5px;
  text-align: center;
  font-size: 1rem;
}
@media all and (min-width: 768px) {
  .home-point__item:nth-child(3) .home-point__item-head {
    padding: 19px 0 20px;
  }
}
@media all and (max-width: 767px) {
  .home-point__inner {
    padding-top: 35px;
    padding-bottom: 40px;
  }
  .home-point__item {
    width: auto;
    padding: 20px;
  }
  .home-point__item + .home-point__item {
    margin: 40px 0 0;
  }
  .home-point__item-num {
    font-size: 2rem;
  }
  .home-point__item-img {
    margin: 5px auto;
  }
  .home-point__box {
    text-align: center;
    margin: 40px -20px 0;
  }
  .home-point__box-head {
    font-size: 1.8rem;
  }
  .home-point__box-head-txt {
    padding-left: 47px;
  }
  .home-point__box-head .sub {
    font-size: 1rem;
  }
  .home-point__box-head .ico {
    width: 42px;
    top: 4px;
    height: 38px;
  }
  .home-point__box-img {
    margin-top: 20px;
    width: 250px;
  }
  .home-point__box-note {
    display: inline-block;
    text-align: left;
    margin-top: 10px;
  }
}

/* .home-caution
================================================ */
.home-caution {
  padding-top: 80px;
}
.home-caution__inner {
  padding-top: 74px;
  padding-bottom: 80px;
  background-color: #FAD96A;
  position: relative;
}
.home-caution__inner::before, .home-caution__inner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
  background: url(../img/home/bg_caution01.png) no-repeat center/contain;
}
.home-caution__inner::before {
  top: 0;
}
.home-caution__inner::after {
  bottom: 0;
}
.home-caution__head .c-head01__sub {
  color: #2F2F2F;
}
.home-caution__head .c-head01__sub::before {
  background-image: url(../img/home/bg_head01_gray.png);
}
.home-caution__img {
  margin: 38px auto 0;
  width: 830px;
}
.home-caution__txt {
  margin-top: 20px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .home-caution {
    padding-top: 38px;
  }
  .home-caution__inner {
    padding-top: 28px;
    padding-bottom: 30px;
  }
  .home-caution__inner::before, .home-caution__inner::after {
    height: 10px;
    background: url(../img/home/bg_caution01-sp.png) repeat-x center/contain;
  }
  .home-caution__img {
    margin-top: 20px;
    width: 314px;
  }
}

/* .home-product
================================================ */
.home-product__inner {
  padding-top: 114px;
  padding-bottom: 40px;
}
.home-product__set {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-product__set-img {
  width: 380px;
}
.home-product__set-area-txt {
  width: 560px;
}
.home-product__set-head {
  margin-bottom: 10px;
}
.home-product__detail {
  margin-top: 20px;
  border: 2px solid rgb(var(--mint));
  border-radius: 10px;
  padding: 20px 39px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-product__detail-txt {
  width: 288px;
}
.home-product__detail-img {
  width: 181px;
}
.home-product__list {
  border-top: 1px solid rgb(var(--mint));
  border-bottom: 1px solid rgb(var(--mint));
  margin-top: 40px;
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-product__item {
  width: 220px;
  margin-bottom: 40px;
}
.home-product__item-head {
  color: #219D85;
  font-size: 1.8rem;
  font-weight: 500;
}
.home-product__item-txt.no-head {
  margin-top: 32px;
}
@media all and (max-width: 767px) {
  .home-product__inner {
    padding-top: 75px;
    padding-bottom: 0;
  }
  .home-product__set {
    display: block;
  }
  .home-product__set-img {
    width: 150px;
    margin: auto;
  }
  .home-product__set-area-txt {
    width: auto;
  }
  .home-product__detail {
    margin-top: 10px;
    padding: 6px 15px 6px 5px;
    justify-content: center;
  }
  .home-product__detail-txt {
    font-size: 1rem;
    width: calc(100% - 120px);
  }
  .home-product__detail-img {
    width: 120px;
  }
  .home-product__list {
    margin-top: 20px;
    padding-top: 20px;
  }
  .home-product__item {
    width: 48%;
  }
  .home-product__item-head {
    font-size: 1.6rem;
  }
  .home-product__item-txt.no-head {
    margin-top: 28px;
  }
}

/* .home-type
================================================ */
.home-type__inner {
  padding-top: 70px;
  padding-bottom: 80px;
}
.home-type .c-note01 {
  color: rgb(var(--mint));
}
@media all and (max-width: 767px) {
  .home-type__inner {
    padding-top: 75px;
    padding-bottom: 20px;
  }
}

/* .home-cv03
================================================ */
.home-cv03 {
  background-color: #F6FDFC;
}
.home-cv03__inner {
  padding-top: 70px;
  padding-bottom: 80px;
}
.home-cv03__img {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .home-cv03__inner {
    padding-top: 59px;
    padding-bottom: 16px;
  }
  .home-cv03__img {
    margin-top: 0;
  }
}

/* .home-dquestions
================================================ */
.home-questions__inner {
  padding-top: 70px;
  padding-bottom: 80px;
}
.home-questions__list {
  margin-top: 32px;
}
.home-questions__btn {
  margin-top: 40px;
  width: 450px;
}
@media all and (min-width: 768px) {
  .home-questions__btn .c-btn01__txt-small {
    display: inline;
    font-size: 2.4rem;
    font-weight: inherit;
  }
}
@media all and (max-width: 767px) {
  .home-questions__inner {
    padding-top: 75px;
  }
  .home-questions__list {
    margin-top: 20px;
  }
  .home-questions__btn {
    width: auto;
  }
}

/* .home-company
================================================ */
.home-company {
  margin-top: 38px;
  background: url(../img/home/bg_company01.jpg) no-repeat center/cover;
}
.home-company__inner {
  padding-top: 70px;
  padding-bottom: 80px;
}
.home-company__head {
  margin-bottom: 20px;
}
.home-company__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.home-company__logo {
  display: flex;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  background-color: #E7F9F6;
  width: 350px;
  height: 150px;
  padding: 0 30px;
  margin: 0 50px 100px 20px;
}
.home-company__logo-copy {
  font-size: 1.2rem;
}
.home-company__logo-name {
  font-size: 2.8rem;
  color: #21A7A7;
}
.home-company__data {
  width: 50%;
}
@media all and (min-width: 768px) {
  .home-company__data td {
    white-space: nowrap;
  }
}
@media all and (max-width: 767px) {
  .home-company {
    background: url(../img/home/bg_company01-sp.jpg) no-repeat center/cover;
  }
  .home-company__inner {
    padding-top: 38px;
    padding-bottom: 40px;
  }
  .home-company__head {
    margin-bottom: 21px;
  }
  .home-company__content {
    display: block;
  }
  .home-company__logo {
    width: 260px;
    height: 100px;
    margin: auto;
    padding: 0 16px;
  }
  .home-company__logo-copy {
    font-size: 1rem;
  }
  .home-company__logo-name {
    font-size: 2.2rem;
  }
  .home-company__data {
    width: 100%;
    max-width: initial;
  }
  .home-company__table {
    max-width: 400px;
    margin: 7px auto 0;
  }
}

#sitemap_sec .sitemap-wrap {
  margin-top: 10px;
}
#sitemap_sec .sitemap-list {
  margin: 5px 0 30px 0px !important;
}
#sitemap_sec .sitemap-list a {
  padding: 5px 0;
  display: block;
}
@media all and (min-width: 768px) {
  #sitemap_sec .sitemap-wrap {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #sitemap_sec .sitemap-set {
    width: 45% !important;
  }
  #sitemap_sec .sitemap-list a {
    font-size: 16px;
  }
  #sitemap_sec .sitemap-list a:hover {
    opacity: 0.7 !important;
    text-decoration: underline !important;
  }
}

@media all and (min-width: 768px) {
  #sitemap_sec {
    width: 800px;
    max-width: initial;
    margin: auto;
    padding: 30px 0;
  }
  #sitemap_sec .c-head01 {
    text-align: left !important;
    margin-bottom: 15px !important;
  }
}
