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

* {
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #3b3b3a;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  word-break: break-word;
  scroll-behavior: smooth;
}
@media (max-width: 750px) {
  body {
    font-size: 3.6vw;
  }
}

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

html {
  box-sizing: border-box;
}

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

@media (max-width: 750px) {
  .inline_p {
    display: none;
  }
}

.inline_s {
  display: none;
}
@media (max-width: 750px) {
  .inline_s {
    display: inline;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

body.logged-in header .nav_drawer .inner {
  top: 32px;
}
@media (max-width: 750px) {
  body.logged-in header .nav_drawer .inner {
    top: 0;
  }
}

body.logged-in header .nav_drawer .menu-trigger {
  top: 42px;
}
@media (max-width: 750px) {
  body.logged-in header .nav_drawer .menu-trigger {
    top: 0;
  }
}

.nav_drawer .inner {
  position: fixed;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  top: 0;
  left: 0;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 1001;
}
@media (max-width: 750px) {
  .nav_drawer .inner {
    height: 14vw;
    padding: 0 4vw;
  }
}
.nav_drawer .logo {
  display: block;
  width: 260px;
}
@media (max-width: 750px) {
  .nav_drawer .logo {
    width: 34vw;
    position: relative;
    top: 1vw;
  }
}
.nav_drawer.fixed .inner {
  background: aliceblue;
}
.nav_drawer .drawer_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background-color: transparent;
  display: none;
  top: 0;
  left: 0;
}

/*+++ Default Navigation CSS +++*/
.nav_drawer {
  position: relative;
}
.nav_drawer .drawer_nav_wrapper {
  width: 100vw;
  height: 100%;
  transition: all 0.5s;
  transform: translate(100vw);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: aliceblue;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav_drawer .drawer_nav_wrapper.open {
  transform: translate(0);
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1002;
  outline: none;
}
@media (max-width: 750px) {
  .menu-trigger {
    width: 8vw;
    height: 10vw;
    top: 2vw !important;
    right: 4vw;
  }
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3b3b3a;
  border-radius: 1px;
}

.menu-trigger span:nth-of-type(1) {
  top: 10px;
}
@media (max-width: 750px) {
  .menu-trigger span:nth-of-type(1) {
    top: 2vw;
  }
}

.menu-trigger span:nth-of-type(2) {
  top: 25px;
}
@media (max-width: 750px) {
  .menu-trigger span:nth-of-type(2) {
    top: 4.7vw;
  }
}

.menu-trigger span:nth-of-type(3) {
  bottom: 10px;
}
@media (max-width: 750px) {
  .menu-trigger span:nth-of-type(3) {
    bottom: 2vw;
  }
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}
@media (max-width: 750px) {
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(2.8vw) rotate(-45deg);
  }
}

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

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-14px) rotate(45deg);
}
@media (max-width: 750px) {
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-2.8vw) rotate(45deg);
  }
}

.global-items {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .global-items {
    font-size: 4vw;
  }
}
.global-items li a {
  display: block;
  padding: 0 0 20px;
  transition: opacity 0.3s;
}
@media (max-width: 750px) {
  .global-items li a {
    padding: 0 0 4vw;
  }
}
.global-items li a:hover {
  opacity: 0.6;
}
@media (max-width: 750px) {
  .global-items li a:hover {
    opacity: 1;
  }
}

.grecaptcha-badge {
  bottom: 150px !important;
}
@media (max-width: 750px) {
  .grecaptcha-badge {
    bottom: 31vw !important;
  }
}

.anc {
  margin-top: -90px;
  padding-top: 90px;
}
@media (max-width: 750px) {
  .anc {
    margin-top: -15vw;
    padding-top: 15vw;
  }
}

.hero-sec {
  height: 740px;
  background-image: url(../images/top/hero.png);
  background-size: 1920px;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding: 185px 0 0 calc(50% - 495px);
  position: relative;
}
@media (max-width: 750px) {
  .hero-sec {
    height: 190vw;
    background-image: url(../images/top/hero_s.png);
    background-size: 100%;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
.hero-sec::before {
  content: "";
  position: absolute;
  display: block;
  width: 46%;
  height: 590px;
  background: #fdd23e;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 750px) {
  .hero-sec::before {
    width: 85vw;
    height: 70vw;
  }
}
.hero-sec .box {
  width: 410px;
}
@media (max-width: 750px) {
  .hero-sec .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 85vw;
    position: relative;
    bottom: -10vw;
  }
}
.hero-sec .box .tagline {
  width: 100%;
  margin: 0 0 27px;
}
@media (max-width: 750px) {
  .hero-sec .box .tagline {
    margin: 0 0 3vw;
  }
}
.hero-sec .box .lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin: 0 0 30px;
}
@media (max-width: 750px) {
  .hero-sec .box .lead {
    width: 100%;
    font-size: 3.6vw;
    margin: 0 0 30vw;
  }
}
.hero-sec .box .lead .emphasis {
  color: #1a73b1;
}
@media (max-width: 750px) {
  .hero-sec .box .to_contact {
    margin: 64vw 0 0;
  }
}

