@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 1s !important;
}

.anim--delay {
  animation-delay: 0.6s !important;
}

.anim-hide {
  opacity: 0;
}

.anim-fadeIn.onAnim {
  animation: fadeIn 1s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp.onAnim {
  animation: fadeUp 1s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 1s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight.onAnim {
  animation: fadeRight 1s ease 0s 1 alternate forwards;
}

img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

:-moz-placeholder-shown {
  color: #ccc;
}

:placeholder-shown {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
}

a {
  color: #000;
}
a:hover {
  text-decoration: underline;
}

html {
  font-size: 16px;
}
@media all and (max-width: 680px) {
  html {
    font-size: 3.7208vw;
  }
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
  overscroll-behavior: none;
}
@media all and (max-width: 680px) {
  body {
    font-size: 3.7208vw;
  }
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}

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

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

.textRight {
  text-align: right;
}

@media all and (max-width: 680px) {
  .o_sp {
    display: block !important;
  }
}
@media all and (max-width: 1024px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 680px) {
  html {
    font-size: 3.7208vw;
  }
  body {
    font-size: 3.7208vw;
  }
}
@media all and (max-width: 680px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp {
    display: none !important;
  }
}
.inner {
  max-width: 1100px;
  padding: 0 50px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}
@media all and (max-width: 1024px) {
  .inner {
    padding: 0 30px;
  }
}
@media all and (max-width: 680px) {
  .inner {
    padding: 0 4.651vw;
  }
}

.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  /* background-color: #071B48; */
  background-color: #ffffff;
  transition: all 0.3s ease 0s;
  padding: 20px 40px;
}
.mainHeader:hover {
  text-decoration: none;
}
@media all and (max-width: 680px) {
  .mainHeader {
    padding: 2.3255vw 3.48825vw;
  }
}
.mainHeader__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.mainHeader__logo {
  position: relative;
  width: 300px;
  transition: all 0.3s ease 0s;
  filter: none;
}
.mainHeader__logo:hover {
  text-decoration: none;
}
@media all and (max-width: 680px) {
  .mainHeader__logo {
    width: 34.8825vw;
  }
}
.mainHeader__logo img {
  height: auto;
  width: 100%;
}
.mainHeader.top {
  background-color: transparent;
}

.gNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #071B48;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s 0s ease, translate 0s 0.3s ease;
  translate: 120% 0;
  opacity: 0;
  border-bottom: 1px solid #071B48;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gNav.active {
  transition: opacity 0.3s 0s ease, translate 0s 0s ease;
  opacity: 1;
  translate: 0 0;
}
.gNav__inner {
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.gNav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  line-height: 1.4;
  flex-direction: column;
  align-items: normal;
  gap: 2.2rem;
}
@media all and (max-width: 680px) {
  .gNav__list {
    gap: 1.5em;
  }
}
.gNav__list__item a {
  display: flex;
  color: #fff;
  position: relative;
  padding: 0.35em 0;
  text-align: center;
  font-size: 1.25rem;
  transition: opacity 0.3s ease 0s;
  font-size: 1.5rem;
  position: relative;
}
@media all and (max-width: 680px) {
  .gNav__list__item a {
    font-size: 1rem;
  }
}
.gNav__list__item a > span {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
}
.gNav__list__item a > span strong {
  font-size: 1.875rem;
}
@media all and (max-width: 680px) {
  .gNav__list__item a > span strong {
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .gNav__list__item a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

.spBT {
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  position: relative;
  z-index: 99;
  background-color: transparent;
  background: none;
  cursor: pointer;
}
@media all and (max-width: 680px) {
  .spBT {
    width: 9.302vw;
    height: 9.302vw;
    padding: 1.16275vw;
  }
}
.spBT__inner {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media all and (max-width: 680px) {
  .spBT__inner {
    gap: 1.8604vw;
  }
}
.spBT__bar {
  width: 100%;
  height: 4px;
  background-color: #071B48;
  transition: all 0.3s ease 0s;
}
.spBT__bar:hover {
  text-decoration: none;
}
@media all and (max-width: 680px) {
  .spBT__bar {
    height: 0.9302vw;
  }
}
.spBT.active .spBT__bar:first-child {
  translate: 0 300%;
  rotate: 45deg;
}
.spBT.active .spBT__bar:nth-child(2) {
  opacity: 0;
}
.spBT.active .spBT__bar:last-child {
  translate: 0 -300%;
  rotate: -45deg;
}

.fv {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/fv_bg.webp);
  transition: opacity 0.5s ease 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 80px;
  position: relative;
}
@media all and (max-width: 680px) {
  .fv {
    padding: 8.125rem 1.25rem 3.125rem;
  }
}
.fv:before {
  content: "";
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #071B48;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
@media all and (max-width: 680px) {
  .fv:before {
    height: auto;
    width: 100%;
  }
}
.fv__inner {
  width: 100%;
  position: relative;
  z-index: 5;
}
.fv__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.fv__paragraph {
  position: relative;
  padding: 0.75em 1.25rem;
  line-height: 1;
  font-weight: bold;
  color: #071B48;
  font-size: 1.375rem;
}
@media all and (max-width: 1024px) {
  .fv__paragraph {
    font-size: 2.5vw;
  }
}
@media all and (max-width: 680px) {
  .fv__paragraph {
    padding: 0.75em;
    font-size: 0.875rem;
  }
}
.fv__paragraph:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  transition: scale 0.5s ease 0.75s;
  transform-origin: left;
  scale: 0 1;
}
.fv__paragraph span {
  position: relative;
  z-index: 10;
  transition: opacity 0.5s ease 1.25s;
  opacity: 0;
}
.fv__lead {
  color: #fff;
  font-weight: 900;
  transition: opacity 0.5s ease 1.25s;
  opacity: 0;
  letter-spacing: 0.05em;
  line-height: 1.25;
  font-size: 1.5rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-shadow: 2px 2px 5px #071b48;
}
@media all and (max-width: 1024px) {
  .fv__lead {
    font-size: 3.5vw;
  }
}
@media all and (max-width: 680px) {
  .fv__lead {
    font-size: 1rem;
  }
}
.fv__lead .first strong {
  font-size: 1.55em;
}
@media all and (max-width: 680px) {
  .fv__lead .first strong {
    font-size: 1.4em;
  }
}
.fv__lead .first .outfit {
  font-size: 2.667em;
  font-weight: 700;
}
.fv__lead .second {
  color: #FFF02F;
  font-size: 1.9em;
}
@media all and (max-width: 680px) {
  .fv__lead .second {
    font-size: 1.8em;
  }
}
.fv__listWrap {
  transition: opacity 0.5s ease 1.55s;
  width: 100%;
  color: #fff;
  opacity: 0;
  padding-top: 1rem;
}
@media all and (min-width: 1025px) {
  .fv__listWrap {
    max-width: 698px;
  }
}
.fv__list {
  text-shadow: 2px 2px 5px #071b48;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media all and (max-width: 680px) {
  .fv__list {
    grid-template-columns: 1fr;
  }
}
.fv__list__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.5rem;
}
@media all and (max-width: 1024px) {
  .fv__list__item {
    font-size: 3.5vw;
  }
}
@media all and (max-width: 680px) {
  .fv__list__item {
    font-size: 1.0625rem;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
  }
}
.fv__list__text {
  line-height: 1.5;
  margin-bottom: 0.2em;
}
.fv__list__main {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: baseline;
  line-height: 1.2;
  height: 3.4rem;
  padding-bottom: 0.5rem;
}
@media all and (min-width: 681px) {
  .fv__list__main {
    width: 100%;
  }
}
@media all and (max-width: 680px) {
  .fv__list__main {
    height: 2.5rem;
    margin-left: 0.5em;
  }
}
.fv__list__main:before {
  content: "";
  width: 80%;
  bottom: 0;
  left: 50%;
  translate: -50%;
  height: 1.35rem;
  background-color: #F7892B;
  position: absolute;
  transform: skew(-45deg);
}
@media all and (max-width: 680px) {
  .fv__list__main:before {
    height: 0.75rem;
    width: 100%;
  }
}
.fv__list__main > * {
  position: relative;
  z-index: 5;
}
.fv__list__main .strong {
  font-weight: 900;
  font-size: 1.583em;
}
.fv__list__main .outfit {
  font-size: 1.667em;
}
.fv__list__main small {
  font-size: 0.833em;
}
.fv__caption {
  text-align: center;
  margin-top: 2em;
  font-size: 0.75rem;
}
@media all and (max-width: 680px) {
  .fv__caption {
    text-align: left;
  }
}
.fv.onAnim {
  opacity: 1;
}
.fv.onAnim .fv__paragraph:before {
  scale: 1;
}
.fv.onAnim .fv__paragraph span {
  opacity: 1;
}
.fv.onAnim .fv__lead {
  opacity: 1;
}
.fv.onAnim .fv__listWrap {
  opacity: 1;
}

.commonHeading {
  color: #071B48;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  font-size: 1.75rem;
}
@media all and (max-width: 680px) {
  .commonHeading {
    font-size: 1.25rem;
  }
}
.commonHeading.white .commonHeading__en {
  color: #FFF02F;
}
.commonHeading.white .commonHeading__main {
  color: #fff;
}
.commonHeading.white:after {
  background-color: #FFF02F;
}
.commonHeading__en {
  color: #F7892B;
  font-weight: bold;
}
.commonHeading__main {
  font-weight: 900;
  font-size: 1.4285em;
  margin-top: 0.2em;
}
.commonHeading:after {
  content: "";
  height: 0.2em;
  margin-top: 0.45em;
  width: 3.25em;
  background-color: #F7892B;
}

.cv {
  background-color: #152B53;
  position: relative;
  padding: 3.125rem 0 1.875rem;
  color: #fff;
}
.cv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image: linear-gradient(-45deg, transparent, transparent 35%, #fff 35%, #fff 50%, transparent 50%, transparent 85%, #fff 85%, #fff);
  background-size: 0.5rem 0.5rem;
}
.cv__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .cv__main {
    flex-direction: column;
    margin: 0 auto;
    gap: 1.875rem;
  }
}
.cv__textWrap {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media all and (min-width: 1025px) {
  .cv__textWrap {
    max-width: calc(50% - 1.875rem);
  }
}
.cv__textWrap .label {
  font-weight: 900;
  line-height: 1.2;
  font-size: 1.5rem;
  padding: 0.3em 0.45em;
  border: 1px solid #fff;
  white-space: nowrap;
}
@media all and (max-width: 680px) {
  .cv__textWrap .label {
    font-size: 1.125rem;
  }
}
.cv__textWrap .main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
  gap: 0.2rem;
}
.cv__textWrap .text {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.cv__textWrap .text:after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background-color: #fff;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.cv__textWrap .lead {
  color: #FFF02F;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media all and (max-width: 680px) {
  .cv__textWrap .lead {
    font-size: 1.375rem;
  }
}
@media all and (min-width: 1025px) {
  .cv__btWrap {
    width: 50%;
  }
}
.cv__btWrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 1.4rem;
  background-color: #06C756;
  padding: 0.5em 0.75em;
  font-size: 1.5rem;
  font-weight: 900;
  gap: 0.5em;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 0.3125rem 0px #079b00;
  line-height: 1.4;
}
.cv__btWrap a:hover {
  text-decoration: none;
}
@media all and (max-width: 680px) {
  .cv__btWrap a {
    font-size: 1.75rem;
  }
}
.cv__btWrap a:hover {
  translate: 0 0.3125rem;
  text-decoration: none;
  box-shadow: 0px 0px 0px #079b00;
}
.cv__btWrap a .ic {
  width: 3.9375rem;
}
@media all and (max-width: 680px) {
  .cv__btWrap a .ic {
    width: 2.8125rem;
  }
}
.cv__caption {
  text-align: center;
  margin-top: 2.5em;
  font-size: 0.75rem;
}
.container {
  position: relative;
  padding: 6.25rem 0;
}
@media all and (max-width: 680px) {
  .container {
    padding: 3.75rem 0;
  }
}
.container.pb0 {
  padding-bottom: 0;
}
.container--tri .triUp,
.container--tri .triLo {
  content: "";
  width: 17.5rem;
  height: 17.5rem;
  background-color: #000;
  opacity: 0.05;
  position: absolute;
}
@media all and (max-width: 680px) {
  .container--tri .triUp,
  .container--tri .triLo {
    width: 9.375rem;
    height: 9.375rem;
  }
}
.container--tri .triUp {
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
.container--tri .triLo {
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0);
          clip-path: polygon(0% 100%, 100% 100%, 100% 0);
}

