@charset "UTF-8";
:root {
  --color-text: #595757;
  --color-black: #211815;
  --color-brandGreen: #71b4ba;
  --color-white: #fff;
  --color-lightBlue: #c0d9e9;
  --color-gray: #9fa0a0;
  --color-lightGray: #e6e6e6;
  --color-lightGreen: #a6edf8;
  --font-notoSans: "Noto Sans JP", sans-serif;
  --font-mPlus: "M PLUS Rounded 1c", sans-serif;
  --font-kosugiMaru: "Kosugi Maru", sans-serif;
}

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

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

span,
small,
strong,
em,
b,
i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

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

caption,
th {
  text-align: left;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-kosugiMaru);
  font-weight: normal;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-text);
}
@media (min-width: 768px) {
  body {
    font-size: 2rem;
  }
}

a {
  color: currentColor;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}
a:hover {
  opacity: 0.7;
}

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

button {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*----------------------------------------
	component
----------------------------------------*/
.title-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.title-block__label {
  flex-shrink: 0;
  position: relative;
  width: fit-content;
  min-width: 7.5rem;
  margin-left: 2rem;
  padding: 0.4rem 1em 0.4rem 2rem;
  border-radius: 100vmax;
  font-family: var(--font-mPlus);
  font-weight: bold;
  text-align: center;
  color: var(--color-white);
  background: var(--color-brandGreen);
}
.title-block__label::before {
  position: absolute;
  bottom: -0.3rem;
  left: -2rem;
  content: "";
  width: 3.8rem;
  height: 2.9rem;
  background: url("../images/logo-mark.webp") center/contain no-repeat;
}
.title-block__text {
  padding-left: 0.7rem;
  font-family: var(--font-mPlus);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.25;
  color: var(--color-brandGreen);
}
.title-block + * {
  margin-top: 2.2rem;
}

@media (min-width: 768px) {
  .title-block {
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
  }
  .title-block__label {
    min-width: 22.6rem;
    margin-left: 5.8rem;
    padding: 1.2rem 1em 1.2rem 5.8rem;
    font-size: 3.2rem;
  }
  .title-block__label::before {
    bottom: -0.8rem;
    left: -5.8rem;
    width: 11.2rem;
    height: 8.7rem;
  }
  .title-block__text {
    padding-left: 0;
    font-size: 3.2rem;
    line-height: 1.0625;
  }
  .title-block + * {
    margin-top: 3rem;
  }
}
.heading-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.heading-block__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-brandGreen);
}
.heading-block__label img {
  width: 3rem;
}
.heading-block__label._line::after {
  content: "";
  margin-left: 0.5rem;
  flex-grow: 1;
  height: 1px;
  background: var(--color-brandGreen);
}
.heading-block__text {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.3571428571;
}
.heading-block__title {
  font-size: 2.4rem;
  font-weight: normal;
  color: var(--color-brandGreen);
}

@media (min-width: 768px) {
  .heading-block {
    gap: 1.3rem;
  }
  .heading-block__label {
    gap: 0.8rem;
    font-size: 3.2rem;
    white-space: nowrap;
  }
  .heading-block__label img {
    width: 5.5rem;
  }
  .heading-block__label._line::after {
    margin-left: 1.3rem;
  }
  .heading-block__text {
    margin-top: 1.5rem;
    padding-left: 2.5rem;
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
  .heading-block__title {
    padding-left: 2.5rem;
    font-size: 4rem;
  }
}
.section-text {
  margin-top: 0.9rem;
  line-height: 2;
  text-align: justify;
}
@media (min-width: 768px) {
  .section-text {
    margin-top: 3.5rem;
    padding-left: 2.5rem;
    line-height: 1.9;
  }
}

/*----------------------------------------
	layout
----------------------------------------*/
.container {
  max-width: 110rem;
  margin-inline: auto;
  padding: 0 2rem;
  box-sizing: content-box;
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* ヘッダー
------------------------------------------------------ */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  padding: 2.1rem 0 0;
  background: var(--color-brandGreen);
}

.header__inner {
  display: grid;
  grid-template-areas: "logo contact" "nav nav";
  justify-content: space-between;
  align-items: center;
  gap: 1.3rem;
}

.header__logo {
  grid-area: logo;
  width: 12.7rem;
}

.header-nav {
  grid-area: nav;
  margin: 0 calc(50% - 50vw);
  background: var(--color-white);
}

.header-nav__list {
  display: flex;
  justify-content: center;
}

.header-nav__link {
  display: block;
  padding: 0.8rem 0.5em;
  font-family: var(--font-notoSans);
  font-weight: 600;
  color: var(--color-brandGreen);
}

.header__contact {
  grid-area: contact;
}

.header__button {
  display: inline-block;
  min-width: 8.6rem;
  padding: 0.7rem 1em;
  border-radius: 100vmax;
  font-family: var(--font-notoSans);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-brandGreen);
  background: var(--color-white);
}