.to_contact {
  display: flex;
  align-items: center;
  padding: 0 0 0 120px;
  width: 100%;
  height: 84px;
  background: #1a73b1;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
}
@media (max-width: 750px) {
  .to_contact {
    width: 100%;
    height: 18vw;
    padding: 0 0 0 18vw;
  }
}
.to_contact .in_text {
  color: white;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 750px) {
  .to_contact .in_text {
    font-size: 4vw;
  }
}
.to_contact:hover {
  opacity: 0.8;
}
@media (max-width: 750px) {
  .to_contact:hover {
    opacity: 1;
  }
}
.to_contact::after {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  background-image: url("../images/common/arrow.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0 0 0 20px;
}
@media (max-width: 750px) {
  .to_contact::after {
    width: 10vw;
    height: 10vw;
    margin: 0 0 0 3vw;
  }
}

.ttl_sec {
  width: 100%;
  text-align: center;
}
.ttl_sec.none .box::before, .ttl_sec.none .box::after {
  content: none;
}
.ttl_sec .box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding: 20px 0 20px;
}
@media (max-width: 750px) {
  .ttl_sec .box {
    padding: 3vw 0 3vw;
    gap: 0;
  }
}
.ttl_sec .box::before, .ttl_sec .box::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 12px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 750px) {
  .ttl_sec .box::before, .ttl_sec .box::after {
    width: 2vw;
  }
}
.ttl_sec .box::before {
  left: -40px;
  background-image: url("../images/common/bracket_left.svg");
}
@media (max-width: 750px) {
  .ttl_sec .box::before {
    left: -6.2vw;
  }
}
.ttl_sec .box::after {
  right: -40px;
  background-image: url("../images/common/bracket_right.svg");
}
@media (max-width: 750px) {
  .ttl_sec .box::after {
    right: -6.2vw;
  }
}
.ttl_sec .box .emphasis {
  color: #1a73b1;
  font-weight: 700;
}
.ttl_sec .box .large {
  font-size: 48px;
}
@media (max-width: 750px) {
  .ttl_sec .box .large {
    font-size: 10vw;
  }
}
.ttl_sec .box .num {
  color: #1a73b1;
  font-family: din-2014, sans-serif;
  font-size: 68px;
  font-weight: 700;
}
@media (max-width: 750px) {
  .ttl_sec .box .num {
    font-size: 10vw;
  }
}
.ttl_sec .box .txt {
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #111;
}
.ttl_sec .box .txt.txt--sm {
  font-size: 22px;
  font-weight: 400;
  padding: 20px 0 0;
}
@media (max-width: 750px) {
  .ttl_sec .box .txt.txt--sm {
    font-size: 3.4vw;
    padding: 2vw 0 0;
  }
}
.ttl_sec .box .txt.txt--lg {
  font-size: 36px;
  font-weight: 700;
  padding: 0 0 10px;
}
@media (max-width: 750px) {
  .ttl_sec .box .txt.txt--lg {
    font-size: 5vw;
    padding: 0 0 2vw;
    letter-spacing: 0.05em;
  }
}
.ttl_sec .box .txt.txt--lg:has(.large), .ttl_sec .box .txt.txt--lg:has(.num) {
  position: relative;
  top: -15px;
}
@media (max-width: 750px) {
  .ttl_sec .box .txt.txt--lg:has(.large), .ttl_sec .box .txt.txt--lg:has(.num) {
    top: -2vw;
  }
}
.ttl_sec .box .marker {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.ttl_sec .box .marker:has(.large) {
  position: relative;
}
.ttl_sec .box .marker:has(.large)::after {
  bottom: 5px;
}
@media (max-width: 750px) {
  .ttl_sec .box .marker:has(.large)::after {
    bottom: 2vw;
  }
}
.ttl_sec .box .marker::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: -5px;
  height: 0.72em;
  background: #fdd23e;
  z-index: -1;
}
@media (max-width: 750px) {
  .ttl_sec .box .marker::after {
    bottom: -1vw;
  }
}

