/* stylelint-disable prettier/prettier */
@charset "UTF-8";
/* CSS Document */

/*************************************

使用しているフォントです。
Googleフォントからそのままコピーしただけなので
使いやすいように変更してください。

**************************************/

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

section {
  --width-padding: 16px;
  width: 100%;
  overflow: hidden;
  padding-left: var(--width-padding);
  padding-right: var(--width-padding);
}

@container page (min-width: 1175px) {
  section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* #region hero */
section.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  container-type: inline-size;
  container-name: hero;
  padding-top: var(--section-padding--normal);
  padding-bottom: var(--section-padding--normal);
  margin-top: calc(var(--header-height) - 2px);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../img/header_img.jpg);
  content: "";
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
}

.hero::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 220, 220, 0.5);
  content: "";
}

.hero-title {
  position: relative;
  z-index: 3;
  font-size: 22px;
  text-align: center;
  color: var(--green);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@container page (min-width: 736px) {
  section.hero {
    justify-content: flex-start;
    height: 50vh;
  }

}

@container hero (min-width: 736px) {

  .hero::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: url(../img/header_img.jpg);
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }

  .hero::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url(../img/header_path.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left top;
  }


  .hero-title {
    line-height: 1.6;
    text-align: left;
    padding-left: 3em;
  }

  .hero-title .title1 {
    margin: .7rem 0 1.5rem 0;
    text-align: left;
  }
}

@media screen and (min-width: 1175px) {
  section.hero {
    height: 820px;
  }
}

@container hero (min-width: 1175px) {
  .hero-title {
    font-size: 35px;
    padding-left: 5em;
  }
}

/* #endregion hero */

/* #region intro */
section.intro {
  padding-top: var(--section-padding--medium);
  padding-bottom: var(--section-padding--medium);
  background-image: url(../img/intro_bg.jpg);
  background-position: left bottom;
  background-size: auto 90%;
  background-repeat: no-repeat;
  container-type: inline-size;
  container-name: intro;
}

.intro-big {
  font-family: var(--ff-mincho);
  font-size: var(--font-large);
  font-weight: bold;
  text-align: center;
  color: var(--black);
  margin-bottom: 1rem;
  margin-bottom: 2em;
}

.intro-small {
  font-size: var(--text-normal);
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1em;
}

.intro__appeal-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  /* ← これが重要（各アイテムを中央へ） */
  align-items: center;
  margin: var(--section-padding--normal) auto;
  text-align: center;
  row-gap: 0;
  column-gap: 2rem;
}

.intro__appeal:first-child {
  grid-column: 1 / -1;
  /* 2カラムをまたぐ */
  justify-self: center;
  /* 念のため：1個目も中央固定 */
}

.intro__appeal:nth-child(2) {
  justify-self: flex-end;
  /* 2個目は右寄せ */
}

.intro__appeal:nth-child(3) {
  justify-self: flex-start;
  /* 3個目は左寄せ */
}

.intro__appeal {
  --circle-size: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  font-size: var(--font-large);
  font-weight: bold;
  text-align: center;
  color: var(--green);
  background: var(--gradient-mint-cream-diagonal);
  box-shadow: var(--shadow-main);
}

.intro__course {
  width: 95%;
  max-width: 1200px;
  padding: 1em 2em;
  border-radius: var(--radius-normal);
  font-size: var(--text-medium);
  line-height: 1.7;
  color: var(--white);
  background-color: var(--green);
  margin-left: auto;
  margin-right: auto;
}

@container intro (min-width: 520px) {
  .intro__appeal-wrap {
    display: flex;
    flex-direction: space-around;
  }

  .intro__appeal {
    --circle-size: 180px;
  }
}

@container page (min-width: 736px) {
  section.intro {
    background-size: auto 100%;
  }
}

@container intro (min-width: 736px) {
  .intro__appeal-wrap {
    flex-direction: row;
    justify-content: center;
    gap: var(--section-padding--small);
  }

  .intro__course {
    text-align: center;
  }
}

@container intro (min-width: 1175px) {
  .intro__appeal {
    --circle-size: 238px;
  }

  .intro__appeal-wrap {
    gap: calc(var(--section-padding--small) + 15px);
  }
}

/* #endregion intro */

/* #region concerns */
section.concerns {
  padding-top: var(--section-padding--medium);
  padding-bottom: var(--section-padding--medium);
  background-color: var(--cream-light);
  container-type: inline-size;
  container-name: concerns;
}