@media (min-width: 768px) {
  .header {
    padding: 4.4rem 0 1.8rem;
  }
  .header__inner {
    grid-template-areas: "logo nav contact";
    grid-template-columns: auto 1fr auto;
    gap: 3.2rem;
  }
  .header__logo {
    width: 25.6rem;
  }
  .header-nav {
    margin: 0;
    background: none;
  }
  .header-nav__list {
    justify-content: flex-end;
    gap: 3.2rem;
  }
  .header-nav__link {
    display: block;
    padding: 0;
    font-size: 1.6rem;
    color: var(--color-white);
  }
  .header__button {
    min-width: 13rem;
    padding: 1.2rem 1em;
    font-size: 1.6rem;
  }
}
/* フッター
------------------------------------------------------ */
.footer {
  padding: 1.9rem 0 0.9rem;
  color: var(--color-white);
  background: var(--color-brandGreen);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.footer__logo img {
  width: 23.1rem;
  scale: 0.85;
}

.footer__button {
  display: inline-block;
  min-width: 13rem;
  padding: 1.3rem 1em;
  border-radius: 100vmax;
  font-family: var(--font-notoSans);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-brandGreen);
  background: var(--color-white);
}

.footer__info {
  width: 100%;
}

.footer__address {
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer__copyright {
  line-height: 1.8;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .footer {
    padding: 2.5rem 0 2.8rem;
  }
  .footer__inner {
    display: grid;
    grid-template-areas: "logo contact" "logo info";
    grid-template-columns: auto 1fr;
    justify-items: end;
    gap: 0.6rem 2.8rem;
  }
  .footer__logo {
    grid-area: logo;
  }
  .footer__logo img {
    width: 35rem;
    scale: 1;
  }
  .footer__contact {
    grid-area: contact;
  }
  .footer__button {
    display: inline-block;
    padding: 1.2rem 1em;
    font-size: 1.6rem;
  }
  .footer__info {
    grid-area: info;
    width: auto;
  }
  .footer__address {
    font-size: 1.6rem;
  }
  .footer__copyright {
    font-size: 1.4rem;
    text-align: right;
  }
}
/*----------------------------------------
	main contents
----------------------------------------*/
.main-contents {
  overflow-x: hidden;
}

.section {
  scroll-margin-top: 9.7rem;
  padding: 1.5rem 0;
}
.section:first-of-type {
  padding: 2rem 0 1.5rem;
}
@media (min-width: 768px) {
  .section {
    scroll-margin-top: 13.6rem;
    padding: 4rem 0 !important;
  }
}

/* トップ
------------------------------------------------------ */
.top {
  padding-top: 11.4rem;
  padding-bottom: 1.4rem;
  color: var(--color-white);
  background: var(--color-brandGreen);
}

.top__content {
  display: grid;
  gap: 2.2rem;
}

.top__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-mPlus);
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 1.275862069;
  white-space: nowrap;
}
.top__title > span:nth-of-type(3) {
  margin-top: 1.8rem;
}

.top__img {
  mix-blend-mode: multiply;
}
.top__img img {
  width: 33.1rem;
  scale: 0.9;
}

.top__text {
  font-size: 1.8rem;
  line-height: 1.6111111111;
}

@media (min-width: 768px) {
  .top {
    padding-top: 17.5rem;
    padding-bottom: 5.3rem;
    color: var(--color-white);
    background: var(--color-brandGreen);
  }
  .top__content {
    grid-template-areas: "title img" "text img";
    grid-template-columns: 1fr auto;
    gap: 0;
  }
  .top__title {
    grid-area: title;
    font-size: 5.6rem;
    line-height: 1.2142857143;
  }
  .top__title > span:nth-of-type(3) {
    margin-top: 3.9rem;
  }
  .top__img {
    grid-area: img;
  }
  .top__img img {
    width: 52.2rem;
    scale: 1;
  }
  .top__text {
    grid-area: text;
    margin: auto 0;
    font-size: 2.7rem;
    line-height: 1.7037037037;
  }
}
/* サービス導入校（トップ）
------------------------------------------------------ */
.top-school {
  margin-inline: calc(50% - 50vw);
}