.bg-gray {
  background-color: #F3F4F6;
}

.intro {
  position: relative;
}
.intro:after {
  content: "";
  width: 11.375rem;
  height: 4rem;
  background-color: #fff;
  position: absolute;
  bottom: -2.75rem;
  left: 50%;
  translate: -50% 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0, 50% 100%);
  z-index: 2;
  transform-origin: top center;
}
@media all and (max-width: 680px) {
  .intro:after {
    scale: 0.8;
  }
}
.intro__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.75rem;
  margin-bottom: 3.75rem;
  color: #071B48;
}
@media all and (max-width: 680px) {
  .intro__heading {
    gap: 0.5em;
    font-size: 1.5rem;
  }
}
.intro__heading .sub {
  line-height: 1.6;
  font-weight: bold;
}
.intro__heading .main {
  font-size: 1.857em;
  line-height: 1.4;
  font-weight: 900;
  position: relative;
}
@media all and (max-width: 680px) {
  .intro__heading .main {
    font-size: 1.32em;
  }
}
.intro__heading .main:before {
  content: "";
  width: 100%;
  height: 0.45em;
  background-color: #FFF02F;
  position: absolute;
  bottom: 0;
  left: 0;
}
.intro__heading .main strong {
  position: relative;
  display: block;
  z-index: 5;
}
.intro__listWrap {
  max-width: 51.875rem;
  margin: 0 auto;
  border: 5px solid #071B48;
  color: #071B48;
  font-weight: bold;
  border-radius: 1.875rem;
  position: relative;
}
.intro__listWrap:after {
  content: "";
  width: 10.625rem;
  height: 3.75rem;
  background-color: #071B48;
  position: absolute;
  bottom: -3.75rem;
  left: 50%;
  translate: -50% 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0, 50% 100%);
}
.intro__listWrap__inner {
  position: relative;
  padding: 2.5rem;
  z-index: 5;
  border-radius: 1.875rem;
  background-color: #fff;
}
@media all and (max-width: 680px) {
  .intro__listWrap__inner {
    padding: 2.5rem 1.5625rem;
  }
}
.intro__listWrap__inner:after {
  content: "";
  width: 11.375rem;
  height: 4rem;
  background-color: #fff;
  position: absolute;
  bottom: -3.375rem;
  left: 50%;
  translate: -50% 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0, 50% 100%);
}
.intro__listWrap__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  font-weight: bold;
  font-size: 1.125rem;
}
@media all and (max-width: 680px) {
  .intro__listWrap__text {
    text-align: left;
    font-size: 0.85rem;
  }
}
.intro__listWrap__text strong {
  font-size: 1.65rem;
}
@media all and (max-width: 680px) {
  .intro__listWrap__text strong {
    display: block;
    text-align: center;
  }
}
.intro__list {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  gap: 1em;
  padding: 2rem 0;
  width: 28rem;  /******幅の追加*****/
  margin: 0 auto;  /*******中央寄せの追加*****/
}
@media all and (max-width: 680px) {
  .intro__list {
    font-size: 1.125rem;
  }
}
.intro__list__item {
  display: flex;
  width: auto; /******幅の自動調整*****/
}
.intro__list__item .ic {
  flex-shrink: 0;
  width: 1.875em;
  margin-right: 1em;
  height: 1.3984em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/ic_check.svg);
  margin-top: 0.2em;
}
@media all and (max-width: 680px) {
  .intro__list__item .ic {
    width: 1.5em;
    height: 1.2em;
    margin-right: 0.75em;
  }
}
.intro__list__item .text {
  border-bottom: 2px solid #071B48;
  line-height: 1.5;
  padding-bottom: 0.3em;
}
.intro__answer {
  margin-top: 6.25rem;
}
.intro__answer__heading {
  line-height: 1.6;
  text-align: center;
  font-weight: 900;
  font-size: 2.5rem;
  color: #071B48;
  margin-bottom: 0.6em;
}
@media all and (max-width: 680px) {
  .intro__answer__heading {
    font-size: 2rem;
  }
}
.intro__answer__text {
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}
@media all and (max-width: 680px) {
  .intro__answer__text {
    text-align: left;
    font-size: 0.85rem;
  }
}