.cv {
  position: relative;
  background: url("../images/common/cv.jpg") center/cover no-repeat;
  padding: 56px 0 64px;
}
@media (max-width: 750px) {
  .cv {
    background-image: url("../images/common/cv_s.jpg");
    padding: 9vw 0 10vw;
  }
}
.cv__inner {
  width: 1024px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .cv__inner {
    width: 85vw;
  }
}
.cv__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 34px;
  align-items: center;
}
@media (max-width: 750px) {
  .cv__grid {
    grid-template-columns: 1fr;
    gap: 7vw;
    align-items: start;
  }
}
.cv__copy, .cv__cta {
  max-width: 480px;
}
.cv__copy > *, .cv__cta > * {
  max-width: 480px;
}
.cv__lead {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: #222;
}
@media (max-width: 750px) {
  .cv__lead {
    font-size: 4.2vw;
    margin-bottom: 2.2vw;
  }
}
.cv__lead .emphasis {
  font-weight: 700;
}
.cv__ttl {
  font-size: 42px;
  line-height: 1.18;
  margin: 0 0 22px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #222;
}
@media (max-width: 750px) {
  .cv__ttl {
    font-size: 7.2vw;
    margin-bottom: 6vw;
  }
}
.cv__point {
  font-size: 20px;
  font-weight: 700;
  color: #1a73b1;
  margin: 0 0 6px;
}
@media (max-width: 750px) {
  .cv__point {
    font-size: 5vw;
    margin-bottom: 2vw;
  }
}
.cv__text {
  font-size: 20px;
  font-weight: 400;
  color: #222;
  margin: 0 0 10px;
  line-height: 1.2;
}
.cv__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .cv__text {
    font-size: 4vw;
    margin-bottom: 2.8vw;
    line-height: 1.2;
  }
}
.cv__cta {
  display: grid;
  gap: 18px;
  justify-items: start;
}
@media (max-width: 750px) {
  .cv__cta {
    gap: 5vw;
  }
}
.cv__tel {
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 22px;
  row-gap: 6px;
  align-items: end;
  max-width: 480px;
}
@media (max-width: 750px) {
  .cv__tel {
    grid-template-columns: 24vw 1fr;
    column-gap: 4.4vw;
    row-gap: 0;
  }
}
.cv__telLabel {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  transform: translateY(-6px);
}
@media (max-width: 750px) {
  .cv__telLabel {
    font-size: 3.2vw;
    transform: none;
  }
}
.cv__telNum {
  grid-column: 2/3;
  font-family: din-2014, sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a73b1;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.cv__telNum:hover {
  text-decoration: underline;
}
@media (max-width: 750px) {
  .cv__telNum {
    font-size: 8vw;
    white-space: normal;
  }
}
.cv__note {
  grid-column: 1/-1;
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
@media (max-width: 750px) {
  .cv__note {
    font-size: 4.2vw;
    margin-top: 2.6vw;
  }
}
.cv__btn {
  width: 100%;
  max-width: 480px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: #1a73b1;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 28px;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.25);
}
.cv__btn:hover {
  filter: brightness(0.95);
}
@media (max-width: 750px) {
  .cv__btn {
    height: 18vw;
    font-size: 7vw;
    gap: 6vw;
  }
}
.cv__btnArrow {
  font-size: 34px;
  line-height: 1;
}
@media (max-width: 750px) {
  .cv__btnArrow {
    font-size: 8vw;
  }
}

.contact-sec {
  padding: 90px 0 90px;
  background: rgba(253, 210, 62, 0.3);
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .contact-sec {
    padding: 15vw 0 15vw;
  }
}
.contact-sec .content {
  width: 1024px;
}
@media (max-width: 750px) {
  .contact-sec .content {
    width: 85vw;
  }
}
.contact-sec .content .ttl {
  color: #1a73b1;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .contact-sec .content .ttl {
    font-size: 7.2vw;
    margin-bottom: 10vw;
  }
}
.contact-sec .content .text {
  font-size: 18px;
  line-height: 1.8;
  padding: 0 0 30px;
  border-bottom: 2px dashed #1a73b1;
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .contact-sec .content .text {
    font-size: 4.2vw;
    padding: 0 0 6vw;
  }
}
.contact-sec .content .text .emphasis {
  color: #1a73b1;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 750px) {
  .contact-sec .content .text .emphasis {
    font-size: 4.8vw;
  }
}
.contact-sec .content .access {
  padding: 0 0 10px;
  border-bottom: 2px dashed #1a73b1;
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .contact-sec .content .access {
    padding: 0 0 2vw;
    margin: 0 0 4vw;
  }
}
.contact-sec .content .access .title {
  color: #1a73b1;
  font-size: 21px;
  font-weight: 700;
}
@media (max-width: 750px) {
  .contact-sec .content .access .title {
    font-size: 4.2vw;
  }
}
.contact-sec .content .access .tel {
  font-family: din-2014, sans-serif;
  display: block;
  color: #1a73b1;
  font-size: 62px;
  font-weight: 700;
}
@media (max-width: 750px) {
  .contact-sec .content .access .tel {
    display: none;
  }
}
.contact-sec .content .access .tel_s {
  display: none;
}
@media (max-width: 750px) {
  .contact-sec .content .access .tel_s {
    display: block;
    color: #1a73b1;
    font-family: din-2014, sans-serif;
    font-size: 10vw;
    font-weight: 700;
  }
}
.contact-sec .content .access .caption {
  font-size: 15px;
}

.cf7-form {
  font-size: 17px;
  color: #333;
}
@media (max-width: 750px) {
  .cf7-form {
    font-size: 3.4vw;
  }
}
.cf7-form .cf7-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
}
@media (max-width: 750px) {
  .cf7-form .cf7-row {
    display: block;
  }
}
.cf7-form .cf7-label {
  width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 750px) {
  .cf7-form .cf7-label {
    margin: 0 0 3vw;
  }
}
.cf7-form .cf7-label .cf7-ttl {
  font-size: 20px;
  font-weight: 700;
  color: #1a73b1;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 750px) {
  .cf7-form .cf7-label .cf7-ttl {
    font-size: 4.2vw;
  }
}
.cf7-form .cf7-label .cf7-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #1a73b1;
}
@media (max-width: 750px) {
  .cf7-form .cf7-label .cf7-badge {
    font-size: 3vw;
  }
}
.cf7-form .cf7-label .cf7-badge.is-required {
  background: #1a73b1;
}
.cf7-form .cf7-field {
  flex: 1;
  min-width: 0;
}
.cf7-form .cf7-input,
.cf7-form .cf7-select,
.cf7-form .cf7-textarea {
  width: 100%;
  font-size: 17px;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background: #fff;
  padding: 0 14px;
  outline: none;
}
@media (max-width: 750px) {
  .cf7-form .cf7-input,
  .cf7-form .cf7-select,
  .cf7-form .cf7-textarea {
    font-size: 3vw;
  }
}
.cf7-form .cf7-input:focus,
.cf7-form .cf7-select:focus,
.cf7-form .cf7-textarea:focus {
  border-color: #1a73b1;
  box-shadow: 0 0 0 2px rgba(26, 115, 177, 0.15);
}
.cf7-form .cf7-input,
.cf7-form .cf7-select {
  height: 40px;
  line-height: 40px;
}
.cf7-form .cf7-textarea {
  padding: 12px 14px;
  min-height: 260px;
  resize: vertical;
}
.cf7-form .cf7-check {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.cf7-form .cf7-check .wpcf7-list-item {
  margin: 0;
}
.cf7-form .cf7-check label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: #333;
  line-height: 1.4;
  cursor: pointer;
}
@media (max-width: 750px) {
  .cf7-form .cf7-check label {
    font-size: 3vw;
    line-height: 1.8;
  }
}
.cf7-form .cf7-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #1a73b1;
}
.cf7-form .cf7-subrow {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}
@media (max-width: 750px) {
  .cf7-form .cf7-subrow {
    grid-template-columns: 18vw 1fr;
  }
}
.cf7-form .cf7-subttl {
  font-size: 17px;
  color: #333;
}
@media (max-width: 750px) {
  .cf7-form .cf7-subttl {
    font-size: 3.4vw;
  }
}
.cf7-form .cf7-actions {
  padding-top: 10px;
}
.cf7-form .cf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 480px;
  height: 84px;
  background: #1a73b1;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border: none;
  margin: 60px auto 0;
  cursor: pointer;
}
@media (max-width: 750px) {
  .cf7-form .cf7-submit {
    width: 65vw;
    height: 18vw;
    font-size: 4vw;
    margin: 10vw auto 0;
  }
}
.cf7-form .cf7-submit:hover {
  opacity: 0.8;
}
@media (max-width: 750px) {
  .cf7-form .cf7-submit:hover {
    opacity: 1;
  }
}

