@charset "utf-8";

/* =============================================
reset
============================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: 0;
  padding: 0;
  appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  outline: none;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

/* =============================================
トップページ
============================================= */

.top__section {
  padding: 100px 0;
}

.top__h2-wrapper {
  width: 76vw;
  margin: 0 auto;
}

.top__h2 {
  font-size: 31px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 50px;
  padding: 0 10px;
  position: relative;
  width: fit-content;
  line-height: 1.4;
}

.bg--blue .top__h2 {
  color: #fff;
}

.bg--blue .lead-text {
  color: #fff;
}

.top__h2::before,
.top__h2::after {
  top: 50%;
  translate: 0 -50%;
  width: 50px;
  height: 4px;
  content: "";
  background-color: #33b1cd;
  background-image: none;
  position: absolute;
}

.bg--blue .top__h2::before,
.bg--blue .top__h2::after {
  background-color: #fff;
}

.top__h2::before {
  transform: rotate(65deg);
  left: -60px;
}

.top__h2::after {
  transform: rotate(-65deg);
  right: -60px;
}

.top__h2--two-lines::before,
.top__h2--two-lines::after {
  width: 80px;
}

.top__h2--two-lines::before {
  left: -70px;
}

.top__h2--two-lines::after {
  right: -70px;
}

.to-detail {
  margin-top: 50px;
}

@media (max-width: 1023px) {
  .top__h2 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .top__section {
    padding: 80px 0;
  }

  .top__h2 {
    font-size: 22px;
    letter-spacing: 0.1px;
    padding: 0 6px;
  }

  .top__h2::before {
    left: -40px;
  }

  .top__h2::after {
    right: -40px;
  }

  .to-detail {
    margin-top: 30px;
  }
}

/* キッズデザイン */
.kids-design__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  font-size: 14px;
  color: #484848;
  max-width: 90vw;
  line-height: 1.4;
}

.kids-design__image {
  width: 210px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .kids-design__inner {
    font-size: 12px;
    flex-direction: column;
  }

  .kids-design__image {
    width: 166px;
    margin: 0 0 4px;
  }
}

/*サービスの柱*/
.pillar {
  line-height: 1.6;
  display: grid;
  margin-inline: auto;
  font-size: 14px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 140px;
  width: 90vw;
  max-width: 1150px;
  position: relative;
}