.top-school__head {
  background: var(--color-lightGray);
}

.top-school__title {
  width: 27rem;
  height: 5.4rem;
  display: grid;
  place-content: center;
  margin: 0 auto;
  font-size: 1.6rem;
  background: var(--color-lightBlue);
}

.top-school__body {
  overflow-x: hidden;
  padding: 0.8rem 0;
}

.top-school__list {
  display: flex;
  align-items: center;
  gap: 1em;
}
.top-school__list dt {
  flex-shrink: 0;
  margin-left: 1em;
  padding: 0.4rem 0.9rem;
  background: var(--color-lightBlue);
  border: 1px solid var(--color-brandGreen);
}
.top-school__list dd {
  flex-shrink: 0;
}
.top-school__list + .top-school__list {
  margin-top: 1.5rem;
}

.top-school__wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1em;
}
.top-school__wrap:first-child {
  animation: loop 800s -400s linear infinite;
}
.top-school__wrap:last-child {
  animation: loop2 800s linear infinite;
}

@keyframes loop {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media (min-width: 768px) {
  .top-school {
    display: flex;
    align-items: center;
    padding: 0 calc(50vw - 50%);
    background: var(--color-lightGray);
  }
  .top-school__head {
    flex-shrink: 0;
  }
  .top-school__title {
    width: 13.3rem;
    height: 14.5rem;
    font-size: 2.4rem;
    line-height: 1.4583333333;
    text-align: center;
  }
  .top-school__body {
    padding: 0;
    margin-left: 1.2rem;
  }
  .top-school__list dt {
    padding: 0.7rem 1.4rem;
    font-size: 1.6rem;
  }
  .top-school__list dd {
    font-size: 1.6rem;
  }
  .top-school__list + .top-school__list {
    margin-top: 2.2rem;
  }
  .top-school__wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1em;
  }
  .top-school__wrap:first-child {
    animation: loop 800s -400s linear infinite;
  }
  .top-school__wrap:last-child {
    animation: loop2 800s linear infinite;
  }
}
/* K&Eホールディングスについて
------------------------------------------------------ */
.about {
  display: flex;
  flex-direction: column;
}

.about-content {
  display: contents;
}

.about-profile {
  order: 1;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.about-profile__img {
  position: relative;
  z-index: 1;
  width: 6.2rem;
  height: 6.2rem;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--color-brandGreen);
}
.about-profile__img img {
  width: 4.5rem;
}

.about-profile__text {
  margin-left: -4.5rem;
  padding-left: 4.5rem;
  width: 18.8rem;
  height: 4.5rem;
  display: grid;
  place-content: center;
  font-family: var(--font-mPlus);
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  color: var(--color-brandGreen);
  border: 1px solid var(--color-lightBlue);
}
.about-profile__text span {
  font-size: 1.2rem;
  color: var(--color-text);
}

.about-profile-kai {
  order: 1;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.about-profile__img {
  position: relative;
  z-index: 1;
  width: 6.2rem;
  height: 6.2rem;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--color-brandGreen);
}
.about-profile__img img {
  width: 4.5rem;
}

.about-profile__text-kai {
  margin-left: -4.5rem;
  padding-left: 4.5rem;
  width: 22rem;
  height: 5.5rem;
  display: grid;
  place-content: center;
  font-family: var(--font-mPlus);
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  border: 1px solid var(--color-lightBlue);
  display: flex;
  flex-wrap: wrap;
}
.about-profile__text-kai span:nth-of-type(1) {
  font-size: 0.9rem;
  color: var(--color-brandGreen);
}
.about-profile__text-kai span:nth-of-type(2) {
  font-size: 1.4rem;
}
.about-profile__text-kai span:nth-of-type(3) {
  font-size: 0.9rem;
  margin-top: 0.25rem;
  color: #fff100;
  padding: 0.15rem 1.25rem;
  background: #595757;
  border-radius: 9999px;
}

.about-list {
  position: relative;
  width: 30rem;
  height: 31rem;
  margin: 1.3rem auto 2.1rem;
  background: url("../images/about-list-bg.webp") center/contain no-repeat;
}

.about-list__title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-family: var(--font-mPlus);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.25;
  text-align: center;
  color: var(--color-white);
}