.cv_fixed {
  width: 100%;
  position: fixed;
  top: 300px;
  left: 0;
  z-index: 10000;
}
@media (max-width: 750px) {
  .cv_fixed {
    top: initial;
    bottom: 0;
  }
}
.cv_fixed .pc {
  display: block;
}
@media (max-width: 750px) {
  .cv_fixed .pc {
    display: none;
  }
}
.cv_fixed .pc .flex {
  display: flex;
  justify-content: flex-end;
}
.cv_fixed .pc .flex a {
  display: block;
  width: 78px;
}
.cv_fixed .pc .flex a img {
  filter: drop-shadow(-3px 0 5px rgba(0, 0, 0, 0.5));
}
.cv_fixed .sp {
  display: none;
}
@media (max-width: 750px) {
  .cv_fixed .sp {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
  }
  .cv_fixed .sp .flex {
    display: flex;
    align-items: center;
  }
  .cv_fixed .sp .flex a img {
    display: block;
  }
  .cv_fixed .sp .flex a.tel {
    border-right: 1vw solid rgba(255, 255, 255, 0.9);
  }
}

.primary-sec {
  background: rgba(198, 198, 197, 0.15);
  padding: 90px 0 90px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .primary-sec {
    padding: 15vw 0 30vw;
  }
}
.primary-sec .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1024px;
}
@media (max-width: 750px) {
  .primary-sec .content {
    width: 85vw;
  }
}
.primary-sec .content .ttl_sec {
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .primary-sec .content .ttl_sec {
    margin: 0;
  }
}
.primary-sec .content .items {
  width: 100%;
  display: flex;
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .primary-sec .content .items {
    margin: 0 0 7vw;
    display: block;
  }
}
.primary-sec .content .items .item {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  border-left: 1px solid rgba(87, 87, 86, 0.3);
}
@media (max-width: 750px) {
  .primary-sec .content .items .item {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid rgba(87, 87, 86, 0.3);
    gap: 3vw;
    padding: 6vw 2vw;
  }
}
.primary-sec .content .items .item:last-of-type {
  border-right: 1px solid rgba(87, 87, 86, 0.3);
}
@media (max-width: 750px) {
  .primary-sec .content .items .item:last-of-type {
    border-right: none;
  }
}
.primary-sec .content .items .item .text {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .primary-sec .content .items .item .text {
    font-size: 3.6vw;
    padding: 0 5vw;
  }
}
.primary-sec .content .lead {
  font-size: 28px;
  line-height: 1.8;
  margin: 0 0 50px;
  text-align: center;
}
@media (max-width: 750px) {
  .primary-sec .content .lead {
    font-size: 5vw;
    margin: 0 0 7vw;
  }
}
.primary-sec .content .lead .emphasis {
  font-weight: 700;
}
.primary-sec .content .screen {
  width: 100%;
  height: 610px;
  position: relative;
}
@media (max-width: 750px) {
  .primary-sec .content .screen {
    width: 100vw;
    height: 214vw;
    margin: 0 0 0 -7.5vw;
  }
}
.primary-sec .content .screen .box {
  background: white;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
}
@media (max-width: 750px) {
  .primary-sec .content .screen .box {
    gap: 3vw;
    padding: 8vw 8vw;
  }
}
.primary-sec .content .screen .box.n1 {
  width: 340px;
  top: 0;
  left: 0;
  border-radius: 40px 40px 0 40px;
  z-index: 1;
}
@media (max-width: 750px) {
  .primary-sec .content .screen .box.n1 {
    width: 65vw;
    top: 0;
    left: 10vw;
    border-radius: 10vw 10vw 0 10vw;
  }
}
.primary-sec .content .screen .box.n2 {
  width: 400px;
  top: 0;
  right: 0;
  border-radius: 40px 40px 40px 0;
  z-index: 1;
}
@media (max-width: 750px) {
  .primary-sec .content .screen .box.n2 {
    width: 78vw;
    top: 55vw;
    right: -3vw;
    border-radius: 10vw 10vw 10vw 0;
  }
}
.primary-sec .content .screen .box.n3 {
  width: 300px;
  bottom: 50px;
  left: 0;
  border-radius: 40px 0 40px 40px;
  z-index: 1;
}
@media (max-width: 750px) {
  .primary-sec .content .screen .box.n3 {
    width: 65vw;
    bottom: initial;
    left: initial;
    top: 106vw;
    right: -3vw;
    border-radius: 0 10vw 10vw 10vw;
    z-index: 3;
  }
}
.primary-sec .content .screen .box.n4 {
  width: 400px;
  bottom: 50px;
  right: 0;
  border-radius: 0 40px 40px 40px;
  z-index: 1;
}
@media (max-width: 750px) {
  .primary-sec .content .screen .box.n4 {
    width: 80vw;
    border-radius: 0 10vw 10vw 10vw;
    bottom: 0;
    left: 8vw;
    right: initial;
    z-index: 3;
  }
}
.primary-sec .content .screen .box .ttl_box {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 750px) {
  .primary-sec .content .screen .box .ttl_box {
    font-size: 4.2vw;
  }
}
.primary-sec .content .screen .box .text {
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .primary-sec .content .screen .box .text {
    font-size: 3.4vw;
  }
}
.primary-sec .content .screen picture {
  width: 270px;
  position: absolute;
  left: 370px;
  bottom: 0;
  z-index: 2;
}
@media (max-width: 750px) {
  .primary-sec .content .screen picture {
    width: 100%;
    left: 0;
    top: 5vw;
  }
}

