@charset "UTF-8";
/*---------------------
Reset
---------------------*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  src: url(assets/fonts/NotoSansJP-Medium.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url(assets/fonts/NotoSansJP-Bold.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 900;
  src: url(assets/fonts/NotoSansJP-Black.ttf) format("truetype");
  font-display: swap;
}
/*---------------------
base
---------------------*/
html {
  color: #252525;
  background: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 767.98px) {
  html {
    scroll-padding-top: 56px;
  }
}

body {
  font-size: min(0.8333333333vw, 1rem);
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1rem;
    line-height: 1.2;
  }
}

main {
  overflow-x: clip;
  margin-top: min(8.75vw, 168px);
}
@media screen and (max-width: 767.98px) {
  main {
    margin-top: 56px;
  }
}

a {
  text-decoration: none;
  color: #252525;
}

a:focus {
  outline: none;
}

a:hover {
  opacity: 0.8;
}

a:active {
  color: #ccc;
}

ul,
ol,
dl,
dt,
dd,
li {
  list-style: none;
}

/*---------------------
contents
---------------------*/
.Wrap {
  position: relative;
}

.Section__wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-block: 70px;
}
@media screen and (max-width: 767.98px) {
  .Section__wrap {
    width: 90%;
    max-width: 100%;
    padding-block: 40px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .Section__wrap {
    padding: 40px 30px;
  }
}
.Section__title {
  position: relative;
  font-size: min(2.0833333333vw, 2.5rem);
  padding-left: min(2.34375vw, 45px);
  margin-bottom: min(2.6041666667vw, 50px);
  letter-spacing: min(0.5208333333vw, 10px);
}
@media screen and (max-width: 767.98px) {
  .Section__title {
    margin-bottom: min(8vw, 30px);
    font-size: min(5.8666666667vw, 1.375rem);
    padding-left: min(7.4666666667vw, 28px);
    letter-spacing: min(1.4666666667vw, 5.5px);
  }
}
.Section__title::before {
  content: "";
  position: absolute;
  background-color: #c35508;
  width: min(1.5625vw, 30px);
  height: min(0.3645833333vw, 7px);
  border-radius: 999px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767.98px) {
  .Section__title::before {
    width: min(5.3333333333vw, 20px);
    height: min(1.3333333333vw, 5px);
  }
}
.Section__title--blue {
  color: #0069ad;
}
.Section__heading {
  color: #0069ad;
  font-size: min(1.3020833333vw, 1.5625rem);
  font-weight: 700;
  margin-bottom: min(1.5625vw, 30px);
}
@media screen and (max-width: 767.98px) {
  .Section__heading {
    font-size: min(5.3333333333vw, 1.25rem);
    margin-bottom: min(4vw, 15px);
  }
}
.Section__heading--orange {
  color: #c35508;
  padding-right: min(1.5625vw, 30px);
}
.Section__text {
  font-size: min(0.8333333333vw, 1rem);
}
@media screen and (max-width: 767.98px) {
  .Section__text {
    font-size: min(4.2666666667vw, 1rem);
  }
}

.Common__btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .Common__btn {
    width: 100%;
  }
}
.Common__link {
  position: relative;
  width: min(21.3541666667vw, 410px);
  padding-block: min(1.0416666667vw, 20px);
  border-radius: 999px;
  font-weight: 700;
  font-size: min(1.0416666667vw, 1.25rem);
  letter-spacing: min(0.1145833333vw, 2.2px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .Common__link {
    width: min(78.6666666667vw, 295px);
    padding: min(4.2666666667vw, 16px) min(13.8666666667vw, 52px) min(4.2666666667vw, 16px) min(5.8666666667vw, 22px);
    font-size: min(4.8vw, 1.125rem);
    letter-spacing: min(0.5333333333vw, 2px);
  }
}
.Common__link:after {
  content: "";
  position: absolute;
  background: url(assets/img/ico/ico_newtab.svg) no-repeat center center/contain;
  width: min(1.0416666667vw, 20px);
  height: min(0.8854166667vw, 17px);
  right: min(1.5625vw, 30px);
}
@media screen and (max-width: 767.98px) {
  .Common__link:after {
    width: min(5.3333333333vw, 20px);
    height: min(4.5333333333vw, 17px);
    right: min(5.8666666667vw, 22px);
  }
}
.Common__link--tel {
  position: relative;
  padding-left: min(2.6041666667vw, 50px) !important;
  display: flex;
  align-items: center;
}
.Common__link--tel::before {
  content: "";
  position: absolute;
  background: url(assets/img/ico/ico_tel.svg) no-repeat center center/contain;
  width: min(1.0416666667vw, 20px);
  height: auto;
  aspect-ratio: 1;
  left: min(1.0416666667vw, 20px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .Common__link--tel {
    padding-inline: min(13.3333333333vw, 50px) min(8vw, 30px) !important;
  }
  .Common__link--tel::before {
    width: min(5.3333333333vw, 20px);
    left: min(5.3333333333vw, 20px);
  }
}

.Common-contact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .Common-contact {
    width: 90%;
    max-width: 100%;
  }
}
.Common-contact__img {
  height: min(8.59375vw, 165px);
  width: auto;
}
@media screen and (max-width: 767.98px) {
  .Common-contact__img {
    display: none;
  }
}
.Common-contact__btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .Common-contact__btn {
    width: 100%;
  }
}
.Common-contact__link {
  background: #c35508;
  color: #fff;
  padding: min(1.0416666667vw, 20px) min(2.0833333333vw, 40px);
  border-radius: 999px;
  font-weight: 700;
  font-size: min(1.0416666667vw, 1.25rem);
  letter-spacing: min(0.1145833333vw, 2.2px);
  margin-inline: min(5.9895833333vw, 115px) min(6.7708333333vw, 130px);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .Common-contact__link {
    padding: min(5.3333333333vw, 20px) min(3.2vw, 12px);
    font-size: min(5.3333333333vw, 1.25rem);
    letter-spacing: min(0.5866666667vw, 2.2px);
    margin-inline: 0;
  }
}

.Error__title {
  font-size: min(1.0416666667vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 4.2px;
  margin-bottom: min(1.5625vw, 30px);
}
@media screen and (max-width: 767.98px) {
  .Error__title {
    font-size: min(4.8vw, 1.125rem);
    margin-bottom: min(4.8vw, 18px);
    letter-spacing: 1.8px;
  }
}
.Error__inner {
  width: min(41.6666666667vw, 800px);
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .Error__inner {
    width: 100%;
    margin-top: min(16vw, 60px);
  }
}
.Error__text {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .Error__text {
    font-size: min(3.7333333333vw, 0.875rem);
    letter-spacing: 1.4px;
    line-height: 1.7;
  }
}

.Br-pc {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .Br-pc {
    display: none;
  }
}

.Br-sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .Br-sp {
    display: block;
  }
}

/*-------------------------------------------
Header
-------------------------------------------*/
.Header {
  position: fixed;
  background: #fff;
  z-index: 980;
  width: 100%;
  top: 0;
  height: min(8.75vw, 168px);
}
@media screen and (max-width: 767.98px) {
  .Header {
    top: 0;
    height: auto;
  }
}
.Header__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-block: min(1.3020833333vw, 25px);
}
@media screen and (max-width: 767.98px) {
  .Header__inner {
    height: 62px;
    padding: 17px min(5.3333333333vw, 20px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .Header__inner {
    padding-inline: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .Header__upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: min(1.5625vw, 30px);
  }
}
.Header__logo {
  width: min(19.375vw, 372px);
}
@media screen and (max-width: 767.98px) {
  .Header__logo {
    width: auto;
  }
}
.Header__img {
  width: 100%;
  height: auto;
  aspect-ratio: 93/16;
}
@media screen and (max-width: 767.98px) {
  .Header__img {
    width: 162px;
  }
}
.Header {
  /* ナビ本体：PCは通常表示、SPはドロワー表示 */
}
.Header__nav {
  /* PC */
}
@media print, screen and (min-width: 768px) {
  .Header__nav {
    position: static;
    transform: none;
    transition: none;
    width: auto;
    height: auto;
    overflow: visible;
    background: transparent;
    display: grid;
  }
}
.Header__nav {
  /* SP：ドロワーとして隠す（checkboxで開く） */
}
@media screen and (max-width: 767.98px) {
  .Header__nav {
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    transform: translateY(-200%);
    transition: all 0.3s;
    overflow: auto;
    background-color: #fff;
    z-index: 990;
    padding: min(5.3333333333vw, 20px) min(10.6666666667vw, 40px);
  }
}

/* トグル（ハンバーガー）はSPだけ表示 */
.Drawer__hidden {
  display: none;
}
.Drawer__open {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .Drawer__open {
    display: inline-flex;
    height: 38px;
    width: 41px;
    justify-content: center;
    position: relative;
    z-index: 990;
    cursor: pointer;
    border-radius: 7px;
    margin-top: 4px;
  }
}
.Drawer__bar, .Drawer__bar::before, .Drawer__bar::after {
  content: "";
  display: block;
  height: 3px;
  width: 31px;
  border-radius: 3px;
  background: #0069ad;
  transition: 0.4s;
  position: absolute;
}
.Drawer__bar {
  margin-top: 18px;
}
.Drawer__bar::before {
  bottom: 10px;
}
.Drawer__bar::after {
  top: 10px;
}

/* SPでcheckbox ONのときにナビ表示 */
@media screen and (max-width: 767.98px) {
  #Drawer__check:checked ~ .Header__nav {
    transform: translateY(0);
  }
}

#Drawer__check:checked ~ .Nav-sp-bg {
  visibility: visible;
  opacity: 1;
  background-color: #fff;
}

#Drawer__check:checked ~ .Drawer__open {
  padding: 0;
}
#Drawer__check:checked ~ .Drawer__open .Drawer__bar {
  background: transparent;
}
#Drawer__check:checked ~ .Drawer__open .Drawer__bar::before, #Drawer__check:checked ~ .Drawer__open .Drawer__bar::after {
  background-color: #0069ad;
}
#Drawer__check:checked ~ .Drawer__open .Drawer__bar::before {
  bottom: 0;
  transform: rotate(45deg);
}
#Drawer__check:checked ~ .Drawer__open .Drawer__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/*-------------------------------------------
Footer
-------------------------------------------*/
.Footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: min(3.6458333333vw, 70px) auto 0;
}
@media screen and (max-width: 767.98px) {
  .Footer {
    width: 90%;
    max-width: 100%;
    margin: 40px auto 0;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .Footer {
    width: 100%;
    padding-inline: 30px;
  }
}
.Footer__wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: min(2.6041666667vw, 50px);
}
@media screen and (max-width: 767.98px) {
  .Footer__wrap {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: min(8vw, 30px);
  }
}
.Footer__block {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.Footer__sponsor {
  width: 35%;
  max-width: 372px;
  margin-right: min(4.1666666667vw, 80px);
}
@media screen and (max-width: 767.98px) {
  .Footer__sponsor {
    margin-bottom: min(14.6666666667vw, 55px);
    width: 100%;
    margin-right: 0;
  }
}
.Footer__contractor {
  width: 42%;
  max-width: 504px;
}
@media screen and (max-width: 767.98px) {
  .Footer__contractor {
    width: 100%;
  }
}
.Footer__headline {
  font-size: min(1.0416666667vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 5px;
  color: #0069ad;
}
@media screen and (max-width: 767.98px) {
  .Footer__headline {
    font-size: min(5.3333333333vw, 1.25rem);
  }
}
.Footer__img {
  width: auto;
  height: 64px;
  object-fit: contain;
}
.Footer__img--cac {
  aspect-ratio: 93/16;
}
@media screen and (max-width: 767.98px) {
  .Footer__img--cac {
    max-width: 324px;
    aspect-ratio: 81/14;
  }
}
.Footer__img--edge {
  aspect-ratio: 147/32;
}
@media screen and (max-width: 767.98px) {
  .Footer__img--edge {
    aspect-ratio: 285/62;
  }
}
.Footer__text {
  margin-block: auto 0;
}
@media screen and (max-width: 767.98px) {
  .Footer__text {
    margin-bottom: min(8.5333333333vw, 32px);
    font-size: min(3.7333333333vw, 0.875rem);
  }
}
.Footer__text--address {
  margin-bottom: min(1.1458333333vw, 22px);
}
@media screen and (max-width: 767.98px) {
  .Footer__text--address {
    margin-bottom: min(5.3333333333vw, 20px);
  }
}
.Footer__btn {
  max-height: min(2.6041666667vw, 50px);
}
@media screen and (max-width: 767.98px) {
  .Footer__btn {
    width: min(56vw, 210px);
    margin: 0 auto;
    height: 100%;
    max-height: 54px;
  }
}
@media print, screen and (min-width: 768px) {
  .Footer__btn--tel {
    font-size: min(1.0416666667vw, 1.25rem) !important;
  }
}

.Copyright {
  color: #0069ad;
  text-align: center;
  padding-bottom: min(1.25vw, 24px);
}
@media screen and (max-width: 767.98px) {
  .Copyright {
    font-size: min(3.7333333333vw, 0.875rem);
    padding-bottom: 20px;
  }
}

/*-------------------------------------------
Btn
-------------------------------------------*/
.Btn {
  border: 2px solid #0069ad;
  border-radius: 999px;
  display: flex;
}
.Btn--common {
  width: min(21.3541666667vw, 410px);
  margin: min(3.125vw, 60px) auto 0;
}
@media screen and (max-width: 767.98px) {
  .Btn--common {
    width: min(90%, 360px);
    margin-top: min(10.6666666667vw, 40px);
  }
}
.Btn--blue {
  background: #0069ad;
}
.Btn__link {
  color: #0069ad;
  padding: min(0.6770833333vw, 13px) min(1.4583333333vw, 28px);
  font-size: min(1.0416666667vw, 1.25rem);
  font-weight: 700;
  letter-spacing: min(0.1145833333vw, 2.2px);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .Btn__link {
    padding-block: min(3.4666666667vw, 13px);
    font-size: min(5.3333333333vw, 1.25rem);
    width: 100%;
    text-align: center;
  }
}
.Btn__link--common {
  padding-block: min(1.0416666667vw, 20px);
}
@media screen and (max-width: 767.98px) {
  .Btn__link--common {
    font-size: min(5.3333333333vw, 1.25rem);
    letter-spacing: min(0.5866666667vw, 2.2px);
    padding: min(5.3333333333vw, 20px) min(3.2vw, 12px);
    margin-inline: 0px;
  }
}
.Btn__link--white {
  color: #fff;
  position: relative;
  padding-right: min(2.0833333333vw, 40px);
}
.Btn__link--white::after {
  content: "";
  position: absolute;
  background: url(assets/img/ico/ico_triangle.svg) no-repeat center center/contain;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: min(0.78125vw, 15px);
  width: min(0.7291666667vw, 14px);
  height: auto;
  aspect-ratio: 1;
  filter: invert(100%) sepia(1%) saturate(7500%) hue-rotate(52deg) brightness(104%) contrast(101%);
}
@media screen and (max-width: 767.98px) {
  .Btn__link--white::after {
    right: min(4vw, 15px);
    width: min(3.7333333333vw, 14px);
  }
}

/*-------------------------------------------
Nav
-------------------------------------------*/
.Nav__inner--foot {
  margin-left: min(3.125vw, 60px);
  position: relative;
}
.Nav__inner--foot:after {
  content: "";
  position: absolute;
  background: url(assets/img/common/img_waveset.png) no-repeat center center/contain;
  width: min(13.3854166667vw, 257px);
  height: auto;
  aspect-ratio: 257/107;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767.98px) {
  .Nav__inner--foot {
    margin-left: 0;
    padding: 40px 0 125px min(13.3333333333vw, 50px);
  }
  .Nav__inner--foot:after {
    width: min(58.1333333333vw, 218px);
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    aspect-ratio: 109/45;
  }
}
@media screen and (max-width: 767.98px) {
  .Nav__list {
    display: grid;
    gap: min(8vw, 30px) 0;
    margin-bottom: min(10.6666666667vw, 40px);
  }
}
.Nav__list--pc {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 767.98px) {
  .Nav__list--pc {
    display: none;
  }
}
.Nav__list--sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .Nav__list--sp {
    display: block;
    width: min(56vw, 210px);
    margin: 0 auto 20px;
  }
  .Nav__list--sp .Nav__item {
    margin-bottom: min(4vw, 15px);
  }
  .Nav__list--sp .Nav__item:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .Nav__list--main {
    display: flex;
    justify-content: center;
    gap: 0 min(4.6875vw, 90px);
  }
}
@media screen and (max-width: 767.98px) {
  .Nav__item--head {
    margin-bottom: 20px;
  }
}
.Nav__link--header {
  position: relative;
  font-size: min(1.0416666667vw, 1.25rem);
  font-weight: 700;
}
.Nav__link--header:after {
  content: "";
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  right: min(-0.8854166667vw, -17px);
  border-right: min(0.3645833333vw, 7px) solid transparent;
  border-left: min(0.3645833333vw, 7px) solid transparent;
  border-top: min(0.625vw, 12px) solid #252525;
}
@media screen and (max-width: 767.98px) {
  .Nav__link--header {
    font-size: min(4.8vw, 1.125rem);
    letter-spacing: min(0.1145833333vw, 2.2px);
    width: 100%;
    display: block;
  }
  .Nav__link--header:after {
    right: auto;
    margin-left: min(1.3333333333vw, 5px);
    border-right: min(1.8666666667vw, 7px) solid transparent;
    border-left: min(1.8666666667vw, 7px) solid transparent;
    border-top: min(3.2vw, 12px) solid #252525;
  }
}
.Nav__link--current {
  color: #c35508;
}
@media print, screen and (min-width: 768px) {
  .Nav__link--current:after {
    border-top: min(0.625vw, 12px) solid #c35508;
  }
}
.Nav {
  /*
  &__sub {
      position: relative;

      @include m.mq(pc) {
          &:hover {
              & > .Nav__list--sub {
                  opacity: 1;
                  visibility: visible;
                  transform: translateY(0);
              }

              & .Nav__sub--link {
                  &::after {
                      opacity: 1;
                      // bottom: -30px;
                  }
              }
          }

          &.is-clicked {
              & > .Nav__list--sub {
                  opacity: 1 !important;
                  visibility: visible !important;
                  transform: translateY(0) !important;
              }

              & .Nav__link--header {
                  &:after {
                      opacity: 1;
                  }
              }
          }
      }

      &--link {
          font-size: min(m.pvw(22), m.rem(22)) !important;
          letter-spacing: 1.76px;
          font-weight: 700 !important;
          background: transparent;
          border: 0;
          font: inherit;
          color: inherit;
          cursor: pointer;
          appearance: none;
          position: relative;
          display: block;
          width: 100%;
          text-align: left;

          @include m.mq(sp) {
              font-size: min(m.vw(18), m.rem(18)) !important;
              font-weight: 900 !important;
              letter-spacing: 3.78px;
              cursor: none;
              padding-block: 0 !important;
          }

          &::after {
              // bottom: -29px;
              content: "";
              position: absolute;
              left: 50%;
              transform: translateX(-50%);
              bottom: 0;
              width: 45px;
              height: 5px;
              background: #0db18b;
              opacity: 0;
              transition:
                  opacity 0.25s ease,
                  transform 0.25s ease;

              @include m.mq(sp) {
                  display: none;
              }
          }
      }
  }
  */
}
.Nav__img--head {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .Nav__img--head {
    display: block;
    height: min(2.1333333333vw, 8px);
    margin-bottom: 10px;
  }
}

/*---------------------
top page
---------------------*/
.Mv {
  background-color: #fffaeb;
  width: 100vw;
  height: auto;
  aspect-ratio: 192/61;
  display: flex;
  align-items: center;
  position: relative;
}
.Mv::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 100%;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  background-color: #ffede0;
  transform: scale(-1, 1);
  right: 34.5%;
}
@media screen and (max-width: 767.98px) {
  .Mv::before {
    width: max(60vw, 225px);
    right: 11.8%;
  }
}
.Mv::after {
  content: "";
  position: absolute;
  width: 34.5%;
  height: 100%;
  background-color: #ffede0;
  right: 0;
}
@media screen and (max-width: 767.98px) {
  .Mv::after {
    width: 12%;
  }
}
@media screen and (max-width: 767.98px) {
  .Mv {
    aspect-ratio: auto;
  }
}
.Mv__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .Mv__inner {
    width: 90%;
    max-width: 100%;
    flex-direction: column;
    padding-bottom: min(6.6666666667vw, 25px);
  }
}
.Mv__headline {
  position: absolute;
}
@media screen and (max-width: 767.98px) {
  .Mv__headline {
    position: relative;
    margin-top: min(8vw, 30px);
  }
}
.Mv__catch {
  font-size: min(2.3958333333vw, 2.875rem);
  font-weight: 700;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .Mv__catch {
    font-size: min(6.9333333333vw, 1.625rem);
  }
}
.Mv__catch--small {
  font-size: min(1.9791666667vw, 2.375rem);
}
@media screen and (max-width: 767.98px) {
  .Mv__catch--small {
    font-size: min(5.8666666667vw, 1.375rem);
  }
}
.Mv__catch::after {
  position: absolute;
  content: "";
  background-image: radial-gradient(circle, #c35508 2.5px, transparent 2.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 18px 5px;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: -10px;
}
@media screen and (max-width: 767.98px) {
  .Mv__catch::after {
    bottom: -15px;
  }
}
.Mv__title {
  font-size: min(3.3854166667vw, 4.0625rem);
  font-weight: 900;
  line-height: 1.4;
  margin-top: min(2.34375vw, 45px);
  color: #c35508;
}
@media screen and (max-width: 767.98px) {
  .Mv__title {
    font-size: min(8vw, 1.875rem);
    margin-top: min(6.9333333333vw, 26px);
    position: relative;
    z-index: 2;
  }
}
.Mv__scroll {
  color: #0069ad;
}
.Mv__scroll::after {
  content: "";
  position: absolute;
  background: url(assets/img/ico/ico_scroll.svg) no-repeat center center/contain;
  width: 12px;
  height: auto;
  aspect-ratio: 1/1;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.Mv__scroll--pc {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -110px;
}
@media screen and (max-width: 767.98px) {
  .Mv__scroll--pc {
    display: none;
  }
}
.Mv__scroll--sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .Mv__scroll--sp {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: relative;
    font-size: min(3.7333333333vw, 0.875rem);
  }
}
.Mv__img {
  height: 100%;
  width: auto;
  z-index: 1;
  margin: 30px 0 30px auto;
}
@media screen and (max-width: 767.98px) {
  .Mv__img {
    width: calc(100% - 60px);
    margin: -30px auto auto;
  }
}

.About__wrap {
  display: grid;
  gap: 0 min(7.2916666667vw, 140px);
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
@media screen and (max-width: 767.98px) {
  .About__wrap {
    grid-template-columns: 1fr;
  }
}
.About__text, .About__img {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .About__text {
    margin-bottom: min(10.6666666667vw, 40px);
  }
}
.About__block {
  margin-bottom: min(2.6041666667vw, 50px);
}
.About__block--1 {
  grid-column: 1;
  grid-row: 1;
}
@media screen and (max-width: 767.98px) {
  .About__block--1 {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    margin-bottom: min(8vw, 30px);
  }
}
.About__block--2 {
  grid-column: 1;
  grid-row: 2;
}
@media screen and (max-width: 767.98px) {
  .About__block--2 {
    grid-column: auto;
    grid-row: auto;
    order: 3;
    margin-bottom: 0;
  }
}
.About__img {
  grid-column: 2;
  grid-row: 1/3;
}
@media screen and (max-width: 767.98px) {
  .About__img {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    margin-bottom: min(8vw, 30px);
  }
}

.Flow {
  background-color: #fff6dc;
  padding-bottom: 30px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.98px) {
  .Flow {
    padding-bottom: 5px;
    margin-bottom: 38px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .Flow {
    padding-bottom: 0;
  }
}
.Flow__announcement {
  color: #c35508;
  margin: min(0.625vw, 12px) auto min(3.9583333333vw, 76px);
  font-size: min(1.6666666667vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.Flow__announcement::before, .Flow__announcement::after {
  content: "";
  position: absolute;
  height: min(3.3333333333vw, 64px);
  width: auto;
  aspect-ratio: 39/64;
  top: 20px;
  background-image: url(assets/img/ico/ico_line.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.98px) {
  .Flow__announcement::before, .Flow__announcement::after {
    top: 10px;
    aspect-ratio: 5/12;
  }
}
.Flow__announcement::before {
  left: -50px;
}
.Flow__announcement::after {
  right: -45px;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767.98px) {
  .Flow__announcement {
    font-size: min(4.8vw, 1.125rem);
    text-align: center;
    line-height: 1.2;
    margin-bottom: min(5.3333333333vw, 20px);
    width: calc(100% - 70px);
  }
  .Flow__announcement::before, .Flow__announcement::after {
    height: 100%;
  }
  .Flow__announcement::before {
    left: -35px;
  }
  .Flow__announcement::after {
    right: -30px;
  }
}
.Flow__list {
  display: flex;
  gap: 0 min(3.6458333333vw, 70px);
  margin-bottom: min(3.125vw, 60px);
}
@media print, screen and (min-width: 768px) {
  .Flow__list .Flow__item:first-child .Flow__text {
    margin-bottom: min(2.0833333333vw, 40px);
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .Flow__list {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .Flow__list {
    flex-direction: column;
    gap: 40px 0;
    margin-bottom: 0;
  }
}
.Flow__item {
  background-color: #fff;
  border-radius: 20px;
  width: 33.3333333333%;
  position: relative;
  padding: min(1.0416666667vw, 20px) min(1.0416666667vw, 20px) min(1.5625vw, 30px);
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .Flow__item {
    padding: 15px 20px 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .Flow__item {
    width: 100%;
    padding: min(5.3333333333vw, 20px);
  }
}
.Flow__item::after {
  content: "";
  position: absolute;
  background: url(assets/img/ico/ico_arrow.svg) no-repeat center center/contain;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: -10%;
  width: 17px;
  height: auto;
  aspect-ratio: 17/37;
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .Flow__item::after {
    width: 14px;
  }
}
@media screen and (max-width: 767.98px) {
  .Flow__item::after {
    transform: rotate(90deg) translateX(-50%);
    top: auto;
    bottom: -48px;
    right: auto;
    left: 47%;
  }
}
.Flow__item:last-child::after {
  content: none;
}
.Flow__num {
  color: #c35508;
  font-size: min(0.9375vw, 1.125rem);
  font-weight: 700;
  letter-spacing: min(0.234375vw, 4.5px);
  width: min(3.3854166667vw, 65px);
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .Flow__num {
    font-size: min(4.8vw, 1.125rem);
    width: min(17.3333333333vw, 65px);
  }
}
.Flow__num--big {
  font-size: min(1.6145833333vw, 1.9375rem);
}
@media screen and (max-width: 767.98px) {
  .Flow__num--big {
    font-size: min(8vw, 1.875rem);
  }
}
.Flow__img {
  margin-bottom: 20px;
  width: auto;
  height: 220px;
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .Flow__img {
    margin-bottom: auto;
    height: auto;
  }
}
.Flow__img--1, .Flow__img--2, .Flow__img--3 {
  margin: auto;
  height: auto;
}
.Flow__img--1 {
  width: 178px;
  aspect-ratio: 89/82;
}
@media screen and (max-width: 767.98px) {
  .Flow__img--1 {
    width: 166px;
    margin: 20px auto 40px;
  }
}
.Flow__img--2 {
  height: 220px;
  aspect-ratio: 50/57;
}
@media screen and (max-width: 767.98px) {
  .Flow__img--2 {
    height: 210px;
  }
}
.Flow__img--3 {
  width: 100%;
  aspect-ratio: 153/71;
}
@media screen and (max-width: 767.98px) {
  .Flow__img--3 {
    width: auto;
    margin: 30px auto 50px;
  }
}
.Flow__title {
  color: #0069ad;
  font-weight: 700;
  font-size: min(0.9375vw, 1.125rem);
  line-height: 1.5;
  margin-bottom: min(1.0416666667vw, 20px);
}
@media screen and (max-width: 767.98px) {
  .Flow__title {
    font-size: min(4.8vw, 1.125rem);
    margin-bottom: min(4.2666666667vw, 16px);
  }
}
.Flow__text {
  margin-bottom: min(0.8333333333vw, 16px);
}
@media screen and (max-width: 767.98px) {
  .Flow__text {
    margin-bottom: min(6.9333333333vw, 26px);
  }
}
.Flow__detail {
  color: #6c6c6c;
  font-size: min(0.7291666667vw, 0.875rem);
}
@media screen and (max-width: 767.98px) {
  .Flow__detail {
    font-size: min(3.7333333333vw, 0.875rem);
  }
}

.Movie {
  background-color: #ffede0;
  position: relative;
}
.Movie::after {
  position: absolute;
  content: "";
  background-image: radial-gradient(circle, #c35508 2.5px, transparent 2.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 18px 5px;
  width: 100vw;
  height: 5px;
  bottom: -3px;
}
.Movie__wrap {
  padding-bottom: 30px;
}
.Movie__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: min(1.3020833333vw, 25px);
  gap: 0 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .Movie__inner {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767.98px) {
  .Movie__inner {
    flex-direction: column;
    margin-bottom: min(9.3333333333vw, 35px);
  }
}
.Movie__instructor {
  width: 36%;
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767.98px) {
  .Movie__instructor {
    width: 100%;
    gap: 30px 25px;
  }
}
.Movie__img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 767.98px) {
  .Movie__img {
    justify-content: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .Movie__photo {
    width: 36%;
    margin-right: min(13.3333333333vw, 50px);
  }
}
.Movie__expositor {
  position: relative;
  left: -25px;
}
@media screen and (max-width: 767.98px) {
  .Movie__expositor {
    left: 0;
  }
}
.Movie__expositor--name {
  color: #c35508;
  font-size: min(1.1458333333vw, 1.375rem);
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .Movie__expositor--name {
    font-size: min(5.3333333333vw, 1.25rem);
  }
}
.Movie__expositor::before, .Movie__expositor:after {
  content: "";
  position: absolute;
  left: -40px;
  width: 220px;
  height: 1px;
  background: #c35508;
}
@media screen and (max-width: 767.98px) {
  .Movie__expositor::before, .Movie__expositor:after {
    left: -20px;
    width: 194px;
  }
}
.Movie__expositor::before {
  top: -40px;
  transform: rotate(-12deg);
}
.Movie__expositor::after {
  bottom: -40px;
  transform: rotate(12deg);
}
.Movie__caption {
  font-size: min(0.7291666667vw, 0.875rem);
}
@media screen and (max-width: 767.98px) {
  .Movie__caption {
    font-size: min(3.7333333333vw, 0.875rem);
    margin-bottom: 40px;
  }
}
.Movie__text {
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  .Movie__text {
    width: 100%;
  }
}
.Movie__logo {
  margin-inline: auto min(5.7291666667vw, 110px);
  width: 100%;
  max-width: 346px;
  aspect-ratio: 173/82;
}
@media screen and (max-width: 767.98px) {
  .Movie__logo {
    margin: auto auto min(6.6666666667vw, 25px);
  }
}
.Movie__text {
  font-size: min(0.9375vw, 1.125rem);
}
@media screen and (max-width: 767.98px) {
  .Movie__text {
    font-size: min(4.2666666667vw, 1rem);
  }
}
.Movie__btn-area {
  display: grid;
  grid-template-columns: auto min(21.3541666667vw, 410px) auto;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .Movie__btn-area {
    grid-template-columns: repeat(2, 1fr);
  }
}
.Movie__acc {
  margin: auto;
}
@media screen and (max-width: 767.98px) {
  .Movie__acc {
    gap: 0 min(8vw, 30px);
  }
}
.Movie__acc--1, .Movie__acc--2 {
  width: auto;
}
.Movie__acc--1 {
  height: min(8.6979166667vw, 167px);
  aspect-ratio: 233/167;
  margin-right: min(5.9895833333vw, 115px);
  order: 1;
}
@media screen and (max-width: 767.98px) {
  .Movie__acc--1 {
    order: 2;
    height: min(22.4vw, 84px);
    margin-right: min(4vw, 15px);
  }
}
.Movie__acc--2 {
  height: min(8.59375vw, 165px);
  aspect-ratio: 182/165;
  margin-left: min(6.7708333333vw, 130px);
  order: 3;
}
@media screen and (max-width: 767.98px) {
  .Movie__acc--2 {
    height: min(20.8vw, 78px);
    margin-left: min(4vw, 15px);
  }
}
.Movie__btn {
  align-items: center;
  order: 2;
}
@media screen and (max-width: 767.98px) {
  .Movie__btn {
    order: 1;
    grid-column: 1/3;
    margin-bottom: min(9.3333333333vw, 35px);
  }
}
.Movie__link {
  border: 3px solid #c35508;
  border-radius: 999px;
  width: min(21.3541666667vw, 410px);
  color: #c35508;
}
.Movie__link::after {
  filter: invert(43%) sepia(65%) saturate(6326%) hue-rotate(19deg) brightness(94%) contrast(94%);
}
@media screen and (max-width: 767.98px) {
  .Movie__link {
    width: 100%;
    max-width: min(90.6666666667vw, 340px);
  }
}

.Seminar__block {
  margin-bottom: min(1.0416666667vw, 20px);
}
.Seminar__block:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .Seminar__block {
    margin-bottom: min(5.3333333333vw, 20px);
  }
}
.Seminar__methods {
  position: relative;
  padding: min(1.5625vw, 30px) min(1.0416666667vw, 20px) min(1.1458333333vw, 22px) min(3.4375vw, 66px);
  display: inline-flex;
  border-radius: 20px 20px 0 0;
  align-items: center;
  font-size: min(1.3020833333vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: min(0.3125vw, 6px);
}
.Seminar__methods::before {
  content: "";
  position: absolute;
  left: min(1.0416666667vw, 20px);
}
@media screen and (max-width: 767.98px) {
  .Seminar__methods::before {
    left: min(2.6666666667vw, 10px);
  }
}
@media screen and (max-width: 767.98px) {
  .Seminar__methods {
    padding: min(4vw, 15px) min(4.8vw, 18px) min(4.2666666667vw, 16px) min(14.9333333333vw, 56px);
    font-size: min(5.3333333333vw, 1.25rem);
    letter-spacing: min(1.3333333333vw, 5px);
  }
}
.Seminar__methods--online {
  background-color: #ffede0;
  color: #c35508;
}
.Seminar__methods--online::before {
  background: url(assets/img/ico/ico_online.svg) no-repeat center center/contain;
  width: min(1.71875vw, 33px);
  height: auto;
  aspect-ratio: 33/31;
}
@media screen and (max-width: 767.98px) {
  .Seminar__methods--online::before {
    width: min(8.8vw, 33px);
  }
}
.Seminar__methods--offline {
  background-color: #fffaeb;
  color: #93720e;
}
.Seminar__methods--offline::before {
  background: url(assets/img/ico/ico_offline.svg) no-repeat center center/contain;
  width: min(1.71875vw, 33px);
  height: auto;
  aspect-ratio: 11/8;
}
@media screen and (max-width: 767.98px) {
  .Seminar__methods--offline::before {
    width: min(8.8vw, 33px);
  }
}
.Seminar__wrap {
  border-radius: 0 20px 20px 20px;
  border: 6px solid;
  padding: min(1.6666666667vw, 32px) min(1.1458333333vw, 22px) min(2.4479166667vw, 47px) min(1.6145833333vw, 31px);
}
@media screen and (max-width: 767.98px) {
  .Seminar__wrap {
    border-width: 4px;
    padding: min(6.4vw, 24px) min(4.2666666667vw, 16px) min(8vw, 30px);
  }
}
.Seminar__wrap--online {
  border-color: #ffede0;
}
.Seminar__wrap--offline {
  border-color: #fffaeb;
}
.Seminar__title {
  font-size: min(1.3020833333vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: min(0.2604166667vw, 5px);
  margin-bottom: min(1.9791666667vw, 38px);
}
@media screen and (max-width: 767.98px) {
  .Seminar__title {
    font-size: min(5.3333333333vw, 1.25rem);
    letter-spacing: min(1.0666666667vw, 4px);
    margin-bottom: min(6.6666666667vw, 25px);
  }
}
.Seminar__inner {
  display: grid;
}
@media print, screen and (min-width: 768px) {
  .Seminar__inner {
    grid-template-rows: repeat(2, auto);
  }
}
@media screen and (max-width: 767.98px) {
  .Seminar__inner {
    grid-template-columns: repeat(2, auto);
  }
}
@media print, screen and (min-width: 768px) {
  .Seminar__inner--online {
    grid-template-columns: 17% auto;
    gap: 36px 50px;
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767.98px) {
  .Seminar__inner--online {
    grid-template-rows: repeat(4, auto);
    gap: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .Seminar__inner--offline {
    grid-template-columns: 17% 25% 8% 50%;
    gap: 36px 50px;
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 767.98px) {
  .Seminar__inner--offline {
    grid-template-rows: repeat(4, auto);
    gap: 25px;
  }
  .Seminar__inner--offline .Seminar__img {
    margin-bottom: -25px;
  }
}
.Seminar__img {
  max-width: 190px;
  grid-area: 1/1/3/2;
}
@media screen and (max-width: 767.98px) {
  .Seminar__img {
    width: 68%;
    max-width: 150px;
    order: 3;
    grid-area: 2/2/3/3;
    justify-self: flex-end;
  }
}
.Seminar__photo {
  width: 100%;
  aspect-ratio: 1/1;
}
.Seminar__content {
  width: 90%;
}
.Seminar__items {
  display: flex;
  gap: 0 min(3.125vw, 60px);
  margin-bottom: min(1.875vw, 36px);
}
@media screen and (max-width: 767.98px) {
  .Seminar__items {
    display: block;
  }
}
.Seminar__date {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 767.98px) {
  .Seminar__date {
    order: 1;
    grid-area: 1/1/2/3;
  }
}
.Seminar__lecture--online {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 767.98px) {
  .Seminar__lecture--online {
    order: 2;
    grid-area: 2/1/3/2;
  }
}
.Seminar__lecture--offline {
  grid-area: 1/3/2/4;
}
@media screen and (max-width: 767.98px) {
  .Seminar__lecture--offline {
    order: 2;
    grid-area: 2/1/3/2;
  }
}
.Seminar__place {
  grid-area: 1/4/2/5;
}
@media screen and (max-width: 767.98px) {
  .Seminar__place {
    order: 4;
    grid-area: 3/1/4/3;
  }
}
.Seminar__heading {
  color: #0069ad;
  font-size: min(1.0416666667vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: min(1.0416666667vw, 20px);
}
@media screen and (max-width: 767.98px) {
  .Seminar__heading {
    font-size: min(4.8vw, 1.125rem);
    margin-bottom: min(4vw, 15px);
    line-height: 1;
  }
}
.Seminar__text {
  font-size: min(0.9375vw, 1.125rem);
}
@media screen and (max-width: 767.98px) {
  .Seminar__text {
    font-size: min(4.2666666667vw, 1rem);
    line-height: 1.68;
  }
}
.Seminar__detail--online {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 767.98px) {
  .Seminar__detail--online {
    order: 5;
    margin-bottom: min(6.6666666667vw, 25px);
    grid-area: 4/1/5/3;
  }
}
.Seminar__detail--offline {
  grid-area: 2/2/3/5;
}
@media screen and (max-width: 767.98px) {
  .Seminar__detail--offline {
    order: 5;
    margin-bottom: min(6.6666666667vw, 25px);
    grid-area: 4/1/5/3;
  }
}
.Seminar__btn {
  margin-top: min(2.0833333333vw, 40px);
}
.Seminar__link {
  color: #fff;
}
.Seminar__link:after {
  filter: invert(100%) sepia(1%) saturate(7500%) hue-rotate(52deg) brightness(104%) contrast(101%);
}
@media screen and (max-width: 767.98px) {
  .Seminar__link {
    font-size: min(4.8vw, 1.125rem);
    padding-block: min(4.2666666667vw, 16px);
  }
  .Seminar__link:after {
    right: min(4.2666666667vw, 16px);
  }
}
.Seminar__link--online {
  background: #c35508;
}
@media screen and (max-width: 767.98px) {
  .Seminar__link--online {
    padding-inline: min(2.6666666667vw, 10px) min(12vw, 45px);
  }
}
.Seminar__link--offline {
  background: #93720e;
  width: min(23.6979166667vw, 455px);
  justify-content: flex-start;
  padding-left: min(1.0416666667vw, 20px);
}
@media screen and (max-width: 767.98px) {
  .Seminar__link--offline {
    width: 100%;
    max-width: min(78.6666666667vw, 295px);
    text-align: center;
    padding-left: min(5.3333333333vw, 20px);
    padding-block: min(1.3333333333vw, 5px);
  }
}

.Training {
  background-color: #fffaeb;
  padding-bottom: 5px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.98px) {
  .Training {
    margin-bottom: 38px;
  }
}
.Training__wrap {
  display: flex;
  flex-direction: column;
  gap: 56px 0;
}
.Training__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-left: min(2.34375vw, 45px);
  margin: 0 0 0 auto;
  padding-top: 20px;
}
@media screen and (max-width: 767.98px) {
  .Training__list {
    flex-direction: column;
  }
}
.Training__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 12px 0;
}
.Training__item:after {
  content: "";
  position: absolute;
  background: url(assets/img/ico/ico_arrow.svg) no-repeat center center/contain;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: min(-3.6458333333vw, -70px);
  width: 17px;
  height: auto;
  aspect-ratio: 17/37;
}
.Training__item:last-child::after {
  content: none;
}
@media screen and (max-width: 767.98px) {
  .Training__item {
    padding-bottom: 60px;
  }
  .Training__item:after {
    transform: rotate(90deg);
    top: auto;
    bottom: 14px;
    right: auto;
  }
  .Training__item:last-child {
    padding-bottom: 0;
  }
}
.Training__img {
  margin: auto;
}
.Training__text {
  color: #c35508;
  font-size: min(0.9375vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .Training__text {
    font-size: min(4.8vw, 1.125rem);
  }
}
.Training__link {
  border: 3px solid #c35508;
  border-radius: 999px;
  width: min(21.3541666667vw, 410px);
  color: #c35508;
  justify-content: flex-start;
  padding-left: min(0.8333333333vw, 16px);
}
.Training__link:after {
  filter: invert(43%) sepia(65%) saturate(6326%) hue-rotate(19deg) brightness(94%) contrast(94%);
  right: min(1.3020833333vw, 25px);
}
@media screen and (max-width: 767.98px) {
  .Training__link {
    width: 100%;
    max-width: min(89.6vw, 336px);
    text-align: center;
    padding-left: min(9.3333333333vw, 35px);
    padding-block: min(2.6666666667vw, 10px);
  }
  .Training__link:after {
    right: min(6.6666666667vw, 25px);
  }
}

.QA {
  background-color: #ffede0;
  padding-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .QA {
    padding-bottom: 5px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .QA {
    padding-bottom: 0;
  }
}
.QA__inner {
  width: 81%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .QA__inner {
    width: 100%;
  }
}
.QA__question {
  margin-inline: 30px;
  line-height: 1.3;
}
@media screen and (max-width: 767.98px) {
  .QA__question {
    margin-inline: min(8vw, 30px);
  }
}
.QA__question::before {
  content: "Q";
  left: 0;
  position: absolute;
  color: #0069ad;
  font-size: min(1.4583333333vw, 1.75rem);
  font-weight: 700;
  margin-top: min(-0.2083333333vw, -4px);
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}
@media screen and (max-width: 767.98px) {
  .QA__question::before {
    margin-top: min(-1.0666666667vw, -4px);
    font-size: min(7.4666666667vw, 1.75rem);
    top: 30px;
    left: 20px;
    transform: none;
  }
}
.QA__answer {
  margin-top: 30px;
  margin-left: 30px;
  padding-right: 40px;
  padding-bottom: 30px;
}
.QA__answer::before {
  content: "A";
  left: 0;
  position: absolute;
  color: #c35508;
  font-size: min(1.4583333333vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  top: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1260px) {
  .QA__answer {
    margin-top: 40px;
  }
  .QA__answer::before {
    top: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .QA__answer {
    margin-top: 50px;
    padding-right: 0;
  }
  .QA__answer::before {
    font-size: min(7.4666666667vw, 1.75rem);
    top: 50px;
  }
}

.Accordion__option {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
}
.Accordion__option:last-child {
  margin-bottom: 0;
}
.Accordion__hidden {
  display: none;
}
.Accordion__title {
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.5s;
  padding: 30px;
  cursor: pointer;
}
.Accordion__title:before, .Accordion__title:after {
  content: "";
  position: absolute;
  right: 10px;
  height: min(1.09375vw, 21px);
  width: 3px;
  background-color: #0069ad;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}
.Accordion__title::after {
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 767.98px) {
  .Accordion__title {
    padding: 30px 20px;
  }
  .Accordion__title::before, .Accordion__title::after {
    height: min(5.6vw, 21px);
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
  }
  .Accordion__title::after {
    transform: translateY(-50%) rotate(90deg);
  }
}
.Accordion__content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.5s;
  max-height: 0;
  overflow: hidden;
  padding: 0 30px 0 0;
  margin-left: 30px;
}
@media screen and (max-width: 767.98px) {
  .Accordion__content {
    margin-left: 20px;
  }
}

.Accordion__hidden:checked + .Accordion__title + .Accordion__content {
  max-height: 500px;
  transition: all 1.5s;
}

.Accordion__hidden:checked + .Accordion__title::before {
  transform: translateY(-50%) rotate(90deg) !important;
}

/*-------------------------------------------
Headerをスクロールしたとき上に固定するためJSで付けるクラス
-------------------------------------------*/
.fixed {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 990;
}/*# sourceMappingURL=style.css.map */