@charset "UTF-8";
.js-text-effect {
  overflow: hidden;
}

.js-text-effect span {
  display: inline-block;
  opacity: 0;
  visibility: visible;
  -webkit-transform: translateY(100%) rotateZ(45deg);
          transform: translateY(100%) rotateZ(45deg);
  padding: 0 1px;
}

.js-text-effect-after {
  overflow: hidden;
}

.js-text-effect-after span {
  display: inline-block;
  opacity: 0;
  visibility: visible;
  -webkit-transform: translateY(100%) rotateZ(45deg);
          transform: translateY(100%) rotateZ(45deg);
  padding: 0 1px;
}

.js-fadeIn {
  opacity: 0;
  visibility: hidden;
}

.js-popUp {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
}

.js-popUp > div {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
}

:root {
  --root-font-size: 16;
}

html {
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  color: #151515;
  letter-spacing: 0.06em;
}

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

.l-inner {
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}

.l-innerS {
  width: 90%;
  max-width: 980px;
  margin-inline: auto;
}

.l-innerXS {
  width: 90%;
  max-width: 800px;
  margin-inline: auto;
}

.l-triangle {
  position: relative;
}
.l-triangle::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 25px 0 25px;
  border-color: #ffffff transparent transparent transparent;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  z-index: 1;
}

.l-triangle.--double::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 25px 0 25px;
  border-color: #F5F5F5 transparent transparent transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

p {
  font-size: 14px;
  line-height: 1.8;
  padding-bottom: 1em;
}
@media screen and (min-width: 960px) {
  p {
    font-size: min(1.25vw, 18px);
  }
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc-only {
    display: block;
  }
}

.pb-sm, .title-level3, .h2-subtitle, .title-level2 {
  padding-bottom: 1rem !important;
}
@media screen and (min-width: 960px) {
  .pb-sm, .title-level3, .h2-subtitle, .title-level2 {
    padding-bottom: 3rem !important;
  }
}

.pb-lg, .l-container {
  padding-bottom: 3rem !important;
}
@media screen and (min-width: 960px) {
  .pb-lg, .l-container {
    padding-bottom: 5rem !important;
  }
}

.mb-sm {
  margin-bottom: 1rem !important;
}
@media screen and (min-width: 960px) {
  .mb-sm {
    margin-bottom: 3rem !important;
  }
}

.mb-lg, .service__list {
  margin-bottom: 2rem !important;
}
@media screen and (min-width: 960px) {
  .mb-lg, .service__list {
    margin-bottom: 5rem !important;
  }
}

.pt-sm {
  padding-top: 1rem !important;
}
@media screen and (min-width: 960px) {
  .pt-sm {
    padding-top: 3rem !important;
  }
}

.pt-lg, .l-container {
  padding-top: 4rem !important;
}
@media screen and (min-width: 960px) {
  .pt-lg, .l-container {
    padding-top: 6rem !important;
  }
}

.mt-sm, .flow__list {
  margin-top: 1rem !important;
}
@media screen and (min-width: 960px) {
  .mt-sm, .flow__list {
    margin-top: 3rem !important;
  }
}

.mt-lg {
  margin-top: 2rem !important;
}
@media screen and (min-width: 960px) {
  .mt-lg {
    margin-top: 5rem !important;
  }
}

.font-md, .caption {
  font-size: calc(16 / var(--root-font-size) * 1rem);
}
@media screen and (min-width: 768px) {
  .font-md, .caption {
    font-size: min(1.6666666667vw, 24px);
  }
}

.font-lg, .problems__copy, .label {
  font-size: calc(28 / var(--root-font-size) * 1rem);
}
@media screen and (min-width: 768px) {
  .font-lg, .problems__copy, .label {
    font-size: min(3.4722222222vw, 50px);
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-white {
  color: #ffffff;
}

.text-lead {
  font-weight: 700;
  text-align: center;
}

.text-orange {
  color: #F26E45;
  font-weight: 700;
}

.text-underline {
  position: relative;
  z-index: 0;
}
.text-underline::before {
  display: block;
  content: "";
  width: 100%;
  height: 8px;
  background-color: #FCA457;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 8px;
  z-index: -10;
}

.text-underline2 {
  position: relative;
  z-index: 0;
}
.text-underline2::before {
  display: block;
  content: "";
  width: 100%;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -10;
}

.text-link a {
  text-decoration: underline;
}
.text-link a:hover {
  text-decoration: none;
}

.title-level2 {
  text-align: center;
}

.h2-subtitle {
  display: block;
}

.title-level3 {
  font-size: min(6.1538461538vw, 24px);
  font-weight: 700;
  color: #3C787B;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (min-width: 480px) {
  .title-level3 {
    font-size: min(2.7777777778vw, 40px);
    margin-top: 5rem;
  }
}
.title-level3 span {
  position: relative;
}
.title-level3 span::before {
  position: absolute;
  content: "";
  width: 2em;
  height: 2em;
  left: 0;
  top: 0;
  background: url(../images/icon_line2_left.svg) no-repeat center/cover;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
.title-level3 span::after {
  position: absolute;
  content: "";
  width: 2em;
  height: 2em;
  right: 0;
  top: 0;
  background: url(../images/icon_line2_right.svg) no-repeat center/cover;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.title-level4 {
  position: relative;
  margin-inline: auto;
  background-color: #3C787B;
  width: 100%;
  height: 3em;
  border-radius: 100vw;
  color: #ffffff;
  display: grid;
  place-content: center;
  margin: 2rem auto 1rem;
  font-size: min(4.1025641026vw, 16px);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .title-level4 {
    width: 50%;
    font-size: min(1.25vw, 18px);
  }
}
.title-level4::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #3C787B;
}

.caption {
  text-transform: capitalize;
  font-family: "Palanquin Dark", sans-serif;
  border-bottom: 1px;
  border-color: inherit;
  border-style: solid;
}

.label {
  display: block;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-top: 1rem;
}

.header {
  width: 100%;
  background-color: #ffffff;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}

.header__inner {
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1440px;
}

.header__logo {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 140px;
  }
}
.header__logo img {
  width: 100%;
}

.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 200px;
}

.header__cv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 36px;
  color: #ffffff;
  background-color: #3C787B;
  border-radius: 100vw;
}
.header__cv a {
  font-size: 12px;
  display: block;
}

.header__navi {
  position: fixed;
  top: 0;
  right: -100%;
  color: #151515;
  padding: 50px 36px 80px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  height: 100%;
  min-height: 100vh;
  overflow: auto;
}
.header__navi a {
  color: #ffffff;
  display: block;
}
.header__navi a:hover {
  -webkit-transform: translateX(-2em);
          transform: translateX(-2em);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header__navi li {
  margin-bottom: 2rem;
}

.header__nav-item span {
  font-family: "Palanquin Dark", sans-serif;
  text-transform: capitalize;
  font-size: 1.5rem;
}
.header__nav-item span::after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #F5F5F5;
}

.header__toggleBtn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}
.header__toggleBtn span {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #151515;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__toggleBtn span:nth-child(1) {
  top: 0;
}
.header__toggleBtn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__toggleBtn span:nth-child(3) {
  bottom: 0;
}

.header__mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.open .header__navi {
  right: 0;
  opacity: 1;
}
.open .header__toggleBtn span {
  background-color: #ffffff;
}
.open .header__toggleBtn span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.open .header__toggleBtn span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.open .header__toggleBtn span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.open .header__mask {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #3C787B;
  opacity: 1;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .open .header__mask {
    width: 30%;
  }
}

.kv {
  padding-top: 60px;
  background-color: #D6E7DB;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media screen and (min-width: 480px) {
  .kv__inner {
    padding: 60px 0 0;
  }
}

.kv__container {
  position: relative;
}
@media screen and (min-width: 480px) {
  .kv__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.kv__container .decoration-shop {
  position: absolute;
  display: block;
  background: url(../images/kv_bg.svg) no-repeat center/cover;
  top: 18px;
  right: -15px;
  width: min(41.0256410256vw, 160px);
  height: min(41.0256410256vw, 160px);
  z-index: -1;
}
@media screen and (min-width: 390px) {
  .kv__container .decoration-shop {
    width: min(47.6923076923vw, 186px);
    height: min(47.6923076923vw, 186px);
  }
}
@media screen and (min-width: 480px) {
  .kv__container .decoration-shop {
    top: 7px;
    right: 28px;
    width: min(13.8888888889vw, 200px);
    height: min(13.8888888889vw, 200px);
  }
}
.kv__container .decoration-dot01 {
  position: absolute;
  display: block;
  background: url(../images/bg_dot.svg) no-repeat center/cover;
  top: -171px;
  left: -215px;
  width: min(128.2051282051vw, 500px);
  height: min(128.2051282051vw, 500px);
  z-index: -1;
}
@media screen and (min-width: 480px) {
  .kv__container .decoration-dot01 {
    width: min(41.6666666667vw, 600px);
    height: min(41.6666666667vw, 600px);
  }
}
.kv__container .decoration-dot02 {
  position: absolute;
  display: block;
  background: url(../images/bg_dot.svg) no-repeat center/cover;
  bottom: -155px;
  right: -213px;
  width: min(128.2051282051vw, 500px);
  height: min(128.2051282051vw, 500px);
  z-index: -1;
}
@media screen and (min-width: 480px) {
  .kv__container .decoration-dot02 {
    width: min(41.6666666667vw, 600px);
    height: min(41.6666666667vw, 600px);
  }
}

.kv__article {
  position: relative;
  z-index: 1;
}

.kv__maintitle {
  padding-top: min(6.1538461538vw, 24px);
  font-size: min(7.6923076923vw, 30px);
  font-weight: 900;
  letter-spacing: 0.06rem;
}
@media screen and (min-width: 390px) {
  .kv__maintitle {
    padding-top: min(7.6923076923vw, 30px);
    font-size: min(8.2051282051vw, 32px);
  }
}
@media screen and (min-width: 480px) {
  .kv__maintitle {
    font-size: min(4.1666666667vw, 60px);
    padding-top: min(3.4722222222vw, 50px);
    padding-bottom: 1em;
  }
}
.kv__maintitle div {
  padding-bottom: 16px;
}
.kv__maintitle div .text-underline::before {
  opacity: 0;
  height: 14px;
  border-radius: 7px;
  -webkit-animation: line 0.4s ease-out forwards;
          animation: line 0.4s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes line {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}

@keyframes line {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}
.kv_subtitle {
  font-size: min(4.6153846154vw, 18px);
  font-weight: 900;
  line-height: 1.8;
  padding-bottom: min(7.6923076923vw, 30px);
}
@media screen and (min-width: 480px) {
  .kv_subtitle {
    font-size: min(2.2222222222vw, 32px);
  }
}

.kv__detail {
  display: grid;
  place-content: center;
}

.kv__image {
  margin-inline: auto;
  position: relative;
  width: min(33.3333333333vw, 130px);
}
@media screen and (min-width: 390px) {
  .kv__image {
    width: min(38.4615384615vw, 150px);
  }
}
@media screen and (min-width: 480px) {
  .kv__image {
    width: min(14.5833333333vw, 210px);
  }
}
.kv__image img {
  -webkit-filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.16));
}

.kv__circle {
  width: min(38.4615384615vw, 150px);
  position: absolute;
  opacity: 0;
}
@media screen and (min-width: 390px) {
  .kv__circle {
    width: min(43.0769230769vw, 168px);
  }
}
@media screen and (min-width: 480px) {
  .kv__circle {
    width: min(13.1944444444vw, 190px);
  }
}
.kv__circle img {
  -webkit-filter: drop-shadow(0px 0px 20px rgba(149, 188, 179, 0.8));
          filter: drop-shadow(0px 0px 20px rgba(149, 188, 179, 0.8));
}