.concerns__title {
  position: relative;
  width: fit-content;
  text-align: center;
  margin-bottom: var(--section-padding--normal);
  margin-left: auto;
  margin-right: auto;
}

.concerns__title .title1 {
  font-size: var(--font-big3);
}

.concerns__title p {
  font-size: var(--font-medium);
}

.concerns__voices-balloon {
  display: grid;
}

.concerns__voice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--section-padding--normal);
}

.concerns__voice-balloon {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  border-radius: 100px;
  font-size: var(--font-medium);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--black);
  background-color: var(--green-light);
  box-shadow: var(--shadow-main);
  isolation: isolate;
  margin-bottom: var(--section-padding--normal);
}

.concerns__voice-balloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 17%;
  border-style: solid;
  border-width: 40px 0 0 25px;
  border-color: var(--green-light) transparent transparent;
  translate: calc(-40% + 0.3px) 70%;
}

.concerns__voice-support {
  font-size: var(--font-medium);
  line-height: 1.8;
  color: var(--green);
}

.concerns hr {
  margin-top: var(--section-padding--medium);
  margin-bottom: var(--section-padding--normal);
  border-top: 1px solid var(--gray);
}

.concerns h4 {
  font-size: var(--font-big3);
  text-align: center;
  color: var(--green);
  margin-bottom: var(--section-padding--normal);
}

.concerns__voices-faq {
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--text-large);
  line-height: 1.8;
  padding-left: 1.5em;
}

dt.concerns__voices-faq-question {
  position: relative;
}

dt.concerns__voices-faq-question::before {
  position: absolute;
  left: -2em;
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  background: url(../img/check-icon.png) no-repeat center / contain;
  content: "";
}

dd.concerns__voices-faq-answer {
  color: var(--green);
  margin-bottom: 1em;
}

@container concerns (min-width: 736px) {

  .concerns__title {
    max-width: 85%;
  }

  .concerns__title .title1 {
    font-size: var(--font-big1);
  }

  .concerns__title::before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: auto;
    height: 110%;
    margin: 0;
    background-image: url(../img/concerns1.png);
    transform: translateX(-105%);
    content: "";
    aspect-ratio: 186/325;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center left;
  }

  .concerns__title::after {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: block;
    width: auto;
    height: 110%;
    margin: 0;
    background-image: url(../img/concerns2.png);
    transform: translateX(105%);
    content: "";
    aspect-ratio: 186/325;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center left;
  }

  .concerns__voice {
    margin-bottom: var(--section-padding--normal);
  }

  .concerns__voice-balloon {
    min-width: 500px;
    text-align: center;
    margin-bottom: 30px;
  }

  .concerns__voice-balloon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 17%;
    border-style: solid;
    border-width: 40px 0 0 25px;
    border-color: var(--green-light) transparent transparent;
    translate: calc(-40% + 0.3px) 70%;
  }

  .concerns__voice-support {
    width: 400px;
  }
}

@container concerns (min-width: 1175px) {

  .concerns__title .title1 {
    font-size: var(--font-big2);
  }

  .concerns__title::before {
    height: 95%;
    transform: translateX(-102%);
  }

  .concerns__title::after {
    height: 95%;
    transform: translateX(102%);
  }

  .concerns__voices-balloon {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--section-padding--normal);
    column-gap: var(--section-padding--small);
    margin-bottom: 0;
  }

  .concerns__voice {
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .concerns__voice-balloon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 17%;
    border-style: solid;
    border-width: 45px 0 0 35px;
    border-color: var(--green-light) transparent transparent;
    translate: calc(-40% + 0.3px) 70%;
  }

  .concerns__voice:first-child {
    grid-column: 1 / -1;
  }

  .concerns__voice-balloon {
    width: 100%;
    min-width: 450px;
    max-width: 1100px;
    text-align: center;
    margin-bottom: 55px;
  }

  .concerns__voice-support {
    width: 80%;
  }

  .concerns__voice:first-child .concerns__voice-support {
    width: fit-content;
  }

  .concerns__voices-faq {
    margin-left: auto;
    margin-right: auto;
  }
}

@container concerns (min-width: 1400px) {
  .concerns__title::before {
    height: 110%;
    transform: translateX(-105%);
  }

  .concerns__title::after {
    height: 110%;
    transform: translateX(105%);
  }
}

/* #endregion concerns */

/* #region application */
section.application {
  line-height: 1.6;
  text-align: center;
  background-image: url(../img/cta_bg.jpg);
  padding-top: var(--section-padding--normal);
  padding-bottom: var(--section-padding--small);
  container-type: inline-size;
  container-name: application;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.application__title {
  color: var(--green-dark);
  margin-bottom: var(--section-padding--normal);
}

.application__title .title1 {
  font-weight: 900;
  margin-top: 0;
  color: var(--green-dark);
}

.application__title p {
  font-size: var(--font-large);
  font-weight: 900;
  line-height: 1.6;
}

.application__text {
  font-size: var(--text-medium);
  margin-bottom: var(--section-padding--normal);
}

.application__guide {
  width: 100%;
  max-width: 1000px;
  margin: var(--section-padding--small) auto;
  padding: .6em 1em;
  border: 1px solid var(--brown-beige);
  border-radius: var(--radius-mini);
  font-size: var(--text-normal);
  background-color: white;
}

/* #endregion application */

/* #region use-cases */
section.use-cases {
  padding-top: var(--section-padding--medium);
  padding-bottom: var(--section-padding--large);
  container-type: inline-size;
  container-name: use-cases;
  background: var(--gradient-mint-cream-vertical);
}

.use-cases__card-wrap {
  display: grid;
  row-gap: calc(var(--section-padding--small) + 10px);
  margin-top: var(--section-padding--medium);
}

.use-cases__card {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-content: center;
  row-gap: 1rem;
}

.use-cases__card-img {
  width: 100%;
  height: fit-content;
  margin: 0 auto;
}

.use-cases__card-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-main);
}

.use-cases__card-body {
  padding: .5em 0;
}

.use-cases__card-body p {
  font-size: var(--text-normal);
  font-weight: normal;
  line-height: 1.6;
  color: var(--black);
}

.use-cases__card-title {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
  width: 80%;
  height: fit-content;
  margin: 0 auto 1.6rem;
}

.use-cases__card-title img {
  width: auto;
  height: calc(var(--font-medium) * 2 + 20px);
}

.use-cases__card-title h4 {
  font-size: var(--font-medium);
  line-height: calc(var(--font-medium) + 10px);
  color: var(--green);
  white-space: nowrap;
}

@container use-cases (min-width: 580px) {
   .use-cases__card-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--section-padding--small);
  }
}

@container use-cases (min-width: 736px) {

  .use-cases__card-title {
    margin: .5em auto 1.8rem;
  }

  .use-cases__card-body p {
    line-height: 1.8;
  }
}

@container use-cases (min-width: 1175px) {
  .use-cases__card-wrap {
    grid-template-columns: repeat(3, 1fr);
    row-gap: var(--section-padding--normal);
    column-gap: var(--section-padding--small);
  }
}

/* #endregion use-cases */

/* #region course */
section.course {
  padding-top: var(--section-padding--medium);
  padding-bottom: var(--section-padding--medium);
  container-type: inline-size;
  container-name: course;
  background-color: var(--green-light);
}

.course__title {
  text-align: center;
  margin-bottom: var(--section-padding--normal);
}

.course__title p {
  font-size: var(--font-medium);
  line-height: 2;
  color: var(--black);
}

.course__platform-text {
  padding: 1rem 1.6rem;
  border-radius: var(--radius-medium);
  font-size: var(--text-large);
  line-height: 1.6em;
  text-align: center;
  color: var(--green);
  background-color: var(--white);
}

.course__platform-big {
  font-size: var(--font-big2);
  line-height: 1.8;
  color: var(--green);
  margin-top: 2rem;
}

.highlight {
  display: inline-block;
  margin: 0 .2em;
  padding: 0;
  font-size: var(--font-big3);
  line-height: 1.5;
  color: var(--white);
  background-color: var(--green);
  letter-spacing: 0;
}

.course__platform-list {
  margin-top: var(--section-padding--normal);
  margin-bottom: var(--section-padding--large);
}

.course__platform-list li {
  position: relative;
  font-size: var(--text-normal);
  font-weight: 500;
  line-height: 2;
  color: var(--black);
  padding-left: 2em;
  margin-bottom: 2rem;
}

.course__platform-list li::before {
  position: absolute;
  top: -.1em;
  left: 0;
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 1.16em;
  color: var(--green);
  content: "●";
}

.course__content-text {
  padding: 1em 2em;
  border-radius: var(--radius-normal);
  font-size: var(--font-large);
  text-align: center;
  color: var(--white);
  background-color: var(--green-dark);
  box-shadow: var(--shadow-main);
  margin-bottom: var(--section-padding--normal);
}

.course__content-table-wrap {
  border-radius: var(--radius-small);
  overflow: hidden;
}

.course__content-table-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: .6em;
  font-size: var(--font-large);
  color: var(--white);
}

.course__content-table-title div {
  --font-size: calc(var(--font-large) / 2);
  font-size: calc(var(--font-size) - 0.18rem);
  line-height: 1.6;
}

.course__content-introductory-title {
  background-color: var(--orange);
}

.course__content-training-title {
  background-color: var(--green);
}

.course__content-block {
  width: 100%;
  padding: .5em;
  text-align: left;
  color: var(--black);
  background-color: var(--white);
  vertical-align: middle;
}

.course__content-block--training td {
  padding: .5em;
}

.course__content-block th {
  display: none;
  border-bottom: none;
}

.course__content-block tr {
  box-shadow: inset 0px -1px 0 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.course__content-block tr:last-child {
  box-shadow: none;
}

.course__content-block td {
  display: block;
  padding: .3em .5em;
}

.course__content-block td:first-child {
  padding-top: 1.5em;
}

.course__content-block td:last-child {
  padding-bottom: 1em;
}

.course__cell-teacher p {
  position: relative;
  padding-left: 3em;
  white-space: nowrap;
}

.course__cell-teacher p::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 3em;
  height: 1.2em;
  font-size: inherit;
  content: "講師 :";
}

.course__cell-date {
  font-size: var(--text-large);
  white-space: nowrap;
}

.course__cell-date,
.course__cell-teacher,
.program-code {
  text-align: left;
}

.course__cell-title,
.program-title {
  text-align: left;
}

.course__cell-title,
.course__cell-teacher {
  font-size: var(--text-medium);
}

.course__cell-desc,
.program-sub,
.program-detail {
  font-size: var(--text-small);
  line-height: 1.6;
  text-align: left;
}

.program-code,
.program-title {
  font-size: var(--text-medium);
}

.course__content-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--section-padding--normal);
}

.course__content-deco div {
  font-size: var(--text-medium);
  line-height: 2;
  color: #6C9D9B;
}

.course__qualification {
  align-items: center;
  font-size: var(--text-large);
  text-align: center;
  color: var(--black);
}

.course__qualification-card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  gap: var(--section-padding--small);
  margin-top: var(--section-padding--small);
  margin-bottom: var(--section-padding--normal);
  margin-left: auto;
  margin-right: auto;
}

.course__qualification-card {
  min-width: 250px;
  max-width: 450px;
  padding: 1rem .8em;
  border: 3px solid var(--brown-beige);
  border-radius: var(--radius-normal);
  font-size: var(--text-normal);
  line-height: 1.6;
  background-color: var(--cream-light);
  box-shadow: var(--shadow-main);
  margin-left: auto;
  margin-right: auto;
}

.course__qualification-card span {
  font-size: var(--font-medium);
  color: var(--black);
}

span.course__qualification-card-name {
  color: var(--white);
  background-color: var(--brown-beige);
}

@container course (min-width: 736px) {
  .course__platform-text {
    width: fit-content;
    padding: 2rem 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .course__content-table-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .course__content-block {
    border: .7em solid var(--white);
  }

  .course__content-block {
    width: 100%;
    padding: .3em;
    font-size: var(--text-medium);
    text-align: center;
    color: var(--black);
    background-color: var(--white);
    vertical-align: middle;
  }

  .course__content-block td:first-child {
    padding-top: 0;
  }

  .course__content-block td:last-child {
    padding-bottom: 0;
  }

  .course__content-block th {
    display: table-cell;
    line-height: 2em;
    text-align: center;
  }

  .course__content-block tr {
    border: none;
    border-bottom: 1px solid #aaa;
    box-shadow: none;
  }

  .course__content-block td {
    display: table-cell;
    height: var(--content-block-cell-height);
    border-left: 1px solid #aaa;
    padding: .5em;
    vertical-align: middle;
  }

  .course__content-block td:first-child {
    border-left: none;
  }

  .course__cell-teacher p {
    padding-left: 0;
    text-align: center;
  }

  .course__cell-teacher p::before {
    display: none;
  }

  .course__cell-desc,
  .program-sub,
  .program-detail {
    font-size: var(--text-small);
    text-align: left;
  }

  .program-code,
  .course__cell-date {
    text-align: center;
  }

  .course__content-block thead tr th:first-child {
    width: 15%;
  }

  .course__content-block thead tr th:nth-child(3) {
    padding: 0;
    text-align: center;
  }

  .program-code {
    padding-left: 2em;
    padding-right: 2em;
    width: 15%;
  }

  .highlight {
    white-space: nowrap;
  }

  .course__qualification-card-wrap {
    flex-direction: row;
    justify-content: center;
  }

  .course__qualification-card {
    width: 100%;
    max-width: 520px;
    padding: 1rem 2rem;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width:736px){
	#table_2 tr td:nth-of-type(2){
		width: 250px
	}
}
@media (min-width:1024px){
	#table_2 tr td:nth-of-type(2){
		width: 400px
	}
}


