:root {
  --font-family: "Inter", "Noto Sans JP", sans-serif;
  --color-lightblue: #2ab0c4;
  --color-yellow: #f3e82f;
  --color-pink: #d86b70;
  --color-blue: #2c75bb;
  --color-white: #ffffff;
  --color-black: #000013;
  --color-bg-lightblue: #e6f6f9;
  --color-bg-gray: #f2f2f2;
  --color-border: #d0d6da;
  --color-text: #2a2a3c;
  --color-text-gray: #7c7c7c;
  --color-text-blue: #0071b7;
  --font-thin: 300;
  --font-light: 400;
  --font-regular: 500;
  --font-medium: 600;
  --font-bold: 700;
  --lh-xs: 1;
  --lh-sm: 1.25;
  --lh-md: 1.5;
  --lh-lg: 1.75;
  --lh-xl: 2;
  --normal-transition: 0.3s ease ;
}

@media (min-width: 1000px) {
  .contentsWrap {
    padding: 11.6rem 0 0;
  }
}
.team {
  padding: 6.649vw;
  background-color: var(--color-lightblue);
  border-radius: 8px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.team__text h2 {
  line-height: var(--lh-md);
}

.team__text p {
  padding-top: 1rem;
}

.team__image {
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .team {
    padding: 5.357vw;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5.714vw;
  }
  .team__text {
    order: 2;
    width: 38.571vw;
  }
  .team__text h2 {
    line-height: var(--lh-md);
  }
  .team__text p {
    padding-top: 1.429vw;
  }
  .team__image {
    order: 1;
    width: 28.571vw;
    padding-top: 0;
  }
}
.ibj__text h2 {
  font-weight: var(--font-bold);
  padding-bottom: 1rem;
}

.ibj__text p {
  font-weight: var(--font-medium);
}

.ibj__image {
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .ibj {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ibj__text {
    width: 42.857vw;
  }
  .ibj__text h2 {
    line-height: var(--lh-md);
    padding-bottom: 1.429vw;
  }
  .ibj__image {
    width: 37.857vw;
    padding-top: 0;
  }
}
.strong__contents {
  padding: 6.649vw;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.strong__3c-title {
  padding-bottom: 1.5rem;
}

.strong__3c-title h3 {
  font-weight: var(--font-bold);
  text-align: center;
}

.strong__3c-title h3 span {
  color: var(--color-lightblue);
}

.strong__3c-title p {
  padding: 1rem 0 2rem;
  font-weight: var(--font-medium);
}

.strong__3c-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.strong__3c-item img {
  width: 700px;
  border-radius: 6px;
}

.strong__3c-item h4 {
  padding: 1.5rem 0 0.5rem;
  font-weight: var(--font-bold);
  color: var(--color-lightblue);
}

.strong__3c-item h4 span {
  display: inline-block;
  padding-left: 2rem;
  color: var(--color-text);
}

.strong__3c-item p {
  padding-bottom: 1rem;
  font-weight: var(--font-medium);
}

@media (min-width: 768px) {
  .strong__contents {
    padding: 4.286vw 5.357vw;
  }
  .strong__3c-title {
    padding-bottom: 2.857vw;
  }
  .strong__3c-title h3 {
    text-align: left;
  }
  .strong__3c-title p {
    padding: 1rem 0 2rem;
  }
  .strong__3c-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3.929vw;
  }
  .strong__3c-item h4 {
    padding: 1.786vw 0 1.071vw;
    line-height: var(--lh-sm);
  }
  .strong__3c-item h4 span {
    padding-left: 2rem;
  }
  .strong__3c-item p {
    padding-bottom: 2.143vw;
  }
}
.link-grid {
  width: 100%;
  display: grid;
  grid-gap: 1px;
  gap: 1px;
  background-color: var(--color-white);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 950px) {
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.link-grid__item {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 1.4rem 4rem 1.4rem 2rem;
  position: relative;
  background: var(--color-lightblue) url(/yobiko/images/common/arrow_w.svg) no-repeat right 2.4rem center;
  background-size: 2.1rem 2.1rem;
}

.link-grid__icon {
  width: 5rem;
  height: 4.4rem;
  margin-right: 1.6rem;
  flex-shrink: 0;
}

.link-grid__text h3 {
  font-weight: var(--font-bold);
  padding-bottom: 1rem;
}

.link-grid__text p {
  margin: 0;
}

@media (min-width: 768px) {
  .link-grid__item {
    padding: 2.143vw 5vw 2.143vw 2.143vw;
    background: var(--color-lightblue) url(/yobiko/images/common/arrow_w.svg) no-repeat right 1.714vw center;
    background-size: 2.5vw 2.5vw;
    transition: opacity var(--normal-transition);
  }
  .link-grid__item:hover {
    opacity: 0.6;
  }
  .link-grid__icon {
    margin-right: 1.143vw;
  }
  .link-grid__text h3 {
    padding-bottom: 0.714vw;
  }
}
.link-grid__placeholder {
  background-color: var(--color-lightblue);
  pointer-events: none;
  visibility: visible;
  background-image: none;
}

@media (max-width: 699px) {
  .link-grid__placeholder {
    display: none;
  }
}
.data1 {
  padding-bottom: 1rem;
}

.data1__inner {
  padding: 6.649vw;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.data1 .graph {
  padding-top: 1.5rem;
}

.data1 .graph img + img {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .data1 {
    padding-bottom: 2rem;
  }
  .data1__inner {
    padding: 5vw;
  }
  .data1 .graph {
    padding-top: 1.786vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .data1 .graph img {
    width: 43.571vw;
  }
  .data1 .graph img + img {
    margin-top: 0;
  }
}
.data2 {
  padding-bottom: 1rem;
}

.data2 .card {
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.data2 .graph {
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .data2 {
    padding-bottom: 2rem;
  }
  .data2 .graph {
    padding-top: 1.5rem;
  }
}
.data-value {
  padding: 0;
  font-weight: var(--font-bold);
  line-height: var(--lh-md);
}

.data-value .man {
  color: var(--color-blue);
}

.data-value .woman {
  color: var(--color-pink);
}

.data-text {
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .data-text {
    padding-top: 2.143vw;
  }
}
.coverage__inner {
  padding: 6.649vw;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.coverage__text .title {
  font-weight: var(--font-bold);
  line-height: var(--lh-sm);
}

.coverage__text .title span.num {
  color: var(--color-lightblue);
}

.coverage__text .title .sml {
  padding-top: 1rem;
}

.coverage__text p {
  padding-top: 2rem;
}

.coverage__map {
  margin-top: 3rem;
  position: relative;
}

.coverage__map .map-text {
  width: 47.872vw;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .coverage__inner {
    padding: 4.286vw 5.357vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .coverage__text {
    width: 45.714vw;
  }
  .coverage__text .title .sml {
    padding-top: 1.071vw;
  }
  .coverage__text p {
    padding-top: 2.857vw;
  }
  .coverage__map {
    width: 37.857vw;
    margin-top: 0;
    position: relative;
  }
  .coverage .map-text {
    width: 19.286vw;
    height: auto;
    position: absolute;
    top: 3.571vw;
    left: 3.571vw;
  }
}
.style__item {
  padding: 6.649vw;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.style__item + .style__item {
  margin-top: 2rem;
}

.style__title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  color: var(--color-lightblue);
  line-height: var(--lh-md);
}

.style__icon {
  width: 6.4rem;
  height: 6rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

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

.style__text p {
  padding: 1.5rem 0;
  font-weight: var(--font-medium);
}

.style__text p span {
  font-size: 1.2rem;
}

.style__text ul li {
  padding-top: 0.5rem;
}

.style .recommend {
  padding: 2rem 0 1.5rem;
}

@media (min-width: 768px) {
  .style__item {
    padding: 2.857vw 3.571vw;
    position: relative;
  }
  .style__item .link {
    position: absolute;
    top: 3.571vw;
    right: 3.571vw;
  }
  .style__text p {
    padding: 1.5rem 0;
    font-weight: var(--font-medium);
  }
  .style__text p span {
    font-size: 1.2rem;
  }
  .style__text ul li {
    padding-top: 0.5rem;
  }
  .style .recommend {
    padding: 5rem 0 3rem;
  }
}
.flow2 .card {
  background-color: var(--color-bg-lightblue);
}

.flow2 .card h2 {
  padding-bottom: 1.5rem;
  font-weight: var(--font-bold);
}

.flow2 .link {
  margin-top: 0.5rem;
  text-align: right;
}

@media (min-width: 768px) {
  .flow2 .card {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .flow2 h2 {
    padding-bottom: 1.5rem;
  }
  .flow2 .link {
    margin-top: auto;
    text-align: right;
  }
}
.mainflow {
  padding: 2rem 4.255vw 0;
}

.mainflow + .mainflow {
  margin-top: 3rem;
}

.mainflow h2 {
  padding-bottom: 1.5rem;
  font-weight: var(--font-bold);
}

@media (min-width: 768px) {
  .mainflow {
    padding: 4.286vw 13.214vw 0;
  }
  .mainflow + .mainflow {
    margin-top: 3.571vw;
  }
  .mainflow h2 {
    padding-bottom: 1.5rem;
  }
}
.flow__banner {
  padding: 2rem 0 3rem;
}

.flow__banner.line {
  border-bottom: 1px solid #ccc;
}

@media (min-width: 768px) {
  .flow__banner {
    padding: 2.143vw 0 4.286vw;
  }
  .flow__banner a {
    display: block;
    width: 48.571vw;
    margin: 0 auto;
    transition: opacity var(--normal-transition);
  }
  .flow__banner a:hover {
    opacity: 0.6;
  }
}
.mainflow + .mainflow .flow__banner {
  padding-bottom: 0;
}

.what-kp__contents {
  padding: 6.649vw;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

.what-kp__title h2 {
  font-weight: var(--font-bold);
  text-align: center;
}

.what-kp__title h2 span {
  color: var(--color-lightblue);
}

.what-kp__contents p span {
  color: var(--color-pink);
}

.what-kp__btn-wrap {
  text-align: center;
}

.what-kp__img {
  display: block;
  max-width: 1004px;
  margin: 2rem auto 0;
}

.what-kp__btn {
  display: inline-block;
  border: 1px solid #000013;
  text-align: center;
  border-radius: 50px;
  padding: 0 50px;
  margin: 3.5rem auto 0;
  transition: var(--normal-transition);
  line-height: 3.5;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .what-kp__contents {
    padding: 4.286vw 5.357vw;
  }
  .what-kp__title h2 {
    text-align: left;
  }
  .what-kp__img {
    margin: 2.143vw auto 0;
  }
  .what-kp__btn {
    margin: 3.571vw auto 0;
    font-size: 1.8rem;
  }
  .what-kp__btn:hover {
    background-color: var(--color-lightblue);
    color: var(--color-white);
    border-color: var(--color-white);
  }
}
.process .card {
  background-color: var(--color-bg-gray);
  position: relative;
}

.process .card .step {
  padding-bottom: 1rem;
  color: var(--color-lightblue);
  font-weight: var(--font-medium);
  line-height: var(--lh-sm);
}

.process .card .ttl {
  font-weight: var(--font-bold);
  padding-bottom: 1rem;
}

.process .card .link {
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .process .card {
    position: relative;
  }
  .process .card .step {
    padding-bottom: 0.357vw;
  }
  .process .card .ttl {
    padding-bottom: 1.429vw;
  }
  .process .card .link {
    padding-top: 1.429vw;
  }
  .process .card .icon-right {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    z-index: 10;
  }
}
.merit .card {
  background-color: var(--color-bg-lightblue);
}

.merit .card .num {
  padding-bottom: 1rem;
  color: var(--color-lightblue);
  font-weight: var(--font-medium);
  line-height: var(--lh-sm);
}

.merit .card .num span {
  font-weight: var(--font-bold);
  padding-left: 0.5rem;
}

.merit .card .ttl {
  font-size: 1.8rem;
  font-weight: var(--font-bold);
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .merit .card .num {
    padding-bottom: 1.429vw;
    color: var(--color-lightblue);
    font-weight: var(--font-medium);
    line-height: var(--lh-sm);
  }
  .merit .card .num span {
    font-weight: var(--font-bold);
    padding-left: 0.5rem;
  }
  .merit .card .ttl {
    font-weight: var(--font-bold);
    padding-bottom: 1.429vw;
  }
}
.discovery .col-1 {
  background-color: var(--color-bg-gray);
}

.discovery .col-1 + .col-1 {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .discovery .col-1 + .col-1 {
    margin-top: 2rem;
  }
}
.test {
  gap: 1rem;
}

.test .card {
  background-color: var(--color-lightblue);
  border-radius: 8px;
  padding: 2rem;
  color: var(--color-white);
}

.test__title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  line-height: var(--lh-md);
  margin-bottom: 1rem;
}

.test__image {
  width: 5.6rem;
  height: 8.75rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .test {
    gap: 2.143vw;
  }
  .test .card {
    padding-bottom: 1.429vw;
  }
  .test__title {
    margin-bottom: 2rem;
  }
  .test__image {
    width: 8rem;
    height: 12.5rem;
    margin: 0 1.5rem;
    flex-shrink: 0;
  }
}
p.test-more {
  padding-top: 2rem;
  color: var(--color-lightblue);
  font-weight: var(--font-bold);
  text-align: center;
}

@media (min-width: 768px) {
  p.test-more {
    padding-top: 2.857vw;
  }
}
.lovestyle-img {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .lovestyle-img {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-top: 1.429vw;
  }
  .lovestyle-img .lovestyle1 {
    width: 22.857vw;
    height: auto;
  }
  .lovestyle-img .lovestyle2 {
    width: 50.357vw;
    height: auto;
  }
}
hr.border {
  margin: 0 4.255vw 0;
  border: 1px solid #D9D9D9;
  margin-top: 80px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  hr.border {
    margin: 0 13.214vw 0;
    margin-top: 100px;
    border: 1px solid #D9D9D9;
  }
}
.applicants__inner {
  background-color: var(--color-bg-lightblue);
  padding: 5.319vw;
  border-radius: 8px;
}
.applicants h3 {
  font-size: 18px;
  font-weight: bold;
  color: #2AB0C4;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .applicants__inner {
    background-color: var(--color-bg-lightblue);
    padding: 3.929vw 4.286vw;
    border-radius: 8px;
  }
  .applicants h3 {
    font-size: 26px;
    font-weight: bold;
    color: #2AB0C4;
    margin-bottom: 30px;
  }
}
.membership {
  padding: 2rem 4.255vw 0;
}
.membership__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.membership__list {
  border-radius: 5px;
  background: #2AB0C4;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.membership__note {
  font-size: 12px;
  font-weight: normal;
  margin-top: 10px;
}

.membership h2 {
  padding-bottom: 1.5rem;
  font-weight: var(--font-bold);
}

@media (min-width: 768px) {
  .membership {
    padding: 4.286vw 13.214vw 0;
  }
  .membership__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .membership__list {
    border-radius: 5px;
    background: #2AB0C4;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    font-size: 20px;
    font-weight: bold;
  }
  .membership__note {
    font-size: 14px;
    font-weight: normal;
    margin-top: 15px;
  }
}
.examination {
  padding: 2rem 4.255vw 0;
}
.examination__intro {
  font-size: 14px;
  margin-bottom: 20px;
}
.examination__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.examination__list {
  border-radius: 5px;
  background: #F5F5F5;
  color: #000;
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
  font-weight: bold;
}
.examination__note {
  font-size: 12px;
  font-weight: normal;
  margin-top: 10px;
}
.examination__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.examination__item {
  padding: 24px;
  border: 1px solid #2AB0C4;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.examination__item--icon {
  width: 92px;
}
.examination__item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.examination__item p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.examination h2 {
  padding-bottom: 1.5rem;
  font-weight: var(--font-bold);
}

@media (min-width: 768px) {
  .examination {
    padding: 4.286vw 13.214vw 0;
  }
  .examination__intro {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .examination__lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .examination__list {
    border-radius: 5px;
    background: #F5F5F5;
    color: #000;
    text-align: center;
    padding: 25px 0;
    font-size: 20px;
    font-weight: bold;
  }
  .examination__note {
    font-size: 14px;
    font-weight: normal;
    margin-top: 15px;
  }
  .examination__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 70px;
  }
  .examination__item {
    padding: 32px;
    border: 1px solid #2AB0C4;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .examination__item--icon {
    width: 92px;
  }
  .examination__item h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .examination__item p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
  }
}/*# sourceMappingURL=page.css.map */