.stroke {
  color: #1a73b1;
}

@supports (-webkit-text-stroke: 1px #1a73b1) {
  .stroke {
    color: #fff;
    -webkit-text-stroke: 1px #1a73b1;
    paint-order: stroke fill;
  }
}
.reasons-sec {
  background: rgba(253, 210, 62, 0.2);
  padding: 90px 0 90px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .reasons-sec {
    padding: 30vw 0 15vw;
  }
}
.reasons-sec .content {
  width: 1024px;
}
@media (max-width: 750px) {
  .reasons-sec .content {
    width: 85vw;
  }
}
.reasons-sec .content .lead {
  text-align: center;
  margin: -181px 0 20px;
}
@media (max-width: 750px) {
  .reasons-sec .content .lead {
    margin: -50vw 0 5vw;
  }
}
.reasons-sec .content .lead img {
  width: 1000px;
}
.reasons-sec .content .ttl_sec {
  margin: 0 0 80px;
}
@media (max-width: 750px) {
  .reasons-sec .content .ttl_sec {
    margin: 0 0 7vw;
  }
}
.reasons-sec .content .items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}
@media (max-width: 750px) {
  .reasons-sec .content .items {
    flex-direction: column;
    justify-content: initial;
    gap: 8vw;
  }
}
.reasons-sec .content .items .item {
  width: 320px;
  background: white;
  border: 1px solid #1a73b1;
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 750px) {
  .reasons-sec .content .items .item {
    width: 100%;
    padding: 5vw;
    border-radius: 5vw;
  }
}
.reasons-sec .content .items .item .first {
  position: relative;
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .reasons-sec .content .items .item .first {
    margin: 0;
    display: flex;
    align-items: center;
  }
}
.reasons-sec .content .items .item .first .num {
  position: absolute;
  font-family: din-2014, sans-serif;
  font-size: 80px;
  font-weight: 700;
  top: -130px;
  left: 80px;
}
@media (max-width: 750px) {
  .reasons-sec .content .items .item .first .num {
    position: static;
    top: initial;
    left: initial;
    font-size: 18vw;
    width: 4em;
  }
}
@media (max-width: 750px) {
  .reasons-sec .content .items .item .first .fig {
    position: relative;
    left: -8vw;
  }
}
.reasons-sec .content .items .item .ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
}
@media (max-width: 750px) {
  .reasons-sec .content .items .item .ttl {
    font-size: 4.6vw;
    margin: 0 0 3vw;
  }
}
.reasons-sec .content .items .item .ttl_cap {
  color: #1a73b1;
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .reasons-sec .content .items .item .ttl_cap {
    font-size: 3vw;
    margin: 0 0 5vw;
  }
}
.reasons-sec .content .items .item .text {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .reasons-sec .content .items .item .text {
    font-size: 3.4vw;
  }
}
.reasons-sec .content .next_lead {
  font-size: 30px;
  line-height: 1.8;
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 750px) {
  .reasons-sec .content .next_lead {
    font-size: 6vw;
    margin: 0 0 7vw;
  }
}
.reasons-sec .content .next_lead .emphasis {
  font-weight: 700;
}
.reasons-sec .content .next_lead .navy {
  color: #1a73b1;
}