.about-list__item {
  position: absolute;
  display: grid;
  place-content: center;
  width: 14.5rem;
  height: 15.2rem;
}
.about-list__item:nth-of-type(1) {
  top: 0;
  left: 0;
  padding-top: 0.7rem;
}
.about-list__item:nth-of-type(2) {
  top: 0;
  right: 0;
  padding-top: 0.7rem;
}
.about-list__item:nth-of-type(3) {
  bottom: 0;
  left: 0;
  padding-bottom: 0.7rem;
}
.about-list__item:nth-of-type(4) {
  bottom: 0;
  right: 0;
  padding-bottom: 0.7rem;
}
.about-list__item h4 {
  font-family: var(--font-mPlus);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1666666667;
  text-align: center;
  color: var(--color-brandGreen);
}
.about-list__item p {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  line-height: 1.375;
  text-align: center;
}

@media (min-width: 768px) {
  .about {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
  .about-content {
    display: block;
  }
  .about-profile {
    margin: 3.3rem 0 0;
  }
  .about-profile__img {
    width: 15.5rem;
    height: 15.5rem;
  }
  .about-profile__img img {
    width: 11.3rem;
  }
  .about-profile__text {
    margin-left: -11.8rem;
    width: 49rem;
    height: 11.5rem;
    padding-left: 11.8rem;
    font-size: 2rem;
    line-height: 1.2;
  }
  .about-profile__text span {
    font-size: 2.6rem;
  }
  .about-profile-kai {
    margin: 3.3rem 0 0;
  }
  .about-profile__text-kai {
    margin-left: -11.8rem;
    width: 49rem;
    height: 11.5rem;
    padding-left: 11.8rem;
    font-size: 2rem;
    line-height: 1.2;
  }
  .about-profile__text-kai span:nth-of-type(1) {
    font-size: 1.8rem;
    color: var(--color-brandGreen);
  }
  .about-profile__text-kai span:nth-of-type(2) {
    font-size: 2.8rem;
    margin-top: 0.15rem;
  }
  .about-profile__text-kai span:nth-of-type(3) {
    font-size: 1.6rem;
    margin-top: 0.5rem;
    padding: 0.25rem 2.5rem;
    font-size: 1.6rem;
  }
  .about-list {
    flex-shrink: 0;
    width: 52rem;
    height: 53.5rem;
    margin: 0;
  }
  .about-list__title {
    font-size: 2.8rem;
    line-height: 1.2142857143;
  }
  .about-list__item {
    width: 25rem;
    height: 26.2rem;
  }
  .about-list__item:nth-of-type(1) {
    padding-top: 1.2rem;
  }
  .about-list__item:nth-of-type(2) {
    padding-top: 1.2rem;
  }
  .about-list__item:nth-of-type(3) {
    padding-bottom: 1.2rem;
  }
  .about-list__item:nth-of-type(4) {
    padding-bottom: 1.2rem;
  }
  .about-list__item h4 {
    font-size: 2rem;
    line-height: 1.25;
  }
  .about-list__item p {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.3571428571;
  }
}
/* サービス紹介
------------------------------------------------------ */
.service {
  display: grid;
  gap: 0.8rem;
}

.service-list {
  position: relative;
  width: 33.4rem;
  height: 22.8rem;
  background: url("../images/service-list-bg_sp.webp") center/contain no-repeat;
}

.service-list__item {
  position: absolute;
  width: 11.8rem;
  height: 13.2rem;
  display: grid;
  place-content: center;
  padding-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}
.service-list__item:nth-of-type(1) {
  top: 0;
  left: 0;
}
.service-list__item:nth-of-type(2) {
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.service-list__item:nth-of-type(3) {
  top: 0;
  right: 0;
}
.service-list__item:nth-of-type(4) {
  bottom: 0;
  left: 16.6%;
}
.service-list__item:nth-of-type(5) {
  bottom: 0;
  right: 16.6%;
}

.service-profile {
  position: relative;
  margin-top: 0.6rem;
  margin-bottom: 1.8rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: var(--color-white);
  background: var(--color-brandGreen);
}

.service-profile__label {
  line-height: 1.5;
}

.service-profile__name {
  font-size: 1rem;
  line-height: 1.9166666667;
}
.service-profile__name span {
  font-size: 1.6rem;
  line-height: 1.4375;
}

.service-profile__career {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 2.5em;
  line-height: 1.6;
}
.service-profile__career ul {
  list-style-type: disc;
}

.service-profile__text {
  font-size: 1.2rem;
  line-height: 1.5833333333;
  text-align: justify;
}

.service-profile__img {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  width: 9.5rem;
}

.service-partner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-brandGreen);
}

