@charset "UTF-8";
/* Base
----------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

:where(a) {
  text-underline-offset: 0.1ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: bottom;
}

:where(p, li, dt, dd, th, td, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(picture) {
  display: block;
}

:where(i, em) {
  font-style: normal;
}

/* Module
----------------------------------------------- */
.ul-disc > li {
  list-style: disc;
  margin-left: 1.5em;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 1.5em;
}

/* State
----------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media (max-width: 768px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline-block;
  }
  .hidden-tab {
    display: none;
  }
}
@media (max-width: 640px) {
  .hidden-sp {
    display: none;
  }
}
/* Utillity
----------------------------------------------- */
/* Text */
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img {
  backface-visibility: hidden;
  transition: all 0.2s;
}
@media (hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

*[class|=logo] a {
  text-decoration: none;
}
*[class|=logo] a:hover {
  text-decoration: none;
}
*[class|=logo] a:hover img {
  opacity: 1;
}

a.tel {
  text-decoration: none;
}
a.tel img {
  opacity: 1;
}

/* button */
.btn {
  display: inline-block;
  backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .btn:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .btn:hover img {
    opacity: 1;
  }
}

main {
  --color-dark-green: #265801;
  --color-green: #86CC15;
  --color-light-green: #E5FCCD;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 20px;
  overflow: hidden;
}
main p {
  line-height: 2;
}
main a {
  color: currentColor;
  text-decoration: underline;
}
main a:hover {
  text-decoration: none;
}
main .fcG {
  color: var(--color-dark-green);
}
@media (max-width: 768px) {
  main {
    font-size: 16px;
  }
}

/* main visual */
.hero {
  position: relative;
  background-color: var(--color-light-green);
}
@media (min-width: 641px) {
  .hero {
    margin-top: 100px;
  }
}
@media (max-width: 640px) {
  .hero {
    margin-top: 60px;
  }
}
.hero .mainimg img {
  width: 100%;
}
.hero .catch {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding-left: calc(50dvw - 545px);
  padding-right: calc(50dvw - 545px);
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: clamp(25px, max(25px, 3.75vw), 60px);
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1130px) {
  .hero .catch {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .hero .catch {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hero .scroll {
  position: absolute;
  left: 50%;
  bottom: -80px;
  margin-left: -320px;
}
@media (max-width: 768px) {
  .hero .scroll {
    display: none;
  }
}

/* 視能訓練士 */
.prthoptist {
  padding-left: calc(50dvw - 440px);
  padding-right: calc(50dvw - 440px);
  background-color: var(--color-light-green);
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .prthoptist {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .prthoptist {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .prthoptist {
    padding-block: 190px;
  }
}
@media (max-width: 768px) {
  .prthoptist {
    padding-block: 70px;
  }
}
@media (max-width: 768px) {
  .prthoptist h2 img {
    zoom: 0.47;
    -moz-transform: scale(0.47);
  }
}
.prthoptist .text {
  position: relative;
  padding-left: 180px;
  background: url(../img/txt-prthoptist.svg) no-repeat 30px center;
}
@media (min-width: 769px) {
  .prthoptist .text {
    margin-top: 50px;
    padding-block: 45px;
    min-height: 590px;
  }
}
@media (max-width: 768px) {
  .prthoptist .text {
    margin-top: 10px;
    padding-left: 60px;
    background-position: 10px center;
    background-size: 30px;
  }
}
.prthoptist .lead {
  margin-bottom: 0.8em;
  font-size: 45px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .prthoptist .lead {
    font-size: 25px;
  }
}
@media (min-width: 769px) {
  .prthoptist .image {
    position: absolute;
    bottom: 100%;
    right: -30px;
  }
}
@media (max-width: 768px) {
  .prthoptist .image {
    margin-top: 15px;
    text-align: center;
  }
  .prthoptist .image img {
    width: 230px;
  }
}

/* スライダー */
@media (min-width: 769px) {
  .loop-slider .slick-slide {
    padding: 0 25px 10px;
  }
  .loop-slider .slick-slide:nth-child(even) {
    padding-top: 185px;
  }
}
@media (max-width: 768px) {
  .loop-slider .slick-slide {
    padding: 0 10px 10px;
  }
  .loop-slider .slick-slide:nth-child(even) {
    padding-top: 70px;
  }
}
@media (min-width: 769px) {
  .loop-slider img {
    width: 692px;
    border-radius: 100px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 768px) {
  .loop-slider img {
    width: 286px;
    border-radius: 40px;
  }
}

.slide1 {
  background-color: var(--color-light-green);
}
@media (min-width: 769px) {
  .slide1 {
    padding-bottom: 190px;
  }
}
@media (max-width: 768px) {
  .slide1 {
    padding-bottom: 100px;
  }
}

/* what's? */
.whats {
  padding-left: calc(50dvw - 545px);
  padding-right: calc(50dvw - 545px);
  position: relative;
}
@media screen and (max-width: 1130px) {
  .whats {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .whats {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .whats {
    padding-top: 260px;
  }
}
@media (max-width: 768px) {
  .whats {
    padding-top: 100px;
  }
}
.whats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 170px;
  background: url(../img/wave-1.png) no-repeat;
  background-position: center top;
  background-size: max(1923px, 100%);
}
@media (max-width: 768px) {
  .whats::before {
    height: 50px;
    background-size: 110%;
  }
}
.whats h2 {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .whats h2 img {
    zoom: 0.47;
    -moz-transform: scale(0.47);
  }
}
@media (min-width: 769px) {
  .whats .text {
    position: relative;
    margin-top: 30px;
    padding-inline: 100px;
  }
}
@media (max-width: 1130px) {
  .whats .text {
    padding-inline: 50px;
  }
}
@media (max-width: 768px) {
  .whats .text {
    margin-top: 10px;
    padding-inline: 0;
  }
}
.whats .lead {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 1.2em;
  border-bottom: 3px solid currentColor;
  font-size: 50px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .whats .lead {
    font-size: 30px;
  }
}
@media (min-width: 769px) {
  .whats .image {
    position: absolute;
    bottom: calc(100% - 100px);
    right: 100px;
    width: min(437px, 42vw);
  }
}
@media (max-width: 1130px) {
  .whats .image {
    right: 50px;
  }
}
@media (max-width: 960px) {
  .whats .image {
    right: 20px;
    width: 270px;
  }
}
@media (max-width: 768px) {
  .whats .image {
    margin-top: 10px;
    width: inherit;
    text-align: center;
  }
  .whats .image img {
    width: 320px;
  }
}

/* 視能訓練士の主な仕事 */
.work {
  padding-left: calc(50dvw - 683px);
  padding-right: calc(50dvw - 683px);
}
@media screen and (max-width: 1406px) {
  .work {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .work {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .work {
    padding-top: 150px;
  }
}
@media (max-width: 768px) {
  .work {
    padding-top: 20px;
  }
}
.work h2 {
  margin: auto;
  width: fit-content;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3.5em;
  background-color: var(--color-green);
  border: 3px solid #000;
  border-radius: 50px;
  font-size: 30px;
  transform: translateY(50%);
}
@media (max-width: 768px) {
  .work h2 {
    height: 55px;
    padding: 0 2em;
    font-size: 20px;
  }
}
.work .content {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding-block: 135px 75px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 961px) {
  .work .content {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .work .content {
    grid-template-columns: inherit;
    padding-block: 60px;
    justify-items: center;
  }
}
.work .item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  font-size: 25px;
  text-align: center;
  line-height: 1.4;
}
.work .item p {
  font-size: 18px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .work .item {
    max-width: 273px;
  }
  .work .item h3 {
    margin-top: 5px;
    height: 2em;
    font-size: 17px;
  }
  .work .item p {
    font-size: 15px;
  }
}

/* Movie & Manga */
.movie {
  padding-left: calc(50dvw - 470px);
  padding-right: calc(50dvw - 470px);
  background-color: var(--color-light-green);
}
@media screen and (max-width: 980px) {
  .movie {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .movie {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .movie {
    margin-top: 150px;
    padding-block: 160px 110px;
  }
}
@media (max-width: 768px) {
  .movie {
    margin-top: 70px;
    padding-block: 60px;
  }
}
.movie .movie-list {
  display: grid;
}
@media (min-width: 769px) {
  .movie .movie-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .movie .movie-list {
    gap: 35px;
  }
}
.movie .movie-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: space-around;
  gap: 20px 25%;
}
.movie .movie-list .thumb {
  width: 100%;
}
@media (max-width: 768px) {
  .movie .movie-list .label {
    zoom: 0.7;
    -moz-transform: scale(0.7);
  }
}
@media (max-width: 768px) {
  .movie .movie-list a {
    font-size: 14px;
  }
}

/* Senpai Voice */
.voice {
  padding-left: calc(50dvw - 545px);
  padding-right: calc(50dvw - 545px);
  position: relative;
}
@media screen and (max-width: 1130px) {
  .voice {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .voice {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .voice {
    padding-block: 160px;
  }
}
@media (max-width: 768px) {
  .voice {
    padding-block: 80px;
  }
}
.voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 170px;
  background: url(../img/wave-1.png) no-repeat;
  background-position: center top;
  background-size: max(1923px, 100%);
  transform: scale(-1, 1);
}
@media (max-width: 768px) {
  .voice::before {
    height: 50px;
    background-size: 110%;
  }
}
.voice .top-txt {
  margin-bottom: 0.5em;
  text-align: center;
}
@media (max-width: 768px) {
  .voice .top-txt img {
    zoom: 0.47;
    -moz-transform: scale(0.47);
  }
}
.voice .lead {
  margin-bottom: 85px;
  font-size: 23px;
  text-align: center;
}
@media (max-width: 768px) {
  .voice .lead {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.voice .content {
  display: grid;
}
@media (min-width: 769px) {
  .voice .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 65px 60px;
  }
}
@media (max-width: 768px) {
  .voice .content {
    gap: 40px;
  }
}
.voice .item {
  border: 1px solid var(--color-dark-green);
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .voice .item {
    padding: 0 40px 40px;
  }
}
@media (max-width: 768px) {
  .voice .item {
    padding: 0 20px 20px;
  }
}
@media (min-width: 769px) {
  .voice .image {
    margin: 0 -40px;
  }
}
@media (max-width: 768px) {
  .voice .image {
    margin: 0 -20px;
  }
}
.voice .mes {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: -1em;
}
.voice .mes span {
  background-color: var(--color-green);
  border: 2px solid #000;
  border-radius: 15px;
  padding: 0 1em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .voice .mes {
    gap: 5px;
  }
}
.voice .head {
  border-bottom: 1px solid var(--color-dark-green);
  padding-block: 1.2em 0.6em;
  margin-bottom: 1em;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5em;
}
.voice .head .name {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 768px) {
  .voice .head .name {
    font-size: 14px;
  }
}
.voice .head em {
  font-weight: 500;
  font-size: 25px;
}
@media (max-width: 768px) {
  .voice .head em {
    font-size: 18px;
  }
}
.voice .head .school {
  font-size: 18px;
}
@media (max-width: 768px) {
  .voice .head .school {
    font-size: 14px;
  }
}
.voice .desc {
  font-size: 18px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .voice .desc {
    font-size: 14px;
  }
}

.button-request-1 {
  padding-left: calc(50dvw - 668px);
  padding-right: calc(50dvw - 668px);
}
@media screen and (max-width: 1376px) {
  .button-request-1 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .button-request-1 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .button-request-1 {
    margin-top: 180px;
  }
}
@media (max-width: 768px) {
  .button-request-1 {
    margin-top: 60px;
  }
}

/* 国家試験・就職について */
.exam {
  background-color: var(--color-light-green);
  border: 2px solid #000;
  border-radius: 70px;
  padding-left: calc(50dvw - 730px);
  padding-right: calc(50dvw - 730px);
}
@media screen and (max-width: 1500px) {
  .exam {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .exam {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .exam {
    margin: 130px 50px 0;
    padding-block: 180px;
  }
}
@media (max-width: 768px) {
  .exam {
    margin: 60px 20px 0;
    padding-block: 100px 20px;
    border-radius: 60px;
  }
}
@media (max-width: 640px) {
  .exam {
    padding-block: 70px 20px;
  }
}
.exam .container {
  background-color: #fff;
  border-radius: 200px;
  padding: 130px;
  padding-block: 130px;
  padding-inline: clamp(50px, 6vw, 130px);
  position: relative;
}
@media (max-width: 768px) {
  .exam .container {
    border-radius: 40px;
    padding-block: 80px 20px;
    padding-inline: 20px;
  }
}
@media (max-width: 640px) {
  .exam .container {
    padding-block: 60px 20px;
  }
}
.exam h2 {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 60px;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .exam h2 {
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .exam h2 {
    font-size: 27px;
  }
}
.exam .h3 {
  margin-bottom: 0.6em;
  color: var(--color-dark-green);
  font-size: 35px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 768px) {
  .exam .h3 {
    font-size: 20px;
  }
}
.exam-lead {
  display: grid;
}
@media (min-width: 769px) {
  .exam-lead {
    grid-template-columns: 1fr 44%;
    align-items: center;
    gap: 0 50px;
  }
  .exam-lead .image {
    grid-area: 1/1/2/2;
  }
}
@media (max-width: 768px) {
  .exam-lead {
    gap: 20px;
  }
}
.exam-pass {
  display: grid;
}
@media (min-width: 769px) {
  .exam-pass {
    margin-top: 80px;
    grid-template-columns: 37% 1fr;
    align-items: center;
    gap: 0 50px;
  }
}
@media (max-width: 768px) {
  .exam-pass {
    margin-top: 40px;
    gap: 30px;
  }
}
.exam-pass .rate {
  background-color: var(--color-light-green);
  display: grid;
  text-align: center;
}
.exam-pass .rate dt {
  margin-bottom: 0.5em;
  color: var(--color-dark-green);
  font-size: 30px;
}
.exam-pass .rate .year {
  display: block;
  margin-top: 0.5em;
}
@media (min-width: 769px) {
  .exam-pass .rate {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 30px;
    border-radius: 60px;
  }
  .exam-pass .rate dt {
    grid-column: 1/3;
  }
  .exam-pass .rate dd {
    padding-inline: 40px;
  }
  .exam-pass .rate dd + dd {
    border-left: 1px solid #000;
  }
}
@media (max-width: 768px) {
  .exam-pass .rate {
    padding-block: 30px 20px;
    border-radius: 40px;
    gap: 20px;
  }
  .exam-pass .rate dt {
    font-size: 18px;
    line-height: 1.4;
  }
  .exam-pass .rate dd {
    padding-inline: 20px;
  }
  .exam-pass .rate dd img {
    zoom: 0.6;
    -moz-transform: scale(0.6);
  }
}
.exam-boxes {
  display: grid;
}
@media (min-width: 1200px) {
  .exam-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) {
  .exam-boxes {
    margin-top: 170px;
    gap: 120px 80px;
  }
}
@media (max-width: 768px) {
  .exam-boxes {
    margin-top: 60px;
    gap: 80px;
  }
}
.exam-box {
  border: 2px solid #000;
  border-radius: 0 70px 70px 70px;
  padding: 50px;
  position: relative;
}
@media (max-width: 1200px) {
  .exam-box {
    border-radius: 0 50px 50px 50px;
  }
}
@media (max-width: 768px) {
  .exam-box {
    border-radius: 0 30px 30px 30px;
    padding: 25px 20px;
  }
}
.exam-box h3 {
  position: absolute;
  left: -2px;
  bottom: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 60px;
  padding-top: 15px;
  border: 2px solid #000;
  border-bottom: none;
  border-radius: 60px 60px 0 0;
  color: var(--color-dark-green);
  font-size: 30px;
  font-weight: 500;
  background-color: #fff;
}
.exam-box h3::after {
  position: absolute;
  bottom: -15px;
  content: "";
  background-color: #000;
  width: 300px;
  height: 1px;
}
.exam-box h3.narrow {
  width: 330px;
}
.exam-box h3.narrow::after {
  width: 220px;
}
@media (max-width: 768px) {
  .exam-box h3 {
    width: 180px;
    height: 40px;
    border-radius: 30px 30px 0 0;
    font-size: 20px;
  }
  .exam-box h3::after {
    bottom: -10px;
    width: 120px;
  }
  .exam-box h3.narrow {
    width: 180px;
  }
  .exam-box h3.narrow::after {
    width: 120px;
  }
}
.exam .h4 {
  margin-bottom: 0.5em;
  padding-inline: 1.2em;
  background-color: var(--color-light-green);
  color: var(--color-dark-green);
  font-size: 16px;
  text-align: center;
}
.exam .h4.year {
  margin-bottom: 1em;
  padding-block: 0.3em;
  border-radius: 60px;
  font-size: 22px;
}
@media (max-width: 768px) {
  .exam .h4 {
    font-size: 14px;
  }
  .exam .h4.year {
    padding-block: 0.2em;
    font-size: 17px;
  }
}
.exam .column-wrap {
  display: grid;
}
@media (min-width: 769px) {
  .exam .column-wrap {
    margin-left: -20px;
    margin-right: -20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .exam .column-wrap .column {
    padding-inline: 20px;
  }
  .exam .column-wrap .column + .column {
    border-left: 1px dashed #000;
  }
}
@media (max-width: 768px) {
  .exam .column-wrap .column + .column {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .exam .curriculum {
    grid-column: 1/3;
  }
}
.exam .curriculum dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.05em 1em;
}
.exam .curriculum dl + * {
  margin-top: 1.3em;
}
.exam .curriculum dl > * {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .exam .curriculum dl > * {
    font-size: 14px;
  }
}
.exam .curriculum dt {
  width: 100%;
  font-weight: bold;
  color: var(--color-dark-green);
}
.exam .graph {
  text-align: center;
}
@media (max-width: 768px) {
  .exam .graph {
    padding: 20px 20px 0;
  }
}
.exam .graph figcaption {
  margin-top: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 3em;
  font-size: 18px;
  line-height: 1.5;
}
.exam .graph figcaption small {
  font-size: 16px;
}
@media (max-width: 768px) {
  .exam .graph figcaption {
    font-size: 15px;
  }
  .exam .graph figcaption small {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .exam .employment {
    grid-column: 1/3;
  }
}
.exam .employment .h4 {
  text-align: left;
  font-size: 20px;
}
@media (max-width: 768px) {
  .exam .employment .h4 {
    font-size: 16px;
  }
}
.exam .employment ul + h4 {
  margin-top: 1em;
}
.exam .employment li {
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .exam .employment li {
    font-size: 14px;
  }
}

/* Message */
.message {
  padding-left: calc(50dvw - 668px);
  padding-right: calc(50dvw - 668px);
  background-color: var(--color-light-green);
  position: relative;
}
@media screen and (max-width: 1376px) {
  .message {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .message {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .message {
    margin-top: 270px;
    padding-bottom: 970px;
  }
}
@media (max-width: 768px) {
  .message {
    margin-top: 100px;
    padding-bottom: 360px;
  }
}
.message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 170px;
  background: url(../img/wave-2.png) no-repeat;
  background-position: center top;
  background-size: max(1923px, 100%);
}
@media (max-width: 768px) {
  .message::before {
    height: 50px;
    background-size: 110%;
  }
}
.message h2 {
  position: relative;
  z-index: 2;
  margin-top: -50px;
}
.message .lead {
  padding-bottom: 0.5em;
  font-size: 25px;
  text-align: center;
}
@media (max-width: 768px) {
  .message .lead {
    font-size: 17px;
  }
}
.message .box {
  background-color: #fff;
  display: grid;
}
@media (min-width: 769px) {
  .message .box {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .message .box {
    margin-top: 30px;
  }
}
@media (min-width: 961px) {
  .message .box {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 50px;
    padding: 60px 100px;
    border-radius: 100px;
  }
  .message .box:nth-of-type(odd) .image {
    grid-area: 1/1/3/2;
  }
  .message .box:nth-of-type(even) .image {
    grid-area: 1/2/3/3;
  }
}
@media (max-width: 1300px) {
  .message .box {
    padding: 60px 60px;
  }
}
@media (max-width: 960px) {
  .message .box {
    padding: 20px;
    border-radius: 30px;
  }
}
.message .head {
  display: grid;
  border-bottom: 1px solid #000;
}
@media (min-width: 769px) {
  .message .head {
    grid-template-columns: 47% 1fr;
    grid-template-columns: auto auto;
  }
}
@media (max-width: 768px) {
  .message .head {
    grid-template-columns: auto auto;
  }
}
.message .head > * {
  display: grid;
  align-content: center;
  padding: 0.4em;
  line-height: 1.5;
}
.message .head .place {
  justify-items: center;
  background-color: var(--color-green);
}
.message .head .place small {
  font-size: 16px;
}
@media (min-width: 769px) {
  .message .head .place {
    border-radius: 30px 30px 0 0;
  }
}
@media (max-width: 768px) {
  .message .head .place {
    border-radius: 15px 15px 0 0;
    font-size: 13px;
  }
  .message .head .place small {
    font-size: 12px;
  }
}
.message .head .name {
  justify-content: center;
  font-weight: 500;
}
.message .head .name em {
  font-size: 25px;
  font-weight: 500;
}
.message .head .name small {
  font-size: 18px;
}
@media (max-width: 768px) {
  .message .head .name {
    font-size: 14px;
  }
  .message .head .name em {
    font-size: 16px;
  }
  .message .head .name small {
    font-size: 12px;
  }
}
.message .txt1 {
  margin-top: 1.3em;
  color: var(--color-dark-green);
  font-size: 25px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .message .txt1 {
    font-size: 18px;
  }
}
.message .txt2 {
  margin-top: 1.5em;
  font-size: 18px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .message .txt2 {
    font-size: 15px;
  }
}
.message::after {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 780px;
  content: "";
  background: url(../img/img-message-btm.jpg) no-repeat top/cover;
  visibility: inherit;
}
@media (max-width: 768px) {
  .message::after {
    height: 300px;
  }
}
@media (min-width: 769px) {
  .message .button-request-2 {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .message .button-request-2 {
    margin-top: 40px;
  }
}

/* ISEN Q&A */
.faq {
  padding-left: calc(50dvw - 668px);
  padding-right: calc(50dvw - 668px);
  background: url(../img/bg-faq.png) center/41.5px;
  position: relative;
}
@media screen and (max-width: 1376px) {
  .faq {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .faq {
    padding-top: 180px;
    padding-bottom: 300px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 100px;
    background-size: 20px;
  }
}
.faq::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 170px;
  background: url(../img/wave-3.png) no-repeat;
  background-position: center bottom;
  background-size: max(1923px, 100%);
}
@media (max-width: 768px) {
  .faq::before {
    height: 50px;
    background-size: 110%;
  }
}
.faq .lead {
  font-size: 25px;
  text-align: center;
}
@media (max-width: 768px) {
  .faq .lead {
    font-size: 18px;
  }
}
.faq .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 961px) {
  .faq .container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 769px) {
  .faq .container {
    margin-top: 60px;
    gap: 60px 40px;
  }
}
@media (max-width: 768px) {
  .faq .container {
    margin-top: 30px;
    grid-template-columns: inherit;
    gap: 30px;
  }
}
.faq .item {
  border: 1px solid #000;
  border-radius: 30px;
  padding: 45px 35px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
}
.faq .item:nth-of-type(odd) {
  background-color: var(--color-light-green);
}
.faq .item:nth-of-type(even) {
  background-color: #fff;
}
@media (max-width: 768px) {
  .faq .item {
    border-radius: 20px;
    padding: 20px;
  }
}
.faq .name {
  margin-top: 1.2em;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}
.faq .name span {
  font-size: 20px;
}
.faq .name em {
  font-size: 25px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .faq .name {
    font-size: 14px;
  }
  .faq .name span {
    font-size: 15px;
  }
  .faq .name em {
    font-size: 20px;
  }
}
.faq .school {
  font-size: 18px;
}
@media (max-width: 768px) {
  .faq .school {
    font-size: 14px;
  }
}
.faq dl {
  margin-top: 1em;
}
.faq dl > * {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  font-size: 18px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .faq dl > * {
    grid-template-columns: 45px 1fr;
    font-size: 16px;
  }
}
.faq dl i {
  border-right: 1px dashed #000;
  text-align: center;
}
.faq dl i img {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .faq dl i img {
    zoom: 0.75;
    -moz-transform: scale(0.75);
    transform: translateY(-6px);
  }
}
.faq dt {
  padding-block: 0.5em;
  padding-right: 0.5em;
  margin-bottom: 1em;
  background-color: var(--color-green);
  border-radius: 25px;
  font-weight: 700;
}
.faq dd {
  font-size: 16px;
  font-weight: 500;
}
.faq dd b {
  display: block;
  margin-bottom: 0.6em;
  font-size: 18px;
}
@media (max-width: 768px) {
  .faq dd {
    font-size: 14px;
  }
  .faq dd b {
    font-size: 16px;
  }
}

/* 資料請求はこちらから */
.cta {
  padding-left: calc(50dvw - 668px);
  padding-right: calc(50dvw - 668px);
  background-color: var(--color-green);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1376px) {
  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .cta {
    padding-block: 200px 1000px;
  }
}
@media (max-width: 768px) {
  .cta {
    padding-block: 60px 370px;
  }
}
.cta .lead {
  margin-bottom: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.55;
}
.cta .lead::before, .cta .lead::after {
  content: "";
  width: 2px;
  height: 180px;
  background-color: #000;
}
.cta .lead::before {
  rotate: -45deg;
}
.cta .lead::after {
  rotate: 45deg;
}
@media (max-width: 768px) {
  .cta .lead {
    gap: 1.8em;
    font-size: 25px;
  }
  .cta .lead::before, .cta .lead::after {
    height: 100px;
  }
  .cta .lead::before {
    rotate: -35deg;
  }
  .cta .lead::after {
    rotate: 35deg;
  }
}
.cta::after {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 780px;
  content: "";
  background: url(../img/img-cta-btm.jpg) no-repeat top/cover;
  visibility: inherit;
}
@media (max-width: 768px) {
  .cta::after {
    height: 300px;
  }
}

/* parts */
.h2 {
  display: grid;
  gap: 0.3em;
  justify-items: center;
  margin-bottom: 1.3em;
  font-size: 35px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .h2 {
    font-size: 18px;
  }
  .h2 img {
    zoom: 0.47;
    -moz-transform: scale(0.47);
  }
}

/* intersection */
.intersection {
  opacity: 0;
  transition: opacity 1.6s 0.2s, translate 1s 0.2s;
}
.intersection.fadeup {
  translate: 0 15px;
}
.intersection.group {
  opacity: 1;
}
.intersection.group > * {
  opacity: 0;
  transition: opacity 1.6s 0.2s, translate 1s 0.2s;
}
.intersection.group > *:nth-child(1) {
  transition-delay: 0.2s;
}
.intersection.group > *:nth-child(2) {
  transition-delay: 0.4s;
}
.intersection.group > *:nth-child(3) {
  transition-delay: 0.6s;
}
.intersection.group > *:nth-child(4) {
  transition-delay: 0.8s;
}
.intersection.group > *:nth-child(5) {
  transition-delay: 1s;
}
.intersection.group > *:nth-child(6) {
  transition-delay: 1.2s;
}
.intersection.view {
  opacity: 1;
  translate: none;
}
.intersection.view.group > * {
  opacity: 1;
}

.button-request {
  margin: auto;
  max-width: 880px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/arrow-right.svg) no-repeat right 70px center;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 90px;
  text-decoration: none;
  transition: background-position 0.2s;
}
@media (hover: hover) {
  .button-request:hover {
    background-position: right 60px center;
  }
}
@media (min-width: 769px) {
  .button-request {
    height: 175px;
    padding: 0 180px;
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .button-request {
    height: 80px;
    font-size: 18px;
    background-size: 40px 40px;
    background-position: right 20px center;
  }
}

header {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
header #globalNavi {
  background: rgba(255, 255, 255, 0.8);
  padding: 180px 70px 20px 70px;
}
@media (max-width: 768px) {
  header #globalNavi {
    background: rgba(255, 255, 255, 0.9);
    padding: 100px 25px 20px 25px;
  }
}
header #globalNavi .inner {
  max-width: 520px;
  width: 90%;
  margin: 0 auto;
}
header #globalNavi .inner > p {
  max-width: 155px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  header #globalNavi .inner > p {
    max-width: 120px;
  }
}
header #globalNavi .inner > p img {
  width: 100%;
}
header #globalNavi ul {
  flex-direction: column;
  padding: 0;
}
header #globalNavi ul li {
  width: 100%;
}
header #globalNavi ul li a {
  color: #265801;
  font-size: 25px;
  font-weight: 500;
}
@media (max-width: 768px) {
  header #globalNavi ul li a {
    font-size: 18px;
  }
}

footer {
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 158px 0 80px;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 768px) {
  footer {
    padding: 30px 0 70px;
  }
}
footer .inner {
  max-width: 650px;
  width: 80%;
  margin: 0 auto;
}
footer .inner .footer-logo {
  text-align: center;
}
footer .inner .flex-BOx {
  display: flex;
  justify-content: space-around;
  margin: 75px auto 180px;
}
@media (max-width: 768px) {
  footer .inner .flex-BOx {
    flex-direction: column;
    margin: 20px auto 40px;
  }
}
footer .inner .flex-BOx ul {
  font-size: 16px;
  font-weight: 500;
}
footer .inner .flex-BOx ul li {
  line-height: 1.2;
}
footer .inner .flex-BOx ul li + li {
  margin-top: 10px;
}
footer .inner .flex-BOx .button-request {
  height: 77px;
  padding: 0px 100px;
  font-size: 20px;
  max-width: 880px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: url(../img/footer_arrow-right.svg) no-repeat right 35px center;
  background-color: #fff;
  border: 1px solid #000;
  background-size: 45px;
  border-radius: 75px;
  text-decoration: none;
  transition: background-position 0.2s;
  width: 283px;
  margin: 0;
  margin-right: -30px;
  text-align: left;
  color: #000;
  font-weight: 500;
  padding: 0 35px;
}
@media (max-width: 768px) {
  footer .inner .flex-BOx .button-request {
    margin: 30px auto 0;
    height: 60px;
    font-size: 18px;
    width: 250px;
  }
}
footer .inner .flex-BOx .button-request:hover {
  background: url(../img/footer_arrow-right.svg) no-repeat right 25px center;
}
footer .inner .copyRight {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */