@charset "UTF-8";
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

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

button {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* */
/* variables */
/* */
/* common */
p {
  width: fit-content;
}
p.--small {
  font-size: 12px !important;
}
p.--bold {
  font-weight: bold !important;
}

/* */
section .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
}

.--primary {
  color: #00a8c4;
}

.--bold {
  font-weight: bold;
}

.--underline {
  background: #ffe600;
  padding: 0 3px;
}

.--underline-half {
  background: linear-gradient(transparent 60%, #ffe600 60%);
  display: inline-block;
}

.--nowrap {
  white-space: nowrap;
}

.title-en {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.02em;
  color: #00a8c4;
}

.row__link {
  background: #ffffff;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0 17px 0 27px;
}
.row__link .msg {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #00a8c4;
  margin: 4px -10px 4px 0;
}
.row__link .car-img {
  height: 100%;
  margin: 4px 0;
  margin-right: -10px;
}
.row__link .form__link {
  padding: 21px 36px;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  margin: 17px 0;
  position: relative;
}
.row__link .form__link:hover .link__overlay {
  display: block;
}

h2,
div,
input,
a {
  font-family: Noto Sans JP;
  font-style: normal;
}

p {
  font-family: Noto Sans JP;
  font-style: normal;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
}

.link__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: white;
  opacity: 0.3;
  top: 0;
  left: 0;
  display: none;
}

.section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 39px;
  max-width: 650px;
}
.section__title h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.section__title hr {
  width: 60px;
  height: 4px;
  margin-top: 12px;
  border: 0;
  text-align: center;
  background: linear-gradient(90deg, #000000 0%, #000000 50%, #00a8c4 50%, #00a8c4 100%);
}
.section__title br {
  display: none;
}

header {
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
}
header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
}
header .header__inner .logo__wrapper {
  display: flex;
  align-items: center;
  height: 54px;
}
header .header__inner .logo__wrapper .logo-prev {
  height: 33px;
  margin-right: 10px;
}
header .header__inner .logo__wrapper img {
  height: 53px;
  margin-left: 22px;
  object-fit: contain;
}
header .header__inner .logo__wrapper p {
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  font-weight: bold;
  display: flex;
  align-items: center;
}
header .header__inner .header__link {
  padding: 8px 33px;
  height: 100%;
  background: linear-gradient(96.81deg, #ffe600 39.01%, #ffd600 75.32%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .header__inner .header__link:hover .link__overlay {
  display: block;
}
header .header__inner .header__link svg {
  margin-right: 8px;
}
header .header__inner .header__link .msg {
  margin-bottom: 2px;
  font-weight: bold;
  font-size: 14px;
  color: #00a8c4;
  text-align: center;
  white-space: nowrap;
}
header .header__inner .header__link .link__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header__inner .header__link .link__inner p {
  font-weight: bold;
  font-size: 18px;
  color: #00a8c4;
}
header .header__inner .header__link .link__inner img {
  margin-right: 9px;
  width: 21px;
  height: 21px;
}

.form__link {
  padding: 14px 92px;
  max-width: 450px;
  background: linear-gradient(96.81deg, #ffe600 39.01%, #ffd600 75.32%);
  display: block;
}
.form__link .msg {
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 16px;
  color: #00a8c4;
  text-align: center;
}
.form__link .link__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__link .link__inner p {
  font-weight: bold;
  font-size: 20px;
  color: #00a8c4;
}
.form__link .link__inner img {
  margin-right: 9px;
  width: 21px;
  height: 21px;
}

.thumbnail__wrapper {
  position: relative;
}
.thumbnail__wrapper .inner {
  position: absolute;
  height: fit-content;
  width: fit-content;
  left: 16vw;
  top: 0;
  bottom: 0;
  margin: auto;
}
.thumbnail__wrapper .inner .flex {
  margin-bottom: 18px;
}
.thumbnail__wrapper .inner .flex .outline-chip {
  border: 2px solid white;
  margin-right: 8px;
  padding: 0 10px;
}
.thumbnail__wrapper .inner .flex .outline-chip p {
  font-weight: 900;
  font-size: 18px;
  line-height: 34px;
  color: white;
}
.thumbnail__wrapper .inner br {
  display: none;
}
.thumbnail__wrapper .inner .text {
  display: flex;
  align-items: center;
  padding: 16px 9px;
  background: white;
  margin-bottom: 22px;
  border-radius: 2px;
  width: fit-content;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.2);
}
.thumbnail__wrapper .inner .text img {
  width: 29px;
  height: 29px;
  margin-right: 7px;
}
.thumbnail__wrapper .inner .text h3 {
  color: #000000;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 36px;
}
.thumbnail__wrapper .inner .text .text-col {
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  margin-right: 13px;
}
.thumbnail__wrapper .inner .flex {
  display: inline-flex;
  justify-content: space-between;
}
.thumbnail__wrapper .inner .flex :first-child.text {
  margin-right: 20px;
}
.thumbnail__wrapper .msg {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 28px;
  color: white;
}
.thumbnail__wrapper .form_link {
  margin-top: 24px;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.12);
  background: linear-gradient(96.81deg, #ffe600 39.01%, #ffd600 75.32%);
  border-radius: 4px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
}
.thumbnail__wrapper .form_link:hover .link__overlay {
  display: block;
}
.thumbnail__wrapper .form_link svg {
  margin-right: 8px;
}
.thumbnail__wrapper .form_link p {
  line-height: 24px;
  letter-spacing: 0.04em;
  font-weight: bold;
  font-size: 18px;
  color: #00a8c4;
}
.thumbnail__wrapper img {
  width: 100%;
}

.thumbnail__wrapper.--sp {
  display: none;
}

.about__wrapper .about {
  position: relative;
}
.about__wrapper .about .about__inner {
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.08);
  background: white;
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: fit-content;
  max-height: 100%;
  max-width: 1060px;
}
.about__wrapper .about .about__inner h2 {
  font-size: 32px;
  line-height: 60px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.about__wrapper .about .about__inner p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.02em;
}
.about__wrapper .about .about__inner .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5vh 4vw 6vh;
  width: 50%;
}
.about__wrapper .about .about__inner .right {
  display: flex;
  align-items: center;
  width: 50%;
  position: relative;
}
.about__wrapper .about .about__inner .right .logo-bg {
  padding: 26px 20px;
  background: #ffffff;
  opacity: 0.9;
  box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.29);
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: fit-content;
  width: fit-content;
}
.about__wrapper .about .about__inner .right .logo-bg .logo {
  width: 298px;
  height: 33px;
}
.about__wrapper .about .about__inner .right .about-img {
  width: 100%;
  height: 100%;
}
.about__wrapper .about.--sp {
  display: none;
}
.about__wrapper img {
  width: 100%;
}