.service-partner__content {
  display: contents;
}

.service-partner__title {
  order: -1;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  text-align: center;
  color: var(--color-brandGreen);
}

.service-partner__logo {
  text-align: center;
}
.service-partner__logo img {
  width: 19rem;
}

.service-partner__text {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  text-align: center;
}

@media (min-width: 768px) {
  .service {
    grid-template-areas: "content img" "list list";
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 3.7rem;
  }
  .service__content .section-text {
    margin-top: 2.2rem;
    line-height: 1.65;
  }
  .service__img {
    grid-area: img;
    width: 65rem;
    margin-right: -15rem;
  }
  .service-list {
    grid-area: list;
    position: relative;
    width: 100%;
    height: 26.4rem;
    background-image: url("../images/service-list-bg_pc.webp");
  }
  .service-list__item {
    width: 23.6rem;
    height: 26.4rem;
    padding-top: 2.8rem;
    font-size: 2.1rem;
    line-height: 1.1904761905;
  }
  .service-list__item:nth-of-type(1) {
    top: 0;
    left: 0;
  }
  .service-list__item:nth-of-type(2) {
    top: 0;
    left: 19.5%;
    translate: 0 0;
  }
  .service-list__item:nth-of-type(3) {
    top: 0;
    right: initial;
    left: 50%;
    translate: -50% 0;
  }
  .service-list__item:nth-of-type(4) {
    bottom: 0;
    left: 59%;
  }
  .service-list__item:nth-of-type(5) {
    bottom: 0;
    right: 0;
  }
  .service-profile {
    margin-top: 4.8rem;
    margin-bottom: 4rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    display: grid;
    grid-template-areas: "head career" "body body";
    grid-template-columns: auto 1fr;
  }
  .service-profile__head {
    grid-area: head;
    padding-left: 2rem;
  }
  .service-profile__label {
    font-size: 1.6rem;
  }
  .service-profile__name {
    font-size: 2.4rem;
    line-height: 1.8333333333;
  }
  .service-profile__name span {
    font-size: 3.2rem;
    line-height: 1.375;
  }
  .service-profile__career {
    grid-area: career;
    margin: 0 0 0 3rem;
    padding: 0 0 0 3rem;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid;
    font-size: 1.6rem;
    line-height: 1.3125;
  }
  .service-profile__body {
    grid-area: body;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    padding-left: 2rem;
    border-top: 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .service-profile__text {
    max-width: 71rem;
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
  .service-profile__img {
    position: static;
    top: 1.2rem;
    right: 2rem;
    flex-shrink: 0;
    width: 26.5rem;
  }
  .service-partner {
    flex-direction: row;
    align-items: center;
    margin-top: 2.6rem;
    padding: 1.6rem 4.6rem 1.6rem 5.6rem;
  }
  .service-partner__content {
    display: block;
    margin-left: 7.2rem;
    padding: 1.8rem 0 1.8rem 3.5rem;
    border-left: 1px solid;
  }
  .service-partner__title {
    grid-area: title;
    font-size: 2.8rem;
    text-align: left;
  }
  .service-partner__logo {
    grid-area: logo;
    text-align: left;
  }
  .service-partner__logo img {
    width: 28.6rem;
  }
  .service-partner__text {
    grid-area: text;
    margin-top: 0.4rem;
    font-size: 2.4rem;
    text-align: left;
  }
}
/* 事例
------------------------------------------------------ */
.case {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 1.2rem;
  padding-bottom: 0.4rem;
  background: var(--color-lightGray);
}
.case + .case {
  margin-top: 0.9rem;
}

.case__service {
  padding: 0.5rem 1em;
  border-radius: 100vmax;
  font-size: 1.4rem;
  text-align: center;
  color: var(--color-white);
  background: var(--color-brandGreen);
}

.case__school {
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  color: var(--color-brandGreen);
}

.case__title {
  margin-top: 0.6rem;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

.case__text {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  text-align: justify;
}

@media (min-width: 768px) {
  .case {
    flex-direction: row-reverse;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .case + .case {
    margin-top: 3rem;
  }
  .case__content {
    padding: 1.5rem 0;
  }
  .case__service {
    margin-left: -2.5rem;
    padding: 1.2rem 1em 1.2rem 4.7rem;
    font-size: 3.2rem;
    text-align: left;
  }
  .case__school {
    margin-top: 1.1rem;
    margin-left: 2.2rem;
    font-size: 3rem;
    text-align: left;
  }
  .case__title {
    margin-top: 1rem;
    padding-left: 2.2rem;
    font-size: 2.4rem;
    text-align: left;
  }
  .case__text {
    margin-top: 1.7rem;
    padding-left: 2.2rem;
    font-size: 1.4rem;
    line-height: 1.6428571429;
  }
  .case__img {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 46.5rem;
  }
}
/* 体験者の声
------------------------------------------------------ */
.voice-list {
  display: grid;
  gap: 0.4rem;
}

.voice {
  padding: 0.7rem 1rem 1rem;
  border: 1px solid var(--color-brandGreen);
}

.voice__head {
  display: flex;
  align-items: center;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--color-brandGreen);
}

.voice__label {
  width: 9.7rem;
  padding: 0.6rem 1em;
  border-radius: 100vmax;
  font-size: 1.2rem;
  text-align: center;
  color: var(--color-white);
  background: var(--color-brandGreen);
}

.voice__meta {
  flex-grow: 1;
}

.voice__service {
  font-size: 1.4rem;
  text-align: center;
  color: var(--color-brandGreen);
}

.voice__student {
  margin-top: 0.4rem;
  text-align: center;
}

.voice__title {
  margin: 1rem 0 0.7rem;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

.voice__text {
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(to top, var(--color-gray) 1px, transparent 1px);
  background-size: 0.4rem 100%, 100% 19px;
  padding-bottom: 1px;
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  text-align: justify;
}

@media (min-width: 768px) {
  .voice-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
  }
  .voice {
    padding: 1rem 2rem 1.8rem;
    border-width: 3px;
  }
  .voice__head {
    flex-direction: column;
    padding-bottom: 1.5rem;
    border-width: 3px;
  }
  .voice__label {
    width: 15rem;
    padding: 0.8rem 1em;
    font-size: 2rem;
  }
  .voice__service {
    margin-top: 1rem;
    font-size: 2.4rem;
    white-space: nowrap;
  }
  .voice__student {
    margin-top: 1.3rem;
    font-size: 1.8rem;
  }
  .voice__title {
    margin: 1.3rem 0 0.7rem;
    font-size: 2rem;
    line-height: 1.25;
  }
  .voice__text {
    background-size: 0.4rem 100%, 100% 1.8125em;
    font-size: 1.6rem;
    line-height: 1.8125;
  }
}
/* 流れ
------------------------------------------------------ */
.flow {
  margin-top: 1rem;
}

.flow-list {
  margin-top: 1.5rem;
  position: relative;
}
.flow-list::after {
  position: absolute;
  top: 0.9rem;
  left: 5rem;
  content: "";
  width: 2.5rem;
  height: 17rem;
  background: url("../images/flow-arrow.webp") center/contain no-repeat;
}

.flow-list__item {
  padding: 0.7rem 1em 0.7rem 8.5rem;
  border-radius: 100vmax;
  font-size: 1.2rem;
  color: var(--color-brandGreen);
  background: var(--color-lightGray);
}
.flow-list__item + .flow-list__item {
  margin-top: 1.5rem;
}

.flow__img {
  margin-top: 1.3rem;
}

@media (min-width: 768px) {
  .flow {
    display: flex;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 4.7rem;
  }
  .flow__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .flow__content .section-text {
    margin-top: 0;
    line-height: 1.7;
  }
  .flow-list {
    padding-left: 2.5rem;
  }
  .flow-list::after {
    top: 1.1rem;
    left: 5.6rem;
    width: 3rem;
    height: 22.5rem;
  }
  .flow-list__item {
    padding: 0.6rem 1em;
    font-size: 2.4rem;
    text-align: center;
  }
  .flow-list__item + .flow-list__item {
    margin-top: 1.7rem;
  }
  .flow__img {
    margin-top: 0;
    margin-right: -15rem;
    flex-shrink: 0;
    width: 65rem;
  }
}
/* フッターバナー
------------------------------------------------------ */
.footer-baner {
  position: relative;
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  padding-top: 1.2rem;
  padding-bottom: 0.1rem;
  color: var(--color-white);
  padding-left: 0;
  padding-right: 0;
  background: var(--color-brandGreen);
}

.footer-baner-area {
  position: relative;
}

.footer-baner__img-area1 {
  margin-top: 2.25rem;
}

.footer-baner__img-area1__lists {
  display: flex;
}

.footer-baner__img-area2__lists {
  display: flex;
}

.footer-baner__text-area {
  display: flex;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
}

.footer-baner__text01 {
  font-size: 1.4rem;
  text-align: center;
}

.footer-baner__text02 {
  font-size: 2.4rem;
  text-align: center;
}

.footer-baner__link {
  font-size: 1.8rem;
  color: #fff100;
  background-color: #595757;
  text-align: center;
  margin-top: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 4rem;
}

.footer-cover-link {
  inset: 0;
  position: absolute;
  display: block;
  margin: -25px 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0);
}
.footer-cover-link :hover {
  background: white;
}

@media (min-width: 768px) {
  .footer-baner {
    position: relative;
    margin-top: 0rem;
    margin-bottom: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
    color: var(--color-white);
    padding-left: 0;
    padding-right: 0;
    background: var(--color-brandGreen);
  }
  .footer-baner-area {
    display: flex;
  }
  .footer-baner__img-area1 {
    order: 1;
    margin-top: 0;
  }
  .footer-baner__img-area1__lists {
    display: flex;
  }
  .footer-baner__img-area2 {
    order: 3;
  }
  .footer-baner__img-area2__lists {
    display: flex;
  }
  .footer-baner__text-area {
    order: 2;
    align-content: center;
    position: static;
    display: flex;
    margin-top: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .footer-baner__text01 {
    font-size: 1.8rem;
    text-align: center;
  }
  .footer-baner__text02 {
    font-size: 2.8rem;
    text-align: center;
  }
  .footer-baner__link {
    font-size: 2.2rem;
    color: #fff100;
    background-color: #595757;
    text-align: center;
    margin-top: 0.5rem;
    border-radius: 9999px;
    padding: 0.75rem 4rem;
  }
  .footer-cover-link {
    margin: 0;
  }
  .footer-cover-link:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}
/*----------------------------------------
	company（会社案内ページ）
----------------------------------------*/
.page-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--color-brandGreen);
}
.page-heading::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--color-brandGreen);
}
@media (min-width: 768px) {
  .page-heading {
    font-size: 3.2rem;
    gap: 2.3rem;
  }
}

