@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #333;
  letter-spacing: 0.05rem;
  /*読み込み時ふわっと表示させる*/
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
a:link, a:visited, a:active {
  color: #333;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.en {
  font-family: "Overpass", serif;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.sec {
  padding: 50px 0;
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.flex-wrap {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: wrap;
}

.flex-wrap-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex-wrap-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.flex-wrap-middle {
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-wrap: wrap;
}

.color-red {
  color: #e5004f;
}

.head-ttl {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
}
.head-ttl span {
  display: block;
  font-size: 0.875rem;
  margin-top: -0.5rem;
}
.head-ttl .en {
  color: #2bb673;
}

.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  background-color: #2bb673;
  background-clip: padding-box;
  padding: 24px 36px 24px 16px;
  border-radius: 4px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out 0s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}

.btn-header {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  padding: 24px 18px;
  margin-top: 8px;
  border-radius: 0 0 0 10px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
.btn-header:link, .btn-header:visited, .btn-header:active {
  color: #fff;
}
.btn-header:hover {
  opacity: 0.8;
}

.btn-download, .btn-corp, .btn-indiv {
  position: relative;
  display: inline-block;
  padding-top: 22px;
}
.btn-download .bubble, .btn-corp .bubble, .btn-indiv .bubble {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #ff4300;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #fff0d9;
  white-space: nowrap;
  padding: 5px 30px;
  border-radius: 999px;
  z-index: 2;
}
.btn-download .bubble::after, .btn-corp .bubble::after, .btn-indiv .bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff0d9;
  border-bottom: 0;
}

.btn-corp .btn, .btn-indiv .btn {
  width: 100%;
}

.btn-download .free {
  font-size: 0.875rem;
  background-color: #e5004f;
  padding: 2px 8px;
  border-radius: 2px;
}

.btn-corp .bubble {
  color: #2bb673;
  background-color: #e9f8f1;
}
.btn-corp .bubble::after {
  border-top-color: #e9f8f1;
}

.btn-indiv .bubble {
  color: #2bb4b6;
  background-color: #eafaf5;
}
.btn-indiv .bubble::after {
  border-top-color: #eafaf5;
}

.btn-orange {
  background-image: radial-gradient(circle at 100% 0%, #ff6600, #ff4200);
}

.btn-blue {
  background-color: #2bb4b6;
}

@media (min-width: 769px) {
  .sec {
    padding: 80px 0;
  }
  .inner {
    width: 90%;
    max-width: 1040px;
  }
  .head-ttl {
    font-size: 2.25rem;
    margin-bottom: 50px;
  }
  .head-ttl span {
    font-size: 1.125rem;
  }
  .btn {
    font-size: 1.125rem;
    padding: 26px 50px 26px 30px;
  }
  .btn-header {
    font-size: 1.300390117vw;
  }
  .btn-corp, .btn-indiv {
    width: 90%;
  }
}
@media (min-width: 1040px) {
  .btn-header {
    font-size: 1rem;
  }
}
/*============================================================
contents
==============================================================*/
/* header */
header {
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.header-login {
  border-bottom: solid 1px #e2e4e5;
}
.header-login .login-list {
  justify-content: right;
  gap: 10px;
  font-size: 0.625rem;
  padding: 8px 30px;
}

.navi .link {
  font-weight: 600;
}
.navi .link a:link, .navi .link a:visited, .navi .link a:active {
  color: #333;
}

#pc-navi {
  gap: 20px;
}
#pc-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  gap: 30px;
}

#sp-navi {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
#sp-navi ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sp-navi li {
  list-style: none;
  text-align: center;
}
#sp-navi li a {
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#sp-navi li .btn {
  width: 280px;
  padding: 20px;
  margin-top: 10px;
}
#sp-navi li .btn::after {
  right: 20px;
}

#sp-navi.panelactive {
  opacity: 1;
  z-index: 999;
}

#sp-navi.panelactive ul {
  display: block;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #2bb673;
  border-radius: 0 0 4px 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media (min-width: 769px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .header-inner {
    height: 60px;
    padding: 0 0 0 20px;
  }
  .header-logo img {
    zoom: 1;
  }
  #pc-navi ul {
    font-size: 1.300390117vw;
  }
  .navi .btn {
    width: auto;
    font-size: 1.300390117vw;
  }
}
@media (min-width: 1040px) {
  #pc-navi ul {
    font-size: 0.875rem;
  }
  .navi .btn {
    font-size: 0.875rem;
  }
}
.cta {
  background: url(../img/cta-bg.jpg) no-repeat top center/cover;
  padding: 60px 0 30px;
}
.cta .head-ttl {
  margin-bottom: 0;
}
.cta .flex-wrap-center {
  gap: 10px;
}
.cta .txt p {
  text-align: center;
}
.cta .btn-wrap {
  margin-top: 10px;
}

