@charset "UTF-8";
* {
  box-sizing: border-box;
}

*:last-child {
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  margin: 0;
  font-family: "Zen Maru Gothic", serif;
  color: #000;
  font-weight: 600;
}

p {
  margin: 0 0 2rem;
}

ul {
  padding: 0;
  margin: 0;
}

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

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

a {
  text-decoration: unset;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.8;
}

/* layout */
.header-container {
  height: 115px;
  border-bottom: 2px solid #56b879;
}

.header-container-in {
  top: 0;
  background-color: white;
  left: 0;
  width: 100%;
}

.header-container-in .header-in {
  max-width: 100%;
  width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 15px 10px 13px;
}

.header-container-in .header-logo {
  display: flex;
  margin-bottom: 0;
}

.header-container-in .header-logo img {
  width: 221px;
}

.container {
  overflow-x: hidden;
}

.footer {
  background-color: #eef8f2;
  padding: 90px 20px 40px;
  text-align: center;
}

.footer .copyright {
  text-align: center;
  font-size: 14px;
  line-height: 1.2857142857;
  font-weight: 500;
}

.footer .menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.footer .menu-item {
  font-size: 14px;
  line-height: 1.2857142857;
  font-weight: 500;
}

.footer .menu-item__link {
  color: #000;
}

.footer-main-top {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px dashed;
  margin-bottom: 45px;
}

.footer-main-top-title {
  color: #56b879;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2142857143;
  margin-bottom: 15px;
}

.footer-main-top-title > *:nth-child(1) {
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.footer-main-top-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}

.footer-main-top-info > *:nth-child(1) > * {
  justify-content: center;
}

.footer-main-top-info-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  display: flex;
}

.footer-logo-wrap {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 30px;
}

[id] {
  scroll-margin-top: 115px;
}

@media screen and (max-width: 768px) {
  .header-container {
    height: auto;
  }
  .header-container-in {
    background-color: unset;
  }
  .header-container-in .header-in {
    padding: 0;
  }
  .header-container-in .header-title {
    padding: 15px 15px 10px;
    background-color: white;
    border-radius: 0 0 5px 0;
  }
  .header-container-in .header-title img {
    width: 151px;
  }
  .header-container-in .header-right-top,
  .header-container-in .header-right-bottom {
    display: none;
  }
  .header-container-in .header-sp-menu {
    display: block;
    margin-top: 15px;
    margin-right: 15px;
  }
  .header-container-in .header-sp-menu-content {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 8000;
    background-color: #56b879;
    color: white;
    padding: 135px 40px 45px;
    transform: translateX(110%);
    transition: all 0.3s;
  }
  .header-container-in .header-sp-menu__btn {
    border: 1px solid white;
    width: 47.5px;
    height: 47.5px;
    background-color: #56b879;
    display: flex;
    border-radius: 100%;
    position: relative;
    z-index: 9000;
  }
  .header-container-in .header-sp-menu__btn span {
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 1px;
    border-radius: 2em;
    transition: all 0.3s;
  }
  .header-container-in .header-sp-menu__btn span:nth-child(1) {
    top: -15px;
  }
  .header-container-in .header-sp-menu__btn span:nth-child(3) {
    top: 15px;
  }
  .header-container-in .header-sp-menu__nav .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .header-container-in .header-sp-menu__nav .menu-item {
    padding: 10px 0;
    border-bottom: 1px dashed;
  }
  .header-container-in .header-sp-menu__nav .menu-item__link {
    color: white;
  }
  .header-container-in .header-sp-menu__nav .menu-item:last-child {
    padding-bottom: 0;
    border: 0;
  }
  .header-container-in .header-sp-menu__btns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .header-container-in .header-sp-menu.--show .header-sp-menu-content {
    transform: translateX(0%);
  }
  .header-container-in .header-sp-menu.--show .header-sp-menu__btn span:nth-child(1) {
    transform: rotate(45deg) translate(2.5px, -2.5px);
    transform-origin: left;
  }
  .header-container-in .header-sp-menu.--show .header-sp-menu__btn span:nth-child(2) {
    opacity: 0;
  }
  .header-container-in .header-sp-menu.--show .header-sp-menu__btn span:nth-child(3) {
    transform: rotate(-45deg) translate(2.5px, 2.5px);
    transform-origin: left;
  }
  .footer {
    padding: 50px 20px 75px;
  }
  .footer .menu {
    margin-bottom: 10px;
    gap: 10px;
  }
  .footer .menu-item {
    font-size: 10px;
  }
  .footer .copyright {
    font-size: 10px;
  }
  .footer-logo img {
    width: 279px;
  }
  .footer-logo-wrap {
    margin-bottom: 15px;
  }
  .footer-main-top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer-main-top-info .dc-txt.--txt-icon-address {
    display: block;
  }
  .footer-main-top-info .dc-txt.--txt-icon-address p {
    display: inline;
  }
  .footer-main-top-info .dc-txt.--txt-icon-address::before {
    display: inline-block;
    top: 5px;
  }
  .footer-main-top-info-in {
    gap: 3px;
    flex-direction: column;
  }
  [id] {
    scroll-margin-top: 82px;
  }
}
/* layout */
/* block */
h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2142857143;
  margin-bottom: 20px;
  text-align: center;
}

.dc-heading.--heading1 {
  padding-bottom: 20px;
  position: relative;
}

.dc-heading.--heading1:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  top: unset;
  width: 58px;
  height: 3px;
  background-color: #56b879;
  border-radius: 2em;
}