.about-sec {
  background: white;
  padding: 90px 0 90px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .about-sec {
    padding: 15vw 0 15vw;
  }
}
.about-sec .content {
  width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 750px) {
  .about-sec .content {
    width: 85vw;
    gap: 10vw;
  }
}
.about-sec .content .about_note {
  border: dashed 1px rgba(87, 87, 86, 0.5);
  padding: 60px 40px 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 750px) {
  .about-sec .content .about_note {
    padding: 10vw 6vw 6vw;
  }
}
.about-sec .content .about_note .ttl_note {
  display: flex;
  justify-content: center;
  margin: -75px 0 50px;
}
@media (max-width: 750px) {
  .about-sec .content .about_note .ttl_note {
    margin: -13vw 0 10vw;
  }
}
.about-sec .content .about_note .ttl_note .in_text {
  font-size: 28px;
  line-height: 1;
  padding: 0 20px;
  display: inline-block;
  background: white;
}
@media (max-width: 750px) {
  .about-sec .content .about_note .ttl_note .in_text {
    font-size: 5vw;
    padding: 0 5vw;
  }
}
.about-sec .content .about_note .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .about-sec .content .about_note .flex {
    flex-direction: column;
    justify-content: initial;
    gap: 10vw;
  }
}
.about-sec .content .about_note .flex .box {
  width: 440px;
  padding: 40px 30px 30px;
  position: relative;
}
@media (max-width: 750px) {
  .about-sec .content .about_note .flex .box {
    width: 100%;
    padding: 5vw;
  }
}
.about-sec .content .about_note .flex .box.n1 {
  background: #cfe1f0;
}
.about-sec .content .about_note .flex .box.n1 .label {
  background: #1d70b7;
}
.about-sec .content .about_note .flex .box.n2 {
  background: #deeff1;
}
.about-sec .content .about_note .flex .box.n2 .label {
  background: #00adb8;
}
.about-sec .content .about_note .flex .box .label {
  color: white;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 46px;
  border-radius: 23px;
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 750px) {
  .about-sec .content .about_note .flex .box .label {
    font-size: 4vw;
    width: 25vw;
    height: 10vw;
    top: -5vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about-sec .content .about_note .flex .box .text {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .about-sec .content .about_note .flex .box .text {
    font-size: 3.4vw;
  }
}
.about-sec .content .about_note .flex .box .text .emphasis {
  font-weight: 700;
}

.point-sec {
  background: rgba(253, 210, 62, 0.2);
  padding: 90px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 750px) {
  .point-sec {
    padding: 15vw 0 0;
  }
}
.point-sec .content {
  width: 1024px;
}
@media (max-width: 750px) {
  .point-sec .content {
    width: 85vw;
  }
}
.point-sec .content .ttl_sec {
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .point-sec .content .ttl_sec {
    margin: 0 0 7vw;
  }
}
.point-sec .content .items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 0 90px;
}
@media (max-width: 750px) {
  .point-sec .content .items {
    flex-direction: column;
    justify-content: initial;
    gap: 7vw;
    margin: 0 0 15vw;
  }
}
.point-sec .content .items .fig {
  width: 490px;
}
@media (max-width: 750px) {
  .point-sec .content .items .fig {
    width: 100%;
  }
}
.point-sec .support-sec {
  width: 100%;
  padding: 90px 0 90px;
  display: flex;
  justify-content: center;
  background-image: url(../images/top/point_foot.webp);
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: top -2px center;
  background-color: white;
}
@media (max-width: 750px) {
  .point-sec .support-sec {
    padding: 15vw 0 15vw;
    background-size: 16vw;
  }
}
.point-sec .support-sec .content .ttl_support {
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .point-sec .support-sec .content .ttl_support {
    margin: 0 0 8vw;
  }
}
.point-sec .support-sec .content .ttl_support picture {
  width: 580px;
}
@media (max-width: 750px) {
  .point-sec .support-sec .content .ttl_support picture {
    width: 84vw;
  }
}
.point-sec .support-sec .content .fig {
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .point-sec .support-sec .content .fig {
    margin: 0 0 7vw;
  }
}
.point-sec .support-sec .content .ttl_sec {
  margin: 0;
}

.examples-sec {
  background: rgba(253, 210, 62, 0.2);
  padding: 90px 0 90px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .examples-sec {
    padding: 15vw 0 15vw;
  }
}
.examples-sec .content {
  width: 1024px;
}
@media (max-width: 750px) {
  .examples-sec .content {
    width: 85vw;
  }
}
.examples-sec .content .ttl_sec {
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .examples-sec .content .ttl_sec {
    margin: 0 0 7vw;
  }
}
.examples-sec .content .primary_box {
  display: flex;
  justify-content: space-between;
  background: white;
  border: 1px solid #6f6f6e;
  border-radius: 10px;
  padding: 60px 30px;
  margin: 0 0 60px;
}
@media (max-width: 750px) {
  .examples-sec .content .primary_box {
    flex-direction: column;
    padding: 5vw;
    border-radius: 5vw;
    margin: 0 0 12vw;
  }
}
.examples-sec .content .primary_box .fig {
  width: 432px;
  position: relative;
  left: -50px;
}
@media (max-width: 750px) {
  .examples-sec .content .primary_box .fig {
    width: 100%;
    left: initial;
    margin: 0 0 5vw;
  }
}
.examples-sec .content .primary_box .in_box {
  width: 490px;
}
@media (max-width: 750px) {
  .examples-sec .content .primary_box .in_box {
    width: 100%;
  }
}
.examples-sec .content .primary_box .in_box .text {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .examples-sec .content .primary_box .in_box .text {
    font-size: 3.8vw;
  }
}
.examples-sec .content .primary_box .in_box .text:last-of-type {
  margin: 0;
}
.examples-sec .content .ttl_sub {
  display: flex;
  justify-content: center;
  margin: 0 0 40px;
}
@media (max-width: 750px) {
  .examples-sec .content .ttl_sub {
    margin: 0 0 7vw;
  }
}
.examples-sec .content .ttl_sub .in_text {
  font-size: 28px;
  line-height: 1;
  padding: 0 0 5px;
  display: inline-block;
  border-bottom: 3px solid #3b3b3a;
}
@media (max-width: 750px) {
  .examples-sec .content .ttl_sub .in_text {
    font-size: 5vw;
    padding: 0 0 1vw;
  }
}
.examples-sec .content .items {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .examples-sec .content .items {
    display: block;
    justify-content: initial;
    padding: 0 12vw;
  }
}
.examples-sec .content .items .fig {
  width: 270px;
  margin: 0 35px;
}
@media (max-width: 750px) {
  .examples-sec .content .items .fig {
    width: 100%;
    margin: 0 0 10vw;
  }
  .examples-sec .content .items .fig:last-of-type {
    margin: 0;
  }
}
.examples-sec .content .caption {
  text-align: right;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 20px 0 0;
}
@media (max-width: 750px) {
  .examples-sec .content .caption {
    font-size: 3.4vw;
    padding: 5vw 5vw 0 0;
  }
}

.plan-sec {
  padding: 90px 0 90px;
  background-image: url(../images/top/point_foot.webp);
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: top -2px center;
  background-color: white;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .plan-sec {
    padding: 15vw 0 15vw;
    background-size: 16vw;
  }
}
.plan-sec .content {
  width: 1024px;
}
@media (max-width: 750px) {
  .plan-sec .content {
    width: 85vw;
  }
}
.plan-sec .content .ttl_sec {
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .plan-sec .content .ttl_sec {
    margin: 0 0 7vw;
  }
}
.plan-sec .content .items .item {
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .plan-sec .content .items .item {
    margin: 0 0 10vw;
  }
}

.voices-sec {
  background: rgba(253, 210, 62, 0.2);
  padding: 90px 0 90px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .voices-sec {
    padding: 15vw 0 15vw;
  }
}
.voices-sec .content {
  width: 1024px;
}
@media (max-width: 750px) {
  .voices-sec .content {
    width: 85vw;
  }
}
.voices-sec .content .ttl_sec {
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .voices-sec .content .ttl_sec {
    margin: 0 0 7vw;
  }
}
.voices-sec .content .items .item {
  display: flex;
  justify-content: space-between;
  background: white;
  border: 1px solid #6f6f6e;
  border-radius: 10px;
  padding: 60px 30px 60px 80px;
  margin: 0 0 60px;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item {
    flex-direction: column;
    padding: 5vw;
    border-radius: 5vw;
    margin: 0 0 7vw;
  }
}
.voices-sec .content .items .item:last-of-type {
  margin: 0;
}
.voices-sec .content .items .item .fig {
  width: 200px;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .fig {
    display: none;
  }
}
.voices-sec .content .items .item .fig figcaption {
  margin: 20px 0 0;
}
.voices-sec .content .items .item .fig figcaption .post {
  font-size: 15px;
}
.voices-sec .content .items .item .fig figcaption .ja {
  font-size: 18px;
}
.voices-sec .content .items .item .box {
  width: 650px;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box .wrap_s {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.voices-sec .content .items .item .box .fig_s {
  display: none;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box .fig_s {
    display: block;
    width: 25vw;
  }
}
.voices-sec .content .items .item .box .first {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box .first {
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 28vw);
  }
}
.voices-sec .content .items .item .box .first .company {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  display: inline-block;
  margin: 0 10px 0 0;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box .first .company {
    display: block;
    font-size: 3.8vw;
    margin: 0 0 2vw;
  }
}
.voices-sec .content .items .item .box .first .desc {
  display: inline-flex;
  align-items: center;
  background: #fdd23e;
  height: 32px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box .first .desc {
    font-size: 3vw;
    height: 6vw;
    padding: 0 3vw;
    margin: 0 0 2vw;
  }
}
.voices-sec .content .items .item .box .first .figcaption_s {
  display: none;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box .first .figcaption_s {
    display: block;
  }
}
.voices-sec .content .items .item .box .first .figcaption_s .post {
  font-size: 3.4vw;
}
.voices-sec .content .items .item .box .first .figcaption_s .ja {
  font-size: 3.6vw;
}
.voices-sec .content .items .item .box .in_box .ttl {
  color: #1a73b1;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 20px;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box .in_box .ttl {
    font-size: 4.6vw;
    margin: 0 0 3vw;
  }
}
.voices-sec .content .items .item .box .in_box .text {
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .voices-sec .content .items .item .box .in_box .text {
    font-size: 3.8vw;
  }
}
.voices-sec .content .items .item .box .in_box .text .emphasis {
  padding: 0 0 3px;
  background-image: url("../images/top/marker.jpg");
  background-size: 10px;
  background-repeat: repeat-x;
  background-position: left bottom -3px;
}

.flow-sec {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(255, 236, 182) 5px, rgb(255, 236, 182) 6px);
  padding: 90px 0 90px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .flow-sec {
    padding: 15vw 0 15vw;
  }
}
.flow-sec .content {
  width: 1024px;
}
@media (max-width: 750px) {
  .flow-sec .content {
    width: 85vw;
  }
}
.flow-sec .content .ttl_sec {
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .flow-sec .content .ttl_sec {
    margin: 0 0 7vw;
  }
}