.cta-document img {
  max-width: 375px;
}

@media (min-width: 769px) {
  .cta .head-ttl {
    font-size: 1.875rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .cta .flex-wrap-center {
    gap: 50px;
  }
  .cta .txt p {
    text-align: left;
  }
  .cta .btn-wrap {
    margin-top: 30px;
  }
}
.mv {
  position: relative;
  isolation: isolate;
}
.mv::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 45px;
  left: 0;
  background: url("../img/mv-bg-sp.jpg") no-repeat top center/cover;
}

.mv-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.mv-main {
  display: flex;
  flex-direction: column;
}

.mv-copy {
  font-size: 1.5rem;
  font-weight: 900;
  padding: 0 20px;
}
.mv-copy img {
  max-width: 75%;
  margin: 10px 0 0;
}
.mv-copy .deepgreen {
  color: #418351;
}
.mv-copy .lightgreen {
  color: #6bb031;
}

.mv-lead {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 20px;
  margin: 10px 0 18px;
}

.mv-record {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.mv-record li {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv-record .laurel {
  max-width: 29px;
}
.mv-record .txt {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #a8842c;
  line-height: 1.1;
  padding: 0 3px;
}
.mv-record .num {
  font-size: 1.125rem;
}
.mv-record .small {
  font-size: 0.625rem;
}
.mv-record .caution {
  font-size: 0.625rem;
}

.mv-campaign {
  padding: 0 20px;
  margin-top: 28px;
}
.mv-campaign img {
  margin: 0;
}

.mv-desktop {
  flex: 0 0 auto;
  align-self: flex-end;
}

@media (min-width: 769px) {
  #mv {
    margin-top: 93px;
  }
  .mv::before {
    background: url("../img/mv-bg.jpg") no-repeat center/cover;
    height: 582px;
  }
  .mv-inner {
    padding: 50px 20px 0;
  }
  .mv-copy {
    font-size: 2.125rem;
    padding: 0;
  }
  .mv-copy img {
    max-width: 100%;
    margin: 20px 0 0;
  }
  .mv-lead {
    font-size: 1rem;
    padding: 0;
    margin: 20px 0 28px;
  }
  .mv-record {
    display: flex;
    justify-content: normal;
    align-items: center;
    margin-top: 0;
  }
  .mv-record li {
    width: 210px;
  }
  .mv-record .txt {
    font-size: 1rem;
  }
  .mv-record .num {
    font-size: 1.5rem;
  }
  .mv-record .small {
    font-size: 0.8125rem;
  }
  .mv-record .caution {
    font-size: 0.625rem;
  }
  .mv-campaign {
    padding: 0;
  }
}
#mv-cta {
  padding: 30px 0 0;
}
#mv-cta .btn-wrap {
  max-width: 600px;
  margin: 0 auto;
}
#mv-cta .flex-wrap-center {
  flex-wrap: nowrap;
  gap: 20px;
}
#mv-cta .flex-wrap-center a {
  text-align: center;
  width: 48%;
  padding: 26px;
}
#mv-cta .btn-download, #mv-cta .btn-orange {
  width: 100%;
  text-align: center;
}
#mv-cta .btn-download {
  margin-bottom: 18px;
}

/* problem */
#problem {
  padding: 50px 0 80px;
}

.problem-list {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.problem-item {
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.problem-box {
  background-color: #f7f7f5;
  padding: 18px 16px 36px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.problem-box h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
}
.problem-box p {
  font-size: 0.875rem;
  text-align: left;
}

.problem-img01 img,
.problem-img02 img,
.problem-img03 img,
.problem-img04 img {
  height: 132px;
  width: auto;
  max-width: none;
}

.solution-box {
  position: relative;
  background-color: #fbfee8;
  padding: 36px 10px 18px;
  display: flex;
  flex-direction: column;
}
.solution-box .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2bb673;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  padding: 9px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.solution-box .badge::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #2bb673;
  border-bottom: 0;
}
.solution-box h4 {
  font-size: 1.125rem;
  color: #2bb673;
  line-height: 1.3;
  margin-top: 18px;
}

.solution-img img {
  max-width: 195px;
}

.solution-img01 {
  margin-bottom: -10px;
}

@media (min-width: 769px) {
  #problem {
    padding: 80px 0 120px;
  }
  .problem-list {
    flex-direction: row;
    max-width: 1000px;
  }
}
/* why */
#why {
  background-color: #f7f7f5;
  padding-bottom: 80px;
}
#why .inner {
  position: relative;
}
#why .head-ttl {
  position: absolute;
  top: -33px;
  right: 0;
  left: 0;
  max-width: 800px;
  color: #fff;
  background-color: #2bb673;
  padding: 10px;
  margin: 0 auto;
  border-radius: 100vh;
}

