@charset "UTF-8";
:root {
  --base-color: #2864f0;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
p,
blockquote,
th,
td,
main,
figure {
  margin: 0;
  padding: 0;
}

table {
  font-size: 100%;
  font-family: inherit;
}

fieldset,
img {
  border: 0;
}

img,
svg {
  vertical-align: middle;
}

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

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 400;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

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

abbr,
acronym {
  border: 0;
}

select,
input,
textarea {
  font-size: 100%;
}

header,
footer,
nav,
main,
section,
article,
figure,
aside,
picture {
  display: block;
}

.clearfix:after,
.row:after {
  content: "";
  display: table;
  clear: both;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* ========================================================
	template.css => テンプレート用CSS
======================================================== */
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 1.8;
  color: #1f1f1f;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.slick-slider * {
  outline: none;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
/* pc / sp =========================== */
@media screen and (min-width: 768px), print {
  .sp,
  .sps {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc,
  .sps {
    display: none !important;
  }
}
@media screen and (max-width: 370px) {
  .sps {
    display: block !important;
  }
}
/* ==================================
btn
================================== */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  height: min(5.0485436893vw, 52px);
  padding: 0 min(2.1359223301vw, 22px);
  font-size: min(1.4563106796vw, 1.5rem);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .btn:hover {
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.7rem;
    padding: 0 25px;
    height: 75px;
  }
}
.btn > div {
  width: 100%;
}
.btn > span {
  display: block;
  width: 100%;
}
.btn svg {
  height: min(2.1359223301vw, 22px);
  width: min(2.1359223301vw, 22px);
  position: absolute;
  top: 50%;
  right: min(3.8834951456vw, 40px);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn svg {
    height: 15px;
    width: 15px;
    right: 40px;
  }
}
.btn svg.left {
  left: min(3.8834951456vw, 40px);
  right: auto;
}
.btn_primary {
  background-color: #28bfbf;
  color: #fff;
}
.btn_primary:hover {
  background-color: #42dbdb;
}
.btn_primary svg {
  fill: #fff;
}
.btn_secondary {
  color: #28bfbf;
  background-color: #fff;
  border: 1px solid #28bfbf;
}
.btn_secondary svg {
  fill: #28bfbf;
}
.btn_secondary:hover {
  color: #42dbdb;
  border-color: #42dbdb;
}
.btn_secondary:hover svg {
  fill: #42dbdb;
}
.btn_short {
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 40px;
  height: 55px;
  font-size: 1.5rem;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .btn_short {
    height: 50px;
    font-size: 1.4rem;
    padding: 0 35px 0 25px;
  }
}
.btn_short svg {
  height: 15px;
  width: 15px;
  right: 3.6%;
}
.btn_short .btn-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 40px;
  overflow: hidden;
}
.btn_short .btn-arrow:before, .btn_short .btn-arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: 100% 0;
  transform: rotate(45deg);
  opacity: 0.6;
}
.btn_shadow {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.26);
}

/* ==================================
  to_top
================================== */
.to_top {
  display: none;
}
@media screen and (max-width: 767px) {
  .to_top {
    display: block;
    position: fixed;
    bottom: 13px;
    right: 13px;
    width: 12vw;
    z-index: 10;
  }
}

/* ==================================
  fixedNav
================================== */
.fixedNav {
  display: none;
}

@media screen and (max-width: 767px) {
  .fixedNav {
    display: block;
    width: 100%;
    background: #f0eded;
    position: fixed;
    top: 0;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s, transform 0.3s;
  }
  .fixedNav.-scrolled {
    opacity: 1;
    transform: translateY(0);
  }
  .fixedNav > ul {
    width: 100%;
    height: 13.3333333vw;
    display: flex;
    border-bottom: 0.3vw solid #e1dcdc;
  }
  .fixedNav > ul > li {
    width: 33.3333333333%;
  }
  .fixedNav > ul > li + li {
    border-left: 0.3vw solid #e1dcdc;
  }
  .fixedNav > ul > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--base-color);
    font-size: 3.2vw;
    font-weight: 700;
    text-decoration: none;
  }
  /* 矢印 */
  .fixedNav > ul > li > a::after {
    content: "";
    display: block;
    width: 2.6666667vw;
    height: 2.6666667vw;
    border-right: 0.3vw solid var(--base-color);
    border-bottom: 0.3vw solid var(--base-color);
    transform: rotate(45deg);
  }
}
/* ==================================
  registerForm
================================== */
input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  vertical-align: middle;
  font-family: inherit;
  outline: none;
  font-size: 100%;
}

::-webkit-input-placeholder {
  color: #bbb;
}

:-ms-input-placeholder {
  color: #bbb;
}

::-moz-placeholder {
  color: #bbb;
}

select::-ms-expand {
  display: none;
}

button {
  cursor: pointer;
}

#registerForm .lp_signup_corporate_form_container_root {
  max-width: none !important;
  width: 280px;
  border: none;
  padding: 0;
}

#registerForm .lp_signup_corporate_form_container_root > div {
  background: none;
}

#registerForm .lp_signup_corporate_form_container_root h2 {
  display: none;
}

#registerForm .lp_signup_corporate_form_container_root form {
  width: auto;
  margin: auto;
  max-width: none;
  color: #1f1f1f;
  display: block;
}

#registerForm .lp_signup_corporate_form_container_root label {
  padding: 0;
}

#registerForm .lp_signup_corporate_form_container_root label label {
  margin-bottom: 0 !important;
}

#registerForm .lp_signup_corporate_form_container_root label span {
  padding-bottom: 5px;
  font-size: 1.2rem;
}

#registerForm .lp_signup_corporate_form_container_root label input {
  height: 50px;
  padding: 0 20px;
  background-color: #f1f1f1;
  border: 2px solid #f1f1f1;
  border-radius: 100px;
  outline: none;
  font-size: 1.6rem;
  width: 100%;
}

#registerForm .lp_signup_corporate_form_container_root label input:focus {
  border-color: rgb(69, 117, 180);
}

#registerForm .lp_signup_corporate_form_container_root button {
  position: relative;
  display: table;
  width: 210px;
  height: 50px;
  margin: 0;
  padding: 0 15px 0 0;
  background-color: #28bfbf !important;
  border: 0;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.2em;
}

#registerForm .lp_signup_corporate_form_container_root button .a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 20px;
  overflow: hidden;
}

#registerForm .lp_signup_corporate_form_container_root button .a::before,
#registerForm .lp_signup_corporate_form_container_root button .a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: 100% 0;
  transform: rotate(45deg);
  opacity: 0.6;
}

#registerForm .lp_signup_corporate_form_container_root button .a::after {
  right: 10px;
  opacity: 0;
}

@media screen and (min-width: 768px), print {
  #registerForm .lp_signup_corporate_form_container_root button {
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out, border 0.3s ease-in-out, border-radius 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin: 0 auto;
  }
  #registerForm .lp_signup_corporate_form_container_root button .a::before,
  #registerForm .lp_signup_corporate_form_container_root button .a::after {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  #registerForm .lp_signup_corporate_form_container_root button .a::before {
    transition-delay: 0.1s;
  }
  #registerForm .lp_signup_corporate_form_container_root button:hover {
    background-color: #42dbdb !important;
    border-radius: 0 !important;
    box-shadow: 5px 5px 10px rgba(17, 95, 95, 0.2);
  }
  #registerForm .lp_signup_corporate_form_container_root button:hover .a::before,
  #registerForm .lp_signup_corporate_form_container_root button:hover .a::after {
    transform: translateX(5px) rotate(45deg);
  }
  #registerForm .lp_signup_corporate_form_container_root button:hover .a::before {
    transition-delay: 0;
    opacity: 0;
  }
  #registerForm .lp_signup_corporate_form_container_root button:hover .a::after {
    transition-delay: 0.1s;
    opacity: 0.8;
  }
  #registerForm .gArqSI {
    width: 100%;
    margin: 0;
  }
  #registerForm .btdRxa {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  #registerForm .lp_signup_corporate_form_container_root button {
    margin: 0 auto;
  }
}
#registerForm {
  position: fixed;
  background-color: #fff;
  font-size: 1.1rem;
  transition: transform 0.3s ease-in-out;
  z-index: 200;
}

#registerForm .logo {
  margin-bottom: 30px;
  text-align: center;
}

#registerForm form {
  width: 280px;
}

#registerForm label {
  margin-bottom: 20px;
}

#registerForm p {
  font-size: 1.1rem;
  letter-spacing: 0;
  text-align: center;
  color: #888;
}

#registerForm p a {
  color: #888;
}

#registerForm button {
  margin: 10px auto 30px;
}

#registerForm .login {
  margin-top: 30px;
}

#registerForm .login a {
  color: #2864f0;
  font-weight: bold;
  font-size: 15px;
  padding-bottom: 2px;
  text-decoration: none;
  border-bottom: 1px solid #2864f0;
}

@media screen and (min-width: 768px), print {
  #registerForm {
    right: 12px;
    top: 12px;
    width: 395px;
    padding: 60px 0 30px;
    border: 1px solid #73a5ff;
    border-radius: 24px;
    transform: translateX(420px);
  }
  #registerForm.open {
    transform: translateX(0);
  }
  #registerForm a:hover {
    text-decoration: none;
  }
  #registerForm .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 54px;
    height: 54px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 10;
  }
  #registerForm .close::before,
  #registerForm .close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    margin-left: -9px;
    margin-top: -1px;
    border-top: 2px solid #666;
    transform: rotate(45deg);
  }
  #registerForm .close::after {
    transform: rotate(-45deg);
  }
  #registerForm .close:hover {
    transform: rotate(90deg);
    opacity: 0.5;
  }
  #registerForm .hWsTPk {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #registerForm {
    right: 10px;
    left: 10px;
    bottom: 0;
    border-top: 5px solid #2864f0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    letter-spacing: 0.1em;
    transform: translateY(110%);
  }
  #registerForm.open {
    transform: translateY(0);
  }
  #registerFormOverlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
    z-index: 199;
  }
  #registerForm.open + #registerFormOverlay {
    bottom: 0;
    pointer-events: auto;
    opacity: 1;
  }
  #registerForm > div {
    max-height: calc(100vh - 10px);
    padding: 50px 0 30px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  #registerForm > div > * {
    min-width: 280px;
    width: calc(100% - 75px);
    margin: auto;
  }
  #registerForm form {
    width: auto;
  }
  #registerForm p {
    text-align: left;
  }
  #registerForm .login {
    margin-top: 20px;
  }
  #registerForm .close {
    position: absolute;
    overflow: hidden;
    right: 0;
    left: 0;
    top: 0;
    height: 24px;
    z-index: 10;
  }
  #registerForm .close::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90px;
    height: 90px;
    margin-left: -45px;
    background-color: #2864f0;
    border-radius: 100%;
  }
  #registerForm .close::after {
    content: "";
    position: absolute;
    bottom: 50%;
    right: 50%;
    width: 8px;
    height: 8px;
    margin-bottom: -2px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: 100% 100%;
    transform: rotate(45deg);
  }
  #registerForm .hWsTPk {
    display: block;
  }
  #registerForm .gArqSI,
  #registerForm .btdRxa {
    width: 100%;
  }
}
.fix_btn {
  position: fixed;
  z-index: 100;
}

@media screen and (min-width: 768px), print {
  .fix_btn {
    right: 25px;
    top: 25px;
  }
}
@media print {
  .fix_btn {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .btn-hide .fix_btn_container {
    opacity: 0;
    transform: translateY(20px);
  }
  .fix_btn_container {
    position: fixed;
    display: block;
    bottom: 0;
    height: 65px;
    width: 100%;
    background-color: #ffffff;
    z-index: 1;
  }
  .fix_btn {
    bottom: 5px;
    right: 5vw;
    left: 5vw;
    transition: opacity 0.3s, transform 0.3s;
  }
  .fix_btn .box_btn {
    display: block;
  }
  .fix_btn .box_btn .a {
    right: 7%;
  }
  .btn-hide .fix_btn.wide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
  }
  .fix_cta_bottom {
    opacity: 0;
  }
  .fix_cta_bottom .fix_btn .box_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 305px;
  }
  .fix_cta_bottom .fix_btn .box_btn img {
    margin-right: 20px;
  }
  .cta-show .fix_cta_bottom {
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
  }
  .cta-show .fix_cta_bottom {
    position: fixed;
    display: block;
    bottom: 0;
    height: 65px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 4;
  }
  .cta-show .fix_btn {
    bottom: 5px;
    right: 5vw;
    left: 5vw;
    transition: opacity 0.3s, transform 0.3s;
  }
  .cta-show .fix_btn .box_btn {
    display: flex;
  }
  .cta-show .fix_btn .box_btn .a {
    right: 7%;
  }
  .pagetop {
    position: fixed;
    bottom: 80px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 4;
  }
  .cta-show .pagetop {
    opacity: 1;
  }
  .pagetop img {
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 767px) {
  .fix_btn.wide {
    bottom: 0;
    right: 10px;
    left: 10px;
    transition: opacity 0.3s, transform 0.3s;
  }
  .fix_btn.wide .box_btn {
    display: block;
    padding: 10px 0;
    background-color: #2864f0;
    border-radius: 12px 12px 0 0;
  }
  .fix_btn.wide .box_btn::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    background-color: #2864f0;
    border-radius: 100%;
    z-index: -1;
  }
  .fix_btn.wide .box_btn::after {
    content: "";
    position: absolute;
    top: -4px;
    right: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: 100% 0;
    transform: rotate(-45deg);
  }
  .fix_btn.wide .box_btn .a {
    display: none;
  }
  .btn-hide .fix_btn.wide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
  }
}
/* box_btn
============================================================================================================ */
a.box_btn {
  position: relative;
  display: table;
  margin: auto;
  padding: 15px 40px 15px 25px;
  background-color: #28bfbf;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

a.box_btn .a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 20px;
  overflow: hidden;
}

a.box_btn .a::before,
a.box_btn .a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: 100% 0;
  transform: rotate(45deg);
  opacity: 0.6;
}

a.box_btn .a::after {
  right: 10px;
  opacity: 0;
}

a.box_btn .s {
  margin-left: 0.2em;
  font-size: 80%;
}

a.box_btn.m {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 580px;
  height: 110px;
  margin: auto;
  border-radius: 55px;
  font-size: 2rem;
}

a.box_btn.l {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 146px;
  border-radius: 73px;
  font-size: 2rem;
}

a.box_btn .ar {
  position: absolute;
  top: 50%;
  right: 70px;
  width: 25px;
  border-top: 2px solid #fff;
  margin-top: -1px;
}

a.box_btn .ar::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -3px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: 100% 0;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px), print {
  a[href].box_btn:not(.download):hover {
    background-color: #42dbdb !important;
    border-radius: 0 !important;
    box-shadow: 5px 5px 10px rgba(17, 95, 95, 0.2);
  }
  a.box_btn .a::before,
  a.box_btn .a::after,
  a.box_btn .ar {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  a.box_btn .a::before {
    transition-delay: 0.1s;
  }
  a[href].box_btn:hover .a::before,
  a[href].box_btn:hover .a::after {
    transform: translateX(5px) rotate(45deg);
  }
  a[href].box_btn:hover .a::before {
    opacity: 0;
  }
  a[href].box_btn:hover .a::after {
    transition-delay: 0.1s;
    opacity: 0.8;
  }
  a[href].box_btn:hover .ar {
    transform: translateX(5px);
  }
}
@media screen and (max-width: 767px) {
  a.box_btn.l {
    height: 82px;
    font-size: 1.6rem;
  }
  a.box_btn .ar {
    right: 20px;
  }
  a.box_btn.m {
    width: 100%;
    height: 82px;
    font-size: 1.6rem;
  }
}
/* ==================================
  header
================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px 36px;
  align-items: center;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .header {
    position: absolute;
    padding: 15px;
  }
}
.header .btn {
  width: 265px;
}
@media screen and (max-width: 767px) {
  .header .btn {
    width: 53.6vw;
    height: 8.5vw;
    font-size: 3.3vw;
    padding: 0 5.66vw;
    text-align: left;
  }
}
.header .btn svg {
  right: 8%;
}
@media screen and (max-width: 767px) {
  .header .btn svg {
    right: 11%;
    width: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .header .site_logo {
    width: 27.2vw;
  }
}

/* ==================================
  footer
================================== */
#footer {
  position: relative;
  padding-top: 170px;
  background-color: #4476b4;
  color: #fff;
}

#footer > * {
  position: relative;
  z-index: 3;
}

#footer .bg {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 600px;
  background-color: #fff;
  z-index: 1;
}

@media screen and (min-width: 768px), print {
  #footer .img img {
    display: block;
    width: 1120px;
    height: auto;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  #footer .bg {
    height: 280px;
  }
}
/* contents
------------------------------------------------------------- */
#footer .contents {
  padding-bottom: 80px;
  font-size: 1.3rem;
}

#footer .freee {
  position: relative;
}

#footer .freee .footer-company {
  display: block;
  color: #fff;
  text-decoration: none;
}

#footer .freee dt {
  margin-bottom: 10px;
  font-weight: bold;
}

#footer .freee dd {
  font-size: 1.1rem;
}

#footer .nav ul a {
  color: #fff;
  text-decoration: none;
}

#footer .nav ul a {
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  #footer .contents {
    width: 1000px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
  }
  #footer .freee {
    padding: 95px 0 0 165px;
  }
  #footer .freee .logo {
    position: absolute;
    top: 0;
    left: 0;
  }
  #footer .freee dl {
    position: relative;
    z-index: 2;
  }
  #footer .nav {
    width: 580px;
  }
  #footer .nav ul {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  #footer .nav ul li {
    margin: 0 20px;
  }
  #footer .nav ul a:hover {
    text-decoration: underline;
  }
  #footer .nav .box_btn {
    height: 110px;
    border-radius: 55px;
  }
}
@media screen and (max-width: 767px) {
  #footer .contents {
    margin-top: 50px;
    padding-bottom: 30px;
    font-size: 1.3rem;
  }
  #footer .freee .footer-company {
    width: 210px;
    margin: 0 auto;
    text-align: center;
  }
  #footer .freee .logo {
    margin-bottom: 20px;
  }
  #footer .nav p {
    margin-top: 40px;
    padding: 0 7.5vw;
  }
  #footer .nav ul {
    margin-top: 30px;
  }
  #footer .nav ul li a {
    display: block;
    padding: 10px 0;
    text-align: center;
  }
}
/* small
------------------------------------------------------------- */
#footer small {
  display: block;
  padding: 15px;
  background-color: #fff;
  font-size: 1.1rem;
  text-align: center;
  color: #555555;
}

@media screen and (max-width: 767px) {
  #footer small {
    font-size: 1rem;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px), print {
  #footer .freee .logo {
    position: static;
  }
}
@media screen and (min-width: 768px), print {
  #footer .freee {
    padding: 0;
  }
}
@media screen and (min-width: 768px), print {
  #footer .contents {
    display: block;
    width: 910px;
    padding: 0 15px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1029px), print and (min-width: 768px) and (max-width: 1029px) {
  #footer .contents {
    width: 88.3495145631vw;
    padding: 0 1.4563106796vw;
  }
}
@media screen and (min-width: 768px), print {
  #footer .nav {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px), print {
  #footer .contents {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 767px) {
  #footer .freee .footer-company {
    width: 100%;
  }
}
#footer {
  padding-top: 10px;
  background-color: #2864f0;
}

#footer .contents {
  font-size: 14px;
}

@media (max-width: 767px) {
  #footer .contents {
    width: 100%;
    max-width: 375px;
    margin-right: auto;
    margin-left: auto;
  }
}
#footer .freee .footer-company {
  display: flex;
}

@media (max-width: 767px) {
  #footer .freee .footer-company {
    display: block;
  }
}
#footer .freee .logo {
  width: 223px;
  margin-right: 32px;
  margin-left: 148px;
}

@media (min-width: 768px) and (max-width: 1029px) {
  #footer .freee .logo {
    width: 21.6504854369vw;
    margin-right: 3.1067961165vw;
    margin-left: 14.3689320388vw;
  }
}
@media (max-width: 767px) {
  #footer .freee .logo {
    width: 145px;
    margin: 0 auto 27px;
  }
}
#footer .freee .logo img {
  width: 100%;
  height: auto;
}

#footer .freee dl {
  padding-top: 7px;
}

#footer .freee dt {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1029px) {
  #footer .freee dt {
    font-size: 1.9417475728vw;
  }
}
@media (max-width: 767px) {
  #footer .freee dt {
    font-size: 14px;
    line-height: 1.5416666667;
    margin-bottom: 10px;
  }
}
#footer .freee dd {
  font-size: 14px;
}

@media (min-width: 768px) and (max-width: 1029px) {
  #footer .freee dd {
    font-size: 1.359223301vw;
  }
}
#container {
  font-size: 1.5rem;
}

.c__blue {
  color: #2864f0;
}

.c__black {
  color: #1e1e1e;
}

/* ==================================
  CTAボタン関連の上書き
================================== */
.cta__btn {
  width: min(39.8058252427vw, 410px);
  height: min(6.8932038835vw, 71px);
  font-size: min(1.7475728155vw, 1.8rem);
  padding-right: min(0.6796116505vw, 7px);
  padding-left: min(4.7572815534vw, 49px);
}
.cta__btn span {
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  .cta__btn span {
    font-size: 0.9em;
    margin-left: -5px;
  }
}
@media screen and (max-width: 767px) {
  .cta__btn {
    font-size: 1.5rem;
    width: 96%;
    max-width: 368px !important;
    height: 70px;
    letter-spacing: 0.2em;
    padding-left: 61px;
    padding-right: 5px;
  }
}
.cta__btn svg {
  width: min(1.7475728155vw, 18px);
  height: min(1.7475728155vw, 18px);
}
@media screen and (max-width: 767px) {
  .cta__btn svg {
    width: 17px;
    height: 17px;
  }
}
.cta__btn svg.left {
  left: min(6.7961165049vw, 70px);
}
@media screen and (max-width: 767px) {
  .cta__btn svg.left {
    left: 47px;
  }
}

@media screen and (max-width: 767px) {
  .topView .btn {
    height: 70px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding-left: 6px;
  }
  .topView .btn > span {
    right: 37px;
  }
  .topView .btn > span::before, .topView .btn > span::after {
    width: 9px !important;
    height: 9px !important;
  }
}
.topView .btn.-wide {
  width: 320px;
}

/* ==================================
  登録フォーム関連の上書き
================================== */
.register_form {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.register_form form {
  position: relative;
}
.register_form form input {
  border-radius: 50vh !important;
}
.register_form form input {
  background-color: #f1f1f1;
  border: 2px solid #f1f1f1;
}
.register_form form > div > div > div:first-child {
  width: 384px !important;
}
.register_form form > div > div > div:first-child input {
  width: 100% !important;
}
.register_form form > div > div > div:last-child {
  width: 258px !important;
}
.register_form form > div > div > div:last-child input {
  width: 100% !important;
}
.register_form form > div > label {
  width: 57% !important;
}
.register_form form > button {
  width: 264px;
  padding-left: 15px;
  padding-right: 20px;
  position: absolute !important;
  right: 0;
  top: 70%;
}
.register_form form > button > span {
  overflow: visible !important;
}
.register_form form > button > span::before, .register_form form > button > span::after {
  right: 3px !important;
  width: 7px !important;
  height: 7px !important;
}

#registerForm .lp_signup_corporate_form_container_root button {
  width: 254px !important;
}

.header-right button > span:last-child::before, .header-right button > span:last-child::after {
  right: 3px !important;
  width: 7px !important;
  height: 7px !important;
}

/* ==================================
SP用下部固定ボタン
================================== */
.fix_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .fix_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 99;
  }
}

@media screen and (max-width: 767px) {
  .to_top {
    opacity: 0;
    bottom: 70px;
    width: 55px;
    height: 55px;
  }
}

/* ==================================
header
================================== */
@media screen and (max-width: 767px) {
  .header {
    padding-top: 25px;
  }
}

/* ==================================
footer
================================== */
@media screen and (max-width: 767px) {
  #footer .freee dt {
    margin-bottom: 1px;
  }
}

@media screen and (max-width: 767px) {
  #footer .notes {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
}

/* ==================================
section
================================== */
.sec__main {
  font-size: 30px;
  font-weight: bold;
  color: #2864f0;
  text-align: center;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 31px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec__main {
    font-size: 2.9126213592vw;
    line-height: 3.0097087379vw;
  }
}
@media screen and (max-width: 767px) {
  .sec__main {
    font-size: 23px;
    line-height: 33px;
  }
}
.sec__main .small {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #1e1e1e;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec__main .small {
    font-size: 1.9417475728vw;
  }
}
@media screen and (max-width: 767px) {
  .sec__main .small {
    font-size: 17px;
  }
}

.sec__container {
  width: 100%;
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec__container {
    padding: 0 1.4563106796vw;
  }
}
@media screen and (max-width: 767px) {
  .sec__container {
    max-width: 375px;
  }
}

/* ==================================
  topView
================================== */
.topView {
  padding: 108px 0 63px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .topView {
    padding-top: 77px;
    padding-bottom: 39px;
  }
}

.fv {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-bottom: 16px;
  }
}
.fv__text {
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .fv__text {
    margin-bottom: 0;
  }
}
.fv__text span {
  color: #2864f0;
}
.fv__title {
  font-size: 3rem;
  line-height: 1.3666666667;
  letter-spacing: 0.1em;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 2.3rem;
    line-height: 1.2826086957;
    letter-spacing: 0.03em;
    margin-bottom: 9px;
  }
}
.fv__desc {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .fv__desc {
    font-size: 1.4rem;
    line-height: 1.6785714286;
    letter-spacing: 0.05em;
  }
}
.fv__video {
  position: relative;
  overflow: hidden;
  margin-top: -20px;
}
.fv__video img {
  max-width: 1080px;
  max-width: 680px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .fv__video img {
    max-width: 104.854368932vw;
  }
}
.fv__video video.pc {
  position: absolute;
  top: 52.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 395px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .fv__video video.pc {
    width: 60.6796116505vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__video video {
    width: 90%;
    margin-top: 35px;
  }
}

/* ==================================
  sec-cta
================================== */
.sec-cta {
  background-color: #ebf3ff;
  padding: 35px 0 50px;
  position: relative;
  margin-bottom: 45px;
}
.sec-cta.-second {
  padding-top: 53px;
}
@media screen and (max-width: 767px) {
  .sec-cta {
    padding: 34px 0 38px;
    margin-bottom: 27px;
  }
}
.sec-cta::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: solid;
  border-right: 250px solid transparent;
  border-left: 250px solid transparent;
  border-top: 64px solid #ebf3ff;
  border-bottom: 0;
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .sec-cta::after {
    border-right-width: 100px;
    border-left-width: 100px;
    border-top-width: 27px;
    bottom: -27px;
  }
}