.pillar::before {
  content: "クラウティを支える3つの柱";
  position: absolute;
  top: -60px;
  color: #0078a3;
  left: 50%;
  transform: translateX(-50%);
  font-size: 25px;
  font-weight: 700;
  width: fit-content;
  white-space: nowrap;
  background: linear-gradient(transparent 70%, #f6e490 70%);
}

.pillar__item {
  border: 3px solid #0097bf;
  border-radius: 10px;
  padding: 15px 25px 25px;
  box-shadow: 0px 12px 27px rgba(0, 151, 191, 0.25);
}

.pillar__image {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  display: block;
  margin: 0 auto 4px;
}

@media (max-width: 767px) {
  .pillar {
    grid-template-columns: 1fr;
    margin-top: 100px;
  }

  .pillar::before {
    top: -50px;
    font-size: 20px;
  }

  .pillar__item {
    padding: 10px 20px 20px;
  }

  /* .pillar__item:nth-child(1) {
    order: 2;
  }

  .pillar__item:nth-child(2) {
    order: 1;
  }

  .pillar__item:nth-child(3) {
    order: 3;
  } */

  .pillar__image {
    max-width: 240px;
    margin: 0 auto 6px;
  }
}

/*クラウティとは*/
.overview {
  margin-top: 120px;
  /* デフォルト値 */
}

.overview__maincopy {
  width: 90vw;
  max-width: 756px;
  font-size: 25px;
  font-weight: 700;
  height: 100px;
  margin-bottom: 50px;
}

.overview__maincopy::before {
  border-width: 50px 0px 50px 20px;
  border-color: transparent transparent transparent #e0f2f7;
}

.overview__maincopy::after {
  border-width: 50px 20px 50px 0px;
  border-color: transparent #e0f2f7 transparent transparent;
}

.overview__maincopy .text--small {
  font-size: 16px;
}

.overview__image-wrapper {
  display: flex;
  gap: 50px;
  margin: 0 auto 50px;
  justify-content: center;
  width: 90vw;
  max-width: 1090px;
}

.overview__image {
  background: #0097bf;
  color: #fff;
  box-shadow: 0px 12px 24px rgba(0, 151, 191, 0.25);
  border-radius: 20px;
  width: 90vw;
  max-width: 520px;
  height: 20vw;
  max-height: 250px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
}

.overview__image:first-child {
  background-image: url("../images/illustration-pc-cloudt.svg");
  background-size: 118%;
  background-position: center 28px;
}

.overview__image:last-child {
  background-image: url("../images/illustration-family.svg");
  background-size: 88%;
  background-position: center 66px;
}

.overview__appeal {
  background: #fff;
  margin: 0 auto 50px;
  width: 90vw;
  max-width: 1090px;
  padding: 40px 20px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
}

.overview__appeal-text {
  display: flex;
  align-items: center;
}

.overview__appeal-text::before {
  content: "";
  background-image: url(../images/icon-check-circle.svg);
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  margin-right: 16px;
  margin-top: 4px;
}

.overview__feature {
  margin: 0 auto 50px;
  padding: 40px;
  width: 90vw;
  max-width: 1090px;
  display: flex;
  gap: 50px;
}

.overview__feature-box {
  position: relative;
  text-align: center;
}

.overview__feature-image {
  border: solid 4px #33b1cd;
  border-radius: 9999px;
}

.overview__feature-text {
  background: #fff;
  padding: 12px;
  text-align: center;
  line-height: 1.4;
  color: #0097bf;
  font-weight: 700;
  font-size: 20px;
  border: solid 3px #33b1cd;
  border-radius: 10px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 300px;
  /* white-space: nowrap; */
}

.overview__game {
  /* background: #ffffff9c; */
  border-radius: 10px;
  margin: 0 auto;
  /* padding: 40px; */
  width: 90vw;
  max-width: 1090px;
}

.overview__game-maincopy {
  color: #0078a3;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 36px;
  text-align: center;
}

.overview__game-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.overview__game-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview__game-text-copy {
  font-size: 25px;
  font-weight: 700;
  color: #0078a3;
  line-height: 1.4;
  margin-bottom: 20px;
}

.overview__game-text-description {
  line-height: 1.8;
  font-size: 14px;
  max-width: 480px;
}

.overview__mockup {
  position: relative;
  height: 310px;
}

.overview__mockup-image {
  animation: mockup-image 36s 0s infinite;
  height: auto;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.overview__mockup-image:nth-of-type(1) {
  animation-delay: 0s;
}

.overview__mockup-image:nth-of-type(2) {
  animation-delay: 3s;
}

.overview__mockup-image:nth-of-type(3) {
  animation-delay: 6s;
}

.overview__mockup-image:nth-of-type(4) {
  animation-delay: 9s;
}

.overview__mockup-image:nth-of-type(5) {
  animation-delay: 12s;
}

.overview__mockup-image:nth-of-type(6) {
  animation-delay: 15s;
}

.overview__mockup-image:nth-of-type(7) {
  animation-delay: 18s;
}

.overview__mockup-image:nth-of-type(8) {
  animation-delay: 21s;
}

.overview__mockup-image:nth-of-type(9) {
  animation-delay: 24s;
}

.overview__mockup-image:nth-of-type(10) {
  animation-delay: 27s;
}

.overview__mockup-image:nth-of-type(11) {
  animation-delay: 30s;
}

.overview__mockup-image:nth-of-type(12) {
  animation-delay: 33s;
}

@keyframes mockup-image {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  15% {
    opacity: 1;
  }

  20% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 1430px) {
  .overview {
    margin-top: 40px;
  }
}

@media (max-width: 1220px) {
  .overview {
    margin-top: 0px;
  }
}

@media (max-width: 1110px) {
  .overview__appeal {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .overview__maincopy {
    height: 110px;
    max-width: 520px;
    font-size: 18px;
    margin-bottom: 40px;
    padding: 0 2em;
    line-height: 1.6;
  }

  .overview__maincopy::before {
    border-width: 55px 0px 55px 16px;
  }

  .overview__maincopy::after {
    border-width: 55px 16px 55px 0px;
  }

  .overview__maincopy .text--small {
    font-size: 14px;
  }

  .overview__image-wrapper,
  .overview__appeal,
  .flex-direction {
    flex-direction: column;
  }

  .overview__image-wrapper {
    gap: 20px;
    margin-bottom: 40px;
  }

  .overview__image {
    margin: 0 auto;
    min-height: 170px;
    height: 34vw;
    font-size: 16px;
  }

  .overview__image:first-child {
    background-size: 130%;
  }

  .overview__appeal {
    padding: 20px;
    font-size: 16px;
    gap: 14px;
    margin-bottom: 40px;
    border-radius: 10px;
    max-width: 520px;
    align-items: baseline;
  }

  .overview__appeal-text {
    padding-left: 36px;
    position: relative;
    display: block;
  }

  .overview__appeal-text::before {
    width: 30px;
    background-size: 20px;
    position: absolute;
    left: 0;
  }

  .overview__feature {
    flex-direction: column;
    max-width: 300px;
    padding: 0;
    margin-bottom: 60px;
  }

  .overview__feature-image {
    max-width: 220px;
    border: solid 3px #33b1cd;
  }

  .overview__feature-text {
    max-width: 270px;
    width: 90vw;
    font-size: 18px;
  }

  .overview__game {
    background: #ffffff9c;
    padding: 20px;
    max-width: 520px;
  }

  .overview__game-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .overview__game-maincopy {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .overview__game-text-copy {
    font-size: 16px;
  }

  .overview__mockup {
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
    height: 38vw;
  }

  .overview__mockup-image {
    width: 60vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*選ばれる理由*/
.feature {
  padding-bottom: 0;
  overflow: hidden;
}

.feature__inner {
  width: 90vw;
  max-width: 980px;
  margin: 0 auto 100px;
}

.feature__box {
  background: #ffffff;
  border: 3px solid #0097bf;
  box-shadow: 0px 12px 27px rgba(0, 151, 191, 0.25);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
}

.feature__box:not(:last-of-type) {
  margin-bottom: 30px;
}

.feature__text {
  max-width: 630px;
}

.feature__heading {
  color: #0078a3;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  text-align: left;
  letter-spacing: 0.4px;
}

span[data-feature-heading-before]::before {
  content: attr(data-feature-heading-before);
  font-size: 41px;
  font-weight: 700;
  color: #33b1cd;
  font-family: "Roboto", sans-serif;
  margin-right: 14px;
}

.feature__description {
  line-height: 1.8;
}

.feature__user-image-wapper {
  overflow: hidden;
  position: relative;
  height: 312px;
  background: #e0f2f7;
}

.feature__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__user-image {
  max-width: 2144px;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}

.feature__cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .feature__inner {
    margin-bottom: 60px;
  }

  .feature__box {
    flex-direction: column;
    padding: 20px;
    max-width: 520px;
    margin-inline: auto;
  }

  .feature__heading {
    font-size: 20px;
    align-items: center;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  span[data-feature-heading-before]::before {
    font-size: 31px;
    margin-right: 12px;
  }

  .feature__text {
    margin-bottom: 10px;
  }

  .feature__description {
    font-size: 14px;
  }

  .feature__image {
    width: 70%;
  }

  .feature__box:last-of-type .feature__image-wrapper {
    padding: 14px 0;
  }

  .feature__user-image-wapper {
    height: 118px;
  }

  .feature__user-image {
    max-width: 760px;
  }

  .feature__cover {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* レッスンの仕組み */
.lesson-system__box {
  width: 90vw;
  max-width: 980px;
  padding: 40px 20px;
  background: #fff;
  margin: 0 auto;
  border-radius: 10px;
}

.lesson-system__list {
  width: fit-content;
  margin: 0 auto;
}

.lesson-system__list-item {
  font-size: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.lesson-system__list-item:not(:last-of-type) {
  margin-bottom: 30px;
}

.lesson-system__list-item::before {
  content: "";
  background-image: url(../images/icon-check-circle.svg);
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  margin-right: 16px;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .lesson-system__box {
    padding: 24px;
    max-width: 520px;
  }

  .lesson-system__list-item {
    font-size: 16px;
    display: block;
    position: relative;
    padding-left: 32px;
    line-height: 1.6;
  }

  .lesson-system__list-item:not(:last-of-type) {
    margin-bottom: 16px;
  }

  .lesson-system__list-item::before {
    width: 30px;
    background-size: 20px;
    position: absolute;
    left: 0;
  }
}

/* 講師 */
.teacher__accordion {
  margin-bottom: 50px;
}

.teacher__heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.teacher__teacher-image-wrapper {
  margin: 0 auto 60px;
  width: 90vw;
  max-width: 880px;
}

.teacher__teachers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
  width: 90vw;
  max-width: 880px;
}

.teacher__teacher-box {
  border: 3px solid #0097bf;
  box-shadow: 0px 12px 27px rgba(0, 151, 191, 0.25);
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  position: relative;
  line-height: 1.4;
}

.teacher__image {
  width: 88px;
  border-radius: 9999px;
  border: solid 2px #33b1cd;
  position: absolute;
  right: 20px;
}

.teacher__title {
  font-weight: 700;
  margin-bottom: 10px;
  /* border-left: solid 3px #0097BF;
  padding-left: 10px; */
}

.teacher__description:not(:last-of-type) {
  margin-bottom: 26px;
}

.teacher__movie-wrapper {
  width: 90vw;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 767px) {
  .teacher__heading {
    font-size: 18px;
  }

  .teacher__accordion {
    margin-bottom: 30px;
  }

  .teacher__teacher-image-wrapper {
    max-width: 520px;
  }

  .teacher__teachers {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .teacher__teacher-box {
    padding: 20px;
    box-shadow: 0px 2px 27px rgba(0, 151, 191, 0.15);
    max-width: 520px;
    margin-inline: auto;
  }

  .teacher__movie {
    width: 100%;
    max-width: 520px;
    height: 230px;
  }
}

/* 教材 */
.curriculum__inner {
  width: 90vw;
  max-width: 880px;
  margin: 0 auto;
}

.curriculum__overview {
  margin-bottom: 60px;
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  display: flex;
  gap: 40px;
}

.curriculum__overview-image-wrapper {
  width: 40%;
}

.curriculum__overview-heading {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  color: #0078a3;
  margin-bottom: 16px;
}

.curriculum__overview-text-wrapper {
  width: 60%;
}

.curriculum__overview-description {
  line-height: 1.8;
}

.curriculum__heading {
  background: #0097bf;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding: 20px 10px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.4;
}

.curriculum__no-download-needed {
  margin-bottom: 60px;
  display: flex;
  gap: 40px;
}

.curriculum__no-download-needed-text-wrapper {
  width: 60%;
}

.curriculum__no-download-needed-text {
  line-height: 1.8;
}

.curriculum__no-download-needed-image-wrapper {
  width: 40%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 4px;
}

.curriculum__no-download-needed-image {
  width: 90%;
}

.curriculum__family {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.curriculum__family-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}

.curriculum__family-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.curriculum__family-title {
  color: #0078a3;
  font-size: 20px;
  font-weight: 700;
  margin-left: 30px;
}

.curriculum__family-description {
  line-height: 1.8;
}

.curriculum__inner .to-detail {
  margin: 50px 0;
}

.curriculum__more {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #0078a3;
  margin-bottom: 30px;
}

.curriculum__option {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.curriculum__option-box {
  background: #fff;
  padding: 30px 30px 80px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.curriculum__option-heading {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0078a3;
  line-height: 1.4;
}

.curriculum__option-image {
  margin-bottom: 40px;
}

.curriculum__option-description {
  line-height: 1.8;
  text-align: left;
}

.curriculum__option-box-detail {
  position: absolute;
  bottom: 30px;
  font-size: 14px;
  min-width: 200px;
}

.curriculum__table-wrapper {
  white-space: normal !important;
}

.curriculum__table-wrapper .scroll-hint {
  top: 10%;
}

.curriculum__table {
  line-height: 1.8;
}

.curriculum__table tr:first-child th:first-child {
  width: 20%;
}

.curriculum__table tr:first-child th:nth-child(2) {
  width: 50%;
}

.curriculum__table tr:first-child th:last-child {
  width: 30%;
}

.curriculum__table tr:first-child th:nth-child(2) {
  border-left: solid 2px #fff;
  border-right: solid 2px #fff;
}

.curriculum__table-heading {
  color: #fff;
  font-weight: 700;
  background: #33b1cd;
  padding: 14px 10px;
  white-space: nowrap;
}

.curriculum__table-heading--light-blue {
  font-weight: 700;
  background: #e0f2f7;
  padding: 14px 40px;
  vertical-align: middle;
  border-bottom: solid 2px #f2f5f5;
}

.curriculum__table-data {
  background: #fff;
  padding: 20px;
  border-bottom: solid 2px #f2f5f5;
  min-width: 280px;
}

.curriculum__table-paragraph {
  font-size: 14px;
  margin-top: 0.6rem !important;
}

.curriculum__table-paragraph .button {
  white-space: nowrap;
  margin-top: 10px;
  font-size: 12px;
}

.curriculum__table tr .curriculum__table-data:last-child {
  border-left: solid 2px #f2f5f5;
}

.curriculum__table-label {
  width: fit-content;
  line-height: 1.5;
}

.curriculum__table-list {
  /* list-style: circle;
  padding-left: 1em; */
  font-size: 14px;
}

.curriculum__table-list li:not(:last-child) {
  margin-bottom: 0.4em;
}

.curriculum__table-list-button {
  font-size: 14px;
  text-align: left;
}

@media (max-width: 767px) {
  .curriculum__inner {
    max-width: 520px;
  }

  .curriculum__overview,
  .curriculum__no-download-needed {
    flex-direction: column;
  }

  .curriculum__overview,
  .curriculum__no-download-needed {
    margin-bottom: 40px;
    gap: 20px;
  }

  .curriculum__overview-image-wrapper,
  .curriculum__overview-text-wrapper,
  .curriculum__no-download-needed-image-wrapper,
  .curriculum__no-download-needed-text-wrapper {
    width: 100%;
  }

  .curriculum__heading {
    font-size: 18px;
    padding: 16px 10px;
    margin-bottom: 20px;
  }

  .curriculum__overview-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .curriculum__family,
  .curriculum__option {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .curriculum__family {
    margin-bottom: 30px;
  }

  /* .curriculum__family {
    margin-bottom: 40px;
  } */

  .curriculum__family-box {
    padding: 20px;
  }

  .curriculum__family-image {
    width: 60px;
  }

  .curriculum__family-title {
    font-size: 18px;
    margin-left: 20px;
  }

  .curriculum__inner .to-detail {
    margin: 30px 0;
  }

  .curriculum__more {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .curriculum__option-box {
    padding: 30px;
  }

  .curriculum__option-heading {
    font-size: 18px;
  }

  .curriculum__option-image {
    margin-bottom: 10px;
  }

  .curriculum__option-description {
    margin-bottom: 20px;
  }

  .curriculum__option-box-detail {
    position: relative;
    bottom: auto;
  }
}

/* faq */
.faq__accordion .accordion__summary {
  text-align: left;
  font-size: 18px;
  position: relative;
  padding-left: 50px;
}

.faq__accordion .accordion__summary::before {
  content: "Q.";
  position: absolute;
  left: 20px;
}

.faq__accordion:not(:last-of-type) {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .faq__accordion .accordion__summary {
    line-height: 1.6;
    font-size: 16px;
  }
}

/* ご利用の流れ */
.flow__inner {
  width: 90vw;
  max-width: 880px;
  margin: 0 auto;
}

.flow__overview {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border: solid 1px #0097bf;
  text-align: center;
}

.flow__overview-appeal {
  color: #0078a3;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.flow__overview-description {
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

.flow__cta {
  box-shadow: 0px 3px 4px rgba(245, 105, 71, 0.25);
  margin: 30px auto 0;
  padding: 1.2em 0;
  width: fit-content;
  min-width: 236px;
  display: block;
  font-size: 18px;
}

.flow__cta::after {
  width: 20px;
  height: 20px;
  right: 14px;
  background-size: 28px;
}

.flow__flow-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.flow__flow {
  background: #fff;
  border: 2px solid #0097bf;
  border-radius: 10px;
  padding: 20px;
}

.flow__heading {
  color: #0078a3;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  line-height: 1.4;
  align-items: center;
}

.flow__heading::before {
  content: attr(data-flow-heading-before);
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  background: #33b1cd;
  font-family: "Roboto", sans-serif;
  margin-right: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.flow__descritpion {
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 767px) {
  .flow__inner {
    max-width: 520px;
  }

  .flow__overview {
    border: 0;
  }

  .flow__overview-appeal {
    font-size: 18px;
  }

  .flow__cta {
    margin: 20px auto 0;
  }

  .flow__flow-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }

  .flow__heading {
    margin-bottom: 10px;
  }

  .flow__heading::before {
    font-size: 20px;
    width: 34px;
    height: 34px;
  }
}

/* 英語以外のコンテンツ */
.other-content__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
  width: 90vw;
  max-width: 880px;
}

.other-content__content-box {
  border: 3px solid #0097bf;
  box-shadow: 0px 12px 27px rgba(0, 151, 191, 0.25);
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  position: relative;
  line-height: 1.4;
  text-align: center;
}

.other-content__image {
  margin-bottom: 14px;
  margin-inline: auto;
}

.other-content__description {
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .other-content__contents {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .other-content__content-box {
    box-shadow: 0px 2px 27px rgba(0, 151, 191, 0.15);
    padding: 20px;
    max-width: 520px;
    margin-inline: auto;
  }

  .other-content__image {
    max-width: 60%;
    margin-bottom: 10px;
  }
}

/* お知らせ */
.news__inner {
  width: 90vw;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  line-height: 1.4;
}

.news__box {
  display: flex;
  gap: 40px;
  align-items: baseline;
}

.news__box:not(:last-of-type) {
  margin-bottom: 30px;
}

.news__category {
  padding: 9px 18px;
  border-radius: 9999px;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  white-space: nowrap;
}

.news__title {
  line-height: 1.6;
}

@media (max-width: 767px) {
  .news__box {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .news__inner {
    padding: 30px;
    max-width: 520px;
  }

  .news__category {
    padding: 4px 18px;
    font-size: 14px;
  }
}