.triangle-wrap {
  gap: 36px;
  padding-top: 80px;
}
.triangle-wrap p {
  font-size: 1.25rem;
  font-weight: 600;
}

.triangle-desc {
  text-align: center;
  line-height: 2;
  margin: 50px 0;
}

.maker {
  background: linear-gradient(transparent 80%, #66e491 80%);
}

.point {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 0 auto 50px;
}

.point-ttl {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
  margin: 40px 0;
}

.point-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
}
.point-card h4 {
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
}

.point-arrow {
  flex: none;
  align-self: center;
  position: relative;
  width: 36px;
  height: 36px;
  margin: -12px;
}

.point-arrow::before,
.point-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #66e491;
}

.point-arrow::before {
  transform: translateY(-50%) rotate(45deg);
}

.point-arrow::after {
  transform: translateY(-50%) rotate(-45deg);
}

@media (min-width: 769px) {
  .point {
    flex-direction: row;
    max-width: 1000px;
  }
}
/* function */
.func-box {
  background-color: #f7f7f5;
}
.func-box h3 {
  position: relative;
  display: grid;
  place-items: center;
  width: 100px;
  aspect-ratio: 1/1;
  background-color: #2bb673;
  background-image: url("../img/function-icon-ttl01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  border-radius: 0 0 40px 0;
}
.func-box h3 span {
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  font-weight: 700;
}
.func-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 14px 0;
}
.func-box .func-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 30px 30px;
}
.func-box .txt {
  max-width: 860px;
  padding: 0 20px;
}

.func-box-02, .func-box-03 {
  margin-top: 40px;
}

.func-box-02 h3 {
  background-image: url("../img/function-icon-ttl02.svg");
}

.func-box-03 h3 {
  background-image: url("../img/function-icon-ttl03.svg");
}

.func-check li {
  font-size: 0.875rem;
  font-weight: 600;
  padding-left: 26px;
  margin: 8px 0;
  background: url(../img/icon-check.svg) left center/20px 20px no-repeat;
}

.func-profile-card {
  background-color: #fbfee8;
  padding: 10px 0;
  margin-top: 30px;
}
.func-profile-card h5 span {
  font-size: 1rem;
  color: #fff;
  background-color: #2bb673;
  padding: 1px 20px 2px 20px;
  border-radius: 0 13px 13px 0;
  letter-spacing: 0.1rem;
}
.func-profile-card .flex-wrap-center {
  padding: 14px 20px 4px;
  gap: 10px;
}
.func-profile-card .companny {
  display: block;
  font-size: 0.875rem;
}
.func-profile-card .name {
  font-size: 1.125rem;
  font-weight: 600;
}

.steps {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 0 auto 50px;
}

.step-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border: 2px solid #d5f0e3;
  border-radius: 4px;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #d5f0e3;
  color: #2bb673;
  letter-spacing: 1px;
  line-height: 1;
  padding: 8px 24px 4px;
  border-radius: 100vh;
  white-space: nowrap;
}

.step-ttl {
  color: #2bb673;
  font-size: 1.5rem;
  font-weight: 600;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 10px 0 20px;
}

.step-desc {
  font-weight: 600;
}

.step-arrow {
  flex: none;
  align-self: center;
  width: 0;
  height: 0;
  margin: 18px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 17px solid #2bb673;
  transform: rotate(90deg);
}

@media (min-width: 769px) {
  .func-box .func-wrap {
    display: flex;
    justify-content: normal;
    align-items: normal;
  }
  .func-box h3 {
    width: 140px;
  }
  .func-box h3 span {
    font-size: 1.75rem;
  }
  .func-box h4 {
    font-size: 1.75rem;
  }
  .func-check li {
    font-size: 1.125rem;
  }
  .steps {
    flex-direction: row;
    max-width: 720px;
  }
  .step-arrow {
    transform: rotate(0deg);
  }
}
/* vision */
#vision {
  background-color: #f7f7f5;
  line-height: 2;
}

.vision-box {
  max-width: 860px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 40px;
}
.vision-box img {
  margin: 0;
}
.vision-box .txt {
  padding: 20px;
}
.vision-box .comment {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
.vision-box .caution {
  text-align: right;
  font-size: 0.875rem;
  margin-top: 40px;
}

.vision-desktop {
  margin-top: 20px;
}

@media (min-width: 769px) {
  .vision-box {
    display: flex;
    justify-content: normal;
    align-items: center;
    flex-wrap: nowrap;
  }
  .vision-desktop {
    margin-top: 0;
  }
}
/* price */
#price {
  background-color: #f7f7f5;
}
#price .flex-wrap-middle {
  gap: 20px;
}