/* #endregion course */

/* #region instructor */
section.instructor {
  padding-top: var(--section-padding--medium);
  padding-bottom: var(--section-padding--medium);
  container-type: inline-size;
  container-name: instructor;
  background-color: var(--white);
}

.instructor__inner {
  display: flex;
  flex-direction: column;
  gap: var(--section-padding--normal);
  justify-items: center;
}

.instructor__img {
  width: 100%;
  height: auto;
}

.instructor__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

.instructor__body p {
  font-size: var(--text-medium);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

@container instructor (min-width: 736px) {
  .instructor__inner {
    flex-direction: row;
    align-items: center;
  }

  .instructor__img,
  .instructor__body {
    width: 50%;
  }

  .instructor__body p {
    text-align: left;
  }

  .instructor__body .title1 {
    text-align: left;
  }
}

/* #endregion instructor */

/* #region voice */
section.voice {
  padding-top: var(--section-padding--medium);
  padding-bottom: var(--section-padding--medium);
  container-type: inline-size;
  container-name: voice;
  background-color: var(--cream-light);
}

.voice__card-wrap {
  display: grid;
  row-gap: var(--section-padding--normal);
  grid-template-columns: 1fr;
  justify-items: center;
}

.voice__card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 2rem;
}

.voice__card-img {
  width: 100%;
  height: fit-content;
  margin: 0 auto;
}

.voice__card-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

.voice__card-quote {
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1.8;
  color: var(--black);
}

.voice__card-quote p {
  padding-bottom: 3em;
}

.voice__card-quote h4 {
  display: block;
  font-size: var(--text-large);
  font-weight: bold;
  color: var(--green);
  padding-bottom: 1em;
}

p.voice__card-name {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  font-size: var(--text-normal);
  font-weight: bold;
  text-align: right;
  padding-top: 2em;
  padding-bottom: .2em;
}

@container voice (min-width: 736px) {
  .voice__card-wrap {
    display: grid;
    gap: var(--section-padding--small);
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}

/* #endregion voice */

/* #region faq */
section.faq {
  padding-top: var(--section-padding--medium);
  padding-bottom: var(--section-padding--normal);
  container-type: inline-size;
  container-name: faq;
  background-color: var(--white);
}

.faq__list {
  width: 95%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.faq__list div {
  margin-bottom: var(--section-padding--medium);
}

.faq__list .faq__question {
  position: relative;
  padding: 1em 2em 1em 5em;
  border-radius: var(--radius-small);
  font-family: var(--ff-note);
  font-size: var(--text-large);
  font-weight: 900;
  color: var(--white);
  background-color: var(--green);
  box-shadow: var(--shadow-main);
}

.faq__list .faq__question::before {
  position: absolute;
  top: -.6em;
  left: .8em;
  width: 3em;
  height: 3em;
  background-image: url(../img/question-icon.png);
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}

.faq__list .faq__question::after {
  position: absolute;
  top: .4em;
  font-size: 1.5em;
}

.faq__list .faq__answer {
  padding: 2em 0;
  font-family: var(--ff-note);
  font-size: var(--text-normal);
  font-weight: 500;
  line-height: 2;
}

.faq__list .faq__answer ul {
  margin-left: 4em;
}

.faq__list .faq__answer li {
  list-style-type: disc;
}

.faq__list .faq__answer::before {
  display: none;
}

@container faq (min-width: 736px) {
  .faq__list .faq__question {
    position: relative;
    padding: 1em 2em 1em 6em;
  }

  .faq__list .faq__question::before {
    position: absolute;
    top: -1em;
    width: 4em;
    height: 4em;
  }
}

/* #endregion faq */


@media (max-width:1199px){
	.sp-none{
		display: none
	}
}