.kv__circle:nth-of-type(1) {
  top: -20%;
  right: -90%;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
@media screen and (min-width: 480px) {
  .kv__circle:nth-of-type(1) {
    top: -15%;
    right: -75%;
  }
}

.kv__circle:nth-of-type(2) {
  top: 0;
  left: -90%;
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
@media screen and (min-width: 480px) {
  .kv__circle:nth-of-type(2) {
    left: -75%;
  }
}

.kv__circle:nth-of-type(3) {
  bottom: 0;
  right: -90%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media screen and (min-width: 480px) {
  .kv__circle:nth-of-type(3) {
    right: -75%;
  }
}

.kv__circle:nth-of-type(4) {
  bottom: -20%;
  left: -90%;
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}
@media screen and (min-width: 480px) {
  .kv__circle:nth-of-type(4) {
    left: -75%;
    bottom: -15%;
  }
}

.kv__attention {
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: min(10.2564102564vw, 40px);
  padding-bottom: min(7.1794871795vw, 28px);
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 480px) {
  .kv__attention {
    font-size: min(1.0416666667vw, 15px);
    padding-top: min(1.6666666667vw, 24px);
  }
}

.casework {
  position: relative;
  overflow: hidden;
  background-color: #F5F5F5;
}
.casework .caption {
  color: #3C787B;
}
.casework.l-triangle::before {
  border-top-color: #F5F5F5;
}
.casework img {
  border-radius: 4px;
}

.casework__card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  /* Drop Shadow */
  -webkit-box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .casework__card {
    padding: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .casework__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
  }
}

@media screen and (min-width: 768px) {
  .casework__item {
    width: 50%;
  }
}

.casework__number {
  color: #D6E7DB;
  font-weight: 500;
  font-family: "Palanquin Dark", sans-serif;
  font-size: 64px;
  text-align: center;
  line-height: 1;
  margin-bottom: 1rem;
}
.casework__number span {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .casework__number {
    font-size: min(5vw, 72px);
  }
  .casework__number span {
    font-size: 40px;
  }
}

.casework__name {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.casework__name span {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .casework__name {
    font-size: min(2.2222222222vw, 32px);
  }
  .casework__name span {
    font-size: 21px;
  }
}

.casework__profile {
  font-weight: 500;
  font-size: min(3.8461538462vw, 15px);
}
@media screen and (min-width: 768px) {
  .casework__profile {
    font-size: min(1.1111111111vw, 16px);
  }
}

.casework__information {
  font-size: min(3.8461538462vw, 15px);
}
@media screen and (min-width: 768px) {
  .casework__information {
    font-size: min(1.1111111111vw, 16px);
  }
}
.casework__information dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  padding: 8px 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-weight: 700;
  background-color: #D6E7DB;
  margin-bottom: 1em;
  border-radius: 4px;
}
.casework__information dd {
  line-height: 160%;
  margin-bottom: 1em;
}

.casework__voice li {
  border-radius: 0px 16px 16px 16px;
  background: #ffffff;
  padding: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 160%;
  /* Drop Shadow */
  -webkit-box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .casework__voice li {
    font-size: min(1.25vw, 18px);
  }
}

.casework__detail {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .casework__detail {
    font-size: min(1.25vw, 18px);
  }
}
.casework__detail dt {
  background-color: #3C787B;
  color: #ffffff;
  position: relative;
  display: inline-block;
  height: 2rem;
  margin-left: 16px;
  padding: 0.5rem 2rem 0.5rem 2rem;
  margin-bottom: 1rem;
  line-height: 1rem;
}
.casework__detail dt::before {
  position: absolute;
  top: 0;
  left: -16px;
  content: "";
  border-width: 16px 16px 16px 0;
  border-style: solid;
  border-color: transparent #3C787B transparent transparent;
}
.casework__detail dt::after {
  position: absolute;
  top: calc(50% - 3px);
  left: -3px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: #ffffff;
}
.casework__detail dd {
  margin-bottom: 1rem;
  padding-left: 1rem;
}
.casework__detail li {
  line-height: 160%;
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 0.5rem;
}

.casework__episode {
  margin-bottom: 80px;
}

.problems {
  background-color: #3C787B;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.problems.l-triangle::before {
  border-top-color: #3C787B;
}

.decoration-dot03 {
  position: absolute;
  display: block;
  background: url(../images/bg_dot.svg) no-repeat center/cover;
  opacity: 0.5;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  z-index: -1;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (min-width: 768px) {
  .decoration-dot03 {
    width: 600px;
    height: 600px;
  }
}

.decoration-dot04 {
  position: absolute;
  display: block;
  background: url(../images/bg_dot.svg) no-repeat center/cover;
  opacity: 0.5;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .decoration-dot04 {
    width: 600px;
    height: 600px;
  }
}

.problems__image {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .problems__image {
    width: 60%;
    margin-inline: auto;
  }
}

.problems__copy {
  font-weight: 700;
}
.problems__copy span {
  font-size: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .problems__copy span {
    font-size: min(2.0833333333vw, 30px);
  }
}
.problems__copy span::before {
  position: absolute;
  content: "";
  width: 2em;
  height: 2em;
  left: 0;
  top: 0;
  background: url(../images/icon_line_left.svg) no-repeat center/cover;
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
}
.problems__copy span::after {
  position: absolute;
  content: "";
  width: 2em;
  height: 2em;
  right: 0;
  top: 0;
  background: url(../images/icon_line_right.svg) no-repeat center/cover;
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
}

.cv {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 480px) {
  .cv {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.cv__inner {
  background-color: #8ED8C6;
  border-radius: 8px;
  padding: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .cv__inner {
    border-radius: 20px;
    padding: 40px 24px;
  }
}

.cv__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cv__title {
    font-size: min(2.7777777778vw, 40px);
  }
}

@media screen and (min-width: 768px) {
  .cv__copy {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .cv__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  .cv__item {
    width: 50%;
  }
}

.cv__button a {
  margin-bottom: 1rem;
  display: grid;
  place-content: center;
  border-radius: 100vw;
  border-width: 2px;
  text-align: center;
  font-weight: 700;
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .cv__button a {
    height: min(5.5555555556vw, 80px);
    font-size: min(1.6666666667vw, 24px);
    border-width: 3px;
  }
}
.cv__button a:hover {
  -webkit-box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5);
          box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.cv__button01 a {
  background-color: #FCA457;
  border-color: #ffffff;
  position: relative;
}
.cv__button01 a::before {
  display: inline-block;
  content: "";
  background: url(../images/icon_cart.svg) no-repeat;
  position: absolute;
  top: 33%;
  left: 8%;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  vertical-align: middle;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .cv__button01 a::before {
    width: 1.6em;
    height: 1.6em;
  }
}

.cv__button02 a {
  background-color: #ffffff;
  border-color: #3C787B;
  color: #3C787B;
  position: relative;
}
.cv__button02 a::before {
  display: inline-block;
  content: "";
  background: url(../images/icon_demoshop.svg) no-repeat;
  position: absolute;
  top: 28%;
  left: 8%;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  vertical-align: middle;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .cv__button02 a::before {
    width: 1.5em;
    height: 1.5em;
  }
}

.cv__button03 a {
  background-color: #151515;
  border-color: #ffffff;
  color: #ffffff;
  position: relative;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .cv__button03 a {
    margin-bottom: 0;
  }
}
.cv__button03 a::before {
  display: inline-block;
  content: "";
  background: url(../images/icon_laptop.svg) no-repeat;
  position: absolute;
  top: 37%;
  left: 8%;
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  vertical-align: middle;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .cv__button03 a::before {
    width: 1.6em;
    height: 1.6em;
    margin-bottom: 0;
  }
}

.cv__point {
  position: relative;
  margin-inline: auto;
  background-color: #151515;
  width: fit-content;
  /*height: 40px;*/
  padding:.5em 1em .6em;
  border-radius: 100vw;
  color: #ffffff;
  display: grid;
  place-content: center;
  margin-bottom: 8px;
}
.cv__point::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #151515;
}

.cv__attention {
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding: 1em;
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .cv__attention {
    font-size: min(0.9722222222vw, 14px);
    border-radius: 8px;
    margin-bottom: 0;
  }
}

.cv__comment {
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .cv__comment {
    font-size: min(1.25vw, 18px);
  }
}

.pickup {
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.pickup .decoration-dot05 {
  top:-200px;
}
.pickup .decoration-dot06 {
  bottom:-200px;
}
.youtube-area {
  position:relative;
  width:100%;
  max-width: 100%;
  height:auto;
  padding-top:56.25%;
  margin:auto;
}
.youtube-area > iframe {
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}
@media screen and (min-width: 768px) {
  .youtube-area {
    width:700px;
    height:calc(700px * 0.5625);
    padding-top:0;
    margin:auto;
  }
}

.service {
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.service.l-triangle::before {
  border-top-color: #ffffff;
}
.service .caption {
  color: #3C787B;
}

.service__logo {
  width: 203px;
  margin: 2rem auto;
}
.service__logo img {
  width: 100%;
}

.service__list {
  position: relative;
}
@media screen and (min-width: 960px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
  }
}

.service__item {
  position: relative;
  text-align: center;
  margin-top: 70px;
}

.service__number {
  position: absolute;
  top: -43px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: 86px;
  height: 86px;
  padding-top: 19px;
  color: #ffffff;
  border: 4px solid #ffffff;
  font-weight: 500;
  background: #3C787B;
  text-align: center;
  vertical-align: middle;
  border-radius: 100%;
  font-family: "Palanquin Dark", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 960px) {
  .service__number {
    top: -15%;
    width: min(6.25vw, 90px);
    height: min(6.25vw, 90px);
  }
}

.service__caption {
  font-size: 14px;
  display: block;
}
@media screen and (min-width: 960px) {
  .service__caption {
    font-size: min(0.9722222222vw, 14px);
  }
}

.service__label {
  font-size: 24px;
}
@media screen and (min-width: 960px) {
  .service__label {
    font-size: min(1.6666666667vw, 24px);
  }
}

.service__image {
  width: 214px;
  margin-bottom: 16px;
}
@media screen and (min-width: 960px) {
  .service__image {
    width: 100%;
  }
}

.service__figcaption {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .service__figcaption {
    font-size: min(1.25vw, 18px);
  }
}

.service__attention {
  background-color: #FFE3C9;
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .service__attention {
    padding: 2rem;
  }
}
.service__attention dt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .service__attention dt {
    font-size: min(1.6666666667vw, 24px);
  }
}
.service__attention dd {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .service__attention dd {
    font-size: min(1.25vw, 18px);
  }
}

.decoration-dot05 {
  position: absolute;
  display: block;
  background: url(../images/bg_dot2.svg) no-repeat center/cover;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  z-index: -1;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .decoration-dot05 {
    width: 600px;
    height: 600px;
  }
}

.decoration-dot06 {
  position: absolute;
  display: block;
  background: url(../images/bg_dot2.svg) no-repeat center/cover;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .decoration-dot06 {
    width: 600px;
    height: 600px;
  }
}

.feature {
  background-color: #D6E7DB;
  text-align: center;
}
.feature.l-triangle::before {
  border-top-color: #D6E7DB;
}
.feature .caption {
  color: #3C787B;
}

.feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .feature__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .feature__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.feature__item {
  background-color: #ffffff;
  border-radius: 8px;
  height: 150px;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .feature__item {
    height: 180px;
  }
}

.feature__figure {
  height: 100px;
}

.feature__figcaption {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
@media screen and (min-width: 960px) {
  .feature__figcaption {
    font-size: min(1.1111111111vw, 16px);
  }
}

.example {
  background-color: #F5F5F5;
  text-align: center;
}
.example.l-triangle::before {
  border-top-color: #F5F5F5;
}
.example .caption {
  color: #3C787B;
}

.horizontal_scroll {
  overflow-x: scroll;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding-left: 1rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .horizontal_scroll {
    margin-left: 0;
    margin-right: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
}

/* 画面幅が768px以上の場合、横スクロールを解除 */
@media screen and (min-width: 768px) {
  .horizontal_scroll {
    overflow-x: inherit;
  }
}
.horizontal_scroll > li {
  width: 100%;
  min-width: 150px;
  max-width: 240px;
}

.horizontal_scroll img {
  vertical-align: bottom;
}

.flow {
  background-color: #ffffff;
  text-align: center;
}
.flow.l-triangle::before {
  border-top-color: #ffffff;
}
.flow .caption {
  color: #3C787B;
}

@media screen and (min-width: 768px) {
  .flow__list {
    width: 60%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 960px) {
  .flow__list {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    display: grid;
    position: relative;
    grid-template-columns: repeat(6, 1fr);
  }
}

.flow__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #8ED8C6;
  border-radius: 8px;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
      -ms-flex-flow: row;
          flex-flow: row;
  margin-left: 10px;
  margin-bottom: 12px;
  padding: 16px 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 960px) {
  .flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 36px 16px 16px;
    margin-left: 10px;
  }
}

.flow__item:nth-of-type(3) {
  background-color: rgba(252, 164, 87, 0.5);
}

.flow__number {
  position: absolute;
  left: -25px;
  background-color: #151515;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 2px solid #ffffff;
  color: #ffffff;
  display: grid;
  place-content: center;
  font-family: "Palanquin Dark", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 960px) {
  .flow__number {
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

.flow__image {
  width: auto;
}
@media screen and (min-width: 960px) {
  .flow__image img {
    width: 100px;
    margin-bottom: 1rem;
  }
}

.flow__content {
  padding-left: 1rem;
}
@media screen and (min-width: 960px) {
  .flow__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 0;
  }
}

.flow__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (min-width: 960px) {
  .flow__text {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
  }
}

.flow_caution {
  display: block;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 11px;
  border-radius: 4px;
  margin-top: 0.5rem;
  font-weight: 400;
  text-align: left;
}

.faq {
  background-color: #F5F5F5;
}
.faq .caption {
  color: #3C787B;
}

.accordion {
  margin-bottom: 1rem;
  padding: 1rem 3rem 1rem 1rem;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .accordion {
    margin-bottom: 2rem;
    padding: 35px 70px;
  }
}

.accordion:last-of-type {
  margin-bottom: 0;
}

.accordion .title {
  position: relative;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .accordion .title {
    font-size: min(1.25vw, 18px);
  }
}

.accordion .title:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 100%;
  background: url(../images/icon_plus.svg) no-repeat center;
  background-color: #F5F5F5;
  -webkit-transition: ease background 0.3s;
  transition: ease background 0.3s;
}
@media screen and (min-width: 768px) {
  .accordion .title:after {
    right: -40px;
    width: 43px;
    height: 43px;
  }
}

.accordion.open .title:after {
  background: url(../images/icon_minus.svg) no-repeat center;
  background-color: #F5F5F5;
}

.accordion:hover .title:after {
  background-color: #8ED8C6;
}

.accordion .content {
  display: none;
  margin: 0;
  margin-top: 28px;
  padding-top: 21px;
  font-size: 15px;
  border-top: 4px solid #F5F5F5;
}

.accordion .content.block {
  display: block;
}

.footer {
  padding: 2rem 0;
  background-color: #A5A4A4;
}

.footer__logo {
  width: 89px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 120px;
  }
}

.footer__container {
  background-color: #A5A4A4;
}
@media screen and (min-width: 768px) {
  .footer__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.footer__associated {
  font-size: 12px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 2rem;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__associated {
    width: 40%;
    gap: 1rem;
    margin-bottom: 0;
  }
}
.footer__associated li {
  width: 50%;
}
.footer__associated li img {
  margin-bottom: 1rem;
}

.footer__list {
  font-size: 13px;
  margin-bottom: 1rem;
}
.footer__list li {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .footer__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
  }
  .footer__list li {
    margin-top: 1em;
    padding-right: 2em;
  }
}

small {
  font-size: 11px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 768px) {
  small {
    font-size: 13px;
  }
}

#pagetop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  text-indent: -9999px;
  margin: 0;
}

#pagetop a {
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  background: #151515;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  border-radius: 50%;
}

#pagetop a:hover {
  opacity: 0.3;
}

#pagetop a::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  #pagetop a {
    width: 45px;
    height: 45px;
  }
  #pagetop a::before {
    top: 5px;
    width: 10px;
    height: 10px;
  }
}
.cp_box *, .cp_box *:before, .cp_box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_box {
  position: relative;
}