/* ページヘッダー
------------------------------------------------------ */
.page-header {
  margin: 0 calc(50% - 50vw);
  padding: 10rem 0 0.5rem;
  background: var(--color-brandGreen);
}

@media (min-width: 768px) {
  .page-header {
    padding: 13.6rem 0 1.5rem;
  }
}
/* 固定ボタン
------------------------------------------------------ */
.contact-button {
  position: fixed;
  bottom: -20px;
  right: -5px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  pointer-events: none; /* 非表示中はクリックできないように */
}
.contact-button a {
  position: relative;
  line-height: 1.25;
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
  font-size: 1.2rem;
  height: 10rem;
  width: 10rem;
  text-stroke: 2px #ffffff;
  -webkit-text-stroke: 2px #ffffff;
  paint-order: stroke;
  text-align: center;
  align-content: center;
  gap: 4px;
}
.contact-button a::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  opacity: 0.75;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/cta-bg.webp);
}

@media (min-width: 768px) {
  .contact-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
  }
  .contact-button a {
    font-size: 1.6rem;
    height: 15rem;
    width: 15rem;
  }
}
.contact-button.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 代表挨拶
------------------------------------------------------ */
.message__title, .vision__title {
  margin: 1.5rem 0 1.3rem;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

.message__text, .vision__text {
  line-height: 1.8;
  text-align: justify;
}

.message__profile {
  margin-top: -1rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.message__profile img {
  width: 8.4rem;
}

@media (min-width: 768px) {
  .message, .vision {
    max-width: 87rem;
    margin: 0 auto;
  }
  .message__title, .vision__title {
    margin: 4.2rem 0;
    font-size: 4.8rem;
  }
  .message__text, .vision__text {
    font-size: 2.4rem;
    line-height: 1.625;
    letter-spacing: -0.05em;
  }
  .message__profile {
    flex-direction: column-reverse;
    gap: 1.5rem;
    font-size: 2.4rem;
  }
  .message__profile img {
    width: 15.9rem;
  }
}
/* ビジョン
------------------------------------------------------ */
.vision {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .vision {
    margin-bottom: 2rem;
  }
}
/* 会社概要
------------------------------------------------------ */
.overview__data {
  width: fit-content;
  margin: 0 auto;
  line-height: 1.8;
}
.overview__data dt {
  clear: left;
  float: left;
  width: 6em;
}
.overview__data dd {
  overflow: hidden;
}

.overview__logo {
  margin-top: 2rem;
  text-align: center;
}
.overview__logo img {
  width: 9.5rem;
}

.overview-school {
  margin: 1.4rem auto 1.6rem;
  padding: 1rem 0.5rem 1rem 1rem;
  background: var(--color-lightGray);
  border: 1px solid var(--color-brandGreen);
}

.overview-school__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-brandGreen);
}
.overview-school__title::before {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--color-brandGreen);
}