.points {
  padding: 80px 0 90px;
  background: linear-gradient(132.69deg, #ecfcff 36.46%, #f9ffe2 88.11%);
}
.points .points__group {
  margin-bottom: 46px;
  margin-top: 20px;
}
.points .point-item {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
  border-radius: 4px;
}
.points .point-item img.--sp {
  display: none;
}
.points .point-item .point-item__inner {
  margin: 0;
  max-width: 770px;
  padding: 0 20px;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.points .point-item .point-item__inner li {
  list-style: none;
  padding-left: 25px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.02em;
  font-weight: normal;
}
.points .point-item .point-item__inner li h2 {
  color: #00a8c4;
  line-height: 48px;
  letter-spacing: 0.02em;
  font-size: 26px;
  margin-bottom: 9px;
}
.points .point-item .point-item__inner p {
  padding-left: 30px;
  margin-top: 5px;
}
.points .text__wrapper {
  width: 90px;
  height: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, #00a8c4 26.29%, #a1c21f 90.65%, #a1c21f 90.65%);
}
.points .text__wrapper p {
  font-family: Roboto;
  font-weight: bold;
  color: white;
}
.points .text__wrapper .point {
  font-size: 16px;
  margin-bottom: 8px;
}
.points .text__wrapper .num {
  font-size: 40px;
}
.points ul li {
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
}
.points .right-img {
  width: 260px;
}
.points .right-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

section.skills {
  background: #ebf7f9;
  padding: 85px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.skills .section__title {
  margin-bottom: 60px;
}
section.skills .skill-card {
  background: #ffffff;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
  margin-bottom: 50px;
  padding: 25px 22px 25px 50px;
  position: relative;
  display: flex;
  max-width: 1060px;
  width: 100%;
}
section.skills .skill-card .skill-chip {
  background: linear-gradient(130deg, #00a8c4 26.29%, #a1c21f 90.65%, #a1c21f 90.65%);
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: -40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.skills .skill-card .skill-chip p {
  font-family: Roboto;
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}
section.skills .skill-card .skill-chip p.num {
  font-style: normal;
  font-weight: 900;
  font-size: 28px;
  line-height: 36px;
}
section.skills .skill-card .left {
  margin-right: 50px;
}
section.skills .skill-card .left .title {
  margin-bottom: 13px;
  font-weight: 900;
  font-size: 26px;
  line-height: 48px;
  letter-spacing: 0.02em;
  color: #00a8c4;
}
section.skills .skill-card .left p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.02em;
}
section.skills .skill-card .right {
  display: flex;
}
section.skills .skill-card .right .before {
  margin-right: 10px;
  position: relative;
  width: 290px;
  height: 198px;
}
section.skills .skill-card .right .after {
  position: relative;
  width: 290px;
  height: 198px;
}
section.skills .skill-card .right .img-lay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.skills .skill-card .right .img-lay p {
  color: white;
}
section.skills .skill-card .right .img-lay.--blue {
  background: rgba(0, 168, 196, 0.7);
}

section.voices {
  padding: 72px 0 100px;
  position: relative;
}
section.voices .carousel {
  display: none;
}
section.voices .bg-img {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
}
section.voices .voice-items__group {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
section.voices .voice-items__group :first-child.voice-item {
  margin-right: 60px;
}
section.voices .voice-items__group .voice-item {
  background: #ffffff;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
  border-radius: 4px;
  width: 100%;
  max-width: 500px;
}
section.voices .voice-items__group .voice-item .owner-name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 40px;
  margin: 25px 0 12px;
}
section.voices .voice-items__group .voice-item .owner-name h4 {
  font-weight: 900;
  font-size: 26px;
  line-height: 48px;
  letter-spacing: 0.02em;
  color: #00a8c4;
}
section.voices .voice-items__group .voice-item .owner-name img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
section.voices .voice-items__group .voice-item img {
  width: 100%;
}
section.voices .voice-items__group .voice-item p {
  padding: 0 40px 60px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.02em;
}

section.results {
  padding: 82px 0 89px;
  background: linear-gradient(132.69deg, #ecfcff 36.46%, #f9ffe2 88.11%);
}
section.results .result-items__group {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
section.results .result-items__group :first-child.result-item {
  margin-right: 10px;
}
section.results .result-items__group .result-item {
  max-width: 506px;
  width: 100%;
}
section.results .result-items__group .result-item picture {
  height: 100%;
}
section.results .result-items__group .result-item picture img {
  width: 100%;
  height: 100%;
}
section.results .result-items__group .result-item img {
  width: 100%;
}
section.results .funding {
  margin-top: 50px;
  max-width: 1060px;
}
section.results .funding .card {
  background: #ffffff;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
  display: flex;
}
section.results .funding .title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 70px;
  background: #ebf7f9;
}
section.results .funding .title p {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #00a8c4;
  white-space: nowrap;
}
section.results .funding .content {
  padding: 25px 65px 25px 32px;
}
section.results .funding .content .text {
  display: flex;
  margin-bottom: 4px;
}
section.results .funding .content .text p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.02em;
}
section.results .funding .content .text .bold {
  white-space: nowrap;
  margin-right: 2px;
  font-weight: bold;
}

section.comparison {
  padding: 78px 0 87px;
}
section.comparison .table__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
section.comparison .table__wrapper .table {
  display: flex;
  justify-content: center;
  border-radius: 4px;
  width: 100%;
}
section.comparison .table__wrapper .table .column__group {
  overflow-x: scroll;
  display: flex;
  box-shadow: 0px 0px 40px 2px rgba(122, 122, 122, 0.12);
}
section.comparison .table__wrapper .table .column__group::-webkit-scrollbar {
  display: none;
}
section.comparison .table__wrapper .table .column__group :first-child.column .row {
  background: #ebf7f9;
}
section.comparison .table__wrapper .table .column__group :first-child.column .row p {
  color: #00a8c4;
  font-weight: bold;
  text-align: center;
}
section.comparison .table__wrapper .table .column__group :first-child.column :first-child.row {
  background: linear-gradient(130deg, #00a8c4 26.29%, #a1c21f 90.65%, #a1c21f 90.65%);
}
section.comparison .table__wrapper .table .column__group :first-child.column :first-child.row p {
  color: white;
}
section.comparison .table__wrapper .table .column__group :nth-child(2).column :first-child.row {
  background: #616161;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.comparison .table__wrapper .table .column__group :nth-child(2).column :first-child.row p {
  color: white;
  font-weight: bold;
  font-size: 16px;
}
section.comparison .table__wrapper .table .column__group :nth-child(3).column :first-child.row {
  background: #616161;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.comparison .table__wrapper .table .column__group :nth-child(3).column :first-child.row p {
  color: white;
  font-weight: bold;
  font-size: 16px;
}
section.comparison .table__wrapper .table .column__group :nth-child(4).column :first-child.row {
  background: #616161;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.comparison .table__wrapper .table .column__group :nth-child(4).column :first-child.row p {
  color: white;
  font-weight: bold;
  font-size: 16px;
}
section.comparison .table__wrapper .table::-webkit-scrollbar {
  display: none;
}
section.comparison .table__wrapper .table .column {
  border-right: 4px solid white;
}
section.comparison .table__wrapper .table .column .row {
  border-bottom: 4px solid white;
  height: 90px;
  width: 248px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
}
section.comparison .table__wrapper .table .column .row p {
  font-size: 16px;
  text-align: center;
}
section.comparison .table__wrapper .table .column.--first {
  box-shadow: 0px 0px 40px 2px rgba(122, 122, 122, 0.12);
}
section.comparison .table__wrapper .table .column.--first .row {
  width: 140px;
  background: #00a8c4;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.comparison .table__wrapper .table .column.--first .row p {
  color: white;
  font-weight: bold;
  font-size: 16px;
}

section.session {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  background: #00a8c4;
}
section.session .inner {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1060px;
  padding: 60px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.session .inner .upper {
  position: relative;
}
section.session .inner .upper h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 50px;
  color: #fff;
  padding-bottom: 29px;
  text-align: center;
}
section.session .inner .upper h2 br.--sp {
  display: none;
}
section.session .inner .upper img {
  position: absolute;
  right: 38px;
  max-width: 165px;
  max-height: 173px;
  bottom: 0;
}
section.session .inner .session__inner {
  background: white;
  display: flex;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
}
section.session .inner .session__inner .img__wrapper {
  width: 290px;
  height: 200px;
}
section.session .inner .session__inner .img__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.session .inner .session__inner .text__group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.session .inner .session__inner .text__group :last-child.text__row {
  margin-bottom: 0;
}
section.session .inner .session__inner .text__group .text__row {
  display: flex;
  align-items: flex-start;
  margin-left: 3.5vw;
  margin-bottom: 20px;
}
section.session .inner .session__inner .text__group .text__row img {
  width: 28px;
  height: 28px;
  margin-right: 9px;
}
section.session .inner .session__inner .text__group .text__row p {
  font-weight: bold;
  font-size: 18px;
}
section.session .inner .session__inner .text__group .text__row p .--small {
  font-size: 14px;
}
section.session.--sp {
  display: none;
}

section.flow {
  margin-bottom: 90px;
}
section.flow .section__inner {
  max-width: 1240px;
  margin: 0 auto;
}
section.flow .section__inner .flow-item__group {
  display: flex;
  justify-content: center;
  overflow-x: scroll;
  width: 100%;
  padding: 30px;
}
section.flow .section__inner .flow-item__group :last-child.flow-item {
  margin-right: 0;
}
section.flow .section__inner .flow-item__group::-webkit-scrollbar {
  display: none;
}
section.flow .section__inner .flow-item__group .flow-item {
  width: 160px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
  border-radius: 4px;
  margin-right: 30px;
}
section.flow .section__inner .flow-item__group .flow-item .flow-item__thumbnail {
  width: 100%;
  position: relative;
}
section.flow .section__inner .flow-item__group .flow-item .flow-item__thumbnail .num__tip {
  width: 60px;
  height: 60px;
  position: absolute;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: -25%;
  left: -12.5%;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
}
section.flow .section__inner .flow-item__group .flow-item .flow-item__thumbnail .num__tip p {
  background: linear-gradient(130.19deg, #00a8c4 28.33%, #a1c21f 77.76%);
  color: #00a8c4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: Roboto;
}
section.flow .section__inner .flow-item__group .flow-item .flow-item__thumbnail .num__tip .step-text {
  font-size: 12px;
}
section.flow .section__inner .flow-item__group .flow-item .flow-item__thumbnail .num__tip .num {
  font-size: 20px;
  line-height: 20px;
}
section.flow .section__inner .flow-item__group .flow-item .flow-item__text {
  display: flex;
  justify-content: center;
  width: 160px;
}
section.flow .section__inner .flow-item__group .flow-item .flow-item__text p {
  font-weight: bold;
  text-align: center;
  padding: 15px 8px;
  font-size: 16px;
}

section.form {
  padding: 90px 0;
  background: #ebf7f9;
}
section.form p.--center {
  margin: 20px 0;
  font-size: 16px;
}
section.form p.--center br {
  display: none;
}
section.form .form__inner {
  background: white;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
  border-radius: 4px;
  padding: 70px 90px;
}
section.form .form__inner .msg {
  text-align: end;
  width: 100%;
}
section.form .form__inner .msg .--red {
  color: #c10000;
}

footer {
  background: #00a8c4;
  color: white;
  font-weight: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px 15px;
}
footer .footer__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 95px;
}
footer .footer__inner .footer__item:first-child {
  margin-right: 80px;
}
footer .company-name {
  margin-bottom: 14px;
}
footer .address {
  margin-bottom: 14px;
}
footer .copy-secondary {
  margin-top: 26px;
  font-weight: 700;
  font-weight: 16px;
}
footer .--nowrap {
  margin-bottom: 5px;
}
footer .copy-right {
  margin-top: 15px;
  font-weight: bold;
}

.fixed__btn {
  display: none;
}

.page-thanks {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-thanks .inner {
  background: #ebf7f9;
  height: 100%;
  padding: 47px 0 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-thanks .inner .section__title {
  max-width: unset;
}
.page-thanks .inner .card {
  width: 100%;
  max-width: 800px;
  background: white;
  padding: 52px 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
}
.page-thanks .inner .card .--bold {
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 36px;
  text-align: center;
}
.page-thanks .inner .card .--bold br {
  display: block;
}
.page-thanks .inner .card .--normal {
  line-height: 28px;
  text-align: center;
  margin-bottom: 40px;
}
.page-thanks .inner .card a {
  text-decoration-line: none;
  text-decoration-color: #00a8c4;
}
.page-thanks .inner .card a p {
  color: #00a8c4;
  text-align: center;
}

@media screen and (max-width: 1150px) {
  section.session {
    margin-bottom: 52px;
  }
  section.session .inner {
    padding: 50px ​0;
    width: 100%;
  }
  section.session .inner .upper h2 {
    font-size: 25px;
    padding-bottom: 8px;
    line-height: 34px;
  }
  section.session .inner .upper img {
    max-width: 125px;
  }
  section.session .inner .session__inner {
    margin: 0 18px;
  }
  section.session .inner .session__inner .img__wrapper {
    height: 100%;
  }
  section.session .inner .session__inner .text__group .text__row {
    margin-bottom: 0px;
  }
  section.session .inner .session__inner .text__group .text__row p {
    font-size: 16px;
  }

  .skill-card {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .about__wrapper .about.--pc .about__inner {
    padding-top: 3vw;
  }
  .about__wrapper .about.--pc .about__inner .right {
    margin-left: 1vw;
  }
  .about__wrapper .about.--pc .about__inner .left .hr {
    margin-bottom: 7px;
  }
  .about__wrapper .about.--pc .about__inner .left p br {
    display: none;
  }
  .about__wrapper .about.--pc .about__inner h2 {
    white-space: nowrap;
    font-size: 24px;
  }
  .about__wrapper .about.--pc .about__inner p {
    font-size: 13px;
  }
}
@media screen and (max-width: 850px) {
  .thumbnail__wrapper .inner .text {
    margin-bottom: 5px;
  }
  .thumbnail__wrapper .inner .text h3 {
    font-size: 26px;
    line-height: 26px;
  }
}
@media screen and (max-width: 750px) {
  section.skills {
    padding: 47px 15px 0 15px;
  }
  section.skills .section__title h2 {
    line-height: 42px;
  }
  section.skills .skill-card {
    flex-direction: column;
    width: 100%;
    padding: 50px 22px 25px;
    margin-bottom: 60px;
  }
  section.skills .skill-card .skill-chip {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  section.skills .skill-card .left {
    margin-right: 0;
    margin-bottom: 15px;
  }
  section.skills .skill-card .left .title {
    font-size: 22px;
    line-height: 34px;
    text-align: center;
  }
  section.skills .skill-card .right .before {
    margin-bottom: 10px;
    width: 100%;
    height: unset;
  }
  section.skills .skill-card .right .after {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: unset;
  }
}
@media screen and (max-width: 700px) {
  .thumbnail__wrapper .inner {
    padding: 0 28px 80px 28px;
    left: 0;
  }
  .thumbnail__wrapper .inner .text {
    width: -webkit-max-content;
    padding: 10px 9px 10px 12px;
    margin-bottom: 6px;
  }
  .thumbnail__wrapper .inner .text h3 {
    font-size: 36px;
    line-height: 36px;
  }
  .thumbnail__wrapper .inner .flex {
    flex-direction: column;
  }
  .thumbnail__wrapper .inner .msg {
    font-size: 16px;
    line-height: 24px;
    margin: 11px 0 15px;
  }
  .thumbnail__wrapper .inner br {
    display: block;
  }

  header .header__inner {
    padding-left: 12px;
  }

  .about__wrapper .about.-pc .about__inner {
    padding-top: 1vh;
  }
  .about__wrapper .about.-pc .hr {
    margin-bottom: 5px;
  }

  .contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td:first-child {
    width: 100px;
  }

  section.session.--pc {
    display: none;
  }
  section.session.--sp {
    display: block;
  }
  section.session.--sp .inner {
    height: fit-content;
  }
  section.session.--sp .upper h2 {
    font-size: 22px;
    line-height: 34px;
    padding: 0 18px;
    padding-bottom: 36px;
  }
  section.session.--sp .upper h2 br.--sp {
    display: block;
  }
  section.session.--sp .session__inner {
    margin: 0 18px;
    padding: 0;
    flex-direction: column;
  }
  section.session.--sp .session__inner .img__wrapper {
    height: 190px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
  }
  section.session.--sp .session__inner .img__wrapper img {
    width: 100%;
  }
  section.session.--sp .session__inner .text__group {
    padding: 1.2vh 5vw;
    padding-bottom: 20px;
  }
  section.session.--sp .session__inner .text__group .text__row {
    margin-bottom: 20px;
    margin-left: 0;
  }
  section.session.--sp .session__inner .text__group .text__row img {
    margin-right: 16px;
  }
  section.session.--sp .session__inner .text__group .text__row p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 600px) {
  .carousel {
    display: block !important;
    width: 100%;
  }

  .section__title .--nowrap {
    white-space: unset;
  }
  .section__title .title-en {
    white-space: nowrap;
  }

  .thumbnail__wrapper {
    display: none;
  }
  .thumbnail__wrapper.--sp {
    display: block;
  }
  .thumbnail__wrapper.--sp .inner {
    padding: 0;
    padding-left: 28px;
    margin-top: 90px;
  }
  .thumbnail__wrapper.--sp .inner :nth-child(2).flex {
    margin-bottom: 21px;
  }
  .thumbnail__wrapper.--sp .inner .flex {
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 3px;
  }
  .thumbnail__wrapper.--sp .inner .flex .outline-chip {
    margin-right: 3px;
    padding: 0 7px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
  }
  .thumbnail__wrapper.--sp .inner .flex .outline-chip p {
    font-size: 16px;
    line-height: 28px;
  }
  .thumbnail__wrapper.--sp .inner .msg {
    font-size: 16px;
    line-height: 24px;
    margin-top: 6px;
  }
  .thumbnail__wrapper.--sp .inner .form_link {
    margin-top: 0;
  }

  .reason-item__chip {
    width: 99px !important;
  }

  .about__wrapper .about.--pc {
    display: none;
  }
  .about__wrapper .about.--sp {
    display: block;
  }
  .about__wrapper .about.--sp h2 {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
  }
  .about__wrapper .about.--sp .about__inner {
    padding: 27px 16px 22px;
    width: 91vw;
  }
  .about__wrapper .about.--sp .about__inner .left {
    align-items: center;
    padding: 0;
    width: 100%;
  }
  .about__wrapper .about.--sp .about__inner .left .title-en {
    line-height: 40px;
  }
  .about__wrapper .about.--sp .about__inner .right {
    margin-left: 0;
    width: 100%;
    max-width: unset;
    margin-top: 20px;
  }
  .about__wrapper .about.--sp .about__inner .right .before {
    margin-right: 0;
  }
  .about__wrapper .about.--sp .about__inner .right p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 600px) {
  .thumbnail__wrapper .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .thumbnail__wrapper .inner .text h3 {
    font-size: 26px;
    line-height: 32px;
    white-space: nowrap;
  }
  .thumbnail__wrapper .form_link p {
    white-space: nowrap;
  }

  .section__title h2 {
    font-size: 26px;
  }
  .section__title h2 br {
    display: block;
  }

  .points .points__group {
    margin: 0;
  }
  .points .point-item {
    margin: 0 14px 20px;
    width: 340px;
  }
  .points .point-item .flex {
    height: 94px;
    display: flex;
    position: relative;
  }
  .points .point-item .flex .text__wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    border-radius: 0;
  }
  .points .point-item .flex .text__wrapper .point {
    margin-right: 0;
  }
  .points .point-item .flex .text__wrapper .num {
    font-size: 34px;
    line-height: 34px;
  }
  .points .point-item img.--sp {
    display: block;
    height: 100%;
    object-fit: cover;
  }
  .points .point-item .right-img {
    display: none;
  }
  .points .point-item .point-item__inner {
    width: 100%;
    text-align: center;
  }
  .points .point-item .point-item__inner li {
    padding: 0;
    font-size: 16px;
    line-height: 28px;
  }
  .points .point-item .point-item__inner li h2 {
    font-size: 22px;
    line-height: 34px;
    padding: 0 8px;
  }

  .form__link {
    padding: 14px 37px;
  }

  header {
    height: fit-content;
  }
  header .header__inner {
    padding-left: 13px;
    justify-content: center;
  }
  header .header__inner .logo__wrapper {
    align-items: center;
    height: 100%;
    flex-direction: column;
    padding: 5px 0 8px;
  }
  header .header__inner .logo__wrapper img {
    max-width: 330px;
    margin-left: 0;
    height: 35px;
  }
  header .header__inner .logo__wrapper p {
    font-size: 10px;
    color: #000000;
    font-weight: bold;
    line-height: 16px;
  }
  header .header__inner .header__link {
    display: none;
  }

  section.points {
    padding: 53px 0 60px;
  }
  section.points .section__inner {
    padding: 0;
  }
  section.points .section__inner .section__title {
    padding: 0 12px;
  }
  section.points .point-item {
    flex-direction: column;
    border-radius: 4px 0px 0px 4px;
  }
  section.points .point-item ul li {
    line-height: 26px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  section.points .point-item .point-item__inner {
    padding: 18px 25px;
    padding-bottom: 8px;
    min-height: 206px;
  }
  section.points .point-item .point-item__inner p {
    padding: 0;
    font-size: 12px;
  }
  section.points .point-item .text__wrapper {
    height: 70px;
    width: 100%;
    padding: 0;
    flex-direction: row;
    align-items: baseline;
    border-radius: 4px 4px 0px 0px;
    height: 100%;
  }
  section.points .point-item .text__wrapper .point {
    margin: 0;
    margin-right: 5px;
  }
  section.points .point-item .right-img {
    border-radius: 0px 0px 4px 4px;
    height: 130px;
    overflow: hidden;
    width: 100%;
  }
  section.points .row__link {
    display: none;
  }

  section.voices {
    padding: 52px 0 0;
  }
  section.voices .section__inner {
    padding: 0;
  }
  section.voices .voice-items__group {
    display: none;
  }
  section.voices .voice-item {
    background: #ffffff;
    box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
    border-radius: 4px;
    margin-bottom: 20px;
  }
  section.voices .voice-item p {
    padding: 25px;
    line-height: 28px;
  }
  section.voices .voice-item .owner-name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 27px;
    margin-top: 25px;
  }
  section.voices .voice-item .owner-name h4 {
    font-weight: 900;
    font-size: 26px;
    line-height: 48px;
    letter-spacing: 0.02em;
    color: #00a8c4;
  }
  section.voices .voice-item .owner-name img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }

  section.skills {
    padding: 47px 15px 0 15px;
  }
  section.skills .section__title h2 {
    line-height: 42px;
  }
  section.skills .skill-card {
    flex-direction: column;
    width: 100%;
    padding: 50px 22px 25px;
    margin-bottom: 60px;
  }
  section.skills .skill-card .skill-chip {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  section.skills .skill-card .left {
    margin-right: 0;
    margin-bottom: 15px;
  }
  section.skills .skill-card .left .title {
    font-size: 22px;
    line-height: 34px;
    text-align: center;
  }
  section.skills .skill-card .right {
    flex-direction: column;
  }
  section.skills .skill-card .right .before {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: unset;
  }
  section.skills .skill-card .right .after {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: unset;
  }

  section.results {
    padding: 70px 0 30px;
    margin-top: 0;
  }
  section.results .result-item {
    width: 100%;
  }
  section.results .section__inner {
    padding: 0;
  }
  section.results .section__inner .section__title {
    margin-bottom: 20px;
  }
  section.results .section__inner .result-items__group {
    flex-direction: column;
    margin-bottom: 0;
  }
  section.results .section__inner .result-items__group :first-child.result-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
  section.results .row__link {
    display: none;
  }

  section.comparison {
    padding-top: 50px;
  }
  section.comparison .section__inner {
    padding: 0;
    padding-left: 18px;
  }
  section.comparison .section__title {
    margin-bottom: 33px;
  }

  section.flow .section__inner {
    padding: 0;
  }
  section.flow .section__inner .section__title {
    margin-bottom: 19px;
  }
  section.flow .section__inner .flow-item__group {
    flex-direction: column;
    border-radius: 0 4px 4px 0;
    padding: 12px 18px;
  }
  section.flow .section__inner .flow-item__group .flow-item {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    height: 80px;
  }
  section.flow .section__inner .flow-item__group .flow-item .flow-item__thumbnail {
    display: flex;
    width: fit-content;
  }
  section.flow .section__inner .flow-item__group .flow-item .flow-item__thumbnail img {
    width: 120px;
  }
  section.flow .section__inner .flow-item__group .flow-item .flow-item__thumbnail .num__tip {
    position: unset;
    border-radius: unset;
    height: 100%;
    padding: 0 7px;
    border-radius: 4px 0 0 4px;
  }
  section.flow .section__inner .flow-item__group .flow-item .flow-item__text {
    width: unset;
  }
  section.flow .section__inner .flow-item__group .flow-item .flow-item__text p {
    display: flex;
    padding-left: 15px;
    align-items: center;
  }

  section.flow {
    margin-bottom: 50px;
  }

  section.form {
    padding: 53px 0;
  }
  section.form .section__title {
    margin-bottom: 0;
  }
  section.form p.--center {
    text-align: center;
  }
  section.form p.--center br {
    display: block;
  }

  footer {
    padding: 41px 18px 18px;
    height: unset;
  }
  footer .footer__inner {
    height: unset;
    flex-direction: column;
    margin-bottom: 0;
  }
  footer .footer__inner .footer__item:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
  footer .footer__inner .company-name {
    margin-bottom: 6px;
  }
  footer .footer__inner p {
    line-height: 25px;
  }
  footer .footer__inner br {
    display: block;
  }
  footer .copy-right {
    white-space: nowrap;
    font-size: 14px;
    margin-top: 67px;
  }

  .fixed__btn {
    position: fixed;
    z-index: 20;
    bottom: 0;
    background: white;
    display: block;
    width: 100%;
    padding: 9px 17px;
  }
  .fixed__btn:hover .link__overlay {
    display: block;
  }
  .fixed__btn .header__link {
    padding: 8px 33px;
    width: 100%;
    background: linear-gradient(96.81deg, #ffe600 39.01%, #ffd600 75.32%);
    box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .fixed__btn .header__link svg {
    margin-right: 8px;
  }
  .fixed__btn .header__link .msg {
    margin-bottom: 2px;
    font-weight: bold;
    font-size: 14px;
    color: #00a8c4;
    text-align: center;
  }
  .fixed__btn .header__link .link__inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fixed__btn .header__link .link__inner p {
    font-weight: bold;
    font-size: 18px;
    color: #00a8c4;
  }
  .fixed__btn .header__link .link__inner img {
    margin-right: 9px;
    width: 21px;
    height: 21px;
  }

  .page-thanks .inner {
    padding: 60px 0;
  }
  .page-thanks .inner .section__title {
    margin-bottom: 19px;
  }
  .page-thanks .inner .card {
    background: unset;
    box-shadow: unset;
    padding: 0 12px;
  }
  .page-thanks .inner .card .--bold br {
    display: none;
  }

  .funding {
    padding: 0 13px !important;
  }
  .funding .card {
    flex-direction: column;
  }
  .funding .card .title {
    padding: 13px 0 !important;
  }
  .funding .card .content {
    padding: 13px 20px !important;
  }
  .funding .card .content .text {
    margin-bottom: 9px !important;
  }
  .funding .card .content .text p {
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: 0.02em !important;
  }
  .funding .card .content .text .bold {
    margin-right: 12px !important;
  }
  .funding .card .content :nth-child(2).text {
    margin-bottom: 0 !important;
  }
}
.contact_form {
  background: #ebf7f9;
}
.contact_form .section__inner {
  padding-top: 80px;
}
.contact_form .section__inner .section__title {
  margin-bottom: 27px;
}
.contact_form p.--center {
  line-height: 28px;
  text-align: center;
}
.contact_form p.--center br {
  display: none;
}
.contact_form p.msg {
  width: 100%;
  text-align: end;
  line-height: 48px;
}
.contact_form p.msg span.--red {
  color: #c10000;
}
.contact_form .confirm-text {
  font-size: 14px;
  line-height: 48px;
}
.contact_form .confirm-text a {
  color: #00a8c4;
  text-decoration: underline;
}
.contact_form .form__inner {
  padding: 24px 140px 40px;
  margin: 21px 0 90px;
  background: white;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.09);
  max-width: 100%;
}
.contact_form .form__inner input[type=submit] {
  -webkit-appearance: none;
}
.contact_form .form__inner input {
  background: #f1f1f1;
  padding: 13px;
  font-size: 16px;
  border: 0;
  border-radius: 4px;
  max-width: 400px;
}
.contact_form .form__inner select {
  background: #f1f1f1;
  padding: 13px 10px;
  font-size: 16px;
  border: 0;
  border-radius: 4px;
  width: 240px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact_form .form__inner select::-ms-expand {
  display: none;
}
.contact_form .form__inner select::-ms-expand {
  display: none;
}
.contact_form .form__inner .ajax-loader {
  display: none;
}
.contact_form .form__inner .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .wpcf7-box {
  display: flex;
  justify-content: center;
  width: 70%;
}
.contact_form .form__inner .wpcf7 .wpcf7-form input.wpcf7-submit {
  color: #00a8c4;
  font-weight: bold;
  padding: 22px 0;
  width: 300px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(96.81deg, #ffe600 39.01%, #ffd600 75.32%);
  font-size: 18px;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.07);
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr {
  display: flex;
  margin-bottom: 16px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr:last-child {
  margin-bottom: 25px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td {
  display: flex;
  justify-content: flex-start;
  min-width: 150px;
  max-width: 400px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td:first-child {
  margin-right: 72px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .form-label {
  text-align: end;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .your-zip input {
  width: 240px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.zip {
  flex-direction: row !important;
  align-items: center !important;
  min-width: 150px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.zip .wpcf7-form-control-wrap {
  width: 50% !important;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.zip .wpcf7-form-control-wrap input {
  width: 100% !important;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.zip .zip-button {
  width: 30%;
  min-width: 130px;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #00a8c4;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 14px;
  color: #00a8c4;
  margin-left: 15px;
  cursor: pointer;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .required {
  font-size: 12px;
  color: #fc216f;
  text-align: end;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .--small {
  font-size: 12px;
  color: #575859;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .wpcf7-list-item.first {
  margin-left: 0;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .wpcf7-form-control-wrap.information-session .wpcf7-form-control .wpcf7-list-item label input[type=radio] {
  background: white;
  cursor: pointer;
  margin: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .wpcf7-form-control-wrap.information-session .wpcf7-form-control .wpcf7-list-item label input[type=radio]::before {
  background: #f3f3f3;
  border-radius: 4px;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .wpcf7-form-control-wrap.information-session .wpcf7-form-control .wpcf7-list-item label input[type=radio]:checked::before {
  content: url(./assets/check-white.png);
  background: linear-gradient(130deg, #00a8c4 26.29%, #a1c21f 90.65%, #a1c21f 90.65%);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .wpcf7-form-control-wrap.information-session .wpcf7-form-control.wpcf7-not-valid .wpcf7-list-item label input::before {
  background: #ffd6d6;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td .wpcf7-list-item label .wpcf7-list-item-label {
  padding-left: 5px;
  display: block;
  cursor: pointer;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type .wpcf7-radio {
  flex-direction: row;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type .wpcf7-radio .wpcf7-list-item.first {
  margin-right: 100px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type input[type=radio] {
  background: white;
  cursor: pointer;
  margin: 0;
  width: 20px !important;
  height: 20px;
  position: relative;
  border-radius: 50%;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type input[type=radio]::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid;
  border-color: #00a8c4;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type input[type=radio]:checked::before {
  background: white;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-color: #00a8c4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type input[type=radio]::after {
  content: "";
  background: white;
  width: 12px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  border-color: white;
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type input[type=radio]:checked::after {
  background: #00a8c4;
  border-color: #00a8c4;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr.form-session {
  margin-top: 30px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form table tbody :last-child tr {
  margin-bottom: 8px !important;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .privacy__link {
  margin: 36px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .privacy__link a:link {
  color: #fc216f !important;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .privacy__link p {
  line-height: 27px;
  font-size: 13px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .privacy__link p.notice {
  margin-top: 8px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .mail-magazine {
  margin-top: 36px;
  display: flex;
  align-items: center;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .mail-magazine label {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .mail-magazine input {
  cursor: pointer;
  position: relative;
  width: 20px !important;
  height: 20px !important;
  background: white;
  margin-right: 10px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .mail-magazine input[type=checkbox] {
  padding: 0;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .mail-magazine input[type=checkbox]::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 1px solid;
  border-color: #00a8c4;
  background-color: #fff;
  border-radius: 2px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .mail-magazine input[type=checkbox]:checked::before {
  content: url(./assets/check-white.png);
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 1px solid;
  border-color: #00a8c4;
  background: linear-gradient(130deg, #00a8c4 26.29%, #a1c21f 90.65%, #a1c21f 90.65%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .mail-magazine label {
  margin-left: 10px;
  font-size: 16px;
  line-height: 23px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .mail-magazine .wpcf7-list-item.last {
  display: none;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c10000;
  margin-top: 6px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .wpcf7-response-output {
  display: none;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .wpcf7-submit {
  cursor: pointer !important;
  margin-top: 15px;
}
.contact_form .form__inner .wpcf7 .wpcf7-form input::placeholder {
  color: #9e9e9e;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.your-prefecture, .contact_form .form__inner .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.business-type {
  position: relative;
  width: fit-content;
}
.contact_form .form__inner .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.your-prefecture:before, .contact_form .form__inner .wpcf7 .wpcf7-form .wpcf7-form-control-wrap.business-type:before {
  content: "▼";
  font-size: 8px;
  color: black;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}
.contact_form .form__inner .wpcf7 .wpcf7-form input.wpcf7-not-valid {
  background: #ffd6d6;
}

@media screen and (max-width: 750px) {
  section.reason .reason-items__group :first-child.reason-item {
    margin-right: 30px;
  }

  section.voices .voice-items__group :first-child.voice-item {
    margin-right: 30px;
  }

  .contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td:first-child {
    margin: 0;
  }

  .contact_form .section__inner .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
    display: flex;
    flex-direction: column;
  }

  .wpcf7-list-item {
    margin-bottom: 12px !important;
  }
}
@media screen and (max-width: 700px) {
  td {
    min-width: unset !important;
  }
}
@media screen and (max-width: 500px) {
  .contact_form {
    filter: unset;
  }
  .contact_form .section__inner {
    padding-top: 53px;
  }
  .contact_form .section__inner .form__inner {
    padding: 0;
  }
  .contact_form .section__inner .msg {
    font-size: 14px;
    padding: 0 20px;
  }
  .contact_form .section__inner p.--center {
    line-height: 28px;
  }
  .contact_form .section__inner p.--center br {
    display: block;
  }
  .contact_form .section__inner .wpcf7 {
    padding: 0;
    padding-bottom: 35px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form table {
    margin-top: 10px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form table tbody tr {
    flex-direction: column;
    padding: 0 20px;
    margin-bottom: 24px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form table tbody tr td {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form table tbody tr td .form-label {
    text-align: start;
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 8px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form table tbody tr td .required {
    text-align: start;
    margin-left: 4px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form table tbody tr td.customer-type .wpcf7-list-item.first {
    margin-right: 18px !important;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form table tbody tr.form-session {
    margin-bottom: 0;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .privacy__link p {
    font-size: 14px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .privacy__link p.notice {
    font-size: 12px;
    margin-top: 8px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
    width: 100%;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
    display: flex;
    flex-direction: column;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label input[type=radio] {
    padding: 0;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form input {
    width: 100%;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .wpcf7-form .zip-button {
    margin-left: 0;
    margin-top: 16px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .wpcf7-box {
    width: 100%;
    padding: 0 20px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .wpcf7-list-item {
    margin-left: 0 !important;
    margin-bottom: 12px !important;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 25px;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .confirm-text {
    padding: 16px 48px 24px;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .mail-magazine .wpcf7-list-item-label {
    padding: 0 6px !important;
  }
  .contact_form .section__inner .wpcf7 .wpcf7-form .privacy__link {
    margin: 24px 16px;
  }

  .form-input.zip {
    flex-direction: row !important;
    align-items: center !important;
  }
  .form-input.zip .zip-button {
    border-radius: 4px !important;
    padding: 10px 14px !important;
  }

  .contact_form .form__inner .wpcf7 .wpcf7-form table tbody tr td:first-child {
    width: 150px;
  }
}
.slick-initialized .slick-slide {
  margin: 0 17px;
}

.slick-next {
  right: 0 !important;
  display: none !important;
}

.slick-prev {
  left: 0 !important;
  display: none !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 80px !important;
  padding-bottom: 30px !important;
}

.carousel-arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 70px;
}
.carousel-arrow.--left {
  left: 0;
}
.carousel-arrow.--left img {
  transform: rotate(180deg);
}
.carousel-arrow.--right {
  right: 0;
}
.carousel-arrow.slick-disabled {
  display: none !important;
}

.slick-dots {
  margin-top: 30px !important;
}
.slick-dots li {
  width: 15px !important;
  height: 15px !important;
  margin: 0 9px !important;
}
.slick-dots li button {
  border-radius: 50% !important;
  width: 15px !important;
  height: 15px !important;
  padding: 0;
  box-shadow: 0px 0px 20px 2px rgba(45, 45, 45, 0.15);
}
.slick-dots li button:before {
  opacity: 1 !important;
  background: white;
  border-radius: 50% !important;
  width: 15px !important;
  height: 15px !important;
  content: "" !important;
}
.slick-dots li.slick-active button:before {
  background: #00a8c4;
  border-radius: 50% !important;
  opacity: 1 !important;
  width: 15px !important;
  height: 15px !important;
  content: "" !important;
}

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