.cp_box label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 40px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 252, 252, 0)), color-stop(90%, rgba(250, 252, 252, 0.95)));
  background: -webkit-linear-gradient(top, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}

.cp_box label:after {
  line-height: 2.5rem;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  width: 16rem;
  font-family: FontAwesome;
  content: "\f13a" " インタビューを見る";
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 20px;
  background-color: #3C787B;
}
@media screen and (min-width: 768px) {
  .cp_box label:after {
    bottom: -30px;
  }
}

.cp_box input {
  display: none;
}

.cp_box .cp_container {
  overflow: hidden;
  max-height: 250px; /* 開く前に見えている部分の高さ */
  -webkit-transition: all 1s;
  transition: all 1s;
  will-change: scroll-position;
}
@media screen and (min-width: 768px) {
  .cp_box .cp_container {
    max-height: 200px;
  }
}
@media screen and (min-width: 960px) {
  .cp_box .cp_container {
    max-height: 250px;
  }
}

.cp_box input:checked + label {
  /* display: none ; 閉じるボタンを消す場合解放 */
}

.cp_box label.close {
  background: inherit;
}

.cp_box label.close:after {
  content: "\f139" " 閉じる";
}

.cp_box input:checked ~ .cp_container {
  height: 100%;
  max-height: 5000px;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  -webkit-transition: inherit;
  transition: inherit;
}/*# sourceMappingURL=style.css.map */