.dc-heading.--heading2 {
  font-size: 18px;
  line-height: 1.2222222222;
  color: white;
  background-color: #56b879;
  text-align: center;
  padding: 10px 20px;
  border-radius: 2em;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.dc-heading.--heading-worries {
  position: relative;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.dc-heading.--heading-worries::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/icon_question.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 72px;
  height: 111px;
  z-index: -1;
}

.dc-btn {
  cursor: pointer;
}

.dc-btn.--btn1 {
  min-width: 185px;
  min-height: 56px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.1875;
  letter-spacing: 0.14em;
  font-weight: 500;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  background-color: #ec6d74;
  color: white;
  border-radius: 2em;
  transition: all 0.3s;
}

.dc-btn.--btn1::before {
  content: "";
  position: relative;
}

.dc-btn.--btn1-orange {
  background-color: #ecac36;
}

.dc-btn.--btn1-file::before {
  background-image: url("../img/icon_file.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 22px;
  top: 2px;
}

.dc-btn.--btn1-mail::before {
  background-image: url("../img/icon_mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 16.8px;
}

.dc-btn.--btn1:hover {
  opacity: 1;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

.dc-txt.--txt1 {
  color: #008d46;
  font-size: 22px;
  line-height: 1.1818181818;
  font-weight: 500;
  background-color: #c6de7a;
  border-radius: 2em;
  letter-spacing: 0.04em;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 22px;
  padding: 10px 40px;
  position: relative;
}

.dc-txt.--txt1 > * {
  position: relative;
  z-index: 10;
}

.dc-txt.--txt1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/txt_1_deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 42px;
  bottom: -20px;
}

.dc-txt.--txt2 {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 21px;
  line-height: 1.4761904762;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
}

.dc-txt.--txt2::before,
.dc-txt.--txt2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: relative;
  background-image: url("../img/txt_2_deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 52px;
}

.dc-txt.--txt2::after {
  transform: scale(-1, 1);
}

.dc-txt.--txt2-white {
  color: white;
}

.dc-txt.--txt2-white::before,
.dc-txt.--txt2-white::after {
  background-image: url("../img/txt_2_deco_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.dc-txt.--txt3 {
  color: white;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  padding-left: 32px;
  text-align: left;
  margin-bottom: 5px;
  position: relative;
}

.dc-txt.--txt3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 100%;
  border-radius: 4px;
  background-color: #c6de7a;
}

.dc-txt.--txt4 {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.dc-txt.--txt4 .dc-txt-4__no {
  font-size: 20.5px;
  line-height: 1;
  color: #56b879;
  font-weight: 500;
  display: inline-block;
  vertical-align: bottom;
}

.dc-txt.--txt4 .dc-txt-4-left {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #56b879;
}

.dc-txt.--txt4 .dc-txt-4-center {
  flex: 1;
  position: relative;
}

.dc-txt.--txt4 .dc-txt-4-center::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  background-color: transparent;
  background-image: radial-gradient(#000 calc(100% - 3px), transparent calc(100% - 3px));
  background-size: 6px 6px;
  background-position: center;
  background-repeat: repeat-x;
}

.dc-txt.--txt4 .dc-txt-4-right {
  font-size: 15.6px;
  line-height: 1.1153846154;
}

.dc-txt.--txt5 {
  width: 177px;
  height: 177px;
  border: 1px dotted;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #eff4c8;
}

.dc-txt.--txt5-1 {
  background-color: #d8ece0;
}

.dc-txt.--txt5-2 {
  background-color: #dbe4f4;
}

.dc-txt.--txt-wave {
  padding-bottom: 30px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 73px;
}

.dc-txt.--txt-wave::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/wave_1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 16px;
  top: unset;
  bottom: 5px;
}

.dc-txt.--txt-icon {
  font-size: 14px;
  line-height: 1.2857142857;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}

.dc-txt.--txt-icon a {
  color: #000;
}

.dc-txt.--txt-icon:before {
  content: "";
  position: relative;
}

.dc-txt.--txt-icon-address::before {
  background-image: url("../img/icon_pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 18px;
}

.dc-txt.--txt-icon-phone::before {
  background-image: url("../img/icon_phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  top: 2px;
}

.dc-txt.--txt-icon-mail::before {
  background-image: url("../img/icon_mail_1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  top: 2px;
}

.dc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dc-list.--list1 {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.dc-list.--list2 {
  font-size: 17px;
  line-height: 1.5882352941;
  font-weight: 500;
}

.dc-list.--list2 li {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
}

.dc-list.--list2 li::before {
  content: "";
  top: 5px;
  position: relative;
  background-image: url("../img/icon_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 19.7px;
  height: 19.7px;
  background-size: auto;
}

.dc-list.--list3 {
  font-size: 14px;
  line-height: 1.7142857143;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
  column-gap: 40px;
  flex-direction: column;
  align-content: flex-start;
}

.dc-list.--list3 li {
  position: relative;
  display: flex;
  gap: 0.5em;
  flex-wrap: nowrap;
  flex-direction: row;
}

.dc-list.--list3 li::before {
  content: "●";
  position: relative;
  color: #56b879;
  font-size: 12px;
  display: flex;
  align-items: center;
  height: 40px;
}

.dc-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.dc-columns .dc-column {
  max-width: 100%;
}

.dc-columns.--columns1 {
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.dc-columns.--columns1 img {
  display: flex;
}

.dc-columns.--columns1 .dc-columns-1__title {
  font-size: 22px;
  line-height: 1.4090909091;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed;
}

.dc-columns.--columns1 .dc-columns-1__title > .--green {
  font-size: 25px;
  line-height: 1.24;
  font-weight: 500;
  color: #56b879;
}

.dc-columns.--columns1 .dc-columns-1__txt {
  font-size: 13px;
  line-height: 1.2307692308;
}

.dc-box.--box1 {
  background-color: white;
  border-radius: 8px;
  position: relative;
  padding: 5px;
  min-width: 142px;
  min-height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.dc-box.--box1 .dc-box-1__no {
  border-radius: 8px;
  width: 47px;
  height: 46.6px;
  background-color: #56b879;
  display: block;
  font-size: 15px;
  line-height: 1;
  color: white;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  padding: 3px 5px;
  position: absolute;
  left: 5px;
  top: 5px;
}

.dc-box.--box1 .dc-box-1__txt {
  font-size: 15px;
  line-height: 1.1333333333;
  position: relative;
  z-index: 10;
  text-align: center;
}

.dc-box.--box2 {
  background-color: #fff9e8;
  border-radius: 20px;
  padding: 55px 20px 40px;
  position: relative;
  width: 1022px;
  max-width: 100%;
  margin: auto;
}

.dc-box.--box2 .dc-box-2__title {
  padding: 13px 70px;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  border-radius: 2em;
  color: white;
  background-color: #56b879;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: auto;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  letter-spacing: 0.04em;
}

.dc-box.--box2 .dc-box-2__des {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 500;
}

.dc-box.--box2-deco1 {
  position: relative;
}

.dc-box.--box2-deco1::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -38.5px;
  right: 0;
  margin: auto;
  background-image: url("../img/deco_1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1099px;
  height: 272px;
}

.dc-box.--box3 {
  border-radius: 10px;
  overflow: hidden;
  background-color: #faf8ee;
  width: 1022px;
  max-width: 100%;
  margin: 0 auto 30px;
}

.dc-box.--box3 .dc-box-3-head {
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #56b879;
  color: white;
  padding: 14px;
  letter-spacing: 0.04em;
  text-align: center;
}

.dc-box.--box3 .dc-box-3-body {
  padding: 30px;
  text-align: center;
}

.dc-box.--box3 .dc-box-3-body.dc-columns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 75px;
}

.dc-box.--box3 .dc-box-3-body.dc-columns > .dc-column:nth-child(1) {
  width: 451px;
}

.dc-box.--box3 .dc-box-3-body.dc-columns > .dc-column:nth-child(2) {
  width: 355px;
}

.dc-box.--box3 .dc-box-3__title {
  font-size: 20px;
  line-height: 1.2;
}

.dc-box.--box3 .dc-box-3__img {
  width: 147px;
  height: 147px;
  margin-bottom: 10px;
  display: flex;
}

.dc-box.--box3 .dc-box-3__txt {
  font-size: 15px;
  line-height: 1.2666666667;
}

.dc-box.--box3-s {
  font-size: 14px;
  line-height: 1.6428571429;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.dc-box.--box3-s .dc-box-3__title > .--s {
  font-size: 17px;
}

.dc-box.--box3-s .dc-box-3-body {
  text-align: left;
  padding: 15px 30px 25px;
}

.dc-box.--box3-s .dc-box-3-body p {
  margin-bottom: 1em;
}

.dc-box.--box3-s .dc-box-3-body p:last-child {
  margin-bottom: 0;
}

.dc-box.--box3-deco1-r {
  position: relative;
  overflow: unset;
}

.dc-box.--box3-deco1-r::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/deco_1_r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: -49.5px;
  top: 50px;
  width: 1121px;
  height: 244px;
}

.dc-box.--box4 {
  border-radius: 5px;
  background-color: white;
  width: 414px;
  max-width: 100%;
  margin: auto;
}

.dc-box.--box4 .dc-box-4-head {
  color: #008d46;
  padding: 10px;
  padding-bottom: 15px;
  border-radius: 5px;
  background-image: url("../img/txt_deco.png");
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 17px;
  line-height: 1.1764705882;
  background-size: 100% 100%;
  text-align: center;
}

.dc-box.--box4 .dc-box-4-body {
  border-radius: 0 0 5px 5px;
  padding: 10px 35px 15px;
  text-align: left;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.dc-box.--box-quote {
  background-color: white;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  padding: 30px 30px 40px;
  text-align: left;
  position: relative;
}

.dc-box.--box-quote::before,
.dc-box.--box-quote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/icon_quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 35.7px;
  height: 26.6px;
}

.dc-box.--box-quote::before {
  left: -12px;
  top: -10px;
  bottom: unset;
  right: unset;
}

.dc-box.--box-quote::after {
  transform: scale(-1, -1);
  right: -20px;
  bottom: -10px;
  top: unset;
  left: unset;
}

.dc-box.--box-yellow {
  padding: 20px 25px;
  background-color: #fff9e8;
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: left;
  border-radius: 15px;
}

.dc-card.--card1 {
  border-radius: 10px;
  overflow: hidden;
  font-weight: 500;
  background-color: white;
  width: 211px;
  max-width: 100%;
}

.dc-card.--card1 .dc-card-1-head {
  background-color: #56b879;
  color: white;
  padding: 12px;
  letter-spacing: 0.02em;
  text-align: center;
}

.dc-card.--card1 .dc-card-1-body {
  padding: 22px 0 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dc-card.--card1 .dc-card-1__title {
  font-size: 19px;
  line-height: 1;
}

.dc-card.--card1 .dc-card-1__title .--en {
  font-size: 28px;
  line-height: 0.6785714286;
  display: inline-block;
  vertical-align: bottom;
}

.dc-card.--card1 .dc-card-1__img {
  width: 147px;
  height: 147px;
  margin-bottom: 10px;
  display: flex;
}

.dc-card.--card1 .dc-card-1__txt {
  font-size: 15px;
  line-height: 1.2666666667;
}

.dc-card.--card2 {
  width: 440px;
  max-width: 100%;
  background-color: white;
  border-radius: 10px;
}

.dc-card.--card2 .dc-card-2-head {
  position: relative;
  color: white;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  padding: 41px 20px 47px;
  background-image: url("../img/deco_2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 100% 100%;
  border-radius: 10px 10px 0 0;
}

.dc-card.--card2 .dc-card-2-head-in {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.dc-card.--card2 .dc-card-2-head__icon img {
  display: flex;
}

.dc-card.--card2 .dc-card-2-head__txt {
  text-align: left;
}

.dc-card.--card2 .dc-card-2-body {
  padding: 20px 10px 20px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  text-align: center;
}

.dc-card.--card2 .dc-card-2-body__img {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.dc-card.--card2 .dc-card-2-body__img::before {
  content: "";
  position: relative;
  display: block;
  width: 83.5px;
  height: 56px;
  background-image: url("../img/kasandori_4.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.dc-card.--card2 .dc-card-2__title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #008d46;
  background-color: #bcd274;
  padding: 10px 24px;
  border-radius: 2em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  max-width: 100%;
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
}

.dc-card.--card2 .dc-card-2__red {
  color: #ec6d74;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.6315789474;
  margin: 0px auto 10px;
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-card.--card2 .dc-card-2__txt-1 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  width: 375px;
  max-width: 100%;
  margin: auto;
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 1px dotted;
}

.dc-card.--card2 .dc-card-2__list-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  min-height: 85px;
}

.dc-card.--card3 {
  background-color: white;
  border-radius: 15px;
  width: 180px;
  max-width: 100%;
  padding: 30px 10px 13px;
  position: relative;
}

.dc-card.--card3 .dc-card-3-in {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 15px;
}

.dc-card.--card3 .dc-card-3__title {
  font-size: 18px;
  line-height: 1;
  color: white;
  background-color: #56b879;
  padding: 5px 22px 8px;
  border-radius: 2em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-weight: bold;
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
}

.dc-card.--card3 .dc-card-3__img {
  display: flex;
  margin: 0 auto;
}

.dc-card.--card3 .dc-card-3__txt {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
}

.dc-card-1-group {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  row-gap: 35px;
  width: 745px;
  max-width: 100%;
  margin: auto;
}

.dc-card-2-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.dc-card-2-slider.swiper {
  overflow: hidden;
  width: 1143px;
  max-width: 100%;
  margin: auto;
  padding: 22px 106px 55px;
  margin-bottom: 40px;
  overflow: unset;
}

.dc-card-2-slider.swiper .swiper-pagination {
  height: 10px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-card-2-slider.swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d9d1bf;
  opacity: 1;
  margin: 0 8px !important;
}

.dc-card-2-slider.swiper .swiper-pagination-bullet-active {
  background-color: #56b879;
}

.dc-card-2-slider.swiper .swiper-button {
  background-image: url("../img/arrow_1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 53px;
  height: 53px;
  top: -55px;
  bottom: 0;
  margin: auto;
  position: absolute;
}

.dc-card-2-slider.swiper .swiper-button::before,
.dc-card-2-slider.swiper .swiper-button::after {
  content: unset;
}

.dc-card-2-slider.swiper .swiper-button-prev {
  transform: rotate(90deg);
  left: 0;
  right: unset;
}

.dc-card-2-slider.swiper .swiper-button-next {
  transform: rotate(-90deg);
  right: 0;
  left: unset;
}

.dc-card-2-slider.swiper .swiper-slide {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  height: auto;
  transition: all 0.3s;
}

.dc-card-2-slider.swiper .swiper-slide .dc-card {
  height: 100%;
}

.dc-card-2-slider.swiper .swiper-slide:not(.dc-card-2-slider.swiper .swiper-slide-active, .dc-card-2-slider.swiper .swiper-slide-next) {
  opacity: 0;
}

.dc-card-3-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 70px;
}

.dc-block.--block1 {
  text-align: center;
  letter-spacing: 0.02em;
}

.dc-block.--block1 .dc-block-1__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #56b879;
  margin-bottom: 10px;
}

.dc-block.--block1 .dc-block-1__count {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.1538461538;
  margin-bottom: 10px;
}

.dc-block.--block1 .dc-block-1__btn {
  cursor: pointer;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.1666666667;
  padding: 10px;
  padding-right: 22px;
  background-color: white;
  width: 157px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.dc-block.--block1 .dc-block-1__btn__icon {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  left: unset;
  right: 5px;
  background-image: url("../img/icon_plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
}

.dc-block.--block1-detail .dc-block-1-detail__title {
  color: #56b879;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2916666667;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-align: center;
}

.dc-block.--block1-detail .dc-block-1-detail__subtitle {
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
  text-align: center;
}

.dc-block.--block1-detail .dc-block-1-detail__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;
  line-height: 2;
  -moz-column-gap: 120px;
  column-gap: 120px;
}

.dc-block-1-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.dc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: none;
}

.dc-modal.--modal1 {
  background-color: rgba(86, 86, 86, 0.7);
}

.dc-modal.--modal1 .dc-modal-in {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1080px;
  max-width: calc(100% - 40px);
  height: 580px;
  max-height: calc(100% - 40px);
}

.dc-modal.--modal1 .dc-modal-content {
  width: 100%;
  height: 100%;
  background-color: #fff9e8;
  border-radius: 10px;
  padding: 40px 50px;
  overflow: auto;
}

.dc-modal.--modal1 .dc-modal__close {
  background-image: url("../img/icon_close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  right: -15px;
  top: -10px;
  z-index: 9000;
  cursor: pointer;
}

.dc-modal.--show {
  display: block;
}

.dc-qa.--qa1 {
  width: 655px;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
}

.dc-qa.--qa1 .dc-qa-item {
  padding: 10px 15px 15px;
  background-color: #fff9e8;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}

.dc-qa.--qa1 .dc-qa-item p:last-child {
  margin-bottom: 0;
}

.dc-qa.--qa1 .dc-qa-item-q {
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
}

.dc-qa.--qa1 .dc-qa-item-q .dc-qa-item__txt {
  font-size: 14px;
  line-height: 1.7142857143;
}

.dc-qa.--qa1 .dc-qa-item-a {
  display: none;
  text-align: left;
}

.dc-qa.--qa1 .dc-qa-item-a-in {
  padding-left: 35px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-wrap: nowrap;
}

.dc-qa.--qa1 .dc-qa-item__q {
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: #56b879;
  position: relative;
  top: -2px;
}

.dc-qa.--qa1 .dc-qa-item__arrow {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/arrow_1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: all 0.3s;
  background-size: cover;
}

.dc-qa.--qa1 .dc-qa-item__a {
  color: #56b879;
  font-weight: bold;
}

.dc-qa.--qa1 .dc-qa-item.--show .dc-qa-item__arrow {
  background-image: url("../img/arrow_1_gray.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.dc-cta.--cta1 {
  width: 1022px;
  padding-top: 30px;
  max-width: 100%;
  margin: 35px auto 70px;
  background-color: #56b879;
  border-radius: 10px;
}

.dc-cta.--cta1 .dc-cta-in > .dc-columns {
  justify-content: center;
  padding-right: 30px;
}

.dc-cta.--cta1 .dc-cta-in > .dc-columns img {
  display: flex;
}

.dc-cta.--cta1 .dc-cta-btns {
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.dc-cta.--cta1 .dc-cta-btns .dc-txt.--txt2 {
  gap: 0;
  font-size: 14px;
  line-height: 1.2142857143;
  margin-bottom: 7px;
}

.dc-cta.--cta1 .dc-cta-btns .dc-txt.--txt2:before,
.dc-cta.--cta1 .dc-cta-btns .dc-txt.--txt2:after {
  width: 25px;
  height: 35px;
}

.dc-cta.--cta1 .dc-cta-btns .dc-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dc-cta.--cta1 .dc-cta-btns .dc-btn.--btn1 {
  min-width: 205px;
  min-height: 62px;
  font-size: 17.7px;
}

.dc-fv.--fv1 {
  padding: 80px 0 40px;
}

.dc-fv.--fv1 .dc-columns {
  gap: 52px;
  justify-content: center;
}

.dc-fv.--fv1 .dc-columns .dc-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dc-fv.--fv1 .dc-columns .dc-column img {
  display: flex;
}

.dc-fv.--fv1 .dc-columns .dc-column:first-child .dc-txt.--txt2 {
  margin-bottom: 30px;
}

.dc-fv.--fv1 .dc-fv-in {
  padding: 0 20px;
}

.dc-fv.--fv1 .dc-fv-boxs {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 23px;
}

.dc-fv.--fv1 .dc-fv-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dc-fv.--fv1 .dc-fv-btns .dc-btn.--btn1 {
  min-width: 213px;
  min-height: 65px;
  font-size: 18px;
}

.dc-fv.--fv1 .dc-fv__under {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 24px;
  font-size: 29px;
  line-height: 1.0689655172;
  margin-bottom: 14px;
  padding-bottom: 5px;
  border-bottom: 3px solid #56b879;
  max-width: 100%;
  font-weight: 500;
}

.dc-section {
  position: relative;
  z-index: 10;
}

.dc-section-back {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.dc-section-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.dc-section-in {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
}

.dc-section-in > *:last-child {
  margin-bottom: 0;
}

.dc-section__intro {
  font-size: 16px;
  line-height: 1.7142857143;
  margin-bottom: 45px;
}

.dc-section.--section1 {
  background-image: url("../img/section_back_1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
}

.dc-section.--section-yellow-thin {
  background-color: #fff9e8;
}

@media screen and (min-width: 769px) {
  .dc-tb {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
  .dc-tb-hidden {
    display: none !important;
  }
  .dc-heading.--heading1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .dc-heading.--heading2 {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px 30px;
  }
  .dc-txt.--txt2 {
    font-size: 14.7px;
    gap: 5px;
    font-weight: 500;
  }
  .dc-txt.--txt2::before,
  .dc-txt.--txt2::after {
    width: 26px;
    height: 36px;
  }
  .dc-txt.--txt4 {
    gap: 3px;
  }
  .dc-txt.--txt4 .dc-txt-4-left,
  .dc-txt.--txt4 .dc-txt-4-right {
    font-size: 16px;
  }
  .dc-txt.--txt4 .dc-txt-4__no {
    font-size: 17px;
  }
  .dc-txt.--txt5 {
    height: 90px;
    width: 100%;
    border-radius: 8px;
    border: 1px dashed;
  }
  .dc-txt.--txt-icon {
    font-size: 13px;
    line-height: 1.6923076923;
  }
  .dc-txt-wave-wrap {
    margin-bottom: 25px;
  }
  .dc-txt-wave-wrap .dc-txt.--txt-wave {
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 16px;
    margin-bottom: 3px;
  }
  .dc-txt-wave-wrap .dc-txt.--txt-wave::after {
    background-size: cover;
    width: 100%;
    height: 9px;
  }
  .dc-btn.--btn1 {
    font-size: 17px;
    min-width: 228px;
    min-height: 54px;
  }
  .dc-list.--list1 {
    gap: 15px;
  }
  .dc-list.--list2 {
    font-size: 14px;
  }
  .dc-list.--list2 li {
    gap: 5px;
  }
  .dc-list.--list2 li::before {
    top: 4px;
    width: 15.7px;
    height: 15.7px;
  }
  .dc-list.--list3 {
    font-size: 18px;
  }
  .dc-columns.--columns1 .dc-columns-1__title {
    padding-bottom: 10px;
    margin-bottom: 0px !important;
    border-bottom: 0;
    text-align: center;
  }
  .dc-card.--card1 {
    width: 157px;
  }
  .dc-card.--card1 .dc-card-1-head {
    padding: 7px 5px 7px;
  }
  .dc-card.--card1 .dc-card-1-body {
    padding: 10px;
  }
  .dc-card.--card1 .dc-card-1__img {
    width: 109px;
    height: 109px;
  }
  .dc-card.--card1 .dc-card-1__title {
    font-size: 17px;
  }
  .dc-card.--card1 .dc-card-1__title .--en {
    font-size: 19px;
    line-height: 1;
    margin-left: 2px;
    vertical-align: unset;
  }
  .dc-card.--card2 .dc-card-2-head {
    font-size: 16px;
    padding: 30px 10px 33px;
  }
  .dc-card.--card2 .dc-card-2-head__icon img {
    width: 78px;
    height: 78px;
  }
  .dc-card.--card2 .dc-card-2-body {
    padding: 13px 20px 20px;
  }
  .dc-card.--card2 .dc-card-2-body__img img {
    width: 220px;
  }
  .dc-card.--card2 .dc-card-2__title {
    font-size: 19px;
  }
  .dc-card.--card2 .dc-card-2__red {
    font-size: 16px;
  }
  .dc-card.--card2 .dc-card-2__txt-1 {
    font-size: 17px;
    border-bottom: 1px dashed;
    padding-bottom: 15px;
    margin-bottom: 0;
  }
  .dc-card.--card3 {
    width: 295px;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    min-height: 120px;
    border-radius: 10px;
  }
  .dc-card.--card3 .dc-card-3-left {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  .dc-card.--card3 .dc-card-3__title {
    position: relative;
    top: unset;
    font-size: 16px;
    width: 150px;
    padding: 4px 5px 7px;
    margin: 0;
  }
  .dc-card.--card3 .dc-card-3__txt {
    font-size: 14px;
  }
  .dc-card.--card3 .dc-card-3__img {
    width: 119px;
  }
  .dc-card-1-group {
    gap: 20px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    justify-content: center;
  }
  .dc-card-2-slider.swiper {
    padding: 22px 0 61px;
    margin-bottom: 50px;
  }
  .dc-card-2-slider.swiper .swiper-pagination {
    bottom: 16px;
  }
  .dc-card-2-slider.swiper .swiper-button {
    top: unset;
    bottom: 0;
    width: 44px;
    height: 44px;
  }
  .dc-card-2-slider.swiper .swiper-button-prev {
    left: 15px;
  }
  .dc-card-2-slider.swiper .swiper-button-next {
    right: 15px;
  }
  .dc-card-3-group {
    margin-top: 40px;
  }
  .dc-box.--box1 {
    width: 100%;
    font-size: 16px;
    min-height: 57px;
  }
  .dc-box.--box2 {
    padding: 0 0 40px;
    border-radius: 10px;
  }
  .dc-box.--box2 .dc-box-2__title {
    position: relative;
    top: 0;
    font-size: 20px;
    border-radius: 10px 10px 0 0;
    padding: 15px 10px 10px;
    width: 100%;
    margin-bottom: 20px;
  }
  .dc-box.--box2 .dc-box-2__des {
    font-size: 15px;
    line-height: 1.6923076923;
    margin-bottom: 15px;
  }
  .dc-box.--box2-deco1::before {
    content: unset;
  }
  .dc-box.--box3 .dc-box-3-body.dc-columns {
    padding: 15px 10px 20px;
    gap: 30px;
  }
  .dc-box.--box3 .dc-box-3-body.dc-columns > .dc-column:nth-child(2) {
    width: 295px;
  }
  .dc-box.--box3-s {
    font-size: 14px;
    font-weight: 500;
  }
  .dc-box.--box3-s .dc-box-3-body {
    text-align: left;
    padding: 18px 20px;
  }
  .dc-box.--box3-s .dc-box-3-body p {
    margin-bottom: 20px;
  }
  .dc-box.--box3-deco1-r::before {
    content: unset;
  }
  .dc-box.--box4 .dc-box-4-head {
    font-size: 18px;
    background-image: url("../img/txt_deco_sp.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 100% 100%;
    padding: 10px 10px 25px;
  }
  .dc-box.--box4 .dc-box-4-body {
    padding: 10px 17px 15px;
  }
  .dc-box.--box-yellow {
    padding: 20px;
  }
  .dc-block.--block1 .dc-block-1__title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
  }
  .dc-block.--block1 .dc-block-1__count {
    font-size: 16px;
    margin-bottom: 7px;
  }
  .dc-block.--block1 .dc-block-1__btn {
    font-size: 14px;
    font-weight: 500;
    min-width: 157px;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  .dc-block.--block1-detail .dc-block-1-detail__subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .dc-block.--block1-detail .dc-block-1-detail__list {
    display: block;
    font-size: 16px;
    max-height: unset;
    align-content: center;
  }
  .dc-block.--block1-detail .dc-block-1-detail__list li {
    align-items: center;
  }
  .dc-block.--block1-detail .dc-block-1-detail__list li::before {
    font-size: 8px;
    height: 17px;
  }
  .dc-block-1-group {
    gap: 30px;
  }
  .dc-qa.--qa1 {
    gap: 30px;
    margin-bottom: 30px;
  }
  .dc-qa.--qa1 .dc-qa-item {
    padding: 15px 10px 15px;
    border-radius: 8px;
  }
  .dc-qa.--qa1 .dc-qa-item-q {
    padding-right: 45px;
    gap: 10px;
    text-align: left;
  }
  .dc-qa.--qa1 .dc-qa-item-a-in {
    margin-top: 10px;
    padding-top: 10px;
    padding-left: 10px;
    font-size: 14px;
  }
  .dc-qa.--qa1 .dc-qa-item__q {
    font-size: 40px;
  }
  .dc-qa.--qa1 .dc-qa-item__arrow {
    right: 5px;
  }
  .dc-cta.--cta1 {
    margin-top: 25px;
    padding: 0;
    background-color: unset;
  }
  .dc-cta.--cta1 .dc-cta-in > .dc-columns {
    gap: 25px;
    padding: 0;
  }
  .dc-cta.--cta1 .dc-cta-in > .dc-columns > .dc-column:first-child {
    padding-top: 25px;
    color: white;
    font-size: 17px;
    line-height: 1.7058823529;
    letter-spacing: 0.02em;
    background-color: #56b879;
    border-radius: 10px;
    font-weight: 500;
  }
  .dc-cta.--cta1 .dc-cta-in > .dc-columns > .dc-column:first-child img {
    -o-object-position: -10px 100%;
    object-position: -10px 100%;
  }
  .dc-cta.--cta1 .dc-cta-in > .dc-columns > .dc-column:first-child p {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .dc-cta.--cta1 .dc-cta-in > .dc-columns > .dc-column:first-child p::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #ecac36;
    height: 3px;
    width: 235px;
    max-width: 100%;
    top: unset;
    border-radius: 2em;
  }
  .dc-cta.--cta1 .dc-cta-btns {
    gap: 20px;
  }
  .dc-cta.--cta1 .dc-cta-btns .dc-txt.--txt2 {
    margin-bottom: 10px;
    color: #000;
  }
  .dc-cta.--cta1 .dc-cta-btns .dc-txt.--txt2::before,
  .dc-cta.--cta1 .dc-cta-btns .dc-txt.--txt2::after {
    background-image: url("../img/txt_2_deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 35px;
  }
  .dc-modal.--modal1 .dc-modal-in {
    width: 312px;
    max-width: calc(100% - 60px);
    height: 401px;
    max-height: calc(100% - 40px);
  }
  .dc-modal.--modal1 .dc-modal-content {
    padding: 35px 30px;
  }
  .dc-modal.--modal1 .dc-modal__close {
    width: 35.8px;
    height: 35.8px;
  }
  .dc-fv.--fv1 {
    padding-top: 85px;
    padding-bottom: 50px;
  }
  .dc-fv.--fv1 img {
    width: 310px;
  }
  .dc-fv.--fv1 .dc-section-in {
    padding: 0 10px;
  }
  .dc-fv.--fv1 .dc-fv-sp-top {
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .dc-fv.--fv1 .dc-fv-sp-top__txt {
    color: #56b879;
    font-size: 19px;
    line-height: 1;
    writing-mode: vertical-lr;
    background-color: white;
    padding: 10px 8px;
    font-weight: 500;
    border-radius: 5px;
    position: absolute;
    right: 0px;
    top: 0;
    white-space: nowrap;
  }
  .dc-fv.--fv1 .dc-fv-sp-top__img {
    width: 395px;
    max-width: calc(100vw + 22px);
  }
  .dc-fv.--fv1 .dc-fv__under {
    font-size: 21px;
    margin-top: 15px;
  }
  .dc-fv.--fv1 .dc-fv-boxs {
    gap: 10px;
    margin-bottom: 15px;
  }
  .dc-fv.--fv1 .dc-fv-boxs .dc-box.--box1 br {
    display: none;
  }
  .dc-fv.--fv1 .dc-fv-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .dc-fv.--fv1 .dc-columns .dc-column:first-child .dc-txt.--txt2 {
    margin-bottom: 20px;
  }
  .dc-section__intro {
    margin-bottom: 40px;
  }
  .dc-fv.--fv1 .dc-fv-btns .dc-btn.--btn1,
  .dc-cta.--cta1 .dc-cta-btns .dc-btn.--btn1 {
    font-size: 17px;
    min-width: 228px;
    min-height: 54px;
  }
}
@media screen and (max-width: 425px) {
  .dc-block-1-group {
    flex-direction: column;
  }
}
/* block */
/* page */
.home-about {
  padding: 55px 0;
  text-align: center;
}

.home-about .dc-section-in {
  position: relative;
}

.home-about .dc-section-in::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 12.5%;
  margin: auto;
  background-image: url("../img/kasandori_3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 143px;
  height: 66px;
}

.home-worries {
  padding: 93px 0 65px;
}

.home-worries .dc-section-in {
  position: relative;
}

.home-worries-char {
  position: absolute;
  top: -20px;
  right: 8%;
}

.home-worries-char .dc-txt.--txt2 {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  gap: 8px;
  margin-bottom: 10px;
}

.home-worries-char .dc-txt.--txt2::before,
.home-worries-char .dc-txt.--txt2::after {
  width: 21px;
  height: 30px;
}

.home-worries-char img {
  display: flex;
  margin: auto;
}

.home-worries__arrow {
  padding: 40px 0;
  text-align: center;
}

.home-worries__arrow img {
  display: flex;
  margin: auto;
}

.home-worries__end {
  font-size: 28px;
  line-height: 1.1071428571;
  letter-spacing: 0.02em;
  text-align: center;
  font-weight: bold;
}

.home-worries__end p {
  margin: 0 0 1.3rem;
}

.home-worries__end p:last-child {
  margin-bottom: 0;
}

.home-worries__end img {
  display: inline-flex;
  margin-right: 10px;
}

.home-worries__end .dc-txt {
  margin-bottom: 0;
}

.home-function {
  padding: 65px 0 70px;
  text-align: center;
}

.home-function .dc-section-in {
  width: 1022px;
  max-width: 100%;
  margin: auto;
  position: relative;
}

.home-function .dc-section-in::before {
  content: "";
  background-image: url("../img/kasandori_2_r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 5%;
  top: 10px;
  width: 101px;
  height: 80px;
}

.home-function .dc-box.--box3-s .dc-box-3-body > p > .--green {
  font-size: 10px;
  color: #56b879;
}

.home-function .dc-box.--box3-s .dc-box-3-body > p > .--small {
  font-size: 14px;
}

.home-function h2.dc-heading {
  margin-bottom: 40px;
}

.home-function__columns {
  gap: 60px;
  margin-bottom: 85px;
}

.home-function__columns > .dc-column {
  width: calc(50% - 30px);
}

.home-function__columns > .dc-column .dc-box.--box3-s:last-child {
  margin-bottom: 0;
}

.home-function__columns > .dc-column:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-function__columns > .dc-column:last-child .dc-box.--box3-s {
  font-size: 15px;
}

.home-merit {
  padding: 70px 0 60px;
  text-align: center;
}

.home-merit h2.dc-heading {
  margin-bottom: 40px;
}

.home-merit .dc-section-in > *:last-child {
  margin-bottom: 0;
}

.home-price {
  padding: 60px 0 65px;
  text-align: center;
}

.home-price h2.dc-heading {
  margin-bottom: 30px;
}

.home-price__columns-1 {
  gap: 120px;
  justify-content: center;
  margin: 65px auto 50px;
}

.home-price__columns-1 > .dc-column {
  position: relative;
}

.home-price__columns-1 > .dc-column::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/icon_plus_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
}

.home-price__columns-1 > .dc-column:last-child::before {
  content: unset;
}

.home-price__columns-2 {
  justify-content: center;
  gap: 50px;
  align-items: center;
}

.home-price__columns-2 .dc-box {
  width: 534px;
  max-width: 100%;
}

.home-flow {
  padding: 65px 0 90px;
  text-align: center;
}

.home-flow h2.dc-heading {
  margin-bottom: 30px;
}

.home-qa {
  padding: 65px 0 65px;
  text-align: center;
  position: relative;
}

.home-qa::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 190px;
  margin: auto;
  width: 1069px;
  height: 351px;
  background-image: url("../img/deco_3.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.home-qa h2.dc-heading {
  margin-bottom: 40px;
}

.home-qa .dc-qa {
  position: relative;
}

.home-qa .dc-qa::after {
  content: "";
  width: 84px;
  height: 61px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/kasandori_5.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: unset;
  top: unset;
  right: -132px;
}

@media screen and (max-width: 768px) {
  .home-about {
    padding: 45px 0 50px;
  }
  .home-about .dc-section-in::before {
    content: unset;
  }
  .home-about .dc-block.--block1 .dc-block-1__title br {
    display: none;
  }
  .home-worries {
    padding: 60px 0 35px;
  }
  .home-worries .dc-section-in {
    padding: 0 15px;
  }
  .home-worries-char {
    display: none;
  }
  .home-worries__arrow {
    padding: 30px 0 20px;
  }
  .home-worries__end {
    font-size: 24px;
  }
  .home-worries__end img {
    width: 247px;
    margin-bottom: -3px;
    margin-right: 5px;
  }
  .home-worries__end p:first-child {
    margin-bottom: 15px;
    font-size: 17px;
  }
  .home-function {
    padding: 45px 0 50px;
  }
  .home-function .dc-section-in::before {
    content: unset;
  }
  .home-function h2.dc-heading {
    margin-bottom: 12px;
  }
  .home-function .dc-section__intro {
    margin-bottom: 23px;
  }
  .home-function .dc-box.--box-quote {
    background-color: unset;
    padding: 0;
    font-size: 13px;
    line-height: 1.6923076923;
    text-align: left;
  }
  .home-function .dc-box.--box-quote::before,
  .home-function .dc-box.--box-quote::after {
    content: unset;
  }
  .home-function__columns {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
  }
  .home-function__columns > .dc-column {
    width: 100%;
  }
  .home-function__columns > .dc-column:last-child .dc-box.--box3-s {
    font-size: 14px;
  }
  .home-function__columns > .dc-column:last-child .dc-box.--box3-s:last-child {
    font-size: 15px;
  }
  .home-function__columns > .dc-column:last-child .dc-box.--box3-s .dc-box-3-body > p > .--small {
    font-size: 14px;
  }
  .home-function__columns .dc-columns.--columns1 {
    padding-bottom: 15px;
    border-bottom: 1px dashed;
  }
  .home-merit {
    padding: 45px 0 50px;
  }
  .home-merit h2.dc-heading {
    margin-bottom: 15px;
  }
  .home-merit .dc-section__intro {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .home-price {
    padding: 35px 0 50px;
  }
  .home-price h2.dc-heading {
    margin-bottom: 15px;
  }
  .home-price .dc-section__intro {
    font-size: 14px;
    margin-bottom: 35px;
  }
  .home-price__columns-1 {
    margin-top: 35px;
    margin-bottom: 20px;
    gap: 65px;
  }
  .home-price__columns-1 > .dc-column {
    width: 100%;
  }
  .home-price__columns-1 > .dc-column::before {
    left: 0;
    right: 0;
    top: unset;
    bottom: -47.5px;
    width: 30px;
    height: 30px;
  }
  .home-price__columns-2 {
    gap: 20px;
  }
  .home-flow {
    padding: 40px 0 60px;
  }
  .home-flow h2.dc-heading {
    margin-bottom: 20px;
  }
  .home-flow .dc-section__intro {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .home-qa {
    padding: 40px 0 55px;
  }
  .home-qa::before {
    content: unset;
  }
  .home-qa h2.dc-heading {
    margin-bottom: 40px;
  }
  .home-qa .dc-section__intro {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
/* page */
.dc-section.home-qa .dc-section-in {
  width: 800px;
}
.dc-section.home-qa .dc-section-main {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  text-align: left;
}
.dc-section.home-qa .dc-section-main h3 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 32px;
}
.dc-section.home-qa .dc-section-main ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 0.9em;
  padding: 0;
  margin: 0;
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .dc-section.home-qa .dc-heading.--heading1 {
    line-height: 1.5;
  }
  .dc-section.home-qa .dc-section-main {
    font-size: 15px;
  }
  .dc-section.home-qa .dc-section-main h3 {
    font-size: 26px;
  }
  .dc-section.home-qa .dc-section-main ul {
    font-size: 1em;
  }
}