.container-header {
  background-color: #071B48;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  color: #fff;
  position: relative;
}
@media all and (max-width: 680px) {
  .container-header {
    padding-top: 5.625rem;
  }
}
.container-header:after {
  content: "";
  width: 11.375rem;
  height: 4rem;
  background-color: #071B48;
  position: absolute;
  bottom: -2.75rem;
  left: 50%;
  translate: -50% 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0, 50% 100%);
  z-index: 2;
  transform-origin: top center;
}
@media all and (max-width: 680px) {
  .container-header:after {
    scale: 0.8;
  }
}
.container-header__lead {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.35em;
}
@media all and (max-width: 680px) {
  .container-header__lead {
    font-size: 1.25rem;
  }
}
.container-header__text {
  text-align: center;
  margin-top: 1.5em;
}

.reason__heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1.4;
  gap: 1rem;
  margin-bottom: 4.375rem;
}
@media all and (max-width: 680px) {
  .reason__heading {
    margin-bottom: 3.125rem;
    gap: 0.5rem;
  }
}
.reason__heading:before, .reason__heading:after {
  content: "";
  max-width: 7.5rem;
  width: 100%;
  height: 0.25rem;
  background-color: #071B48;
  translate: 0 -1rem;
}
@media all and (max-width: 680px) {
  .reason__heading:before, .reason__heading:after {
    translate: 0 -0.5rem;
  }
}
.reason__heading .text {
  font-weight: 900;
  white-space: nowrap;
  color: #071B48;
  font-size: 3.25rem;
}
@media all and (max-width: 1024px) {
  .reason__heading .text {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 680px) {
  .reason__heading .text {
    font-size: 2rem;
  }
}
.reason__heading .text strong {
  color: #F7892B;
  font-size: 1.95em;
}
.reason__list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.reason__list__item {
  background-color: #fff;
  box-shadow: 3px 3px 5px rgba(7, 27, 72, 0.3);
  min-height: 22.25rem;
  position: relative;
}
@media all and (max-width: 680px) {
  .reason__list__item {
    min-height: 1px;
  }
}
.reason__list__contentWrap {
  max-width: calc(100% - 18.75rem);
}
@media all and (max-width: 1024px) {
  .reason__list__contentWrap {
    max-width: calc(100% - 15rem);
  }
}
@media all and (max-width: 680px) {
  .reason__list__contentWrap {
    max-width: 100%;
  }
}
.reason__list__heading {
  display: flex;
}
.reason__list__heading .num {
  width: 6.25rem;
  aspect-ratio: 1/1;
  background-color: #071B48;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  font-weight: bold;
  color: #FFF02F;
  line-height: 1.2;
  padding-top: 0.2em;
  flex-shrink: 0;
  font-size: 1.125rem;
}
@media all and (max-width: 1024px) {
  .reason__list__heading .num {
    width: 5rem;
    font-size: 1rem;
  }
}
@media all and (max-width: 680px) {
  .reason__list__heading .num {
    width: 3.75rem;
    font-size: 0.875rem;
  }
}
.reason__list__heading .num strong {
  font-size: 2.625rem;
}
@media all and (max-width: 1024px) {
  .reason__list__heading .num strong {
    font-size: 2.25rem;
  }
}
@media all and (max-width: 680px) {
  .reason__list__heading .num strong {
    font-size: 1.75rem;
  }
}
.reason__list__heading .text {
  display: flex;
  align-items: center;
  padding-left: 1em;
  font-weight: 900;
  font-size: 2rem;
  position: relative;
  color: #071B48;
  padding-bottom: 0.15em;
  width: 100%;
  line-height: 1.25;
}
@media all and (max-width: 1024px) {
  .reason__list__heading .text {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 680px) {
  .reason__list__heading .text {
    font-size: 1.25rem;
    padding-left: 0.75em;
  }
}
.reason__list__heading .text:after {
  content: "";
  width: calc(100% + 8.75rem);
  height: 0.3125rem;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: #071B48;
}
@media all and (max-width: 680px) {
  .reason__list__heading .text:after {
    width: 100%;
    height: 0.1875rem;
  }
}
.reason__list__img {
  position: absolute;
  height: 100%;
  width: 26.375rem;
  right: 0;
  top: 0;
  z-index: 5;
  overflow: hidden;
  -webkit-clip-path: polygon(40% 0%, 0% 100%, 100% 100%, 100% 0%);
          clip-path: polygon(40% 0%, 0% 100%, 100% 100%, 100% 0%);
}
@media all and (max-width: 1024px) {
  .reason__list__img {
    width: 20rem;
  }
}
.reason__list__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 680px) {
  .reason__list__img {
    position: static;
    width: 100%;
    height: 12.5rem;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .reason__list__img img {
    -o-object-position: top;
       object-position: top;
  }
}
.reason__list__content {
  padding: 2rem;
  padding-right: 6em;
}
@media all and (max-width: 1024px) {
  .reason__list__content {
    padding-right: 5em;
  }
}
@media all and (max-width: 680px) {
  .reason__list__content {
    padding: 1.5em;
  }
}
.reason__list__list {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  gap: 0.3rem;
  font-weight: bold;
  font-size: 1.125rem;
  max-width: 480px;
  padding: 0.3rem 0;
}
@media all and (max-width: 680px) {
  .reason__list__list {
    font-size: 1rem;
    gap: 0.7rem;
    max-width: 100%;
    padding: 0.7rem 0;
  }
}
.reason__list__list li {
  padding-left: 1.2em;
  position: relative;
}
.reason__list__list li:before {
  content: "・";
  position: absolute;
  left: 0;
}

.activity {
  padding-top: 6.25rem;
}
@media all and (max-width: 680px) {
  .activity {
    padding-top: 3.75rem;
  }
}
.activity__heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
  color: #071B48;
  line-height: 1.6;
  margin-bottom: 3.75rem;
  font-size: 2rem;
  gap: 0.5em;
}
@media all and (max-width: 680px) {
  .activity__heading {
    margin-bottom: 3.125rem;
  }
}
@media all and (max-width: 680px) {
  .activity__heading {
    font-size: 1.5rem;
  }
}
.activity__heading:after {
  content: "";
  width: 5rem;
  height: 0.3125rem;
  background-color: #071B48;
}
.activity__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5625rem;
}
@media all and (max-width: 680px) {
  .activity__list {
    grid-template-columns: 1fr;
  }
}
.activity__list__item {
  background-color: #fff;
  box-shadow: 3px 3px 5px rgba(7, 27, 72, 0.3);
  position: relative;
  padding: 1.875rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.activity__list__item:before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background-color: #071B48;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
  position: absolute;
  top: 0;
  left: 0;
}
.activity__list__icon {
  width: 6.25rem;
}
.activity__list__heading {
  line-height: 1.5;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: #071B48;
  margin: 0.7em 0;
}
.activity__list__list {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.activity__list__list li {
  padding-left: 1.25em;
  position: relative;
}
.activity__list__list li:before {
  content: "・";
  position: absolute;
  left: 0;
}

@media all and (max-width: 680px) {
  .tableWrap {
    width: calc(100% + 4.651vw);
    padding-left: 4.651vw;
    translate: -4.651vw 0;
  }
}

.course-content {
  margin-top: 3.125rem;
}
.course-content .course-content__table {
  width: 100%;
  table-layout: fixed;
}
@media all and (max-width: 680px) {
  .course-content .course-content__table {
    width: 180%;
    margin-right: 4.651vw;
  }
}
.course-content .course-content__table td {
  border: 0.1875rem solid #fff;
}
.course-content .course-content__table th {
  border: 0.1875rem solid #fff;
}
.course-content .course-content__table thead td:first-child {
  width: 12.5rem;
}
@media all and (max-width: 1024px) {
  .course-content .course-content__table thead td:first-child {
    width: 8.75rem;
  }
}
@media all and (max-width: 680px) {
  .course-content .course-content__table thead td:first-child {
    width: 6.875rem;
  }
}
.course-content .course-content__table thead th {
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.4;
  padding: 0.65em 0.3em;
}
@media all and (max-width: 1024px) {
  .course-content .course-content__table thead th {
    font-size: 1rem;
  }
}
@media all and (max-width: 680px) {
  .course-content .course-content__table thead th {
    font-size: 0.875rem;
  }
}
.course-content .course-content__table thead th > strong {
  font-weight: 900;
  display: block;
  font-size: 1.2em;
}
.course-content .course-content__table thead th > span {
  display: block;
}
.course-content .course-content__table thead th.color1 {
  background-color: #213971;
}
.course-content .course-content__table thead th.color2 {
  background-color: #D05F01;
}
.course-content .course-content__table thead th.color3 {
  background-color: #0f7b55;
}
.course-content .course-content__table thead th.color4 {
  background-color: #EEEEEE;
}
.course-content .course-content__table tbody th {
  background-color: #f3f4f6;
  color: #071B48;
  line-height: 1.4;
  padding: 1em 0.3em;
  vertical-align: middle;
  font-size: 1.25rem;
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  .course-content .course-content__table tbody th {
    font-size: 1rem;
  }
}
@media all and (max-width: 680px) {
  .course-content .course-content__table tbody th {
    font-size: 0.875rem;
  }
}
.course-content .course-content__table tbody td {
  padding: 1.2em 1.3em;
  vertical-align: middle;
}
@media all and (max-width: 1024px) {
  .course-content .course-content__table tbody td {
    font-size: 0.875rem;
    padding: 1em 1.2em;
  }
}
@media all and (max-width: 680px) {
  .course-content .course-content__table tbody td {
    font-size: 0.8125rem;
  }
}
.course-content .course-content__table tbody td.color1 {
  background-color: #EFF4FF;
}
.course-content .course-content__table tbody td.color2 {
  background-color: #FFF3EA;
}
.course-content .course-content__table tbody td.color3 {
  background-color: #EFFFF9;
}
.course-content .course-content__table tbody td.color4 {
  background-color: #EFFFF9;
}
.course-content .course-content__table tbody td li {
  padding-left: 1.25em;
  position: relative;
}
.course-content .course-content__table tbody td li:before {
  content: "・";
  position: absolute;
  left: 0;
}
.course-content .course-content__table tbody td .center {
  text-align: center;
}

.curriculum .commonHeading {
  margin-bottom: 3.75rem;
}
.curriculum__wrap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media all and (max-width: 680px) {
  .curriculum__wrap {
    gap: 3.75rem;
  }
}
.curriculum__section.color1 .curriculum__heading {
  color: #213971;
  border-left-color: #213971;
}
.curriculum__section.color1 thead th {
  background-color: #213971;
}
.curriculum__section.color1 tbody .week {
  background-color: #213971;
}
.curriculum__section.color1 tbody .theme {
  background-color: #eff4ff;
  color: #213971;
}
.curriculum__section.color2 .curriculum__heading {
  color: #D05F00;
  border-left-color: #D05F00;
}
.curriculum__section.color2 thead th {
  background-color: #D05F00;
}
.curriculum__section.color2 tbody .week {
  background-color: #D05F00;
}
.curriculum__section.color2 tbody .theme {
  background-color: #FFF3EA;
  color: #D05F00;
}
.curriculum__section.color3 .curriculum__heading {
  color: #107B56;
  border-left-color: #107B56;
}
.curriculum__section.color3 thead th {
  background-color: #107B56;
}
.curriculum__section.color3 tbody .week {
  background-color: #107B56;
}
.curriculum__section.color3 tbody .theme {
  background-color: #EEFFF9;
  color: #107B56;
}
.curriculum__section.color4 .curriculum__heading {
  color: #333333;
  border-left-color: #333333;
}
.curriculum__section.color4 thead th {
  background-color: #333333;
}
.curriculum__section.color4 tbody .week {
  background-color: #333333;
}
.curriculum__section.color4 tbody .theme {
  background-color: #EEEEEE;
  color: #333333;
}
.curriculum__heading {
  font-weight: 900;
  border-left: 0.45em solid #eee;
  font-size: 2rem;
  padding: 0.3em 0.7em;
  line-height: 1.4;
  margin-bottom: 1.55em;
}
@media all and (max-width: 680px) {
  .curriculum__heading {
    font-size: 1.5rem;
  }
}
.curriculum__table {
  width: 100%;
}
@media all and (max-width: 680px) {
  .curriculum__table {
    margin-right: 4.651vw;
  }
}
.curriculum__table td {
  border: 0.0625rem solid #fff;
}
.curriculum__table th {
  border: 0.0625rem solid #fff;
}
.curriculum__table thead {
  color: #fff;
  font-weight: 900;
  font-size: 1.375rem;
}
@media all and (max-width: 680px) {
  .curriculum__table thead {
    font-size: 1.125rem;
  }
}
.curriculum__table thead .outfit {
  font-weight: 700;
  font-size: 1.5rem;
}
@media all and (max-width: 680px) {
  .curriculum__table thead .outfit {
    font-size: 1.25rem;
  }
}
.curriculum__table thead th {
  padding: 0.2em;
}
.curriculum__table thead th:nth-child(1) {
  width: 9.0625rem;
}
@media all and (max-width: 680px) {
  .curriculum__table thead th:nth-child(1) {
    width: 5.625rem;
  }
}
.curriculum__table thead th:nth-child(2) {
  width: 35%;
}
.curriculum__table tbody .week {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  vertical-align: middle;
  padding: 0.2em;
  width: 4em;
}
@media all and (max-width: 680px) {
  .curriculum__table tbody .week {
    font-size: 1.25rem;
  }
}
.curriculum__table tbody .theme {
  font-size: 1.125rem;
  font-weight: bold;
  vertical-align: middle;
    /* 追加 */
}
@media all and (max-width: 680px) {
  .curriculum__table tbody .theme {
    font-size: 1rem;
  }
}
.curriculum__table tbody .lecture {
  padding: 0.3em 1em;
  vertical-align: middle;
  border-color: #D3D3D3;
}
@media all and (max-width: 680px) {
  .curriculum__table tbody .lecture {
    font-size: 0.875rem;
  }
}
.curriculum__caption {
  font-weight: bold;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-top: 2em;
}
.curriculum__caption.color3 {
  color: #107b56;
}
@media all and (min-width: 681px) {
  .curriculum__caption {
    font-size: 1.25rem;
    text-align: center;
  }
}

.teacher__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 46.875rem;
  margin: 3.125rem auto 0;
}
@media all and (max-width: 680px) {
  .teacher__main {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
  }
}
.teacher__img {
  width: 32%;
}
@media all and (max-width: 680px) {
  .teacher__img {
    width: 50%;
  }
}
.teacher__content {
  width: 60%;
}
@media all and (max-width: 680px) {
  .teacher__content {
    width: 100%;
  }
}
.teacher__name {
  font-weight: 900;
  color: #071B48;
  font-size: 1.75rem;
  margin-bottom: 0.3em;
  line-height: 1.4;
}
@media all and (max-width: 680px) {
  .teacher__name {
    text-align: center;
    margin-bottom: 0.75em;
  }
}
.teacher__result {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  line-height: 1.4;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media all and (max-width: 680px) {
  .teacher__result {
    font-size: 0.9375rem;
    justify-content: center;
  }
}
.teacher__result li {
  display: flex;
  align-items: baseline;
  position: relative;
  font-weight: 900;
  padding: 0 0.6em;
  letter-spacing: 0.1em;
}
.teacher__result li strong {
  font-size: 1.667em;
}
.teacher__result li:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #071B48;
  top: 0;
  left: 0;
  position: absolute;
  transform: skew(-20deg);
}
.teacher__result li > * {
  position: relative;
  z-index: 5;
}

.difference__caption {
  font-size: 0.875rem;
  margin-top: 2em;
}


.difference-content {
  margin-top: 3.125rem;
  overflow-x: auto;
}
.difference-content .difference-content__table {
  width: 100%;
  table-layout: fixed;
}
@media all and (max-width: 680px) {
  .difference-content .difference-content__table {
    width: 180%;
    margin-right: 4.651vw;
  }
}
.difference-content .difference-content__table td {
  border: 0.1875rem solid #F3F4F6;
}
.difference-content .difference-content__table th {
  border: 0.1875rem solid #F3F4F6;
}
.difference-content .difference-content__table thead td:first-child {
  width: 12.5rem;
}
@media all and (max-width: 1024px) {
  .difference-content .difference-content__table thead td:first-child {
    width: 8.75rem;
  }
}
@media all and (max-width: 680px) {
  .difference-content .difference-content__table thead td:first-child {
    width: 6.875rem;
  }
}
.difference-content .difference-content__table thead th {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 0.75em 0.3em;
  background-color: #a7a7a7;
}
.difference-content .difference-content__table thead th:nth-child(2) {
  width: 35%;
}
@media all and (max-width: 1024px) {
  .difference-content .difference-content__table thead th {
    font-size: 1.25rem;
  }
}
@media all and (max-width: 680px) {
  .difference-content .difference-content__table thead th {
    font-size: 1rem;
  }
}
.difference-content .difference-content__table thead th > strong {
  font-weight: 900;
}
.difference-content .difference-content__table thead th.color1 {
  background-color: #071B48;
}
.difference-content .difference-content__table tbody th {
  background-color: #E8EAED;
  color: #071B48;
  line-height: 1.4;
  padding: 1em 0.3em;
  vertical-align: middle;
  font-size: 1.25rem;
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  .difference-content .difference-content__table tbody th {
    font-size: 1rem;
  }
}
@media all and (max-width: 680px) {
  .difference-content .difference-content__table tbody th {
    font-size: 0.875rem;
  }
}
.difference-content .difference-content__table tbody td {
  padding: 1.2em 1.3em;
  vertical-align: middle;
  background-color: #fff;
  text-align: center;
  line-height: 1.6;
}
.difference-content .difference-content__table tbody td strong {
  font-weight: bold;
  font-size: 1.125em;
}
@media all and (max-width: 1024px) {
  .difference-content .difference-content__table tbody td {
    font-size: 0.875rem;
    padding: 1em 1.2em;
  }
}
@media all and (max-width: 680px) {
  .difference-content .difference-content__table tbody td {
    font-size: 0.8125rem;
  }
}
.difference-content .difference-content__table tbody td.color1 {
  background-color: #EFF4FF;
}
.difference-content .difference-content__table tbody td.color2 {
  background-color: #FFF3EA;
}
.difference-content .difference-content__table tbody td.color3 {
  background-color: #EFFFF9;
}
.difference-content .difference-content__table tbody td.color4 {
  background-color: #EEEEEE;
}
.difference-content .difference-content__table tbody td li {
  padding-left: 1.25em;
  position: relative;
}
.difference-content .difference-content__table tbody td li:before {
  content: "・";
  position: absolute;
  left: 0;
}
.difference-content .difference-content__table tbody td .center {
  text-align: center;
}

.voice__lead {
  margin: 3.125rem 0;
  font-weight: 900;
  color: #071B48;
}
@media all and (min-width: 681px) {
  .voice__lead {
    font-size: 1.25rem;
    text-align: center;
  }
}
.voice__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.voice__item {
  width: 100%;
  max-width: 44.375rem;
  box-sizing: border-box;
}

/* モバイル: 横スクロール表示 */
@media all and (max-width: 680px) {
  .voice__list {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0 1.25rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .voice__item {
    flex: 0 0 86%; 
    max-width: none;
    scroll-snap-align: center;
    margin: 0; 
  }
  .voice__main {
    margin: 0; 
  }
}
.voice__list::-webkit-scrollbar {
  height: 0.3em;
}
.voice__list::-webkit-scrollbar-thumb {
  background: rgba(7,27,72,0.15);
  border-radius: 999px;
}

.voice__main {
  max-width: 44.375rem;
  padding: 1.875rem;
  margin: 0 auto;
  border: 0.0625rem solid #071B48;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 680px) {
  .voice__main {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.voice__img {
  width: 33%;
  flex-shrink: 0;
  margin-right: 4%;
}
@media all and (max-width: 680px) {
  .voice__img {
    width: 50%;
  }
}
.voice__text {
  width: 60%;
  color: #071B48;
  text-align: left;
  font-weight: 500;
}
@media all and (max-width: 680px) {
  .voice__text {
    width: 100%;
  }
}
.voice__quote {
  font-weight: 900;
  font-size: 1.125rem;
  margin: 0 0 0.8rem 0;
  color: #071B48;
}
.voice__points {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
  list-style-type: disc;
}
.voice__points li {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.voice__cta {
  font-weight: 900;
  margin-top: 0.6rem;
  color: #071B48;
}
.qa__list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media all and (max-width: 680px) {
  .qa__list {
    margin-top: 13.953vw;
  }
}
.qa__list__item {
  overflow: hidden;
  border-radius: 0.65rem;
  background-color: #fff;
}
.qa__list dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.25rem;
  gap: 1.25rem;
  cursor: pointer;
}
@media all and (max-width: 680px) {
  .qa__list dt {
    padding: 1rem;
  }
}
.qa__list dt .q {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
  color: #22186a;
}
@media all and (max-width: 680px) {
  .qa__list dt .q {
    font-size: 1.875rem;
  }
}
.qa__list dt .text {
  width: 100%;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media all and (max-width: 680px) {
  .qa__list dt .text {
    font-size: 1rem;
  }
}
.qa__list dt .icon {
  width: 2.5rem;
  aspect-ratio: 1/1;
  position: relative;
  flex-shrink: 0;
  background-color: #22186A;
  border-radius: 50%;
}
@media all and (max-width: 680px) {
  .qa__list dt .icon {
    width: 2em;
  }
}
.qa__list dt .icon:before, .qa__list dt .icon:after {
  content: "";
  width: 35%;
  height: 0.15rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease 0s;
}
.qa__list dt .icon:before:hover, .qa__list dt .icon:after:hover {
  text-decoration: none;
}
.qa__list dt .icon:after {
  rotate: 90deg;
}
.qa__list dt.active .icon:after {
  rotate: 0deg;
}
.qa__list dd {
  border-radius: 0 0 0.65rem 0.65rem;
  border: 1px solid #EDEDED;
  padding: 1.75rem 2.25rem;
  display: none;
}
@media all and (max-width: 680px) {
  .qa__list dd {
    padding: 1.75rem;
    font-size: 0.875rem;
  }
}
.qa__list dd ul {
  list-style-type: square;
  padding-left: 1.5em;
}

.fixedContact {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 15;
  translate: 110% -50%;
  transition: translate 0.6s 0s ease;
}
.fixedContact.active {
  transition: translate 0.6s 1s ease;
  translate: 0% -50%;
}
@media all and (max-width: 680px) {
  .fixedContact {
    top: auto;
    bottom: 0;
    translate: 0% 110%;
    width: 100%;
  }
  .fixedContact.active {
    translate: 0% 0%;
  }
}
.fixedContact a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-color: #06C756;
  transition: all 0.3s ease 0s;
  color: #fff;
  font-weight: bold;
  gap: 0.55rem;
  padding:0.85em;
}
.fixedContact a:hover {
  text-decoration: none;
}
@media all and (min-width: 681px) {
  .fixedContact a {
    border-radius: 0.625rem 0 0 0.625rem;
  }
}
@media all and (max-width: 680px) {
  .fixedContact a {
    width: 100%;
    flex-direction: row;
    padding: 0.5em;
  }
}
.fixedContact a:hover {
  text-decoration: none;
}
.fixedContact a .icon {
  width: 2.8125rem;
}
@media all and (max-width: 680px) {
  .fixedContact a .icon {
    width: 1.875rem;
  }
}
.fixedContact a .text {
  font-weight: 900;
  font-size: 1.3rem;
}
@media all and (min-width: 681px) {
  .fixedContact a .text {
    writing-mode: vertical-rl;
    text-align: center;
    letter-spacing: 0.1em;
  }
}

.footLead {
  background-image: url(../images/foot-lead_bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFF02F;
  padding: 3.125rem 0;
  text-align: center;
  margin-bottom: -3px; /* 背景画像の継ぎ目対策 */
}
.footLead__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.5;
  gap: 1.5rem;
}
@media all and (max-width: 1024px) {
  .footLead__inner {
    font-size: 4vw;
  }
}
@media all and (max-width: 680px) {
  .footLead__inner {
    font-size: 1.75rem;
  }
}
/* 非表示 */
.footLead__inner:after {
  display: none;
  content: "";
  width: 7rem;
  height: 1.875rem;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  background-color: #FFF02F;
}
.footLead__list {
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 1000px;
}

@media all and (max-width: 1024px) {
  .footLead__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
  }
}

@media all and (max-width: 680px) {
  .footLead__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.footLead__list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  border-radius: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}

@media all and (max-width: 680px) {
  .footLead__list li {
    font-size: 0.9375rem;
    padding: 1rem;
  }
}
.footer {
  font-size: 0.75rem;
  padding: 1.5em 0;
}
@media all and (max-width: 680px) {
  .footer {
    text-align: center;
    padding: 2rem 0 4rem;
  }
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.4em;
}
@media all and (min-width: 681px) {
  .footer__inner {
    flex-direction: row-reverse;
  }
}
@media all and (max-width: 680px) {
  .footer__credit1 {
    order: 3;
    margin-top: 1rem;
  }
}
.footer__credit2 {
  font-weight: bold;
  font-size: 14px;
}
@media all and (max-width: 680px) {
  .footer__credit2 {
    order: 1;
  }
}
.footer__credit3 {
  font-weight: bold;
  font-size: 14px;
}
@media all and (max-width: 680px) {
  .footer__credit3 {
    order: 2;
  }
}