.overview-school__data {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  line-height: 1.5;
}
.overview-school__data dt {
  clear: left;
  float: left;
  width: 6em;
}
.overview-school__data dd {
  overflow: hidden;
}

@media (min-width: 768px) {
  .overview {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4.8rem;
  }
  .overview__data {
    width: auto;
    margin: 0;
    font-size: 2.4rem;
    line-height: 1.875;
  }
  .overview__logo {
    margin-top: 0;
  }
  .overview__logo img {
    width: 29.6rem;
  }
  .overview-school {
    margin: 8rem auto 5.2rem;
    padding: 2.5rem 3.8rem 2.5rem 5rem;
  }
  .overview-school__title {
    margin-left: -3.2rem;
    font-size: 1.8rem;
    gap: 1rem;
  }
  .overview-school__title::before {
    width: 2.2rem;
    height: 2.2rem;
  }
  .overview-school__data {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .overview-school__data dt {
    clear: left;
    float: left;
    width: 6em;
  }
  .overview-school__data dd {
    overflow: hidden;
  }
}
/* メンバー
------------------------------------------------------ */
.member-text {
  margin: 1.4rem 0 1.1rem;
  line-height: 1.8;
}

.member-list {
  margin-bottom: 1.1rem 0 0.5rem;
  display: grid;
  gap: 1.6rem;
}

.member {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
}

.member__name {
  padding-left: 0.5rem;
  font-family: var(--font-mPlus);
}
.member__name p {
  line-height: 1.9;
}
.member__name h3 {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.3571428571;
}

.member__business {
  margin: 0.4rem 0 0.6rem;
  padding: 0.5rem;
  line-height: 1.5;
  color: var(--color-white);
  background: var(--color-text);
}

.member__text {
  padding: 0 0.5rem;
  font-size: 10px;
  line-height: 2.1;
  letter-spacing: -0.05em;
  text-align: justify;
  background-image: linear-gradient(to top, var(--color-lightGray) 1px, transparent 1px);
  background-size: 100% 21px;
}

@media (min-width: 768px) {
  .member-text {
    margin: 2.5rem 0 4.8rem;
    font-size: 2.4rem;
    line-height: 1.75;
  }
  .member-list {
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 2rem;
  }
  .member__name {
    padding-left: 0.8rem;
  }
  .member__name p {
    font-size: 1.6rem;
    line-height: 2.0625;
  }
  .member__name h3 {
    font-size: 2.4rem;
    line-height: 1.375;
  }
  .member__business {
    margin: 0.7rem 0 1rem;
    padding: 0.8rem;
    font-size: 1.6rem;
  }
  .member__text {
    padding: 0 0.8rem;
    font-size: 1.6rem;
    line-height: 2.125;
    background-size: 100% 2.125em;
  }
}
/*----------------------------------------
	utilities
----------------------------------------*/
.full-container {
  margin-inline: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.full-container-footer-baner {
  margin-inline: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .full-container-footer-baner {
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
}

.pc-hidden {
  display: initial;
}
@media (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

.sp-hidden {
  display: none;
}
@media (min-width: 768px) {
  .sp-hidden {
    display: initial;
  }
}

/*----------------------------------------
	Animation
----------------------------------------*/
[data-scroll-anima] {
  opacity: 0;
}

.slideIn {
  opacity: 1;
}
.slideIn > .slideIn-wrap {
  display: inline-block;
  overflow: hidden;
}
.slideIn > .slideIn-wrap > span {
  display: inline-block;
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
  transform: translateY(100%);
}
.slideIn[data-scroll-anima=true] > .slideIn-wrap > span {
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */