@charset "UTF-8";
/*======================================
    size
======================================*/
/*======================================
    font
======================================*/
/*======================================
    color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.5rem;
  }
}

body {
  background-color: #fff;
}
body.active {
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 768px) {
  br.is_pc {
    display: none;
  }
}

br.is_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  br.is_sp {
    display: block;
  }
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 89.3%;
  }
}
.inner.sm {
  max-width: 50rem;
}
.inner.lg {
  max-width: 83.75rem;
}
@media screen and (min-width: 769px) {
  .inner.lg {
    width: 95.7%;
  }
}

.fullscreen {
  height: calc(var(--vh, 1vh) * 100);
}

.bg_img {
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  background-size: 100% auto;
  color: #fff;
  padding-bottom: 5.375rem;
}
@media screen and (max-width: 768px) {
  .bg_img {
    background-image: url(../img/bg_sp.jpg);
    padding-bottom: 17.5rem;
  }
}

.bg_gray {
  background-color: #d9d9d9;
  padding: 8.125rem 0 6.875rem;
}

.logo_fixed {
  position: fixed;
  z-index: 200;
  top: 1.875rem;
  left: 1.5rem;
  max-width: 11.125rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.logo_fixed a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/logo_black.png) no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.logo_fixed.active {
  visibility: visible;
  opacity: 1;
}
.logo_fixed.active_color a::before {
  opacity: 1;
}
.logo_fixed a {
  display: block;
}
@media screen and (max-width: 768px) {
  .logo_fixed {
    top: 2.5rem;
    left: 1.875rem;
    max-width: 17.625rem;
  }
}

.header {
  position: fixed;
  top: 1.625rem;
  left: 0;
  width: 100%;
  z-index: 300;
}
@media screen and (min-width: 769px) {
  .header.active_color .h_list a {
    background-color: #000;
    color: #fff;
    border-color: #000;
  }
  .header.active_color .h_list a:hover {
    color: #000;
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .header {
    top: 0;
    height: 100%;
    overflow: auto;
    padding-top: 10rem;
    background-image: url(../img/bg_sp.jpg);
    background-repeat: repeat;
    background-size: 100% auto;
    display: none;
  }
}

.h_logo {
  display: block;
  width: 23.875rem;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-5%);
}
@media screen and (min-width: 769px) {
  .h_logo {
    display: none;
  }
}

.h_nav {
  padding: 0 2.25rem;
}
@media screen and (max-width: 768px) {
  .h_nav {
    margin-top: 10rem;
    padding-bottom: 12.5rem;
  }
}

.h_lists {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .h_lists {
    flex-direction: column;
    justify-content: center;
    row-gap: 2.875rem;
  }
}

.h_list a {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.7692307692;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 1.875rem;
  border-radius: 62.5rem;
  border: 1px solid #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.h_list a:hover {
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 768px) {
  .h_list a {
    font-size: 1.875rem;
    width: 19.125rem;
    height: 4.875rem;
  }
}

.drawer_icon {
  appearance: none;
  -moz-appearance: nonr;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  background-color: unset;
  border-radius: 0;
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  display: block;
  z-index: 500;
}
.drawer_icon.active.active_color .drawer_bar {
  background-color: #fff;
}
.drawer_icon.active .drawer_bar.bar1, .drawer_icon.active .drawer_bar.bar2 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.drawer_icon.active .drawer_bar.bar3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
.drawer_icon.active_color .drawer_bar {
  background-color: #000;
}
@media screen and (min-width: 769px) {
  .drawer_icon {
    display: none;
  }
}

.drawer_bars {
  width: 4rem;
  height: 2rem;
  position: relative;
  display: block;
}

.drawer_bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
}
.drawer_bar.bar1 {
  top: 0;
}
.drawer_bar.bar2 {
  top: 50%;
}
.drawer_bar.bar3 {
  top: 100%;
}

.footer {
  text-align: center;
  padding: 5.625rem 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 10rem;
  }
}

.f_contact {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 62.5rem;
  background-color: #0074ff;
  width: 100%;
  max-width: 24.375rem;
  height: 4.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .f_contact {
    font-size: 1.875rem;
    max-width: 33.75rem;
    height: 7.5rem;
  }
}
.f_contact:hover {
  opacity: 0.7;
}
.f_contact:hover::before {
  transform: translate(0.25rem, -50%);
}
.f_contact::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  aspect-ratio: 1/1;
  width: 1.0625rem;
  background: url(../img/icon_arrow.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.f_pdf_link {
  color: #0074ff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  font-feature-settings: "palt";
  margin-top: 2.5rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .f_pdf_link {
    font-size: 1.375rem;
  }
}
.f_pdf_link:hover {
  opacity: 0.7;
}
.f_pdf_link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0074ff;
  /* transform: translate(-4%, 100%); */
}

.f_sns_wrap {
  margin-top: 3.375rem;
}

.f_sns_text {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7333333333;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .f_sns_text {
    font-size: 1.625rem;
  }
}

.f_sns_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 20rem;
  margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
  .f_sns_items {
    max-width: 31.25rem;
  }
}
.f_sns_items {
  column-gap: 1.25rem;
}

.f_sns_item_link {
  display: block;
  transition: opacity 0.3s ease;
}
.f_sns_item_link:hover {
  opacity: 0.7;
}

.f_sns_item_icon {
  max-width: 4.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .f_sns_item_icon {
    max-width: 7.5rem;
  }
}

.f_sns_item_text {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  line-height: 1.3846153846;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .f_sns_item_text {
    font-size: 1.375rem;
  }
}

.f_logo_link {
  display: block;
  max-width: 18.875rem;
  margin: 2.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .f_logo_link {
    margin: 5rem auto;
  }
}

.f_fund_text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .f_fund_text {
    font-size: 1.625rem;
  }
}

.f_terms_link {
  display: block;
  width: fit-content;
  margin: 1rem auto 1.375rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  font-feature-settings: "palt";
  border-bottom: 1px solid #000;
  padding: 0 0.625rem 0.375rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .f_terms_link {
    font-size: 1.875rem;
    margin: 2.5rem auto 3.75rem;
  }
}
.f_terms_link:hover {
  opacity: 0.7;
}

.f_copy small {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .f_copy small {
    font-size: 1.25rem;
    letter-spacing: normal;
  }
}

.button_fixed {
  position: fixed;
  bottom: 1.875rem;
  right: 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 50%;
  z-index: 500;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.215em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #00ff85;
  border: 0.1875rem solid #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  transform-origin: bottom right;
}
@media screen and (min-width: 769px) {
  .button_fixed.active {
    transform: scale(0.6);
  }
}
@media screen and (min-width: 1025px) {
  .button_fixed::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) rotate(-45deg);
    width: 0.75rem;
    height: 0.75rem;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transition: transform 0.3s ease;
  }
}
.button_fixed:hover {
  background-color: #fff;
  border-color: #00ff85;
}
.button_fixed:hover::before {
  transform: translate(0.25rem, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .button_fixed {
    font-size: 1.875rem;
    width: 89.3%;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    height: 7rem;
    border-radius: 62.5rem;
  }
}

.fv {
  max-width: 87.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .fv {
    flex-direction: column-reverse;
    justify-content: center;
    row-gap: 5rem;
  }
}

.fv_phone {
  max-width: 42.625rem;
  width: 48.7%;
  height: 86.65vh;
  max-height: 40.625rem;
  transform: translate(2%, 3.5%);
}
@media screen and (max-width: 768px) {
  .fv_phone {
    width: 90.93%;
    max-width: 42.625rem;
    transform: translate(2%, -2%);
  }
}
.fv_phone img {
  height: 100%;
  object-fit: contain;
  object-position: 80% center;
}

.fv_contents {
  padding-left: 0.625rem;
  transform: translateY(-9%);
}
@media screen and (min-width: 769px) {
  .fv_contents {
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .fv_contents {
    padding-left: 0;
    transform: translateY(0);
  }
}

.fv_lead {
  font-size: 1.125rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.305em;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  .fv_lead {
    font-size: 1.625rem;
    line-height: 1.7692307692;
  }
}

.fv_text {
  font-size: 2.5rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.25;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .fv_text {
    font-size: 3.75rem;
  }
}
.fv_text .num {
  display: inline-block;
  width: 2em;
  margin-right: 0.25em;
}
.fv_text .lg {
  display: block;
  font-size: 1.55em;
  letter-spacing: 0.1em;
}

.fv_date {
  max-width: 25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .fv_date {
    max-width: 36.25rem;
    margin-top: 1.625rem;
  }
}

.ex {
  padding: 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .ex {
    padding: 12.5rem 0 0;
  }
}

.ex_lead {
  max-width: 33.625rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5384615385;
  text-align: justify;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .ex_lead {
    font-size: 1.625rem;
    line-height: 1.5384615385;
    max-width: 100%;
  }
}

.ex_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.5rem;
  row-gap: 10.25rem;
  margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .ex_items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12.25rem;
    row-gap: 8.75rem;
  }
}

.ex_item {
  border: 1px solid #fff;
  padding-top: 0.375rem;
  min-height: 14.75rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 769px) {
  .ex_item:nth-child(2), .ex_item:nth-child(5) {
    transform: translateY(12.5rem);
  }
}
@media screen and (max-width: 768px) {
  .ex_item {
    max-width: 28.25rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-height: 21.875rem;
  }
}

.ex_item_head {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ff6e00;
  max-width: 10.875rem;
  width: 90%;
  border-bottom: 1px solid #fff;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ex_item_head {
    font-size: 2.1875rem;
    max-width: 15.875rem;
    padding-bottom: 1.875rem;
  }
}
.ex_item_head .num {
  display: inline-block;
  margin-left: 0.5rem;
  height: 5.75rem;
  position: absolute;
  bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .ex_item_head .num {
    height: 8.375rem;
    bottom: 1.875rem;
  }
}
.ex_item_head .num img {
  width: auto;
  height: 100%;
}

.ex_item_texts {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ex_item_text {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .ex_item_text {
    font-size: 1.4rem;
  }
}
.ex_item_text .marker {
  font-size: 1.5em;
  display: inline;
  background: linear-gradient(rgba(255, 255, 255, 0) calc(100% - 0.125rem), #ff6e00 0%);
  padding: 0 0.125rem 0.375rem;
}
@media screen and (max-width: 768px) {
  .ex_item_text .marker {
    font-size: 1.4em;
  }
}

.session {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .session {
    margin-top: 8.125rem;
  }
}

.session_lead {
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.44em;
  font-feature-settings: "palt";
  line-height: 2.48;
}
@media screen and (max-width: 768px) {
  .session_lead {
    font-size: 2.1875rem;
  }
}
.session_lead .marker {
  display: inline;
  background: linear-gradient(rgba(255, 255, 255, 0) calc(100% - 0.625rem), #ff6e00 0%);
  padding: 0 0 1rem;
}

.session_ttl {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .session_ttl {
    margin-top: 6.25rem;
    margin-bottom: 3.75rem;
  }
}
.session_ttl .text {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  font-size: 2.8125rem;
}
.session_ttl .text img {
  width: auto;
  height: 1em;
  object-fit: contain;
}
.session_ttl .icon {
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0.2;
  width: 8rem;
  margin-left: auto;
  margin-right: auto;
}

.session_category {
  margin-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  .session_category {
    margin-top: 3.75rem;
    margin-bottom: 5rem;
  }
}

.session_category_ttl {
  border-bottom: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.session_category_ttl h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  display: inline-block;
  padding: 0.3125rem 0.1875rem;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .session_category_ttl h3 {
    font-size: 2.375rem;
    padding: 0.75rem 0.375rem;
  }
}
.session_category_ttl p {
  font-size: 0.4375rem;
  display: inline-block;
  padding: 0.25rem 0.375rem;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .session_category_ttl p {
    font-size: 1.1875rem;
    padding: 0.625rem 0.625rem;
  }
}
.session_category_ttl p img {
  width: auto;
  height: 1em;
  object-fit: contain;
}

.session_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.25rem;
  row-gap: 1.25rem;
  margin-top: 2.25rem;
}
@media screen and (max-width: 768px) {
  .session_items {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.875rem;
    row-gap: 2.25rem;
  }
}

.session_item_contents {
  aspect-ratio: 320/180;
}

.outline {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .outline {
    margin-top: 8.5rem;
  }
}

.outline_ttl {
  font-size: 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .outline_ttl {
    font-size: 1.875rem;
  }
}
.outline_ttl img {
  width: auto;
  height: 1em;
  object-fit: contain;
}

.outline_head {
  background-color: #fff;
  border-radius: 3.3125rem;
  margin-top: 2.625rem;
  padding: 3.375rem 2.5rem 4rem;
  color: #000;
  margin-bottom: 3.375rem;
}
@media screen and (max-width: 768px) {
  .outline_head {
    margin-top: 2.25rem;
    padding: 5rem 2.5rem 5rem;
    margin-bottom: 9.125rem;
  }
}

.outline_head_logo {
  max-width: 18.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .outline_head_logo {
    max-width: 21.75rem;
    margin-bottom: 5rem;
  }
}

.outline_head_dl {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .outline_head_dl {
    margin-top: 2.5rem;
  }
}
.outline_head_dl dt {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 1.4444444444;
}
@media screen and (max-width: 768px) {
  .outline_head_dl dt {
    font-size: 1.875rem;
  }
}
.outline_head_dl dd {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .outline_head_dl dd {
    font-size: 1.875rem;
  }
}

.outline_table_wrap {
  margin-top: 0.875rem;
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  .outline_table_wrap {
    margin-top: 1.25rem;
  }
}

.outline_table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .outline_table {
    margin-top: 1.25rem;
  }
}
.outline_table tr:nth-child(odd) {
  background-color: #00ff85;
}
@media screen and (max-width: 768px) {
  .outline_table tr {
    width: 50%;
    display: inline-block;
    float: left;
  }
}
.outline_table th, .outline_table td {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7333333333;
  letter-spacing: 0.08em;
  text-align: center;
  font-feature-settings: "palt";
  vertical-align: middle;
  border: 1px solid #000;
}
@media screen and (min-width: 769px) {
  .outline_table th, .outline_table td {
    height: 4.25rem;
  }
}
@media screen and (max-width: 768px) {
  .outline_table th, .outline_table td {
    font-size: 2.125rem;
    line-height: 2.1176470588;
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0.625rem;
  }
}
@media screen and (min-width: 769px) {
  .outline_table th {
    width: 8.125rem;
  }
}
@media screen and (min-width: 769px) {
  .outline_table td.price {
    width: 10.625rem;
  }
}
@media screen and (max-width: 768px) {
  .outline_table td.price {
    padding: 1.5rem 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .outline_table td {
    line-height: 1.4571428571;
    padding: 2.5rem 0.625rem;
  }
}

.outline_section {
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .outline_section {
    margin-top: 3.375rem;
  }
}

.outline_section_ttl {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  line-height: 1.7333333333;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .outline_section_ttl {
    font-size: 1.875rem;
    column-gap: 1.25rem;
    margin-bottom: 1.625rem;
  }
}
.outline_section_ttl span.line {
  display: block;
  flex: 1;
  height: 1px;
  background-color: #fff;
}

.outline_section_text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 768px) {
  .outline_section_text {
    font-size: 1.625rem;
    line-height: 1.5384615385;
  }
}
.outline_section_text .lg {
  font-size: 1.33em;
  letter-spacing: 0.01em;
  line-height: 1.6;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .outline_section_text .lg {
    font-size: 1.385em;
    line-height: 1.4722222222;
    letter-spacing: normal;
    margin: 0.5em -1em;
  }
}
.outline_section_text.sm {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .outline_section_text.sm {
    font-size: 1.625rem;
    display: block;
  }
}
.outline_section_text.mt {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .outline_section_text.mt {
    margin-top: 0.75em;
  }
}
@media screen and (max-width: 768px) {
  .outline_section_text.sp_sm {
    font-size: 1.625rem;
    line-height: 1.5384615385;
    margin-top: 1.2em;
    font-feature-settings: "palt";
    letter-spacing: normal;
    margin-left: -1em;
    margin-right: -1em;
  }
}

.outline_section_link {
  display: block;
  width: fit-content;
  margin: 0.25em auto;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-feature-settings: "palt";
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .outline_section_link {
    font-size: 2.25rem;
  }
}

.outline_section_button {
  width: 100%;
  max-width: 33.75rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 62.5rem;
  color: #000;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
  line-height: 1.4615384615;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.625rem;
  min-height: 3.75rem;
  padding: 0.75rem 1.875rem 0.5rem 2.625rem;
  margin-top: 3.125rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .outline_section_button {
    font-size: 1.5rem;
    line-height: 1.5833333333;
    width: 100%;
    max-width: 41.875rem;
    min-height: 10rem;
    margin-top: 2.5rem;
    position: relative;
    justify-content: center;
  }
}
.outline_section_button:hover {
  opacity: 0.8;
}
.outline_section_button:hover .arrow {
  transform: translateX(0.375rem);
}
@media screen and (max-width: 768px) {
  .outline_section_button:hover .arrow {
    transform: translate(0.375rem, -50%);
  }
}
.outline_section_button .arrow {
  width: 1.3em;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .outline_section_button .arrow {
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
  }
}

.outline_partner {
  margin-top: 6.375rem;
}
@media screen and (max-width: 768px) {
  .outline_partner {
    margin-top: 2.875rem;
  }
}

.outline_partner_links {
  display: flex;
  justify-content: center;
  column-gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .outline_partner_links {
    column-gap: 5rem;
  }
}

.outline_partner_link a {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  line-height: 1.6;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .outline_partner_link a {
    font-size: 1.4375rem;
  }
}
.outline_partner_link a:hover {
  opacity: 0.7;
}

.outline_partner_logo {
  display: block;
  max-width: 8.375rem;
  margin: 0.75rem auto;
}
@media screen and (max-width: 768px) {
  .outline_partner_logo {
    max-width: 19.5rem;
    margin: 1.5rem auto;
  }
}

.outline_partner_text {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3076923077;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 768px) {
  .outline_partner_text {
    font-size: 1.875rem;
    margin-top: 1.875rem;
  }
}

.partner_ttl {
  text-align: center;
}
.partner_ttl h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .partner_ttl h2 {
    font-size: 1.625rem;
  }
}
.partner_ttl p {
  font-size: 1.5625rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .partner_ttl p {
    font-size: 2.5rem;
  }
}
.partner_ttl p img {
  width: auto;
  height: 1em;
}