.faq-sec {
  background: rgba(198, 198, 197, 0.15);
  padding: 90px 0 90px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  .faq-sec {
    padding: 15vw 0 15vw;
  }
}
.faq-sec .content {
  width: 1024px;
}
@media (max-width: 750px) {
  .faq-sec .content {
    width: 85vw;
  }
}
.faq-sec .content .ttl_sec {
  margin: 0 0 50px;
}
@media (max-width: 750px) {
  .faq-sec .content .ttl_sec {
    margin: 0 0 7vw;
  }
}
.faq-sec .content #faq_wrap .faq__list {
  display: grid;
  gap: 0;
}
@media (max-width: 750px) {
  .faq-sec .content #faq_wrap .faq__list {
    gap: 0;
  }
}
.faq-sec .content #faq_wrap .faq__item:nth-of-type(odd) .faq__q {
  background: rgba(253, 210, 62, 0.45);
}
.faq-sec .content #faq_wrap .faq__item:nth-of-type(even) .faq__q {
  background: #fff;
}
.faq-sec .content #faq_wrap .faq__item .faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 26px;
  border: none;
  cursor: pointer;
}
@media (max-width: 750px) {
  .faq-sec .content #faq_wrap .faq__item .faq__q {
    gap: 3.4vw;
    padding: 3.2vw 3.6vw;
    align-items: flex-start;
  }
}
.faq-sec .content #faq_wrap .faq__item .faq__qNo {
  font-family: gotham, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #555;
}
@media (max-width: 750px) {
  .faq-sec .content #faq_wrap .faq__item .faq__qNo {
    font-size: 4.6vw;
    position: relative;
    top: 0.4vw;
  }
}
.faq-sec .content #faq_wrap .faq__item .faq__qText {
  flex: 1;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #222;
  text-align: left;
}
@media (max-width: 750px) {
  .faq-sec .content #faq_wrap .faq__item .faq__qText {
    font-size: 3.8vw;
  }
}
.faq-sec .content #faq_wrap .faq__item .faq__icon {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #222;
  transition: transform 260ms ease;
}
@media (max-width: 750px) {
  .faq-sec .content #faq_wrap .faq__item .faq__icon {
    border-left-width: 1.6vw;
    border-right-width: 1.6vw;
    border-top-width: 2vw;
  }
}
.faq-sec .content #faq_wrap .faq__item .faq__a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 320ms ease, opacity 220ms ease;
}
.faq-sec .content #faq_wrap .faq__item .faq__a .faq__aInner {
  display: flex;
  gap: 22px;
  padding: 18px 26px 18px;
}
@media (max-width: 750px) {
  .faq-sec .content #faq_wrap .faq__item .faq__a .faq__aInner {
    gap: 3.4vw;
    padding: 3.2vw 3.6vw 3.2vw;
  }
}
.faq-sec .content #faq_wrap .faq__item .faq__a .faq__aNo {
  color: #fdd23e;
  font-family: gotham, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 750px) {
  .faq-sec .content #faq_wrap .faq__item .faq__a .faq__aNo {
    font-size: 4.6vw;
  }
}
.faq-sec .content #faq_wrap .faq__item .faq__a .faq__aText {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  text-align: left;
}
@media (max-width: 750px) {
  .faq-sec .content #faq_wrap .faq__item .faq__a .faq__aText {
    font-size: 3.6vw;
  }
}
.faq-sec .content #faq_wrap .faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}
.faq-sec .content #faq_wrap .faq__item.is-open .faq__a {
  opacity: 1;
}

/*# sourceMappingURL=styles.css.map */