.price-box {
  text-align: center;
  max-width: 460px;
  background-color: #fff;
  padding: 0 24px 20px;
  border-radius: 4px;
}
.price-box h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  padding: 12px 0;
  margin-bottom: 24px;
}
.price-box h3 span {
  padding: 12px 80px;
  border-radius: 0 0 40px 40px;
}
.price-box .btn-wrap {
  margin-top: 20px;
}
.price-box .caution {
  text-align: left;
  font-size: 0.875rem;
}

.price-card {
  font-size: 1.125rem;
  font-weight: 900;
}
.price-card .num {
  font-size: 1.875rem;
}
.price-card .tax {
  font-size: 0.625rem;
  margin-left: -4px;
}

.price-year {
  padding-top: 8px;
  margin-top: 8px;
  border-top: solid 1px #e5e5e5;
}

.price-contact {
  text-decoration: underline;
  display: block;
  margin: 20px 0;
}

.price-corp {
  border: solid 1px #2bb673;
}
.price-corp h3 span {
  background-color: #2bb673;
}

.price-indiv {
  border: solid 1px #2bb4b6;
}
.price-indiv h3 span {
  background-color: #2bb4b6;
}

.price-campaign {
  color: #e5004f;
  padding-bottom: 8px;
  border-bottom: solid 2px #e5004f;
}
.price-campaign h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  padding-bottom: 4px;
}
.price-campaign h4::before, .price-campaign h4::after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  background: #e5004f;
}
.price-campaign .badge {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e5004f;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 6px;
}
.price-campaign .badge .up {
  margin-top: 6px;
  margin-bottom: -3px;
}
.price-campaign .badge .num {
  font-size: 1.25rem;
}

@media (min-width: 769px) {
  .price-card {
    font-size: 1.375rem;
  }
  .price-card .num {
    font-size: 3rem;
  }
  .price-card .tax {
    font-size: 0.875rem;
  }
  .price-campaign .badge {
    width: 62px;
    height: 62px;
    font-size: 1rem;
  }
  .price-campaign .badge .num {
    font-size: 1.75rem;
  }
}
/* faq */
.faq-box {
  width: 96%;
  max-width: 800px;
  margin: 0 auto 0;
}

.accordion {
  margin-bottom: 15px;
}

.toggle {
  display: none;
}

.accordion-ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4rem;
  background-color: #f7f7f5;
  padding: 10px 50px 10px 10px;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 5px;
}
.accordion-ttl p {
  display: flex;
  align-items: center;
}
.accordion-ttl span {
  display: inline-block;
  text-align: center;
  color: #2bb673;
  font-size: 2.625rem;
  line-height: 4rem;
  font-family: "Overpass", serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion-ttl::before, .accordion-ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion-ttl::before {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion-ttl,
.accordion-txt {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion-txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0 15px;
  overflow: hidden;
}
.accordion-txt .answer {
  display: inline-block;
  text-align: center;
  color: #ff7b25;
  font-size: 2.625rem;
  font-family: "Overpass", serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion-txt p {
  display: flex;
  align-items: center;
}

.toggle:checked + .accordion-ttl + .accordion-txt {
  height: auto;
  padding: 20px 15px;
  transition: all 0.3s;
}

.toggle:checked + .accordion-ttl::before {
  transform: translateY(-50%) rotate(0);
}

@media (min-width: 769px) {
  .accordion-ttl {
    padding: 0 66px 0 15px;
  }
  .accordion-txt {
    font-size: 1rem;
  }
}
/* form */
#form {
  background: url(../img/form-bg.jpg) no-repeat top center/cover;
}
#form .flex-wrap-middle {
  gap: 20px;
}

.form-policy {
  margin: 0 0 30px;
}

.form-link {
  text-decoration: underline;
}

.form-document {
  max-width: 400px;
}
.form-document h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.2rem 0 0.8rem;
}
.form-document li {
  font-size: 0.875rem;
}

.document-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.document-contents-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.form-input {
  max-width: 500px;
  background-color: #fff;
  box-shadow: 0px 2px 10px 0px rgba(30, 128, 81, 0.2);
  padding: 20px;
  border-radius: 10px;
}

/* footer */
footer .inner {
  padding: 50px 20px;
}

.footer-company img {
  max-width: 140px;
  margin: 0 0 20px 0;
}
.footer-company p {
  font-size: 0.875rem;
}

.footer-link .link-list {
  font-size: 0.875rem;
}
.footer-link .login-list {
  font-size: 0.625rem;
  margin-top: 18px;
}

.footer-copy {
  text-align: center;
  font-size: 0.625rem;
  padding: 20px 0;
  border-top: solid 1px #e5e5e5;
}

@media (min-width: 769px) {
  .footer-link .link-list, .footer-link .login-list {
    display: flex;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
  }
}/*# sourceMappingURL=style.css.map */