.partner_items_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 2.875rem;
  margin-top: 2.625rem;
}

.partner_items.column1 .partner_item_text, .partner_items.column2 .partner_item_text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .partner_items.column1 .partner_item_text, .partner_items.column2 .partner_item_text {
    font-size: 1.875rem;
  }
}
.partner_items.column1 {
  margin-left: auto;
  margin-right: auto;
}
.partner_items.column1.lg {
  max-width: 38rem;
}
@media screen and (max-width: 768px) {
  .partner_items.column1.lg {
    max-width: 100%;
  }
}
.partner_items.column1.md {
  max-width: 24rem;
}
@media screen and (max-width: 768px) {
  .partner_items.column1.md {
    max-width: 100%;
  }
}
.partner_items.column2, .partner_items.column3, .partner_items.column4, .partner_items.column5 {
  display: grid;
}
@media screen and (max-width: 768px) {
  .partner_items.column2, .partner_items.column3, .partner_items.column4, .partner_items.column5 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.partner_items.column2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .partner_items.column2 {
    grid-template-columns: 1fr !important;
  }
}
.partner_items.column3 {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.875rem;
  row-gap: 2.25rem;
}
.partner_items.column4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}
.partner_items.column5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.partner_item {
  display: block;
}

.partner_item_text {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.1538461538;
  font-feature-settings: "palt";
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .partner_item_text {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.partner_lists {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .partner_lists {
    margin-top: 3.75rem;
  }
}

.partner_list {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .partner_list {
    font-size: 1.5rem;
    line-height: 1.75;
  }
}

/*# sourceMappingURL=style.css.map */