.cta__container {
  display: flex;
  justify-content: center;
  -moz-column-gap: 26px;
       column-gap: 26px;
}
.cta__img {
  width: 250px;
  margin-left: 36px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .cta__img {
    margin-left: 0;
  }
}
.cta__text {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.cta__title {
  font-size: 2.9rem;
  line-height: 1.33;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 2.3rem;
    line-height: 1.2553191489;
    margin-bottom: 10px;
  }
}
.cta__copy {
  font-size: 2rem;
  line-height: 36px;
  color: #2864f0;
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta__copy {
    font-size: 1.7rem;
    line-height: 30px;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }
}
.cta__copy::after {
  content: "";
  width: 250px;
  height: 36px;
  background-image: url(../img/cta_shape.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .cta__copy::after {
    width: 231px;
    height: 30px;
  }
}

/* ==================================
  sec1（法人設立届出書の基礎知識）
================================== */
.sec1 {
  background-color: #ebf3ff;
  padding: 59px 0 63px;
}
@media screen and (max-width: 767px) {
  .sec1 {
    padding: 33px 0 38px;
  }
}
.sec1__title {
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .sec1__title {
    margin-bottom: 15px;
  }
}
.sec1__box {
  max-width: 1000px;
  padding: 18px 0 29px;
  margin: 0 auto 21px;
  background-image: url(../img/sec1_bg_pc.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec1__box {
    max-width: 95vw;
  }
}
@media screen and (max-width: 767px) {
  .sec1__box {
    width: 100%;
    padding: 0 9px;
    background-image: url(../img/sec1_bg_sp.png);
    flex-direction: column;
    margin-bottom: 19px;
  }
}
.sec1__item {
  width: 33.3333333333%;
  padding: 23px 30px 185px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec1__item {
    padding-left: 1.4563106796vw;
    padding-right: 1.4563106796vw;
    padding-bottom: min(17.9611650485vw, 185px);
  }
}
@media screen and (max-width: 767px) {
  .sec1__item {
    width: 100%;
    padding: 35px 0;
  }
}
.sec1__item:first-child {
  padding-top: 38px;
  padding-bottom: 232px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec1__item:first-child {
    padding-bottom: min(22.5242718447vw, 232px);
  }
}
@media screen and (max-width: 767px) {
  .sec1__item:first-child {
    padding: 35px 0 39px;
  }
}
.sec1__item.-dashed {
  background-image: linear-gradient(to bottom, #e9e7e7, #e9e7e7 8px, transparent 8px, transparent 8px), linear-gradient(to top, #e9e7e7, #e9e7e7 8px, transparent 8px, transparent 8px);
  background-size: 3px 10px, 3px 10px;
  background-position: right top, left bottom;
  background-repeat: repeat-y, repeat-y;
}
@media screen and (max-width: 767px) {
  .sec1__item.-dashed {
    background-image: linear-gradient(to right, #e9e7e7, #e9e7e7 8px, transparent 8px, transparent 8px), linear-gradient(to left, #e9e7e7, #e9e7e7 8px, transparent 8px, transparent 8px);
    background-size: 10px 3px, 10px 3px;
    background-position: left top, right bottom;
    background-repeat: repeat-x, repeat-x;
  }
}
.sec1__item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #2864f0;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec1__item__title {
    font-size: min(1.9417475728vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .sec1__item__title {
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 14px;
  }
}
.sec1__item__desc {
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec1__item__desc {
    font-size: min(1.5533980583vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .sec1__item__desc {
    font-size: 1.4rem;
    line-height: 1.5357142857;
    margin-bottom: 19px;
  }
}
.sec1__item__img {
  width: 82%;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .sec1__item__img.-small {
    width: 79%;
  }
}
@media screen and (max-width: 767px) {
  .sec1__item__img {
    width: 65%;
    position: relative;
    bottom: 0;
  }
}

/* ==================================
  sec2（機能や特徴）
================================== */
.sec2 {
  background-color: #ebf3ff;
}
.sec2__container {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__container {
    width: 95vw;
  }
}
@media screen and (max-width: 767px) {
  .sec2__container {
    width: 352px;
  }
}
.sec2__title {
  margin-bottom: 20px;
}
.sec2__item {
  min-height: 460px;
  padding: 54px min(4.0776699029vw, 42px) 46px;
  background-image: url(../img/sec2_bg_pc_01.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item {
    min-height: 44.6601941748vw;
    padding: min(5.2427184466vw, 54px) min(4.0776699029vw, 42px) min(4.4660194175vw, 46px);
  }
}
@media screen and (max-width: 767px) {
  .sec2__item {
    flex-direction: column;
    background-image: url(../img/sec2_bg_sp_01.png);
    padding-top: 17px;
    padding-bottom: 26px;
    margin-bottom: 10px;
  }
}
.sec2__item:nth-child(3) {
  background-image: url(../img/sec2_bg_pc_02.png);
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .sec2__item:nth-child(3) {
    background-image: url(../img/sec2_bg_sp_02.png);
    margin-top: 9px;
    margin-bottom: 10px;
    padding-bottom: 42px;
  }
}
.sec2__item:nth-child(4) {
  padding-top: 14px;
  background-image: url(../img/sec2_bg_pc_03.png);
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item:nth-child(4) {
    padding-top: min(3.3980582524vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .sec2__item:nth-child(4) {
    padding-top: 0;
    padding-bottom: 38px;
    background-image: url(../img/sec2_bg_sp_03.png);
    margin-bottom: 0;
  }
}
.sec2__item__text {
  width: 57%;
  padding-top: 46px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__text {
    padding-top: min(3.6893203883vw, 38px);
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__text {
    width: 100%;
    padding-top: 53px;
  }
}
@media screen and (min-width: 768px) {
  .sec2__item__text.-narrow {
    width: 50%;
  }
}
.sec2__item__text.-pt {
  padding-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__text.-pt {
    padding-top: min(7.7669902913vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__text.-pt {
    padding-top: 54px;
  }
}
.sec2__item__img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .sec2__item__img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__img {
    width: 95%;
  }
}
.sec2__item__img.-wide {
  width: 47%;
  padding-top: 27px;
}
@media screen and (max-width: 767px) {
  .sec2__item__img.-wide {
    width: 100%;
    padding-top: 0;
    margin-top: -10px;
  }
}
@media screen and (min-width: 768px) {
  .sec2__item__img.-pt {
    padding-top: 54px;
  }
}
.sec2__item__title {
  padding-bottom: 23px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.06em;
  border-bottom: 2px solid #f7f5f5;
  margin-bottom: 11px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__title {
    padding-top: min(2.2330097087vw, 23px);
    font-size: min(1.9417475728vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__title {
    text-align: center;
    padding-bottom: 9px;
    font-size: 1.7rem;
    margin-bottom: 9px;
  }
}
.sec2__item__title.-pt {
  padding-top: 17px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__title.-pt {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__title.-pt {
    letter-spacing: 0.05em;
  }
}
.sec2__item__desc {
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.06em;
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__desc {
    font-size: min(1.5533980583vw, 1.6rem);
    margin-bottom: min(2.5242718447vw, 26px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__desc.-narrow {
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__desc {
    font-size: 1.4rem;
    line-height: 1.5357142857;
    margin-bottom: 8px;
  }
}
.sec2__item__tips {
  background-color: #f7f5f5;
  padding: 16px min(1.5533980583vw, 16px);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__tips {
    padding: min(1.5533980583vw, 16px);
    font-size: min(1.5533980583vw, 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__tips {
    font-size: 1.4rem;
    line-height: 1.5357142857;
  }
  .sec2__item__tips:last-child {
    margin-bottom: 25px;
  }
}
.sec2__item__tips.-flex {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: space-between;
}
.sec2__item__tips.-flex:last-child {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .sec2__item__tips.-flex:last-child {
    margin-top: 7px;
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__tips.-pd {
    padding-left: 15px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.sec2__item__tips__title {
  color: #2864f0;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__tips__title {
    margin-bottom: min(1.359223301vw, 14px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__tips__title.-mb {
    margin-bottom: min(0.9708737864vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .sec2__item__tips__title.-mb {
    margin-bottom: 7px;
  }
}
.sec2__item__tips__list {
  display: flex;
  line-height: 1.5625;
}
@media screen and (max-width: 767px) {
  .sec2__item__tips__list {
    display: block;
  }
}
.sec2__item__tips__img {
  width: min(8.0582524272vw, 83px);
}
@media screen and (max-width: 767px) {
  .sec2__item__tips__img {
    width: 94px;
  }
}
.sec2__item__tips__text {
  width: 80%;
}
.sec2__item__tips__text p {
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec2__item__tips__text p {
    font-size: min(1.359223301vw, 1.4rem);
  }
}

/* ==================================
  sec4（最も利用されている会社設立サービスです）
================================== */
.sec4 .sec__container {
  padding: 25px 0 50px;
}
@media screen and (max-width: 767px) {
  .sec4 .sec__container {
    padding: 13px 0 30px;
  }
}
.sec4__strength {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .sec4__strength {
    width: 83.7333333333%;
    margin: 0 auto 35px;
  }
}
.sec4__catch {
  text-align: center;
  margin-bottom: 5px;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.sec4__catch sup {
  font-size: 1rem;
  margin-left: -1em;
}
@media screen and (max-width: 767px) {
  .sec4__catch {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 18px;
  }
}
.sec4__img {
  display: flex;
  justify-content: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
  margin-bottom: 20px;
}
.sec4__img-item {
  max-width: 290px;
}
@media screen and (max-width: 767px) {
  .sec4__img {
    flex-direction: column;
    -moz-column-gap: unset;
         column-gap: unset;
    row-gap: 22px;
    margin-bottom: 28px;
  }
  .sec4__img-item {
    text-align: center;
    max-width: unset;
    widows: 100%;
  }
}
.sec4__catch-note {
  width: 525px;
  font-size: 1.1rem;
  line-height: 1.44;
  letter-spacing: 0.08em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec4__catch-note {
    width: 100%;
    font-size: 1rem;
    line-height: 1.4002001001;
    letter-spacing: 0.03em;
  }
}
.sec4__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .sec4__title {
    font-size: 2.3rem;
    margin-bottom: 28px;
  }
}
.sec4__copy {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
  margin-bottom: 2px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
@media screen and (max-width: 767px) {
  .sec4__copy {
    font-size: 1.7rem;
    margin-bottom: 12px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.sec4__copy::before, .sec4__copy::after {
  content: "";
  display: block;
  width: 18px;
  height: 25px;
  background-image: url(../img/sec4_copy_left.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .sec4__copy::before, .sec4__copy::after {
    width: 12px;
    height: 16.7px;
  }
}
.sec4__copy::after {
  background-image: url(../img/sec4_copy_right.png);
}
.sec4__desc {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.9373040752;
  letter-spacing: 0.06em;
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .sec4__desc {
    font-size: 1.4rem;
    line-height: 1.5357142857;
    margin-bottom: 20px;
  }
}
.sec4__desc .-price {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec4__desc .-price {
    font-size: 2.4rem;
  }
}
.sec4__desc .-semi {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sec4__desc .-semi {
    font-size: 1.4rem;
  }
}

.save {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.save__topBalloon {
  text-align: center;
}
.save__topBalloon > span {
  display: inline-block;
  padding: 13px 55px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  background-color: #f7f5f5;
  border-radius: 5px;
  margin-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .save__topBalloon > span {
    padding: 6.5px 27.5px;
    font-size: 1rem;
  }
}
.save__topBalloon > span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 12px solid #f7f5f5;
  border-bottom: 0;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .save__topBalloon > span::after {
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 8px solid #f7f5f5;
    bottom: -8px;
  }
}
.save__topBalloon > span.-blue {
  background-color: #2864f0;
  color: #fff;
}
.save__topBalloon > span.-blue::after {
  border-top: 12px solid #2864f0;
}
@media screen and (max-width: 767px) {
  .save__topBalloon > span.-blue::after {
    border-top: 8px solid #2864f0;
  }
}
.save__normal {
  max-width: min(36.8932038835vw, 380px);
  flex-grow: 1;
  padding-left: min(7.7669902913vw, 80px);
  padding-top: 10px;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .save__normal {
    flex-grow: 0;
    padding: 0 12px;
    max-width: 100%;
  }
}
.save__active {
  border-left: 1px solid #d7d2d2;
  max-width: min(36.8932038835vw, 380px);
  flex-grow: 1;
  padding-top: 10px;
  padding-left: min(5.8252427184vw, 60px);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .save__active {
    flex-grow: 0;
    padding: 0 15px;
    max-width: 100%;
  }
  .save__active .save__price {
    padding-right: 70px;
  }
}
.save__text {
  font-size: min(1.55vw, 16px);
}
@media screen and (max-width: 767px) {
  .save__text {
    font-size: 10px;
    text-align: left;
  }
}
.save__above {
  text-align: center;
}
.save__price {
  font-size: min(5.6vw, 58px);
  font-weight: bold;
  position: relative;
  padding-right: min(10.0970873786vw, 104px);
  display: inline-block;
  margin-bottom: min(0.9708737864vw, 10px);
}
.save__price .small {
  font-size: min(2.9126213592vw, 30px);
}
.save__price img {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(7.4757281553vw, 77px);
}
@media screen and (max-width: 767px) {
  .save__price {
    font-size: 32px;
    padding-right: 50px;
  }
  .save__price .small {
    font-size: 14px;
    margin-left: 3px;
  }
  .save__price img {
    width: 38.5px;
  }
}
.save__balloon {
  background: #fff0d2;
  color: #2864f0;
  text-align: center;
  border-radius: 8px;
  padding: 10px 0;
  position: relative;
  margin-top: 3px;
  font-size: min(1.5533980583vw, 16px);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .save__balloon {
    padding: 5px 0;
    border-radius: 4px;
    line-height: 1.4;
    font-size: 10px;
  }
}
.save__balloon:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #fff0d2;
  border-top: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
}
@media screen and (max-width: 767px) {
  .save__balloon:before {
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff0d2;
  }
}

.table__wrap {
  max-width: 1030px;
  padding: 0 15px;
  margin: min(4.2718446602vw, 44px) auto 0;
}
@media screen and (max-width: 767px) {
  .table__wrap {
    margin-top: 38px;
    padding: 0;
  }
}

.price__table {
  border-collapse: collapse;
  width: 100%;
}
.price__table th,
.price__table td {
  text-align: center;
}
.price__table .freee {
  background-color: #ebf3ff;
  width: 33%;
}
@media screen and (max-width: 767px) {
  .price__table .freee {
    width: auto;
  }
}
.price__table thead {
  border-bottom: 1px solid #ebf3ff;
  font-size: min(1.9417475728vw, 20px);
}
@media screen and (max-width: 767px) {
  .price__table thead {
    font-size: 12px;
  }
  .price__table thead th {
    border-radius: 2px;
    line-height: 1.2;
    padding: 10px 0;
  }
}
.price__table .th__normal {
  padding-top: 24px;
  vertical-align: bottom;
}
.price__table .th__normal > div {
  background: #f7f5f5;
  border-radius: 5px 5px 0 0;
  padding: 5px 0;
}
@media screen and (max-width: 767px) {
  .price__table .th__normal {
    padding-top: 0;
    background: #f7f5f5;
  }
  .price__table .th__normal > div {
    padding: 0;
  }
}
.price__table .th__freee {
  background-color: #2864f0;
  color: #fff;
  border-radius: 5px 5px 0 0;
}
.price__table tbody tr {
  border-bottom: 1px solid #fff0d2;
}
.price__table tbody tr:last-child {
  background-color: #ebf3ff;
}
.price__table tbody th {
  font-size: min(1.9417475728vw, 20px);
}
@media screen and (max-width: 767px) {
  .price__table tbody th {
    font-size: 12px;
  }
}
.price__table tbody th:first-child {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .price__table tbody th:first-child {
    width: 32%;
  }
}
.price__table tbody td {
  font-size: min(1.9417475728vw, 20px);
  padding: 25px 0;
}
.price__table tbody td strong {
  font-size: min(2.9126213592vw, 30px);
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .price__table tbody td {
    font-size: 9px;
    padding: 15px 0;
  }
  .price__table tbody td strong {
    font-size: 12px;
  }
}
.price__table .th__labeled {
  position: relative;
  padding-top: min(4.854368932vw, 50px);
}
@media screen and (max-width: 767px) {
  .price__table .th__labeled {
    padding-top: 30px;
  }
}
.price__table .th__label {
  border-radius: 0 0 15px 0;
  padding: 3px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .price__table .th__label {
    font-size: 10px;
  }
}
.price__table .th__label.blue {
  background-color: #dce8ff;
}
.price__table .th__label.yellow {
  background-color: #fff0d2;
}
.price__table .th__label + div {
  padding-bottom: 10px;
}
.price__table .td__freee {
  color: #2864f0;
  font-size: min(2.2330097087vw, 23px);
}
.price__table .td__freee strong {
  font-size: min(3.3980582524vw, 35px);
}
@media screen and (max-width: 767px) {
  .price__table .td__freee {
    font-size: 12px;
    font-weight: bold;
  }
  .price__table .td__freee strong {
    font-size: 15px;
    font-weight: bold;
  }
}
.price__table .sum__freee {
  background-color: #dce8ff;
}

.table__caption {
  font-size: 11px;
  padding-left: min(2.9126213592vw, 30px);
  margin-top: 20px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .table__caption {
    margin-top: 15px;
    font-size: 10px;
    padding-left: 40px;
  }
}

/* ==================================
  sec5（ユーザーの声）
================================== */
.sec5 {
  padding: 45px 0 60px;
}
@media screen and (max-width: 767px) {
  .sec5 {
    padding-top: 13px;
    padding-bottom: 38px;
  }
}
.sec5__content {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec5__content {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec5__content {
    width: 321px;
    margin: 0 auto;
    flex-direction: column;
    -moz-column-gap: unset;
         column-gap: unset;
    row-gap: 11px;
  }
}
.sec5__title {
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .sec5__title {
    margin-bottom: 12px;
  }
}
.sec5__item {
  width: calc((100% - 30px) / 2);
  padding: 20px 18px;
  padding-right: 0;
  background-image: url(../img/sec5_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec5__item {
    width: calc((100% - 15px) / 2);
    padding: 20px 15px 40px min(1.7475728155vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .sec5__item {
    width: 100%;
    padding: 11px 11px 20px;
  }
}
.sec5__item__desc {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.28;
  letter-spacing: 0.06em;
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec5__item__desc {
    font-size: min(2.2330097087vw, 2.3rem);
    margin-bottom: min(1.6504854369vw, 17px);
  }
}
@media screen and (max-width: 767px) {
  .sec5__item__desc {
    font-size: 1.6rem;
    line-height: 1.2727272727;
    margin-bottom: 11px;
  }
}
.sec5__item__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec5__item__info {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
.sec5__item__info.-wide {
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec5__item__info.-wide {
    -moz-column-gap: min(5.8252427184vw, 60px);
         column-gap: min(5.8252427184vw, 60px);
  }
}
.sec5__item__name {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec5__item__name {
    font-size: 1.359223301vw, 1.4rem;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .sec5__item__name {
    font-size: 1rem;
    line-height: 1.5238095238;
  }
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec5__item__name span {
    letter-spacing: 0;
  }
}
.sec5__item__img {
  width: min(10.2912621359vw, 106px);
}
@media screen and (max-width: 767px) {
  .sec5__item__img {
    width: 69px;
  }
}

/* ==================================
sec6（特典）
================================== */
.sec6 {
  background-color: #ebf3ff;
  padding-top: 49px;
}
@media screen and (max-width: 767px) {
  .sec6 {
    padding-top: 36px;
  }
}
.sec6__copy {
  text-align: center;
  color: #fff;
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.06em;
  background-image: url(../img/sec6_ribbon_pc.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec6__copy {
    font-size: min(2.8155339806vw, 2.9rem);
  }
}
@media screen and (max-width: 767px) {
  .sec6__copy {
    padding: 15px 0;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 5px;
    font-size: 2.3rem;
    line-height: 1.2826086957;
    background-image: url(../img/sec6_ribbon_sp.png);
  }
}
.sec6__content {
  width: 764px;
  margin: 0 auto;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec6__content {
    width: min(74.1747572816vw, 764px);
    -moz-column-gap: min(1.9417475728vw, 20px);
         column-gap: min(1.9417475728vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .sec6__content {
    width: 315px;
    display: block;
  }
}
.sec6__text {
  width: calc(100% - 155px);
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec6__text {
    width: calc(100% - min(15.0485436893vw, 155px));
  }
}
@media screen and (max-width: 767px) {
  .sec6__text {
    width: 100%;
  }
}
.sec6__title {
  text-align: right;
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec6__title {
    font-size: min(2.8155339806vw, 2.9rem);
  }
}
@media screen and (max-width: 767px) {
  .sec6__title {
    text-align: center;
    font-size: 2.3rem;
    line-height: 1.2826086957;
    margin-bottom: 6px;
  }
}
.sec6__desc {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec6__desc {
    font-size: min(1.5533980583vw, 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .sec6__desc {
    font-size: 1.4rem;
    line-height: 1.5357142857;
  }
}
.sec6__img {
  width: 140px;
  margin-top: -21px;
  margin-right: -15px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec6__img {
    width: min(13.5922330097vw, 140px);
  }
}
@media screen and (max-width: 767px) {
  .sec6__img {
    display: none;
  }
}

/* ==================================
sec7（CTA2）
================================== */
.sec7 {
  padding-top: 65px;
}
@media screen and (max-width: 767px) {
  .sec7 {
    padding-top: 14px;
  }
}
.sec7__inner {
  display: flex;
  -moz-column-gap: min(1.9417475728vw, 20px);
       column-gap: min(1.9417475728vw, 20px);
  margin-bottom: 33px;
}
@media screen and (min-width: 1030px) and (max-width: 1040px) {
  .sec7__inner {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sec7__inner {
    flex-direction: column-reverse;
    -moz-column-gap: unset;
         column-gap: unset;
    row-gap: 27px;
    margin-bottom: 22px;
  }
}
.sec7__img {
  width: min(55.3398058252vw, 570px);
  margin-top: -17px;
}
@media screen and (max-width: 767px) {
  .sec7__img {
    width: 85%;
    margin: 0 auto;
  }
}
.sec7__content {
  position: relative;
}
.sec7__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #2864f0;
  margin-bottom: 58px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec7__title {
    font-size: min(2.7184466019vw, 2.8rem);
  }
}
@media screen and (max-width: 767px) {
  .sec7__title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 24px;
  }
}
.sec7__desc {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec7__desc {
    font-size: min(1.7475728155vw, 1.8rem);
  }
}
@media screen and (max-width: 767px) {
  .sec7__desc {
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.5294117647;
  }
}
.sec7__content__img {
  width: min(18.2524271845vw, 188px);
  position: absolute;
  right: 0;
  bottom: 42px;
}
@media screen and (max-width: 767px) {
  .sec7__content__img {
    display: none;
  }
}
.sec7__cta {
  max-width: 795px;
  justify-content: space-between;
  gap: 24px;
  display: flex;
  margin: 0 auto;
}
.sec7__cta .btn {
  width: 50%;
  height: min(6.6019417476vw, 68px);
}
@media screen and (min-width: 768px) {
  .sec7__cta .btn.btn_primary {
    width: 53%;
  }
  .sec7__cta .btn.btn_secondary {
    width: 44%;
  }
}
.sec7__cta .btn svg.left {
  left: 72px;
}
.sec7__cta .btn svg.left.-narrow {
  left: 92px;
}
@media screen and (max-width: 767px) {
  .sec7__cta {
    flex-wrap: wrap;
    gap: 10px;
  }
  .sec7__cta .btn {
    width: 96%;
    height: 70px;
    padding-left: 56px;
  }
  .sec7__cta .btn.btn_secondary {
    padding-left: 10px;
  }
  .sec7__cta .btn svg.left {
    left: 48px;
  }
  .sec7__cta .btn svg.left.-narrow {
    left: 48px;
  }
}

/* ==================================
sec8（よくある質問）
================================== */
.sec8 {
  padding-top: 62px;
  padding-bottom: 9px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec8 {
    padding-top: 9.7087378641vw;
    padding-bottom: 9.7087378641vw;
  }
}
@media screen and (max-width: 767px) {
  .sec8 {
    padding-top: 33px;
    padding-bottom: 26px;
  }
}

.sec8 .sec__container {
  max-width: 910px;
}
@media screen and (max-width: 767px) {
  .sec8 .sec__container {
    max-width: 375px;
  }
}

.sec8 .sec__main {
  letter-spacing: 0.06em;
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec8 .sec__main {
    margin-bottom: 8.7378640777vw;
  }
}
@media screen and (max-width: 767px) {
  .sec8 .sec__main {
    margin-bottom: 40px;
  }
}

.sec8__group {
  border-top: 2px solid #f5f4f4;
  padding-top: 30px;
  padding-bottom: 52px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec8__group {
    border-top: 0.1941747573vw solid #f5f4f4;
    padding-top: 2.9126213592vw;
    padding-bottom: 5.0485436893vw;
  }
}
@media screen and (max-width: 767px) {
  .sec8__group {
    padding-top: 27px;
    padding-bottom: 27px;
  }
}

.sec8__group dt,
.sec8__group dd {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.5625;
  position: relative;
  padding-left: 47px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec8__group dt,
  .sec8__group dd {
    font-size: 1.5533980583vw;
    padding-left: 4.5631067961vw;
  }
}
@media screen and (max-width: 767px) {
  .sec8__group dt,
  .sec8__group dd {
    font-size: 14px;
    padding-left: 28px;
  }
}

.sec8__group dt::before,
.sec8__group dd::before {
  content: "";
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  position: absolute;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec8__group dt::before,
  .sec8__group dd::before {
    width: 3.1067961165vw;
    height: 3.1067961165vw;
  }
}
@media screen and (max-width: 767px) {
  .sec8__group dt::before,
  .sec8__group dd::before {
    width: 20px;
    height: 20px;
  }
}

.sec8__group dt {
  color: #2864f0;
  font-weight: bold;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) and (max-width: 1029px) {
  .sec8__group dt {
    margin-bottom: 3.3980582524vw;
  }
}
@media screen and (max-width: 767px) {
  .sec8__group dt {
    font-feature-settings: "palt";
    line-height: 1.3214285714;
    margin-bottom: 23px;
  }
}

.sec8__group dt::before {
  background-image: url(../img/sec8_q.png);
}

.sec8__group dd {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .sec8__group dd {
    font-weight: normal;
    line-height: 1.5357142857;
    letter-spacing: normal;
  }
}

.sec8__group dd::before {
  background-image: url(../img/sec8_a.png);
}

.sec8__group li::before {
  content: "・";
}