@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Roboto:ital,wght@0,400;0,700;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.dummy {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: "auto";
  min-height: 80px;
  background-color: var(--color-bg);
  color: var(--color-darkgray);
}

:root {
  --color-primary-rgb: 230, 0, 61;
  --color-secondary: #10385e;
  --color-gray: #aaa;
  --color-lightgray: #ccc;
  --color-darkgray: #999;
  --color-red: #e6003d;
  --color-blue: #4789ae;
  --color-rightblue: #16a7d6;
  --color-white: #ffffff;
  --color-pink: #fef6fa;
  --color-lightpink: #fef2f5;
  --color-darkpink: #f51d7a;
  --color-shogaku: #ff922e;
  --color-chugaku: #3bb97d;
  --color-koukou: #249bd9;
  --color-text: #242424;
  --color-inverse: #fff;
  --color-link: #378ff8;
  --color-hover: #378ff8;
  --color-bg: #f9f9f9;
  --color-border: #f0f0f0;
  --color-overlay: #000;
  --color-campaign01: #fef6fa;
  --color-campaign02: #f51d7a;
  --color-koukou-rgb: 36, 155, 217;
  --color-chugaku-rgb: 59, 185, 125;
  --color-shogaku-rgb: 255, 146, 46;
  --color-summercp01: #f6fcfe;
  --color-summercp02: #378ff8;
  --color-summercp-strong: #e00b66;
  --color-primary: #e6003d;
  --color-primary-h: 344.0869565217deg;
  --color-primary-l: 45.0980392157%;
  --color-primary-s: 100%;
  --color-primary-a: 1;
  --color-koukou: #249bd9;
  --color-koukou-h: 200.5524861878deg;
  --color-koukou-l: 49.6078431373%;
  --color-koukou-s: 71.5415019763%;
  --color-koukou-a: 1;
  --color-chugaku: #3bb97d;
  --color-chugaku-h: 151.4285714286deg;
  --color-chugaku-l: 47.8431372549%;
  --color-chugaku-s: 51.6393442623%;
  --color-chugaku-a: 1;
  --color-shogaku: #ff922e;
  --color-shogaku-h: 28.7081339713deg;
  --color-shogaku-l: 59.0196078431%;
  --color-shogaku-s: 100%;
  --color-shogaku-a: 1;
  --color-defalut: #000;
  --color-defalut-h: 0deg;
  --color-defalut-l: 0%;
  --color-defalut-s: 0%;
  --color-defalut-a: 1;
  --width-mobile: 400px;
  --width-phablet: 550px;
  --width-tablet: 768px;
  --width-content: 800px;
  --width-desktop: 960px;
  --width-desktopHD: 1200px;
  --width-max: 1200px;
  --height-header-sp: 64px;
  --height-header-pc: 88px;
}

/* Header --------------------------------------- */
.header {
  position: sticky;
  top: 0;
  background-color: var(--color-inverse);
  z-index: 100;
}
.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--height-header-sp);
}
@media (min-width: 960px) {
  .header > .container {
    height: unset;
  }
}
.header_logo {
  display: block;
  line-height: 1;
}
.header_logo_image {
  width: auto;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 550px) {
  .header_logo_image {
    height: 32px;
  }
}
body.home .header_logo_image {
  height: 40px;
}
@media (min-width: 960px) {
  body.home .header_logo_image {
    height: 56px;
  }
}
@media (max-width: 959px) {
  .header_nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    top: var(--height-header-sp);
    right: 0;
    width: 90%;
    max-width: 320px;
    height: calc(100vh - var(--height-header-sp));
    background-color: #fff;
    opacity: 0;
    transition: all 0.1s ease-in-out;
    visibility: hidden;
    overflow-y: auto;
  }
}
@media (min-width: 960px) {
  .header_nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
.header_nav_list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 960px) {
  .header_nav_list {
    flex-direction: row;
    align-items: center;
  }
}
.header_nav_list_item {
  position: relative;
  font-weight: bolder;
  padding: 9px 24px;
  border-top: 1px solid var(--color-border);
  font-weight: bolder;
}
@media (min-width: 960px) {
  .header_nav_list_item {
    display: inline-block;
    padding: 0;
    border-top: unset;
    font-size: 1.4rem;
  }
}
.header_nav_list_item.-pc {
  display: none;
}
@media (min-width: 960px) {
  .header_nav_list_item.-pc {
    display: block;
  }
}
.header_nav_list_item.-sp {
  display: block;
}
@media (min-width: 960px) {
  .header_nav_list_item.-sp {
    display: none;
  }
}
@media (max-width: 959px) {
  .header_nav_list_item.-sp2 {
    padding-bottom: 0;
    font-size: 16px;
    font-weight: 400;
  }
  .header_nav_list_item.-sp2 a {
    position: relative;
  }
  .header_nav_list_item.-sp2 a::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
  }
}
@media (max-width: 959px) {
  .header_nav_list_item.-sp3 {
    border-top: 0;
    padding-top: 6px;
    padding-bottom: 0;
    font-size: 16px;
    font-weight: 400;
  }
  .header_nav_list_item.-sp3 a {
    position: relative;
  }
  .header_nav_list_item.-sp3 a::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
  }
}
.header_nav_link {
  display: block;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .header_nav_link {
    padding: 16px 32px;
    border-bottom: 2px solid transparent;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
  }
}
@media (min-width: 960px) {
  .header_nav_link:hover {
    border-bottom-color: var(--color-primary);
    color: var(--color-text);
  }
}
.header_nav_dropdown {
  display: block;
  position: relative;
  color: #999;
}
@media (min-width: 960px) {
  .header_nav_dropdown {
    color: #242424;
  }
}
.header_nav_dropdown_list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .header_nav_dropdown_list {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: var(--color-inverse);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 10;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header_nav_dropdown_list_item {
  padding: 6px 0 0 16px;
}
@media (min-width: 960px) {
  .header_nav_dropdown_list_item {
    padding: 0 24px 0 0;
  }
}
.header_nav_dropdown_link {
  display: block;
  color: var(--color-text);
  word-break: keep-all;
  white-space: nowrap;
  font-size: 14px;
  position: relative;
}
@media (min-width: 960px) {
  .header_nav_dropdown_link {
    padding: 8px 24px 8px 32px;
  }
}
.header_nav_dropdown_link::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
}
@media (min-width: 960px) {
  .header_nav_dropdown_link::after {
    right: 0;
  }
}
@media (min-width: 960px) {
  .header_nav_dropdown_link:hover {
    background-color: var(--color-bg);
    color: var(--color-text);
  }
}
.header_nav_dropdown_link:focus, .header_nav_dropdown_link:focus-visible, .header_nav_dropdown_link:focus-within {
  outline: none;
  box-shadow: none;
}
.header_nav_dropdown_title {
  display: block;
  padding-top: 8px;
  padding-left: 16px;
  color: #ababab;
}
.header_nav_dropdown_title:not(:first-child) {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .header_nav_dropdown_title:not(:first-child) {
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
  }
}
@media (min-width: 960px) {
  .header_nav_dropdown:hover + .header_nav_dropdown_list, .header_nav_dropdown_list:hover {
    display: block;
  }
}
.header_nav_contact {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin: 16px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--color-primary);
  color: var(--color-inverse);
  font-size: 1.6rem;
  font-weight: bolder;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
}
@media (min-width: 960px) {
  .header_nav_contact {
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: unset;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.header_nav_contact:hover {
  color: var(--color-inverse);
  opacity: 0.8;
}
.header_nav_contact_small {
  font-size: 1.4rem;
}
.header_nav_contact:focus, .header_nav_contact:focus-visible, .header_nav_contact:focus-within {
  color: #fff;
  outline: none;
}
@media (max-width: 959px) {
  .header.active .header_nav {
    min-height: 1;
    opacity: 1;
    visibility: visible;
  }
}
.header_contact {
  display: flex;
  margin-left: auto;
  margin-right: 16px;
  padding: 4px 8px 2px;
  border-radius: 4px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: bolder;
  text-align: center;
}
@media (min-width: 960px) {
  .header_contact {
    display: none;
  }
}
.header_hamburger {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin: 8px;
}
@media (min-width: 960px) {
  .header_hamburger {
    display: none;
  }
}
.header_hamburger_bar {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.4s ease;
}
.header_hamburger_bar:nth-of-type(1) {
  top: 3px;
}
.header_hamburger_bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header_hamburger_bar:nth-of-type(3) {
  bottom: 3px;
}
.active .header_hamburger_bar:nth-of-type(1) {
  top: 6px;
  transform: translateY(6px) rotate(-45deg);
}
.active .header_hamburger_bar:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.active .header_hamburger_bar:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 960px) {
  .footer {
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.footer a {
  color: var(--color-text);
  transition: all 0.4s ease;
  height: 100%;
}
.footer a:hover {
  color: var(--color-text);
  opacity: 0.7;
}
.footer a #text {
  margin-top: 100%;
}
.footer_title {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-size: 1.4rem;
  font-weight: bolder;
  word-break: keep-all;
}
.footer_title::after {
  flex: 1 1 100%;
  content: "";
  display: block;
  height: 1px;
  background-color: var(--color-border);
}
.footer_online_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
@media (min-width: 960px) {
  .footer_online_list {
    gap: 24px;
  }
}
.footer_online_list_item {
  flex: 1 1 calc(50% - 24px);
  border-radius: 8px;
  background-color: var(--color-inverse);
  padding: 8px;
}
@media (min-width: 960px) {
  .footer_online_list_item {
    padding: 16px;
  }
}
.footer_online_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 100%;
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .footer_online_link {
    font-size: 1.4rem;
  }
}
.footer_online_image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 4/1;
}
@media (min-width: 960px) {
  .footer_online_image {
    max-width: 280px;
    max-height: 56px;
  }
}
.footer_service {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 960px) {
  .footer_service {
    gap: 24px;
  }
}
.footer_service_main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
@media (min-width: 960px) {
  .footer_service_main {
    gap: 24px;
    flex-direction: row;
  }
}
.footer_service_main_item {
  flex: 1 1 100%;
  flex-grow: 1;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--color-inverse);
}
@media (min-width: 960px) {
  .footer_service_main_item {
    flex: 1 1 calc(100% - 24px);
    padding: 24px;
  }
}
.footer_service_main_item-100 {
  width: 100%;
  flex: unset;
}
.footer_service_main_item-50 {
  flex: unset;
  width: 100%;
}
@media (min-width: 960px) {
  .footer_service_main_item-50 {
    width: calc(50% - 12px);
  }
}
.footer_service_main_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 8px 0;
  font-size: 1.4rem;
}
.footer_service_main_image {
  width: 100%;
  max-height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 960px) {
  .footer_service_main_image {
    max-height: 40px;
  }
}
.footer_service_sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--color-inverse);
}
@media (min-width: 960px) {
  .footer_service_sub {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 0;
    padding: 24px;
  }
}
.footer_service_sub_item {
  flex: 1 1 calc(50% - 16px);
}
@media (min-width: 960px) {
  .footer_service_sub_item {
    flex: 1 1 25%;
  }
}
.footer_service_sub_link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 960px) {
  .footer_service_sub_link {
    font-size: 1.4rem;
    justify-content: center;
  }
}
.footer_service_sub_image {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 140px;
  height: 50px;
}
@media (min-width: 960px) {
  .footer_service_sub_image {
    width: 100%;
    max-width: 160px;
    height: 100%;
  }
}
.footer_global {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .footer_global {
    padding-top: 32px;
  }
}
.footer_global_page {
  display: grid;
  justify-content: center;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 24px;
  grid-column-gap: 8px;
  border: none;
  padding-top: 24px;
}
@media (min-width: 960px) {
  .footer_global_page {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    white-space: nowrap;
  }
}
.footer_global_page_column:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (min-width: 960px) {
  .footer_global_page_column:first-child {
    grid-column-end: 2;
  }
}
.footer_global_page_column > ul > li {
  margin-bottom: 8px;
}
.footer_global_page_title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.footer_global_page_column ul > li > a, .footer_global_page_title a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  padding: 4px 0 4px 18px;
}
.footer_global_page_column ul > li > a::before, .footer_global_page_title a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  transform: translateY(25%);
  width: 14px;
  height: 14px;
  background: url(../images/icons/icon-footer-arrow.svg) no-repeat;
}
.footer_global_page_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  -moz-column-gap: 24px;
       column-gap: 24px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .footer_global_page_inner {
    flex-direction: row;
  }
}
.footer_global_page_inner + .footer_global_page_inner {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .footer_global_page_inner + .footer_global_page_inner {
    position: relative;
    top: 20px;
    margin-top: 0;
    margin-left: 56px;
  }
}
@media (max-width: 767px) {
  .footer_global_page_item {
    position: relative;
    padding-left: 20px;
    margin-top: 16px;
  }
  .footer_global_page_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(25%);
    width: 14px;
    height: 14px;
    background: url(../images/icons/icon-footer-arrow.svg) no-repeat;
  }
}
.footer_support {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 960px) {
  .footer_support {
    gap: 16px;
  }
}
.footer_support_link {
  flex: 1 1 calc(50% - 8px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background-color: var(--color-inverse);
  background: var(--color-inverse);
  padding: 16px;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .footer_support_link {
    flex: 0 0 auto;
    padding: 16px 40px;
  }
}
.footer_support_link:hover {
  opacity: 1;
  background-color: #eee;
}
.footer_asides {
  font-size: 1.2rem;
  color: var(--color-darkgray);
}
.footer_copy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.2rem;
}
.footer_copy_try {
  flex: 1 1 100%;
}
.footer_copy_heidi {
  width: 120px;
  height: 16px;
  color: var(--color-text);
}
.footer_try_page {
  margin: 24px 0;
}
.footer_try_page ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.footer_try_page ul li a {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.footer_try_page ul li a::after {
  content: "";
  position: absolute;
  right: -16px;
  top: -1px;
  width: 14px;
  height: 14px;
  background: url(../images/icons/open-in-new.svg) no-repeat;
}
@media (min-width: 768px) {
  .footer_try_page ul {
    display: flex;
    gap: 10%;
  }
  .footer_try_page ul li a {
    font-size: 1.4rem;
  }
}
@media (min-width: 960px) {
  .footer_try_page {
    margin: 48px 0;
  }
  .footer_try_page ul {
    gap: 6%;
  }
}
.footer .sp {
  display: block;
}
.footer .pc {
  display: none;
}
@media (min-width: 960px) {
  .footer .sp {
    display: none;
  }
  .footer .pc {
    display: block;
  }
}

.breadcrumb {
  padding: 0 8px;
  overflow-x: auto;
  padding-left: min(16px, 8%);
  padding-right: min(16px, 8%);
}
@media (min-width: 960px) {
  .breadcrumb {
    padding-left: calc(50% - var(--width-desktopHD) / 2);
    padding-right: calc(50% - var(--width-desktopHD) / 2);
  }
}
@media (min-width: 768px) {
  .breadcrumb_2 {
    margin: 50px 0 32px;
  }
}
.breadcrumb_list {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--color-darkgray);
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .breadcrumb_list {
    flex-wrap: nowrap;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}
.breadcrumb_list_item {
  display: flex;
  align-items: center;
}
.breadcrumb_list_item > span {
  word-break: keep-all;
}
.breadcrumb_link {
  color: var(--color-darkgray);
  text-decoration: underline;
  word-break: keep-all;
}
.breadcrumb_icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  color: var(--color-darkgray);
}

/* HTML Tags ------------------------------------ */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.07em;
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: var(--color-text);
  font-size: 16px;
  font-family: "Roboto", "Noto Sans JP", Meiryo, メイリオ, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-width: 320px;
  margin: 0;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

sup {
  font-size: x-small;
}

a {
  color: var(--color-link);
}
a, a:visited, a:hover {
  text-decoration: none;
  transition: all 0.4s ease;
}
a:active {
  color: #e6003d;
}
a:focus {
  color: var(--color-hover);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
ul,
ol,
li,
figure {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 5.6rem;
}

h2 {
  font-size: 4.8rem;
}

h3 {
  font-size: 3.2rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

ul {
  list-style: none;
}

table {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote {
  margin: 0;
}

svg {
  fill: currentColor;
}

@media (min-width: 960px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* Common --------------------------------------- */
.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
  transition: all 0.1s ease-in-out;
}
.overlay.active {
  opacity: 1;
  z-index: 99;
}

.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  gap: 8px;
  height: 48px;
  padding: 8px 24px;
  border: 1px solid rgba(var(--color-text, 0));
  border-radius: 100px;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.1em;
  transform: perspective(1px) translateZ(0);
  outline: none;
  cursor: pointer;
}
@media (min-width: 960px) {
  .button {
    padding: 8px 32px;
  }
}
.button:hover {
  color: var(--color-inverse);
  background-color: var(--color-primary);
}
.button:hover::before {
  animation: anim-btn-before 0.4s forwards;
}
.button:hover::after {
  animation: anim-btn-after 0.4s forwards;
}
.button::before, .button::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 1px;
  transform-origin: 0 50%;
}
.button::before {
  background-color: var(--color-text);
  left: -80px;
}
.button::after {
  background-color: var(--color-inverse);
  left: -1px;
}
.button-primary {
  color: var(--color-inverse);
  background-color: var(--color-primary);
}
.button-border {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: bolder;
}
.button-full {
  width: 100%;
  text-align: center;
}
.button-full + .button-full {
  margin-top: 20px;
}
.button_icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  transition: all 0.4s ease;
}
@media (min-width: 960px) {
  .button_icon {
    width: 24px;
    height: 24px;
  }
}
.button-border .button_icon {
  color: var(--color-primary);
}
.button-border:hover .button_icon {
  color: var(--color-inverse);
}

.button-form {
  display: flex;
  margin-left: auto;
  background-color: var(--color-primary);
  border: none;
  text-align: center;
}

@media (min-width: 550px) {
  .br-mobile {
    display: none;
  }
}

@media (max-width: 549px) {
  .br-not-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .br-tablet {
    display: none;
  }
}

@media (max-width: 959px) {
  .br-desktop {
    display: none;
  }
}

@media (min-width: 960px) {
  .br-not-desktop {
    display: none;
  }
}

.word-keep {
  word-break: keep-all;
  display: inline-block;
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.section.bg + .section.bg {
  padding-top: 40px;
}
.section_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 960px) {
  .section_header {
    gap: 16px;
  }
}
.section.border {
  border-top: 1px solid #999;
}
.section_title {
  text-align: center;
  font-size: 2.4rem;
}
@media (min-width: 960px) {
  .section_title {
    font-size: 4rem;
  }
}
.section_caption {
  color: var(--color-darkgray);
  font-size: 1.2rem;
  font-weight: bolder;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media (min-width: 960px) {
  .section_caption {
    font-size: 2.4rem;
  }
}

.section02 {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 960px) {
  .section02 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.container {
  padding-left: min(16px, 8%);
  padding-right: min(16px, 8%);
}
@media (min-width: 960px) {
  .container {
    padding-left: calc(50% - var(--width-max) / 2);
    padding-right: calc(50% - var(--width-max) / 2);
  }
}
.container.full-mobile {
  padding-left: 0;
  padding-right: 0;
}

.bg {
  background-color: var(--color-bg);
}

.bg-inverse {
  color: var(--color-inverse);
  background-color: rgba(var(--color-darkgray, 0.5));
}
.bg-inverse a {
  color: var(--color-inverse);
}

.title {
  line-height: 1;
  margin-bottom: 40px;
  transition: all 0.4s ease;
}

.font_bold {
  font-weight: bolder;
}

@media (min-width: 768px) {
  main {
    padding: 0 20px;
  }
}
@media (min-width: 960px) {
  main {
    padding: 0;
  }
}

.small_mark {
  font-family: "Noto Sans JP";
}

@media (max-width: 767px) {
  .s-text-center {
    text-align: center;
  }
}

.c-mv {
  height: 188px;
  background: url(../images/common/bg-sp.svg) center/cover no-repeat;
  background-size: cover;
}
@media (min-width: 960px) {
  .c-mv {
    height: 290px;
    background: url(../images/common/bg.svg) center/cover no-repeat;
  }
}
.c-mv_inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 960px) {
  .c-mv_inner {
    display: block;
  }
}
@media (min-width: 960px) {
  .c-mv_title {
    padding-top: 116px;
  }
}
.c-mv_title_en {
  display: block;
  font-size: 16px;
  font-weight: bolder;
  line-height: 1.375;
  color: var(--color-red);
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 6px;
}
@media (min-width: 960px) {
  .c-mv_title_en {
    font-size: 24px;
    background: none;
    padding: 0 0px;
  }
}
.c-mv_title_ja {
  display: block;
  font-size: 28px;
  font-weight: bolder;
  line-height: 1.4583333333;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 0 6px;
}
@media (min-width: 960px) {
  .c-mv_title_ja {
    font-size: 48px;
    background: none;
    padding: 0 0px;
  }
}

.trysan {
  background: url(/assets/images/trysan-bg02.svg) bottom/contain no-repeat;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0;
}
@media (min-width: 960px) {
  .trysan {
    padding-left: calc(50% - var(--width-desktopHD) / 2);
    padding-right: calc(50% - var(--width-desktopHD) / 2);
    padding-top: 0px;
    padding-bottom: 0;
  }
}
.trysan figure {
  text-align: center;
}
.trysan figure img {
  width: 100%;
  height: 100%;
}
.trysan_image {
  display: block;
  max-width: 824px;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.trysan_image img {
  width: 100%;
  height: auto;
}

@media (min-width: 960px) {
  .grade_header {
    background: #fcfcfc;
  }
}
.grade_header_nav {
  display: flex;
  gap: 11px;
  padding: 8px 16px;
}
@media (min-width: 960px) {
  .grade_header_nav {
    justify-content: center;
    gap: 20px;
    padding: 10px;
  }
}
.grade_header_nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  width: 50%;
  height: 29.85px;
  color: #fff;
  letter-spacing: 0.005em;
}
@media (min-width: 960px) {
  .grade_header_nav a {
    height: 40px;
    max-width: 390px;
    font-size: 14px;
    letter-spacing: normal;
  }
}
.grade_header_nav a:nth-of-type(2) {
  position: relative;
}
.grade_header_nav a:nth-of-type(2)::after {
  position: absolute;
  content: url(../images/202401/grade_header_nav.svg);
  right: 10px;
  top: 47%;
  transform: translateY(-50%);
}
.grade_header_nav.koukou {
  background: #effaff;
}
.grade_header_nav.koukou a {
  background: var(--color-koukou);
}
.grade_header_nav.chugaku {
  background: #d2efe1;
}
.grade_header_nav.chugaku a {
  background: var(--color-chugaku);
}
.grade_header_nav.shogaku {
  background: #fff3e8;
}
.grade_header_nav.shogaku a {
  background: var(--color-shogaku);
}
.grade_header_nav.detail {
  background: #ffeaea;
}
.grade_header_nav.detail a {
  background: var(--color-red);
}
@media (min-width: 960px) {
  .grade_header_nav.detail {
    display: none;
  }
}
@media (min-width: 960px) {
  .grade_header_contents {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.grade_header_mv {
  width: 100%;
  height: 180px;
}
@media (min-width: 960px) {
  .grade_header_mv {
    height: 340px;
    max-width: 800px;
    margin-left: auto;
  }
}
.grade_header_mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grade_header_mv_2 {
  height: 214px;
}
@media (min-width: 960px) {
  .grade_header_mv_2 {
    height: 340px;
    max-width: 800px;
    margin-left: auto;
  }
}
@media (min-width: 960px) {
  .grade_header_textbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 500px;
    height: 200px;
    padding: 30px 0 49px 0;
  }
  .grade_header_textbox.detail, .grade_header_textbox.sapix {
    border-left: 10px solid var(--color-red);
    display: flex;
    align-items: center;
    padding: unset;
    height: 166px;
    top: 45%;
  }
}
.grade_header_title {
  font-size: 24px;
  font-weight: 700;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .grade_header_title {
    font-size: 36px;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    z-index: 1;
  }
  .grade_header_title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    content: "";
    z-index: -1;
  }
}
.grade_header_title.koukou {
  background: #effaff;
  color: var(--color-koukou);
}
@media (min-width: 960px) {
  .grade_header_title.koukou {
    background: unset;
  }
  .grade_header_title.koukou::after {
    background: #effaff;
  }
}
.grade_header_title.chugaku {
  background: #d2efe1;
  color: var(--color-chugaku);
}
@media (min-width: 960px) {
  .grade_header_title.chugaku {
    background: unset;
  }
  .grade_header_title.chugaku::after {
    background: #d2efe1;
  }
}
.grade_header_title.shogaku {
  background: #fff3e8;
  color: var(--color-shogaku);
}
@media (min-width: 960px) {
  .grade_header_title.shogaku {
    background: unset;
  }
  .grade_header_title.shogaku::after {
    background: #fff3e8;
  }
}
.grade_header_title.detail, .grade_header_title.sapix {
  color: var(--color-red);
  font-size: 22px;
  border-left: 10px solid var(--color-red);
}
@media (min-width: 960px) {
  .grade_header_title.detail, .grade_header_title.sapix {
    margin: 0 0 0 40px;
    line-height: 1.48;
    border-left: unset;
    font-size: 36px;
  }
}
.grade_header_title.sapix {
  justify-content: flex-start;
  padding-left: 20px;
}
@media (min-width: 960px) {
  .grade_header_title.sapix {
    justify-content: center;
    padding: unset;
  }
}
@media (min-width: 960px) {
  .grade_header_text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.48;
    font-weight: 700;
    text-align: center;
  }
  .grade_header_text.koukou {
    color: var(--color-koukou);
  }
  .grade_header_text.chugaku {
    color: var(--color-chugaku);
  }
  .grade_header_text.shogaku {
    color: var(--color-shogaku);
  }
  .grade_header_text.detail {
    color: var(--color-red);
  }
}
.grade_header_sp {
  display: block;
}
@media (min-width: 960px) {
  .grade_header_sp {
    display: none;
  }
}
.grade_header_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .grade_header_sp--flex {
    display: none;
  }
}
.grade_header_pc {
  display: none;
}
@media (min-width: 960px) {
  .grade_header_pc {
    display: block;
  }
}
.grade_header_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .grade_header_pc--flex {
    display: flex;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 50%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
@media (min-width: 960px) {
  .hero {
    max-width: var(--width-desktopHD);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding-top: 0;
    background-position: 100% 50%;
  }
}
.hero-2 {
  padding-top: 0;
}
@media (min-width: 768px) {
  .hero-2 {
    max-width: var(--width-desktopHD);
    margin-left: auto;
    margin-right: auto;
    background-position: 100% 50%;
  }
}
.hero_thumb {
  width: 100%;
  margin-top: 0;
}
.hero_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .hero_thumb {
    display: none;
    margin-top: 15px;
  }
}
.hero_thumb_2 {
  display: block;
  width: 60%;
  margin-left: auto;
}
.hero_thumb_2 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .hero_thumb_2 {
    display: none;
  }
}
.hero_image {
  overflow: hidden;
}
.hero_texts {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  margin-right: 16px;
}
@media (min-width: 960px) {
  .hero_texts {
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    width: 50%;
    margin: 0;
    padding: 24px 40px;
  }
}
@media (min-width: 768px) {
  .hero_texts_2 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    margin-right: 16px;
    padding: 24px 0px;
  }
}
@media (min-width: 768px) {
  .hero_texts_3 {
    display: block;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    width: 75%;
    margin: 0;
    padding: 0;
  }
}
.hero_texts_3 .hero_aside_item {
  margin-left: 0;
}
@media (min-width: 768px) {
  .hero_texts_3 .hero_aside_item {
    margin-left: 1.5em;
  }
}
.futoukou .hero_texts_3 {
  display: none;
}
@media (min-width: 768px) {
  .futoukou .hero_texts_3 {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 960px) {
  .futoukou .hero_texts_3 {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
.hero_texts_4 {
  display: block;
}
@media (min-width: 768px) {
  .hero_texts_4 {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    width: 50%;
    margin: 0;
    padding: 24px 40px 24px 0;
  }
}
.hero_title {
  margin-left: 16px;
  margin-right: 16px;
  color: var(--color-secondary);
  font-size: 1.8rem;
  font-weight: bolder;
  text-align: center;
}
@media (min-width: 768px) {
  .hero_title {
    margin: 24px 0 0;
    font-size: 4.4rem;
    text-align: left;
    word-break: keep-all;
  }
}
.hero_title_abroad {
  margin-top: -48px;
  font-size: 2.2rem;
}
@media (min-width: 550px) {
  .hero_title_abroad {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .hero_title_abroad {
    margin-top: 24px;
    font-size: 4.4rem;
  }
}
.hero_title_futoukou {
  margin-top: -18px;
  font-size: 2rem;
}
@media (min-width: 550px) {
  .hero_title_futoukou {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .hero_title_futoukou {
    margin-top: -18px;
    font-size: 3.2rem;
    text-align: center;
  }
}
@media (min-width: 960px) {
  .hero_title_futoukou {
    margin-top: 24px;
    font-size: 4.4rem;
    text-align: left;
  }
}
.hero_title-2 {
  font-weight: 700;
  font-size: 22px;
  text-align: left;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-top: -20px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero_title-2 {
    margin-top: 32px;
    text-align: left;
    margin-bottom: 16px;
    font-size: 32px;
  }
}
@media (min-width: 960px) {
  .hero_title-2 {
    margin-top: 62px;
    margin-bottom: 30px;
    font-size: 48px;
  }
}
.hero_title-2_md {
  font-size: 20px;
  line-height: 1.3;
  display: block;
}
@media (min-width: 960px) {
  .hero_title-2_md {
    font-size: 36px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
.hero_title-3 {
  margin-left: 16px;
  margin-right: 16px;
  color: var(--color-secondary);
  font-size: 40px;
  text-align: left;
  letter-spacing: 0;
  margin-top: 0px;
  margin-bottom: 10px;
}
@media (min-width: 960px) {
  .hero_title-3 {
    margin-bottom: 0px;
    margin-top: 24px;
    margin-left: 0px;
    font-size: 48px;
    word-break: keep-all;
  }
}
.hero_title-3 span {
  display: inline-block;
}
.hero_title-3_lg {
  font-size: 40px;
  display: block;
  line-height: 1.4;
}
.hero_title-3_md {
  font-size: 20px;
}
.hero_title-3_sm {
  font-size: 15px;
}
.hero_read {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  padding-left: 32px;
  margin-left: min(16px, 8%);
}
@media (min-width: 768px) {
  .hero_read {
    margin-top: 0;
    font-size: 24px;
    margin-right: 0px;
  }
}
@media (min-width: 960px) {
  .hero_read {
    padding-top: 16px;
    padding-bottom: 0;
    font-size: 2.8rem;
  }
  .hero_read sup {
    font-size: 13px;
  }
}
.hero_read::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 4px solid var(--color-red);
  left: 0;
  top: 6px;
}
@media (min-width: 768px) {
  .hero_read::before {
    width: 28px;
    height: 28px;
    border-width: 6px;
  }
}
@media (min-width: 960px) {
  .hero_read::before {
    top: 16px;
  }
}
.hero_price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--color-darkgray);
  font-size: 1.4rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .hero_price {
    margin-bottom: 0;
    font-size: 2rem;
  }
}
.hero_price_number {
  color: var(--color-primary);
  font-size: 2.4rem;
}
@media (min-width: 960px) {
  .hero_price_number {
    font-size: 3.6rem;
  }
}
.hero_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 8px;
  border-radius: 8px;
  background-color: var(--color-primary);
  color: var(--color-inverse);
  font-size: 2.2rem;
  font-weight: bolder;
  overflow: hidden;
}
.hero_contact::before {
  animation: shine 4s infinite;
}
.hero_contact::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
@media (min-width: 960px) {
  .hero_contact {
    font-size: 2.4rem;
  }
}
.hero_contact:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.8));
  color: var(--color-inverse);
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
}
.hero_contact:focus, .hero_contact:active {
  color: var(--color-inverse);
}
.hero_contact_small {
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .hero_contact_small {
    font-size: 1.4rem;
  }
}
.hero_taiken {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 440px;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .hero_taiken {
    font-size: 1.8rem;
  }
}
.hero_taiken:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.8));
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
}
.hero_taiken_icon {
  width: 28px;
  height: 28px;
}
@media (min-width: 960px) {
  .hero_taiken_icon {
    width: 32px;
    height: 32px;
  }
}
.hero_taiken_texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero_taiken_small {
  font-size: 1.2rem;
}
.hero_achievements {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .hero_achievements {
    max-width: 480px;
    margin: 24px auto 0;
  }
}
@media (max-width: 767px) {
  .hero_achievements {
    margin-top: 12px;
  }
}
@media (min-width: 768px) {
  .futoukou .hero_achievements {
    max-width: 540px;
    margin: 24px auto 0;
  }
}
@media (min-width: 768px) {
  .hero_achievements_2 {
    margin-left: 0;
  }
}
.hero_achievement {
  width: 32%;
  height: 80px;
  color: var(--color-secondary);
}
@media (min-width: 960px) {
  .hero_achievement {
    height: 96px;
  }
}
.hero_aside {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-darkgray);
  font-size: 1.1rem;
  line-height: 1.2;
  counter-reset: hero_aside 0;
}
.abroad .hero_aside {
  margin-top: 16px;
}
.hero_aside_item {
  text-indent: -1.5em;
  margin-left: 1.5em;
}
.hero_aside_item::before {
  counter-increment: hero_aside 1; /* hero_aside カウンタの増加数をセット */
  content: "※" counter(hero_aside);
}
@media (max-width: 767px) {
  .hero_aside_item {
    text-indent: 0;
  }
}
.futoukou .hero_aside_item {
  margin-top: 16px;
}
.futoukou .futoukou_read .hero_aside_item {
  display: none;
}
@media (max-width: 767px) {
  .futoukou .futoukou_read .hero_aside_item {
    display: block;
    margin: 24px 0;
    padding: 0 24px;
    text-align: center;
    text-indent: 0;
  }
}
.hero sup {
  vertical-align: text-top;
}

.kobetsu .hero {
  background-image: url("/assets/images/hero_kobetsu-sp.jpg");
  background-size: contain;
}
@media (min-width: 960px) {
  .kobetsu .hero {
    background-image: url("/assets/images/hero_kobetsu.jpg");
  }
}

.overseas .hero .hero_thumb_2 {
  display: block;
  width: 100%;
}
.overseas .hero .pc-only {
  display: block;
}
@media (max-width: 959px) {
  .overseas .hero .pc-only {
    display: none;
  }
}
.overseas .hero .sp-only {
  display: none;
}
@media (max-width: 959px) {
  .overseas .hero .sp-only {
    display: block;
  }
}

.futoukou .hero {
  background-image: none;
  background-position: bottom;
}
.futoukou .hero .hero_thumb_2 {
  display: block;
  width: 100%;
}
.futoukou .hero .pc-only {
  display: block;
}
@media (max-width: 959px) {
  .futoukou .hero .pc-only {
    display: none;
  }
}
.futoukou .hero .sp-only {
  display: none;
}
@media (max-width: 959px) {
  .futoukou .hero .sp-only {
    display: block;
  }
}

.shogaku .hero {
  background-image: url("/assets/images/hero_shogaku_sp.jpg");
  background-size: contain;
}
@media (min-width: 960px) {
  .shogaku .hero {
    background-image: url("/assets/images/hero_shogaku.jpg");
  }
}
.shogaku .hero_price_number {
  color: var(--color-shogaku);
}
.shogaku .hero_price_grade {
  color: var(--color-shogaku);
}
.shogaku .hero_contact {
  position: relative;
  background-color: var(--color-shogaku);
}
.shogaku .hero_contact:hover {
  background-color: hsla(calc(var(--color-shogaku-h) + 0deg), calc(var(--color-shogaku-s) + 0%), calc(var(--color-shogaku-l) + 5%), calc(var(--color-shogaku-a) + 0));
  box-shadow: 0 8px 16px hsla(calc(var(--color-shogaku-h) + 0deg), calc(var(--color-shogaku-s) + 0%), calc(var(--color-shogaku-l) + -20%), calc(var(--color-shogaku-a) + -0.8));
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
}
.shogaku .hero_contact:focus, .shogaku .hero_contact:active {
  color: var(--color-inverse);
}
.shogaku .hero_taiken {
  border: 2px solid var(--color-shogaku);
  color: var(--color-shogaku);
}
.shogaku .hero_taiken:hover {
  border-color: rgba(var(--color-shogaku-rgb), 0.7);
  box-shadow: 0 8px 16px hsla(calc(var(--color-shogaku-h) + 0deg), calc(var(--color-shogaku-s) + 0%), calc(var(--color-shogaku-l) + -20%), calc(var(--color-shogaku-a) + -0.8));
  transform: translateY(-2px) scale(1.01);
  color: rgba(var(--color-shogaku-rgb), 0.7);
}
.shogaku .hero_achievement {
  color: var(--color-shogaku);
}
.chugaku .hero {
  background-image: url("/assets/images/hero_chugaku_sp.jpg");
  background-size: contain;
}
@media (min-width: 960px) {
  .chugaku .hero {
    background-image: url("/assets/images/hero_chugaku.jpg");
  }
}
.chugaku .hero_price_number {
  color: var(--color-chugaku);
}
.chugaku .hero_price_grade {
  color: var(--color-chugaku);
}
.chugaku .hero_contact {
  position: relative;
  background-color: var(--color-chugaku);
}
.chugaku .hero_contact:hover {
  background-color: hsla(calc(var(--color-chugaku-h) + 0deg), calc(var(--color-chugaku-s) + 0%), calc(var(--color-chugaku-l) + 5%), calc(var(--color-chugaku-a) + 0));
  box-shadow: 0 8px 16px hsla(calc(var(--color-chugaku-h) + 0deg), calc(var(--color-chugaku-s) + 0%), calc(var(--color-chugaku-l) + -20%), calc(var(--color-chugaku-a) + -0.8));
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
}
.chugaku .hero_contact:focus, .chugaku .hero_contact:active {
  color: var(--color-inverse);
}
.chugaku .hero_taiken {
  border: 2px solid var(--color-chugaku);
  color: var(--color-chugaku);
}
.chugaku .hero_taiken:hover {
  border-color: rgba(var(--color-chugaku-rgb), 0.7);
  box-shadow: 0 8px 16px hsla(calc(var(--color-chugaku-h) + 0deg), calc(var(--color-chugaku-s) + 0%), calc(var(--color-chugaku-l) + -20%), calc(var(--color-chugaku-a) + -0.8));
  transform: translateY(-2px) scale(1.01);
  color: rgba(var(--color-chugaku-rgb), 0.7);
}
.chugaku .hero_achievement {
  color: var(--color-chugaku);
}
.koukou .hero {
  background-image: url("/assets/images/hero_koukou_sp.jpg");
  background-size: contain;
}
@media (min-width: 960px) {
  .koukou .hero {
    background-image: url("/assets/images/hero_koukou.jpg");
  }
}
.koukou .hero_price_number {
  color: var(--color-koukou);
}
.koukou .hero_price_grade {
  color: var(--color-koukou);
}
.koukou .hero_contact {
  position: relative;
  background-color: var(--color-koukou);
}
.koukou .hero_contact:hover {
  background-color: hsla(calc(var(--color-koukou-h) + 0deg), calc(var(--color-koukou-s) + 0%), calc(var(--color-koukou-l) + 5%), calc(var(--color-koukou-a) + 0));
  box-shadow: 0 8px 16px hsla(calc(var(--color-koukou-h) + 0deg), calc(var(--color-koukou-s) + 0%), calc(var(--color-koukou-l) + -20%), calc(var(--color-koukou-a) + -0.8));
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
}
.koukou .hero_contact:focus, .koukou .hero_contact:active {
  color: var(--color-inverse);
}
.koukou .hero_taiken {
  border: 2px solid var(--color-koukou);
  color: var(--color-koukou);
}
.koukou .hero_taiken:hover {
  border-color: rgba(var(--color-koukou-rgb), 0.7);
  box-shadow: 0 8px 16px hsla(calc(var(--color-koukou-h) + 0deg), calc(var(--color-koukou-s) + 0%), calc(var(--color-koukou-l) + -20%), calc(var(--color-koukou-a) + -0.8));
  transform: translateY(-2px) scale(1.01);
  color: rgba(var(--color-koukou-rgb), 0.7);
}
.koukou .hero_achievement {
  color: var(--color-koukou);
}

@keyframes shine {
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.mainvisual {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mainvisual picture, .mainvisual img {
  display: block;
  width: 100%;
  height: auto;
}

.abroad .cta.abroad-cta {
  padding-top: 20px;
}

.abroad002 {
  overflow-x: hidden;
}
.abroad002-course {
  background-color: #FFF5F5;
  padding-top: 52px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .abroad002-course {
    padding-top: 27px;
    margin-top: -10px;
    padding-bottom: 25px;
  }
}
.abroad002-course_title {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #E6003D;
}
@media (max-width: 767px) {
  .abroad002-course_title {
    font-size: 20px;
  }
}
.abroad002-course_title::before, .abroad002-course_title::after {
  content: "";
  flex-grow: 1;
  background-color: #E6003D;
  height: 1px;
}
.abroad002-course_list {
  display: flex;
  gap: 20px;
  margin-top: 33px;
}
@media (max-width: 767px) {
  .abroad002-course_list {
    flex-direction: column;
    gap: 10px;
    margin-top: 23px;
  }
}
.abroad002-course_item {
  background-color: #fff;
  border-radius: 10px;
  padding: 32px 30px 30px;
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .abroad002-course_item {
    width: 100%;
    padding: 16px 20px 19px;
  }
}
.abroad002-course_item_title {
  font-size: 28px;
  line-height: 144%;
  font-weight: 700;
  color: #E6003D;
  text-align: center;
  border-bottom: 1px solid;
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  .abroad002-course_item_title {
    font-size: 20px;
    padding-bottom: 4px;
  }
}
.abroad002-course_item_text {
  margin-top: 16px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .abroad002-course_item_text {
    font-size: 12px;
    margin-top: 11px;
  }
}
.abroad002-feature {
  padding-top: 100px;
  padding-bottom: 42px;
}
@media (min-width: 960px) {
  .abroad002-feature {
    padding-left: calc(50% - var(--width-desktopHD) / 2);
    padding-right: calc(50% - var(--width-desktopHD) / 2);
  }
}
@media (max-width: 767px) {
  .abroad002-feature {
    padding-top: 40px;
    padding-bottom: 22px;
  }
}
.abroad002-feature_maintitle {
  color: #e6003d;
}
.abroad002-feature_maintitle .border {
  padding: 10px 0 2px;
  border-top: 1px solid #e6003d;
  border-bottom: 1px solid #e6003d;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .abroad002-feature_maintitle .border {
    padding: 2px 0 0px;
    font-size: 16px;
  }
}
.abroad002-feature_maintitle strong {
  font-size: 50px;
  margin-top: 7px;
  display: block;
  text-align: center;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .abroad002-feature_maintitle strong {
    font-size: 24px;
    margin-top: 0;
  }
}
.abroad002-feature_maintitle .number {
  font-size: 80px;
}
@media (max-width: 767px) {
  .abroad002-feature_maintitle .number {
    font-size: 36px;
  }
}
.abroad002-feature_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .abroad002-feature_list {
    gap: 30px;
    margin-top: 13px;
  }
}
.abroad002-feature_item {
  display: flex;
  flex-direction: column;
  gap: 41px;
}
@media (max-width: 767px) {
  .abroad002-feature_item {
    border: unset;
    padding-left: 16px;
    padding-right: 16px;
    gap: 23px;
    padding-bottom: unset;
  }
}
.abroad002-feature_item:nth-of-type(1) .abroad002-feature_title::after {
  background-image: url(../images/abroad002/point1.png);
}
.abroad002-feature_item:nth-of-type(1) .abroad002-feature_texts {
  padding-top: 65px;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(1) .abroad002-feature_texts {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(1) .abroad002-feature_header {
    flex-direction: column-reverse;
  }
  .abroad002-feature_item:nth-of-type(1) .abroad002-feature_image {
    padding: 0 4px 0 15px;
  }
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(2) {
    margin-bottom: -10px;
  }
  .abroad002-feature_item:nth-of-type(2) .abroad002-feature_image {
    margin-top: 26px;
  }
}
.abroad002-feature_item:nth-of-type(2) .abroad002-feature_title::after {
  background-image: url(../images/abroad002/point2.png);
  top: -53px;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(2) .abroad002-feature_title::after {
    top: 50%;
  }
}
.abroad002-feature_item:nth-of-type(2) .abroad002-feature_texts {
  padding-top: 57px;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(2) .abroad002-feature_texts {
    padding-top: unset;
  }
}
.abroad002-feature_item:nth-of-type(3) {
  margin-top: -20px;
  padding-bottom: 23px;
  position: relative;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(3) {
    padding-bottom: 29px;
  }
}
.abroad002-feature_item:nth-of-type(3) .abroad002-feature_texts {
  padding-top: 55px;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(3) .abroad002-feature_texts {
    padding-top: unset;
  }
}
.abroad002-feature_item:nth-of-type(3) .abroad002-feature_title span {
  font-size: 32px;
  letter-spacing: -0.09em;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(3) .abroad002-feature_title {
    font-size: 16px;
    background-color: #FFEAEA;
    max-width: 293px;
    width: 100%;
    height: auto;
    border-radius: 50px;
    margin: 20px auto 0;
    padding-left: unset;
    display: flex;
    justify-content: center;
    color: #E6003D;
    position: relative;
    padding: 10px 0 5px;
  }
  .abroad002-feature_item:nth-of-type(3) .abroad002-feature_title::after {
    position: absolute;
    content: "";
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;
    width: 30px;
    height: 26px;
    background-color: #FFEAEA;
  }
  .abroad002-feature_item:nth-of-type(3) .abroad002-feature_title span {
    font-size: 13px;
  }
}
.abroad002-feature_item:nth-of-type(3) .abroad002-feature_small {
  position: absolute;
  left: 18px;
  bottom: 0;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #333333;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(3) .abroad002-feature_small {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(3) .abroad002-feature_image {
    margin: 20px calc(50% - 50vw) 0;
    width: 100vw;
  }
}
.abroad002-feature_item:nth-of-type(4) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(4) {
    margin-top: -4px;
  }
}
.abroad002-feature_item:nth-of-type(4) .abroad002-feature_title::after {
  background-image: url(../images/abroad002/point3.png);
  top: -68px;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(4) .abroad002-feature_title::after {
    top: 50%;
  }
}
.abroad002-feature_item:nth-of-type(4) .abroad002-feature_texts {
  padding-top: 67px;
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(4) .abroad002-feature_texts {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  .abroad002-feature_item:nth-of-type(4) .abroad002-feature_image {
    margin-top: 28px;
    margin-bottom: 5px;
  }
}
.abroad002-feature_header {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .abroad002-feature_header {
    gap: unset;
    flex-direction: column-reverse;
  }
}
.abroad002-feature_image {
  width: 37.5%;
  flex: unset;
}
@media (max-width: 767px) {
  .abroad002-feature_image {
    width: 100%;
    margin-top: 30px;
  }
}
.abroad002-feature_image img {
  width: 100%;
  height: auto;
}
.abroad002-feature_title {
  font-size: 40px;
  line-height: 130%;
  font-weight: 700;
  position: relative;
}
@media (max-width: 767px) {
  .abroad002-feature_title {
    font-size: 20px;
    padding-left: 94px;
  }
}
.abroad002-feature_title::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: -63px;
  width: 158px;
  height: 130px;
  z-index: -1;
}
@media (max-width: 767px) {
  .abroad002-feature_title::after {
    right: unset;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 79px;
    height: 65px;
  }
}
.abroad002-feature_texts {
  width: 57.5%;
}
@media (max-width: 767px) {
  .abroad002-feature_texts {
    width: 100%;
  }
}
.abroad002-feature_description {
  margin-top: 10px;
  font-size: 16px;
  line-height: 150%;
  margin-top: 20px;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .abroad002-feature_description {
    font-size: 14px;
    line-height: 150%;
    margin-top: 14px;
  }
}
.abroad002-feature_plannerwrap_title {
  font-size: 32px;
  font-weight: 900;
  color: #E6003D;
  text-align: center;
}
@media (max-width: 767px) {
  .abroad002-feature_plannerwrap_title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.abroad002-feature_planner {
  display: flex;
  gap: 24px;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .abroad002-feature_planner {
    flex-direction: column;
    gap: 15px;
    margin: 22px auto 0;
  }
}
.abroad002-feature_planner_item {
  width: calc(50% - 39px);
  min-height: 347px;
  border-radius: 16px;
  padding: 34px 0px 22px;
}
@media (max-width: 767px) {
  .abroad002-feature_planner_item {
    width: 100%;
    padding: 1px 20px 28px;
    min-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
  }
}
.abroad002-feature_planner_item.-color .abroad002-feature_planner_caption {
  color: #E6003D;
}
.abroad002-feature_planner_cloud {
  border-radius: 50px;
  background-color: #f9f9f9;
  padding: 0 24px;
  font-size: 1.6rem;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 700;
  position: relative;
}
.abroad002-feature_planner_cloud::after {
  position: absolute;
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #f9f9f9;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 16px;
  height: 16px;
}
@media (max-width: 767px) {
  .abroad002-feature_planner_cloud {
    order: 2;
    font-size: 11px;
    height: 35px;
    margin: 11px auto 0;
    padding: 0 8px;
  }
}
.abroad002-feature_planner_cloud.-color {
  background-color: #E6003D;
  color: #fff;
}
.abroad002-feature_planner_cloud.-color::after {
  background-color: #E6003D;
}
.abroad002-feature_planner_caption {
  font-size: 22px;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
  height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .abroad002-feature_planner_caption {
    height: auto;
    order: 1;
    font-size: 16px;
  }
}
.abroad002-feature_planner_caption.-color {
  color: #E6003D;
}
.abroad002-feature_planner_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
}
.abroad002-feature_planner_arrow img {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .abroad002-feature_planner_arrow {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: #E6003D;
    width: 52px;
    height: 17px;
    margin: 0 auto -1px;
  }
  .abroad002-feature_planner_arrow img {
    display: none;
  }
}
.abroad002-feature_planner_img {
  margin: 35px auto 0;
  text-align: center;
  max-width: 240px;
  width: 100%;
  height: 240px;
  fill: #E6003D;
  color: #E6003D;
  display: block;
}
@media (max-width: 767px) {
  .abroad002-feature_planner_img {
    order: 3;
    margin: 10px auto 0;
  }
}
.abroad002-feature_planner_text {
  margin: -1px -16px 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .abroad002-feature_planner_text {
    font-size: 12px;
    margin: 11px -4px 0;
    order: 4;
  }
}
.abroad002-price-system {
  padding-top: 61px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .abroad002-price-system {
    padding-top: 32px;
    padding-bottom: 50px;
  }
}
.abroad002-price-system .section_title.section_title_2 {
  padding-left: 50px;
}
.abroad002-price-system .section_title.section_title_2::before {
  width: 54px;
  height: 45px;
  left: 59px;
  top: -2px;
}
@media (max-width: 767px) {
  .abroad002-price-system .section_title.section_title_2::before {
    width: 45px;
    height: 37px;
    top: 8px;
    left: calc(50% - 67px);
    transform: translateX(-50%);
  }
}
.abroad002-price-system .price-system_contents {
  max-width: 1205px;
  margin: -20px auto 0;
}
@media (max-width: 767px) {
  .abroad002-price-system .price-system_contents {
    margin: -4px auto 0;
  }
}
.abroad002-price-system .price-system_list {
  gap: 15px;
  margin: unset;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .abroad002-price-system .price-system_list {
    flex-direction: column;
  }
}
.abroad002-price-system .price-system_item {
  padding: 30px 27px;
  margin: unset;
}
@media (max-width: 767px) {
  .abroad002-price-system .price-system_item {
    padding: 19px 17px 13px;
  }
}
.abroad002-price-system .price-system_item:nth-last-of-type(1) {
  width: 374px;
  gap: 11px;
}
@media (max-width: 767px) {
  .abroad002-price-system .price-system_item:nth-last-of-type(1) {
    width: 100%;
  }
}
.abroad002-price-system .price-system_item:nth-last-of-type(2) {
  width: 421px;
  gap: 13px;
}
@media (max-width: 767px) {
  .abroad002-price-system .price-system_item:nth-last-of-type(2) {
    width: 100%;
  }
}
.abroad002-price-system .price-system_item:nth-last-of-type(3) {
  width: 374px;
  gap: 15px;
}
@media (max-width: 767px) {
  .abroad002-price-system .price-system_item:nth-last-of-type(3) {
    width: 100%;
  }
}
.abroad002-price-system .price-system_item figure {
  width: 50px;
  height: 50px;
  margin: unset;
}
.abroad002-price-system .price-system_item_head {
  padding-left: unset;
}
.abroad002-price-system .price-system_item_body {
  padding: unset;
}
.abroad002-price-system .price-system_item_title {
  font-size: 18px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .abroad002-price-system .price-system_item_title {
    font-size: 16px;
    margin-bottom: 7px;
  }
}
.abroad002-price-system .price-system_item_text {
  font-size: 14px;
  line-height: 150%;
  padding-right: unset;
}
.abroad002-eyecatch {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .abroad002-eyecatch {
    margin-bottom: -10px;
  }
}
.abroad002-eyecatch_inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFF5F5;
  border-radius: 16px;
  padding: 53px 10px 50px;
}
@media (max-width: 767px) {
  .abroad002-eyecatch_inner {
    padding: 33px 20px 30px;
  }
}
.abroad002-eyecatch_title {
  font-size: 32px;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
  color: #E6003D;
}
@media (max-width: 767px) {
  .abroad002-eyecatch_title {
    font-size: 20px;
  }
}
.abroad002-eyecatch_thumb {
  max-width: 300px;
  margin: 12px auto 0;
}
.abroad002-eyecatch_thumb img {
  width: 100%;
  height: auto;
}
.abroad002-eyecatch_text {
  font-size: 16px;
  line-height: 150%;
  max-width: 800px;
  margin: 10px auto 0;
}
@media (max-width: 767px) {
  .abroad002-eyecatch_text {
    font-size: 14px;
    margin: 12px auto 0;
  }
}
.abroad002-eyecatch_text span {
  color: #E6003D;
  font-weight: 700;
}
@media (max-width: 767px) {
  .abroad002-overseas {
    margin-top: -12px;
    padding-bottom: 47px;
  }
}
.abroad002-overseas .overseas {
  margin: -5px 0 -16px;
}
@media (max-width: 767px) {
  .abroad002-overseas .overseas {
    margin: -15px 0 -16px;
  }
}
.abroad002-reviews {
  padding-top: 63px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .abroad002-reviews {
    padding-bottom: 50px;
    padding-top: 42px;
  }
  .abroad002-reviews .section_caption {
    font-size: 16px;
  }
}
.abroad002-reviews .section_header {
  gap: 10px;
}
@media (max-width: 767px) {
  .abroad002-reviews .section_header {
    gap: 6px;
  }
}
.abroad002-reviews_listwrap {
  max-width: 1000px;
  margin: 84px auto 0;
}
@media (max-width: 767px) {
  .abroad002-reviews_listwrap {
    overflow: scroll;
    margin: 18px auto 0;
    padding: 50px 16px 28px;
  }
}
.abroad002-reviews_list {
  display: flex;
  gap: 46px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .abroad002-reviews_list {
    width: 560px;
    gap: 16px;
    max-width: unset;
  }
}
.abroad002-reviews_item {
  width: calc(50% - 23px);
  background-color: #fff;
  border-radius: 20px;
  padding: 70px 30px 38px;
}
@media (max-width: 767px) {
  .abroad002-reviews_item {
    width: calc(50% - 8px);
    padding: 70px 15px 40px;
  }
}
.abroad002-reviews_title {
  font-size: 24px;
  line-height: 130%;
  font-weight: 700;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .abroad002-reviews_title {
    font-size: 16px;
    margin-top: 13px;
  }
}
.abroad002-reviews_text {
  font-size: 16px;
  line-height: 150%;
  margin-top: 14px;
}
@media (max-width: 767px) {
  .abroad002-reviews_text {
    font-size: 14px;
    margin-top: 9px;
  }
}
.abroad002-reviews_img {
  max-width: 110px;
  margin: -140px auto 0;
}
@media (max-width: 767px) {
  .abroad002-reviews_img {
    max-width: 90px;
    margin: -120px auto 0;
  }
}
.abroad002-reviews_img img {
  width: 100%;
  height: auto;
}
.abroad002-reviews_small {
  font-size: 10px;
  line-height: 150%;
  color: #999999;
  display: block;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .abroad002-reviews_small {
    margin-left: 16px;
  }
}
.abroad002-support {
  padding-top: 104px;
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .abroad002-support {
    padding-top: 53px;
    padding-bottom: 46px;
  }
}
.abroad002-support .section_title {
  font-size: 40px;
  line-height: 130%;
  font-weight: 700;
  color: #E6003D;
  text-align: center;
  margin-bottom: 18px !important;
}
@media (max-width: 767px) {
  .abroad002-support .section_title {
    font-size: 24px;
    margin-bottom: 22px !important;
  }
}
.abroad002-support_read {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media (max-width: 767px) {
  .abroad002-support_read {
    font-size: 14px;
    line-height: 150%;
    margin: -7px auto 0;
    text-align: left;
  }
}
.abroad002-support_thumb {
  display: block;
  margin: 37px auto 0;
  max-width: 1000px;
}
@media (max-width: 767px) {
  .abroad002-support_thumb {
    position: relative;
    z-index: -1;
    margin: 0 -16px -33px;
  }
}
.abroad002-support_thumb img {
  width: 100%;
  height: auto;
}
.abroad002-support_read {
  font-size: 14px;
}
@media (min-width: 768px) {
  .abroad002-support_read {
    font-size: 16px;
  }
}
.abroad002-pickup {
  background-color: #E6003D;
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
  margin-top: 46px;
}
@media (max-width: 767px) {
  .abroad002-pickup {
    padding: 50px 20px 40px;
    margin-top: 12px;
  }
}
.abroad002-pickup_maintitle {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  top: -39px;
}
@media (max-width: 767px) {
  .abroad002-pickup_maintitle {
    top: -26px;
  }
}
.abroad002-pickup_maintitle h2 {
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #E6003D;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .abroad002-pickup_maintitle h2 {
    font-size: 18px;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .abroad002-pickup_maintitle svg {
    width: 260px;
    height: 57px;
  }
}
.abroad002-pickup_list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .abroad002-pickup_list {
    gap: 30px;
  }
}
.abroad002-pickup_item {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 6%;
  padding: 47px 45px 45px;
}
@media (max-width: 767px) {
  .abroad002-pickup_item {
    flex-direction: column;
    padding: 30px 20px 28px;
  }
}
.abroad002-pickup_item:nth-of-type(2) {
  padding: 40px 45px 43px;
}
@media (max-width: 767px) {
  .abroad002-pickup_item:nth-of-type(2) {
    padding: 30px 20px 30px;
  }
  .abroad002-pickup_item:nth-of-type(2) .abroad002-pickup_img {
    margin-top: 23px;
  }
  .abroad002-pickup_item:nth-of-type(2) .abroad002-pickup_text {
    margin: 13px -1px 0;
  }
}
.abroad002-pickup_item:nth-of-type(3) {
  padding: 40px 45px 43px;
}
@media (max-width: 767px) {
  .abroad002-pickup_item:nth-of-type(3) {
    padding: 31px 20px 28px;
  }
}
.abroad002-pickup_item:nth-of-type(3) .abroad002-pickup_title_lg {
  align-items: flex-start;
  margin-top: 10px;
}
.abroad002-pickup_item:nth-of-type(3) .abroad002-pickup_text {
  margin-top: 13px;
}
@media (max-width: 767px) {
  .abroad002-pickup_item:nth-of-type(3) .abroad002-pickup_text {
    margin: 13px -1px 0;
  }
}
@media (max-width: 767px) {
  .abroad002-pickup_item:nth-of-type(3) .abroad002-pickup_img {
    margin-top: 21px;
  }
}
.abroad002-pickup_img {
  width: 45%;
}
@media (max-width: 767px) {
  .abroad002-pickup_img {
    width: 100%;
    margin-top: 20px;
  }
  .abroad002-pickup_img.-img1 {
    margin: 23px auto 0;
  }
  .abroad002-pickup_img.-img1 img {
    width: 100%;
  }
}
.abroad002-pickup_img img {
  width: 100%;
  height: auto;
}
.abroad002-pickup_contents {
  width: 49%;
}
@media (max-width: 767px) {
  .abroad002-pickup_contents {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .abroad002-pickup_title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.abroad002-pickup_title_sm {
  font-size: 16px;
  color: #E6003D;
  line-height: 130%;
  position: relative;
  z-index: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .abroad002-pickup_title_sm {
    font-size: 14px;
  }
}
.abroad002-pickup_title_sm::after {
  position: absolute;
  content: "";
  background: #FCFF6D;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.abroad002-pickup_title_lg {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  line-height: 130%;
  font-weight: 700;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .abroad002-pickup_title_lg {
    margin-top: 11px;
    gap: 6px;
    justify-content: center;
  }
}
.abroad002-pickup_title_free {
  width: 55px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFEAEA;
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 1;
  color: #E6003D;
}
@media (max-width: 767px) {
  .abroad002-pickup_title_free {
    width: 50px;
    height: 26px;
    font-size: 14px;
    margin-left: -14px;
  }
}
@media (max-width: 767px) {
  .abroad002-pickup_title_nofree {
    width: calc(100% - 50px);
    letter-spacing: 0.01em;
    margin-right: -21px;
    line-height: 1.4;
  }
}
.abroad002-pickup_text {
  font-size: 16px;
  line-height: 150%;
  margin-top: 20px;
  margin-right: -1px;
}
@media (max-width: 767px) {
  .abroad002-pickup_text {
    font-size: 14px;
    line-height: 160%;
    margin-top: 14px;
  }
}
.abroad002-pickup_text span {
  color: #E6003D;
  font-weight: 700;
}
.abroad002 .sp_only {
  display: none;
}
@media (max-width: 767px) {
  .abroad002 .sp_only {
    display: block;
  }
}
.abroad002 .pc_only {
  display: block;
}
@media (max-width: 767px) {
  .abroad002 .pc_only {
    display: none;
  }
}
.abroad002 .pc_only--flex {
  display: flex;
}
@media (max-width: 767px) {
  .abroad002 .pc_only--flex {
    display: none;
  }
}
.abroad002 .hero {
  margin-bottom: -5px;
}
@media (max-width: 767px) {
  .abroad002 .hero {
    margin-bottom: -26px;
  }
}
.abroad002 .hero_read {
  padding-left: 38px;
  padding-top: 12px;
}
.abroad002 .hero_read sup {
  font-size: 20px;
}
@media (max-width: 767px) {
  .abroad002 .hero_read {
    padding-left: 27px;
    padding-top: 14px;
    padding-bottom: 4px;
  }
  .abroad002 .hero_read sup {
    font-size: 14px;
  }
}
.abroad002 .hero_read::before {
  top: 12px;
}
.abroad002 .hero_thumb {
  margin-top: 10px;
  display: block;
}
.abroad002 .hero_aside {
  margin-top: 10px;
}
.abroad002 .hero_aside_item {
  font-size: 10px;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .abroad002 .hero_aside_item {
    font-size: 10px;
    line-height: 150%;
  }
}
.abroad002 .cta_lead.abroad002-1 {
  font-size: 33px;
  margin: 0 calc(50% - 50vw) 10px;
  width: 100vw;
}
.abroad002 .cta_lead.abroad002-1 .lg {
  font-size: 45px;
}
@media (max-width: 767px) {
  .abroad002 .cta_lead.abroad002-1 {
    font-size: 20px;
    margin: 0 0 2px 0;
    width: auto;
  }
  .abroad002 .cta_lead.abroad002-1 .lg {
    font-size: 28px;
  }
}
.abroad002 .feature_teachers {
  margin-bottom: 23px;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .abroad002 .feature_teachers {
    margin-top: 22px;
    padding: 0 16px 23px;
    margin-bottom: -9px;
  }
}
@media (max-width: 767px) {
  .abroad002 .feature_solution_answer {
    font-size: 24px;
    line-height: 130%;
  }
}
.abroad002 .flow {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .abroad002 .flow {
    padding-top: 43px;
  }
  .abroad002 .flow .section_caption {
    font-size: 15px;
  }
}
.abroad002 .flow .section_header {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .abroad002 .flow .section_header {
    gap: 2px;
  }
}
.abroad002 .faq {
  padding-top: 90px;
  gap: 68px;
}
@media (max-width: 767px) {
  .abroad002 .faq {
    padding-top: 42px;
    gap: 31px;
    margin-top: -10px;
  }
  .abroad002 .faq .section_caption {
    font-size: 15px;
  }
}

.about {
  background: #f9f9f9;
  padding: 52px 16px 40px;
  margin-top: 59px;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .about {
    margin-top: 159px;
    padding: 52px 16px 80px;
  }
}
.about-main {
  padding: 52px 16px 0px;
}
@media (min-width: 960px) {
  .about-main {
    padding: 52px 16px 0px;
  }
}
.about_title {
  margin: -106px auto 0;
  display: flex;
  width: 345px;
  height: 116px;
  background: url(../images/202401/about_title_bg.png);
  background-size: contain;
  background-position: 18px;
  z-index: 1;
  position: relative;
  background-repeat: no-repeat;
}
@media (min-width: 960px) {
  .about_title {
    background-image: url(../images/202401/about_title_bg_pc.png);
    background-position: 41px;
    width: 660px;
    height: 128px;
  }
}
.about_title_thumb {
  width: 113px;
  height: auto;
  margin-top: -12px;
  margin-left: -3px;
}
@media (min-width: 960px) {
  .about_title_thumb {
    width: 139px;
    margin-left: -7px;
  }
}
.about_title_thumb img {
  width: 100%;
  height: auto;
}
.about_title_text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  margin-left: 13px;
  margin-top: 10px;
  margin-left: 24px;
  margin-top: 17px;
}
@media (min-width: 960px) {
  .about_title_text {
    font-size: 24px;
    line-height: 1.3;
  }
}
.about_title_text .red {
  color: var(--color-red);
}
.about_title_text .lg {
  font-size: 24px;
  line-height: 1.1;
}
@media (min-width: 960px) {
  .about_title_text .lg {
    font-size: 32px;
    line-height: 1.1;
  }
}
@media (min-width: 960px) {
  .about_title_text .sm {
    font-size: 20px;
    line-height: 1.1;
  }
}
.about_title2 {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  margin: 1px auto 0;
}
@media (min-width: 960px) {
  .about_title2 {
    margin: -12px auto 0;
  }
}
.about_title2_trysan {
  width: 62px;
}
@media (min-width: 960px) {
  .about_title2_trysan {
    width: 119px;
    margin-left: 10px;
  }
}
.about_title2_trysan img {
  width: 100%;
  height: auto;
}
.about_title2_text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42625;
}
@media (min-width: 960px) {
  .about_title2_text {
    font-size: 20px;
    line-height: 1.426;
    margin-top: 19px;
  }
}
.about_title2_text .line {
  position: relative;
  z-index: 1;
}
.about_title2_text .line::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background: #fcff6d;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.about_title2_text .lg {
  font-size: 22px;
  line-height: 1.4259090909;
}
@media (min-width: 960px) {
  .about_title2_text .lg {
    font-size: 30px;
    line-height: 1.426;
  }
}
.about_title2_text .red {
  color: var(--color-red);
}
.about_arrow {
  margin: 10px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 960px) {
  .about_arrow {
    margin: 17px auto 0;
  }
}
.about_lead {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 30px auto 0;
  padding: 0 20px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 960px) {
  .about_lead {
    margin: 39px auto 0;
  }
}
.about_lead::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 19.67px;
  background: #000;
  rotate: 75deg;
}
.about_lead::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 12px;
  height: 1px;
  width: 19.67px;
  background: #000;
  rotate: -75deg;
}
.about_button {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  border: 2px solid var(--color-red);
  border-radius: 55px;
  margin-top: 5px;
}
@media (min-width: 960px) {
  .about_button {
    width: 343px;
    margin: 13px auto 0;
    height: 60px;
  }
}
.about_button p {
  position: relative;
  color: var(--color-red);
  padding-right: 35px;
}
.about_button p::after {
  position: absolute;
  content: url(../images/202401/about_button.svg);
  right: 0;
  top: 62%;
  transform: translateY(-50%);
}
.about_list1 {
  background: #fff;
  border-radius: 6px;
  padding: 16px 8px 16px 12px;
  margin-top: -10px;
}
@media (min-width: 960px) {
  .about_list1 {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    border-radius: 6px;
    padding: 20px 8px 21px 12px;
  }
}
@media (min-width: 960px) {
  .about_list1 ul {
    width: 50%;
    max-width: 330px;
  }
}
.about_list1_item {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8571428571;
  padding-left: 21px;
  position: relative;
}
@media (min-width: 960px) {
  .about_list1_item {
    line-height: 2.3571428571;
    font-size: 17px;
  }
}
.about_list1_item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 9px;
  top: 11px;
}
@media (min-width: 960px) {
  .about_list1_item::before {
    left: 7px;
    top: 16px;
  }
}
.about_list1_item span {
  color: var(--color-red);
}
.about_list2 {
  background: #fff;
  border-radius: 6px;
  padding: 21px 8px 13px 12px;
  margin-top: -10px;
  border: #ffafc4 1px solid;
}
@media (min-width: 960px) {
  .about_list2 {
    max-width: 800px;
    margin: -17px auto 0;
    display: flex;
    justify-content: center;
    gap: 28px;
    border-radius: 6px;
    padding: 27px 8px 21px 12px;
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 960px) {
  .about_list2 ul {
    width: 50%;
    max-width: 330px;
  }
}
.about_list2_item {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285714286;
  padding-left: 27px;
  position: relative;
}
@media (min-width: 960px) {
  .about_list2_item {
    font-size: 17px;
    line-height: 1.3;
    padding-left: 21px;
  }
}
.about_list2_item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-red);
  left: 14px;
  top: 8px;
}
@media (min-width: 960px) {
  .about_list2_item::before {
    left: 7px;
  }
}
.about_list2_item + .about_list2_item {
  margin-top: 13px;
}
.about_list2_item span {
  color: var(--color-red);
}
.about_bg {
  background: #ffe8e8;
  margin: -26px calc(50% - 50vw);
  padding: 40px calc(50vw - 50%) 40px;
  width: 100vw;
}
@media (min-width: 960px) {
  .about_bg {
    padding: 80px calc(50vw - 50%) 80px;
  }
}
.about_sp {
  display: block;
}
@media (min-width: 960px) {
  .about_sp {
    display: none;
  }
}
.about_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .about_sp--flex {
    display: none;
  }
}
.about_sp--inline {
  display: inline-block;
}
@media (min-width: 960px) {
  .about_sp--inline {
    display: none;
  }
}
.about_pc {
  display: none;
}
@media (min-width: 960px) {
  .about_pc {
    display: block;
  }
}
.about_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .about_pc--flex {
    display: flex;
  }
}
.about_pc--inline {
  display: none;
}
@media (min-width: 960px) {
  .about_pc--inline {
    display: inline-block;
  }
}

.introduction {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.introduction_students {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 960px) {
  .introduction_students {
    gap: 40px;
    align-items: flex-end;
    flex-direction: row;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 959px) {
  .introduction_students {
    max-width: 500px;
    margin: 24px auto 0;
  }
}
.introduction_student {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
@media (min-width: 960px) {
  .introduction_student {
    flex-direction: column-reverse;
    gap: 24px;
    min-width: 200px;
  }
}
.introduction_student_comment {
  position: relative;
  padding: 12px;
  width: 100%;
  border-radius: 16px;
  background-color: var(--color-inverse);
  font-size: 1.4rem;
  font-weight: bolder;
  text-align: center;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.05));
}
@media (min-width: 960px) {
  .introduction_student_comment {
    padding: 16px;
    font-size: 1.6rem;
  }
}
.introduction_student_comment::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  transform: translate(-100%, 50%);
  border-top: 8px solid transparent;
  border-right: 8px solid var(--color-inverse);
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
}
@media (min-width: 960px) {
  .introduction_student_comment::after {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    border-top: 16px solid var(--color-inverse);
    border-bottom: 16px solid transparent;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
  }
}
.introduction_student_image {
  color: var(--color-shogaku);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 100%;
     object-position: 0 100%;
  line-height: 1;
  width: 64px;
  height: 64px;
}
@media (min-width: 960px) {
  .introduction_student_image {
    width: 120px;
    height: 120px;
  }
}
.introduction_solution {
  margin-top: 24px;
  margin-bottom: 24px;
  line-height: 0;
  text-align: center;
}
@media (min-width: 960px) {
  .introduction_solution {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .introduction_solution_image > * {
    width: 60%;
    max-width: 450px;
  }
}
@media (min-width: 960px) {
  .introduction_solution_image > * {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 959px) {
  .introduction_solution_image > * {
    width: 60%;
    max-width: 450px;
  }
}
@media (max-width: 767px) {
  .introduction_solution_image > * {
    width: 80%;
  }
}

.shogaku .introduction_appeal {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: rgba(var(--color-shogaku-rgb), 0.1);
}
@media (min-width: 960px) {
  .shogaku .introduction_appeal {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.shogaku .introduction_appeal_title {
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 960px) {
  .shogaku .introduction_appeal_title {
    font-size: 3.2rem;
  }
}
.shogaku .introduction_appeal strong {
  font-size: 2.4rem;
  color: var(--color-shogaku);
}
@media (min-width: 960px) {
  .shogaku .introduction_appeal strong {
    font-size: 5.2rem;
  }
}

.chugaku .introduction_appeal {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: rgba(var(--color-chugaku-rgb), 0.1);
}
@media (min-width: 960px) {
  .chugaku .introduction_appeal {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.chugaku .introduction_appeal_title {
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 960px) {
  .chugaku .introduction_appeal_title {
    font-size: 3.2rem;
  }
}
.chugaku .introduction_appeal strong {
  font-size: 2.4rem;
  color: var(--color-chugaku);
}
@media (min-width: 960px) {
  .chugaku .introduction_appeal strong {
    font-size: 5.2rem;
  }
}

.koukou .introduction_appeal {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: rgba(var(--color-koukou-rgb), 0.1);
}
@media (min-width: 960px) {
  .koukou .introduction_appeal {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.koukou .introduction_appeal_title {
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 960px) {
  .koukou .introduction_appeal_title {
    font-size: 3.2rem;
  }
}
.koukou .introduction_appeal strong {
  font-size: 2.4rem;
  color: var(--color-koukou);
}
@media (min-width: 960px) {
  .koukou .introduction_appeal strong {
    font-size: 5.2rem;
  }
}

@media (min-width: 960px) {
  .feature {
    padding-left: calc(50% - var(--width-desktopHD) / 2);
    padding-right: calc(50% - var(--width-desktopHD) / 2);
  }
}
.feature_header_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-size: 2.8rem;
}
@media (min-width: 960px) {
  .feature_header_title {
    flex-direction: row;
    gap: 24px;
    font-size: 3.2rem;
  }
}
.feature_header_title_image {
  height: 72px;
}
@media (min-width: 960px) {
  .feature_header_title_image {
    width: 220px;
    height: 96px;
  }
}
.feature .section_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  gap: 16px 0;
}
@media (min-width: 960px) {
  .feature .section_title {
    flex-wrap: nowrap;
    gap: 0;
    font-size: 3.2rem;
    line-height: 1;
  }
}
.feature .section_title strong {
  display: inline-flex;
  align-items: baseline;
  padding: 8px 16px;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-size: 2.8rem;
  line-height: 1;
}
@media (min-width: 960px) {
  .feature .section_title strong {
    padding: 12px 16px;
  }
}
.feature .section_title strong:nth-of-type(1) {
  margin-left: 16px;
  color: var(--color-inverse);
  background-color: var(--color-primary);
}
.feature .section_title strong:nth-of-type(2) {
  color: var(--color-primary);
}
.feature .section_title .number {
  font-size: 4.8rem;
  font-style: italic;
}
@media (min-width: 960px) {
  .feature .section_title .number {
    font-size: 5.6rem;
  }
}
.feature .section_title_2 {
  color: var(--color-red);
  line-height: 1.4;
  font-weight: 900;
  font-size: 14px;
  display: block;
  margin-bottom: 0px;
  text-align: center;
}
@media (min-width: 768px) {
  .feature .section_title_2 {
    font-size: 32px;
  }
}
.feature .section_title_2_b {
  color: var(--color-secondary) !important;
}
@media (min-width: 960px) {
  .feature .section_title_2_b strong {
    top: -5px;
  }
}
.feature .section_title_3 {
  display: none;
}
@media (min-width: 960px) {
  .feature .section_title_3 {
    display: block;
  }
}
.feature .section_title_2 .border {
  border-top: 1px solid var(--color-red);
  border-bottom: 1px solid var(--color-red);
  padding: 4px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media (min-width: 768px) {
  .feature .section_title_2 .border {
    border-top: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    font-size: 32px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.feature .section_title_2 strong {
  border: none;
  font-size: 28px;
  width: 100%;
  display: block;
  margin-top: -15px;
}
.feature .section_title_2 strong:nth-of-type(1) {
  margin-left: 0px;
  color: var(--color-red);
  background-color: initial;
}
@media (min-width: 768px) {
  .feature .section_title_2 strong {
    font-size: 58px;
    margin-top: -33px;
  }
}
.feature .section_title_2_b .border {
  border-top: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  padding: 4px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  display: inline-block;
}
@media (min-width: 960px) {
  .feature .section_title_2_b .border {
    border-top: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    font-size: 32px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 959px) {
  .futoukou .feature .section_title_2_b .border {
    border-bottom: 0;
  }
}
.feature .section_title_2_b strong {
  border: none;
  font-size: 28px;
  width: 100%;
  display: block;
  margin-top: -35px;
  text-align: center;
}
.feature .section_title_2_b strong:nth-of-type(1) {
  margin-left: 0px;
  color: var(--color-secondary);
  background-color: initial;
}
@media (min-width: 960px) {
  .feature .section_title_2_b strong {
    font-size: 64px;
    margin-top: -30px;
    position: relative;
    top: -15px;
    text-align: center;
  }
}
.feature .section_title_2 .number {
  font-style: normal;
  font-size: 40px;
}
@media (min-width: 768px) {
  .feature .section_title_2 .number {
    font-size: 90px;
  }
}
.feature .section_title_2_b .number {
  font-style: normal;
  font-size: 40px;
}
@media (min-width: 960px) {
  .feature .section_title_2_b .number {
    font-size: 90px;
  }
}
.feature .section_title_2 .number2 {
  display: none;
}
@media (min-width: 960px) {
  .feature .section_title_2 .number2 {
    font-size: 70px;
    display: inline-block;
    position: relative;
    top: 14px;
    left: 10px;
  }
}
@media (max-width: 959px) {
  .feature_index {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: 10px;
  }
}
.feature_index sup {
  font-size: 1.4rem;
}
.feature_index_small {
  display: block;
  margin-top: 8px;
  margin-left: 16px;
  margin-right: 16px;
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-darkgray);
}
@media (min-width: 960px) {
  .feature_index_small {
    margin-top: 24px;
    font-size: 1.2rem;
  }
}
.feature_index_list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 959px) {
  .feature_index_list {
    display: none;
  }
}
.feature_index_list_item {
  list-style: none;
}
.feature_index_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: bolder;
  text-align: center;
}
.feature_index_link:hover {
  color: var(--color-inverse) !important;
  background-color: var(--color-primary);
}
.feature_index_number {
  font-size: 4rem;
  font-weight: bolder;
  font-style: italic;
  line-height: 1;
}
.feature_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .feature_list {
    gap: 100px;
  }
}
@media (min-width: 960px) {
  .feature_list {
    gap: 160px;
    margin-top: 80px;
  }
}
.feature_list_2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .feature_list_2 {
    gap: 110px;
    margin-top: 35px;
  }
}
.feature_list_item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 767px) {
  .feature_list_item:not(:first-of-type) {
    border-top: 1px solid var(--color-border);
  }
}
@media (min-width: 768px) {
  .feature_list_item {
    gap: 40px;
    margin-top: calc(var(--height-header-pc) * -1);
    padding-top: var(--height-header-pc);
    padding-left: unset;
    padding-right: unset;
  }
}
@media (min-width: 960px) {
  .feature_list_item {
    gap: 80px;
  }
}
.feature_list_item_2 {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.feature_list_item_2:not(:first-of-type) {
  border-top: 2px solid var(--color-red);
}
.feature_list_item_2:first-of-type {
  border-top: 0;
}
.feature_list_item_2:nth-of-type(2) {
  padding-bottom: 50px;
}
.feature_list_item_2:last-of-type() {
  padding-bottom: 46px;
}
@media (min-width: 768px) {
  .feature_list_item_2 {
    gap: 0;
    margin: 0 auto;
    width: auto;
    border-bottom: none;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .feature_list_item_2:not(:first-of-type) {
    border-top: none;
  }
  .feature_list_item_2:first-of-type {
    border-top: none;
  }
  .feature_list_item_2:nth-of-type(2) {
    padding-bottom: 0px;
  }
  .feature_list_item_2:nth-last-of-type() {
    padding-bottom: 6px;
  }
}
.feature_list_item_2_b {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.feature_list_item_2_b:not(:first-of-type) {
  border-top: 2px solid var(--color-secondary);
}
.feature_list_item_2_b:first-of-type {
  border-top: 2px solid var(--color-secondary);
}
.feature_list_item_2_b:nth-of-type(2) {
  padding-bottom: 0;
}
.feature_list_item_2_b:last-of-type() {
  padding-bottom: 46px;
}
@media (min-width: 768px) {
  .feature_list_item_2_b {
    gap: 0;
    margin: 0 auto;
    width: auto;
    border-bottom: none;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .feature_list_item_2_b:not(:first-of-type) {
    border-top: none;
  }
  .feature_list_item_2_b:first-of-type {
    border-top: none;
  }
  .feature_list_item_2_b:nth-of-type(2) {
    padding-bottom: 0px;
  }
  .feature_list_item_2_b:nth-last-of-type() {
    padding-bottom: 6px;
  }
}
.feature_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .feature_header {
    flex-direction: row;
    gap: 80px;
  }
}
.feature_header_2 {
  display: flex;
  flex-direction: column-reverse;
  gap: 42px;
  width: 100%;
  align-items: center;
}
@media (min-width: 768px) {
  .feature_header_2 {
    flex-direction: row;
    gap: 48px;
  }
}
.feature_header_3 {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  width: 100%;
  align-items: center;
}
@media (min-width: 768px) {
  .feature_header_3 {
    flex-direction: row;
    gap: 48px;
  }
}
@media (min-width: 768px) {
  .feature_header > div:first-of-type {
    width: 300px;
  }
}
@media (min-width: 960px) {
  .feature_header > div:first-of-type {
    width: 600px;
  }
}
@media (min-width: 960px) {
  .feature_list_item:nth-of-type(even) .feature_header {
    flex-direction: row-reverse;
  }
}
@media (min-width: 960px) {
  .feature_list_item:nth-of-type(even) .feature_header_2 {
    flex-direction: row;
  }
}
.feature_image {
  flex: 0 0 200px;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}
.feature_image img {
  border-radius: 16px;
}
@media (min-width: 768px) {
  .feature_image {
    flex: 1 1 40%;
    height: unset;
  }
}
.feature_image > * {
  width: 100%;
}
.feature_image_2 {
  flex: 0 0 auto;
  background-color: initial;
}
@media (min-width: 768px) {
  .feature_image_2 {
    flex: 1 1 57%;
    height: unset;
  }
}
.feature_texts {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .feature_texts {
    flex-wrap: nowrap;
    flex: 1 1 60%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 960px) {
  .feature_texts {
    padding-top: 80px;
  }
}
.feature_texts_2 {
  position: relative;
  padding-left: 60px;
  flex: 1;
  width: 100%;
  background-image: url(../images/feature_point-1.svg);
  background-repeat: no-repeat;
  background-position: left -5px top;
  background-size: 83px auto;
}
@media (min-width: 768px) {
  .feature_texts_2 {
    position: relative;
    background-image: none;
    padding-left: 0px;
  }
  .feature_texts_2::after {
    position: absolute;
    content: url(../images/feature_point-1.svg);
    top: -40px;
    right: 0;
    z-index: -1;
  }
}
@media (min-width: 960px) {
  .feature_texts_2::after {
    top: -80px;
  }
}
.feature_texts_2:nth-of-type(3)::after {
  content: url(../images/feature_point-3.svg);
}
@media (min-width: 768px) {
  .feature_texts_2 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.feature_texts_3 {
  background-image: url(../images/feature_point-2.svg);
}
@media (min-width: 768px) {
  .feature_texts_3 {
    background-image: none;
  }
  .feature_texts_3::after {
    position: absolute;
    content: url(../images/feature_point-2.svg);
  }
}
.feature_texts_4 {
  background-image: url(../images/feature_point-3.svg);
}
@media (min-width: 768px) {
  .feature_texts_4 {
    background-image: none;
  }
  .feature_texts_4::after {
    position: absolute;
    content: url(../images/feature_point-3.svg);
  }
}
.feature_texts_1b {
  background-image: url(../images/feature_point-1b.svg);
}
@media (min-width: 768px) {
  .feature_texts_1b {
    background-image: none;
  }
  .feature_texts_1b::after {
    position: absolute;
    content: url(../images/feature_point-1b.svg);
  }
}
.feature_texts_2b {
  background-image: url(../images/feature_point-2b.svg);
}
@media (min-width: 768px) {
  .feature_texts_2b {
    background-image: none;
  }
  .feature_texts_2b::after {
    position: absolute;
    content: url(../images/feature_point-2b.svg);
  }
}
.feature_texts_3b {
  background-image: url(../images/feature_point-3b.svg);
}
@media (min-width: 768px) {
  .feature_texts_3b {
    background-image: none;
  }
  .feature_texts_3b::after {
    position: absolute;
    content: url(../images/feature_point-3b.svg);
  }
}
.feature_number {
  font-size: 6.4rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  color: var(--color-primary);
}
@media (min-width: 960px) {
  .feature_number {
    font-size: 8rem;
  }
}
.feature_title {
  font-size: 2.2rem;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .feature_title {
    font-size: 4.4rem;
  }
}
.feature_title > strong {
  color: var(--color-primary);
}
.feature_title_2 {
  padding-left: 28px;
  font-size: 20px;
  line-height: 1.6;
  width: 100%;
}
@media (min-width: 768px) {
  .feature_title_2 {
    padding-left: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .feature_title_2 {
    padding-left: 0;
    font-size: 44px;
  }
}
.feature_title_3 {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-secondary);
}
@media (min-width: 960px) {
  .feature_title_3 {
    font-weight: 700;
    font-size: 41px;
    line-height: 1.5;
  }
}
.feature_title_4 {
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .feature_title_4 {
    padding-left: 0;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.5;
    text-align: left;
  }
  .feature_title_4 sup {
    font-size: 20px;
  }
}
.feature_description {
  display: block;
  display: block;
}
.futoukou .feature_description, .abroad .feature_description {
  display: none;
}
@media (min-width: 768px) {
  .futoukou .feature_description, .abroad .feature_description {
    display: block;
  }
}
.feature_description_2 {
  display: block;
  margin-top: 16px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .feature_description_2 {
    display: none;
    font-size: 16px;
  }
}
.feature_solution {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .feature_solution {
    flex-direction: row;
    gap: 40px;
  }
}
.feature_solution_image {
  height: 120px;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .feature_solution_image {
    height: 180px;
  }
}
.feature_solution_texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .feature_solution_texts {
    justify-content: center;
    align-items: flex-start;
  }
}
.feature_solution_texts_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .feature_solution_texts_2 {
    justify-content: center;
    align-items: flex-start;
    margin-top: 72px;
    margin-bottom: 22px;
  }
}
.feature_solution_question {
  position: relative;
  padding-left: 24px;
  color: var(--color-darkgray);
  font-size: 1.4rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .feature_solution_question {
    font-size: 1.8rem;
  }
}
.feature_solution_question::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: var(--color-darkgray);
}
.feature_solution_answer {
  font-size: 2rem;
  font-weight: bolder;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 960px) {
  .feature_solution_answer {
    font-size: 3.2rem;
    text-align: left;
  }
}
.feature_solution_answer > strong {
  color: var(--color-primary);
}
.feature_solution_answer_2 {
  font-size: 1.6rem;
  font-weight: bolder;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .feature_solution_answer_2 {
    font-size: 2rem;
  }
}
@media (min-width: 960px) {
  .feature_solution_answer_2 {
    font-size: 3.2rem;
    text-align: left;
  }
}
.feature_solution_answer_2 > strong {
  color: var(--color-secondary);
}
.feature_teachers {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-bottom: 24px;
  overflow-x: auto;
}
@media (min-width: 960px) {
  .feature_teachers {
    padding-left: min(16px, 8%);
    padding-right: min(16px, 8%);
    padding-bottom: unset;
    overflow-x: unset;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  .feature_teachers {
    padding-left: calc(50% - var(--width-content) / 2);
    padding-right: calc(50% - var(--width-content) / 2);
  }
}
.feature_teachers_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .feature_teachers_item {
    width: calc((100% - 48px) / 4);
  }
}
.feature_teachers_image {
  width: auto;
  height: 160px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (min-width: 960px) {
  .feature_teachers_image {
    width: auto;
    height: 200px;
  }
}
.feature_teachers_name {
  font-weight: bolder;
  text-align: center;
  line-height: 1;
}
.feature_teachers_education {
  color: var(--color-darkgray);
  font-size: 1.2rem;
  font-weight: bolder;
  text-align: center;
  line-height: 1;
}
.feature_teachers_description {
  font-size: 1.2rem;
}
.feature_planner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
@media (min-width: 960px) {
  .feature_planner {
    max-width: var(--width-content);
    margin-left: auto;
    margin-right: auto;
  }
}
.feature_planner_2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-direction: column;
}
@media (min-width: 768px) {
  .feature_planner_2 {
    max-width: var(--width-content);
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
  }
}
.feature_planner_arrow {
  width: 8%;
  height: 8%;
  color: var(--color-darkgray);
}
.feature_planner_arrow_2 {
  width: 8%;
  height: 8%;
  display: none;
}
@media (min-width: 960px) {
  .feature_planner_arrow_2 {
    display: block;
  }
}
.feature_planner_arrow_3 {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .feature_planner_arrow_3 {
    width: 60px;
    height: 65px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .feature_planner_arrow_3 img {
    width: 60px;
    height: auto;
  }
}
.feature_planner_other, .feature_planner_try {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 46%;
}
.feature_planner_other_comment, .feature_planner_try_comment {
  position: relative;
  padding: 12px 8px;
  border-radius: 100px;
  background-color: var(--color-bg);
  text-align: center;
  font-size: 1.1rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .feature_planner_other_comment, .feature_planner_try_comment {
    margin-top: 24px;
    padding: 16px 24px;
    font-size: 1.6rem;
  }
}
.feature_planner_other_comment::after, .feature_planner_try_comment::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  border-top: 8px solid var(--color-bg);
  border-bottom: 8px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translate(-50%, 100%);
}
.feature_planner_other_comment2, .feature_planner_try_comment2 {
  position: relative;
  padding: 12px 8px;
  border-radius: 100px;
  background-color: var(--color-bg);
  text-align: center;
  font-size: 1.1rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .feature_planner_other_comment2, .feature_planner_try_comment2 {
    margin-top: 0px;
    padding: 16px 24px;
    font-size: 1.6rem;
  }
}
.feature_planner_other_comment2::after, .feature_planner_try_comment2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  border-top: 8px solid var(--color-bg);
  border-bottom: 8px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translate(-50%, 100%);
}
.feature_planner_other_2, .feature_planner_try_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--color-bg);
  border-radius: 16px;
  padding: 16px 15px 24px;
}
@media (min-width: 768px) {
  .feature_planner_other_2, .feature_planner_try_2 {
    background: none;
  }
}
.feature_planner_other_2_comment, .feature_planner_try_2_comment {
  position: relative;
  padding: 12px 8px;
  border-radius: 100px;
  background-color: var(--color-bg);
  text-align: center;
  font-size: 1.1rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .feature_planner_other_2_comment, .feature_planner_try_2_comment {
    margin-top: 24px;
    padding: 16px 24px;
    font-size: 1.6rem;
  }
}
.feature_planner_other_2_comment::after, .feature_planner_try_2_comment::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  border-top: 8px solid var(--color-bg);
  border-bottom: 8px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translate(-50%, 100%);
}
.feature_planner_other_2_comment2, .feature_planner_try_2_comment2 {
  position: relative;
  padding: 12px 8px;
  border-radius: 100px;
  background-color: var(--color-bg);
  text-align: center;
  font-size: 1.1rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .feature_planner_other_2_comment2, .feature_planner_try_2_comment2 {
    margin-top: 0px;
    padding: 16px 24px;
    font-size: 1.6rem;
  }
}
.feature_planner_other_2_comment2::after, .feature_planner_try_2_comment2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  border-top: 8px solid var(--color-bg);
  border-bottom: 8px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translate(-50%, 100%);
}
.feature_planner_try_comment {
  color: var(--color-inverse);
  background-color: var(--color-primary);
}
.feature_planner_try_comment::after {
  border-top-color: var(--color-primary);
}
.feature_planner_try_comment3 {
  color: var(--color-inverse);
  background-color: var(--color-secondary);
}
.feature_planner_try_comment3::after {
  border-top-color: var(--color-secondary);
}
.feature_planner_caption {
  font-size: 1.4rem;
  font-weight: bolder;
  text-align: center;
}
@media (min-width: 960px) {
  .feature_planner_caption {
    font-size: 20px;
  }
}
.feature_planner_caption2 {
  font-size: 16px;
  font-weight: bolder;
  text-align: center;
  display: none;
}
@media (min-width: 960px) {
  .feature_planner_caption2 {
    font-size: 2.2rem;
    display: block;
  }
}
.feature_planner_caption3 {
  font-size: 16px;
  font-weight: bolder;
  text-align: center;
  display: block;
}
@media (min-width: 960px) {
  .feature_planner_caption3 {
    font-size: 2.2rem;
    display: none;
  }
}
.feature_planner_try .feature_planner_caption {
  color: var(--color-primary);
}
.feature_planner_description {
  display: none;
}
@media (min-width: 768px) {
  .feature_planner_description {
    display: block;
    font-size: 1.4rem;
  }
}
.feature_planner_description_2 {
  font-size: 12px;
}
@media (min-width: 960px) {
  .feature_planner_description_2 {
    font-size: 16px;
  }
}
.feature_planner_image {
  max-width: 100%;
  height: 80%;
  min-height: 120px;
  color: var(--color-primary);
}
@media (min-width: 960px) {
  .feature_planner_image {
    width: 240px;
    height: 240px;
  }
}
.feature_dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 960px) {
  .feature_dialog {
    gap: 24px;
  }
}
.feature_dialog_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 960px) {
  .feature_dialog_2 {
    gap: 24px;
  }
}
.feature_dialog_description {
  font-size: 12px;
}
.feature_dialog_description span {
  background: linear-gradient(transparent 60%, #FFF844 60%);
  font-weight: bolder;
}
@media (min-width: 960px) {
  .feature_dialog_description {
    text-align: center;
    font-size: 16px;
  }
}
.feature_dialog_aside {
  width: 100%;
  font-size: 1.2rem;
  color: var(--color-darkgray);
  text-align: right;
}
.feature_dialog_comparison {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 960px) {
  .feature_dialog_comparison {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 959px) {
  .feature_dialog_comparison {
    gap: 52px;
  }
}
.feature_dialog_comparison_title_2 {
  text-align: center;
}
@media (min-width: 960px) {
  .feature_dialog_comparison_title_2 {
    font-size: 24px;
  }
}
.feature_dialog_comparison_title_3 {
  text-align: center;
  display: none;
  color: var(--color-red);
}
@media (min-width: 960px) {
  .feature_dialog_comparison_title_3 {
    font-size: 24px;
    display: block;
  }
}
.feature_dialog_comparison_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 960px) {
  .feature_dialog_comparison_column {
    width: 46%;
  }
}
.feature_dialog_comparison_column_2 {
  display: none;
}
@media (min-width: 960px) {
  .feature_dialog_comparison_column_2 {
    display: block;
  }
}
.feature_dialog_comparison_description_2 {
  display: none;
}
@media (min-width: 960px) {
  .feature_dialog_comparison_description_2 {
    display: block;
  }
}
.feature_dialog_comparison_title {
  font-size: 1.8rem;
  font-weight: bolder;
  text-align: center;
}
@media (min-width: 960px) {
  .feature_dialog_comparison_title {
    font-size: 2rem;
  }
}
.feature_dialog_comparison_try .feature_dialog_comparison_title {
  color: var(--color-primary);
}
.feature_dialog_comparison_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  align-items: center;
}
@media (min-width: 960px) {
  .feature_dialog_comparison_2 {
    flex-direction: row;
    justify-content: space-between;
    align-items: ce;
    gap: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.feature_dialog_comparison_2_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.feature_dialog_comparison_2_title {
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .feature_dialog_comparison_2_title {
    font-size: 2.4rem;
  }
}
.feature_dialog_image {
  width: 200px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}
.feature_dialog_image img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .feature_dialog_image {
    width: 80%;
    height: auto;
    margin-top: 16px;
  }
}
.feature_dialog_image_2 {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .feature_dialog_image_2 {
    width: 80%;
    height: auto;
    margin-top: 16px;
  }
}
.feature_comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .feature_comparison {
    gap: 24px;
  }
}
.feature_comparison_title {
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 960px) {
  .feature_comparison_title {
    font-size: 3.2rem;
  }
}
.feature_comparison_title > strong {
  color: var(--color-primary);
}
.feature_comparison_subtitle {
  text-align: center;
  font-weight: bolder;
  font-size: 1.4rem;
  color: var(--color-darkgray);
}
@media (min-width: 960px) {
  .feature_comparison_subtitle {
    font-size: 2rem;
  }
}
.feature_comparison_table {
  display: grid;
  grid-template-columns: 2fr 3fr repeat(3, 1fr);
  border-radius: 8px;
  background-color: var(--color-bg);
  font-size: 1.2rem;
  line-height: 1.2;
  overflow: hidden;
}
@media (min-width: 960px) {
  .feature_comparison_table {
    grid-template-columns: repeat(2, 2fr) repeat(3, 1fr);
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.feature_comparison_image {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}
@media (min-width: 960px) {
  .feature_comparison_image {
    width: 32px;
    height: 32px;
  }
}
.feature_comparison_image.circle, .feature_comparison_image.cross, .feature_comparison_image.triangle {
  width: 24px;
  height: 24px;
}
@media (min-width: 960px) {
  .feature_comparison_image.circle, .feature_comparison_image.cross, .feature_comparison_image.triangle {
    width: 32px;
    height: 32px;
  }
}
.feature_comparison_image.cross {
  color: var(--color-darkgray);
}
.feature_comparison_image.triangle {
  color: var(--color-blue);
}
.feature_comparison_th {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.2em;
}
.feature_comparison_th.try {
  background-color: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .feature_comparison_th.try {
    font-size: 2.4rem;
  }
}
.feature_comparison_td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 960px) {
  .feature_comparison_td {
    font-size: 1.8rem;
  }
}
.feature_comparison_td.service, .feature_comparison_td.try {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  font-weight: bolder;
  text-align: center;
}
@media (min-width: 960px) {
  .feature_comparison_td.service, .feature_comparison_td.try {
    gap: 16px;
    padding: 32px 32px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }
}
.feature_comparison_td.try {
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.2);
  background-color: rgba(var(--color-primary-rgb), 0.1);
}
.feature_comparison_td.try strong {
  color: var(--color-primary);
}
.feature_live {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-left: min(16px, 8%);
  padding-right: min(16px, 8%);
}
@media (min-width: 960px) {
  .feature_live {
    padding-left: calc(50% - var(--width-content) / 2);
    padding-right: calc(50% - var(--width-content) / 2);
  }
}
@media (min-width: 960px) {
  .feature_live {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}
.feature_live_logo {
  flex: 0 0 90%;
  width: 90%;
  max-width: 240px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 960px) {
  .feature_live_logo {
    flex: 0 0 50%;
    width: 50%;
  }
}
.feature_live_list {
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: bolder;
}
.feature_live_list_item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 960px) {
  .feature_live_list_item {
    font-size: 1.8rem;
  }
}
.feature_live_icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}
.feature_live_description {
  flex: 1 1 100%;
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .feature_live_description {
    font-size: 1.6rem;
  }
}
.feature_seikakushindan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-left: min(16px, 8%);
  padding-right: min(16px, 8%);
}
@media (min-width: 960px) {
  .feature_seikakushindan {
    padding-left: calc(50% - var(--width-content) / 2);
    padding-right: calc(50% - var(--width-content) / 2);
  }
}
@media (min-width: 960px) {
  .feature_seikakushindan {
    gap: 40px;
    align-items: center;
  }
}
.feature_seikakushindan_title {
  flex: 1 1 100%;
  font-size: 1.8rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .feature_seikakushindan_title {
    font-size: 2.8rem;
    text-align: center;
  }
}
.feature_seikakushindan_title > strong {
  color: var(--color-shogaku);
}
.feature_seikakushindan_image {
  width: 50%;
}
@media (min-width: 960px) {
  .feature_seikakushindan_image {
    flex: 0 0 40%;
    width: 40%;
  }
}
@media (min-width: 960px) {
  .feature_seikakushindan_description {
    flex: 0 0 calc(60% - 40px);
  }
}
.feature_chugakujuken {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-left: min(16px, 8%);
  padding-right: min(16px, 8%);
}
@media (min-width: 960px) {
  .feature_chugakujuken {
    padding-left: calc(50% - var(--width-content) / 2);
    padding-right: calc(50% - var(--width-content) / 2);
  }
}
@media (min-width: 960px) {
  .feature_chugakujuken {
    gap: 40px;
    align-items: center;
  }
}
.feature_chugakujuken_title {
  flex: 1 1 100%;
  font-size: 1.8rem;
  font-weight: bolder;
  text-align: center;
}
@media (min-width: 960px) {
  .feature_chugakujuken_title {
    font-size: 2.8rem;
    text-align: center;
  }
}
.feature_chugakujuken_title > strong {
  color: var(--color-shogaku);
}
.feature_chugakujuken_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  border: 1px solid #FF9DB0;
  border-radius: 8px;
  padding: 16px;
}
@media (min-width: 960px) {
  .feature_chugakujuken_inner {
    gap: 16px;
    padding: 40px;
  }
}
.feature_chugakujuken_caption {
  font-size: 2rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .feature_chugakujuken_caption {
    font-size: 2.8rem;
  }
}
.feature_chugakujuken_caption::before, .feature_chugakujuken_caption::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
}
.feature_chugakujuken_caption::before {
  background: url("/assets/images/sakura.png") no-repeat 0 50%;
  background-size: contain;
}
.feature_chugakujuken_caption::after {
  background: url("/assets/images/sakura.png") no-repeat 100% 50%;
  background-size: contain;
}
.feature_chugakujuken_main {
  font-size: 1.8rem;
}
.feature_chugakujuken_aside {
  align-self: flex-end;
  color: var(--color-darkgray);
  font-size: 1.2rem;
}
.feature_ai {
  padding-left: min(16px, 8%);
  padding-right: min(16px, 8%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 960px) {
  .feature_ai {
    padding-left: calc(50% - var(--width-content) / 2);
    padding-right: calc(50% - var(--width-content) / 2);
  }
}
@media (min-width: 960px) {
  .feature_ai {
    flex-direction: row;
    gap: 40px;
  }
}
.feature_ai_image {
  width: 60%;
  max-width: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.feature_ai_description {
  font-size: 1.4rem;
}
.feature_seminor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 16px;
  border-radius: 16px;
  background-color: var(--color-bg);
}
@media (min-width: 960px) {
  .feature_seminor {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 40px;
    width: var(--width-content);
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
  }
}
.feature_seminor_title {
  text-align: center;
  font-size: 2rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .feature_seminor_title {
    flex: 1 1 100%;
    font-size: 3.2rem;
  }
}
.feature_seminor_title > strong {
  color: var(--color-primary);
}
.feature_seminor_image {
  width: 80%;
  background-color: #f0f0f0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 960px) {
  .feature_seminor_image {
    width: 40%;
    min-height: 160px;
    flex: 0 0 40%;
  }
}
.feature_seminor_texts {
  flex: 1 0 calc(60% - 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature_seminor_example {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature_seminor_example_title {
  font-size: 1.6rem;
  font-weight: bolder;
}
.feature_seminor_example_item {
  display: list-item;
  margin-left: 1.2em;
  font-weight: bolder;
  list-style: disc;
}
.feature.section.-eiken {
  padding-top: 40px;
  padding-bottom: 0px;
}
@media (min-width: 960px) {
  .feature.section.-eiken {
    padding-top: 120px;
    padding-bottom: 20px;
  }
  .feature.section.-eiken + .cta_wrap_new {
    margin: 0px auto 60px;
  }
}
@media (min-width: 960px) {
  .feature_eiken {
    margin-top: 72px;
  }
}
.feature_eiken_title {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  color: #E6013E;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .feature_eiken_title {
    font-size: 28px;
  }
}
.feature_eiken_title::before, .feature_eiken_title::after {
  width: 74.8px;
  height: 2px;
  background-color: #E6013E;
  content: "";
}
@media (min-width: 960px) {
  .feature_eiken_title::before, .feature_eiken_title::after {
    width: 100px;
  }
}
.feature_eiken_title::before {
  margin-right: 8.5px;
}
.feature_eiken_title::after {
  margin-left: 8.5px;
}
.feature_eiken_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8.5px 11.9px;
  margin-top: 8.5px;
  margin-bottom: -50px;
}
@media (min-width: 960px) {
  .feature_eiken_list {
    margin-bottom: unset;
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.feature_eiken_item {
  width: calc(50% - 5.95px);
  background-color: #F1F1F1;
  padding: 11.9px;
}
@media (min-width: 960px) {
  .feature_eiken_item {
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .feature_eiken_item > div {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.feature_eiken_item h5 {
  color: #E6013E;
  font-size: 13.6px;
  line-height: 1.875;
  position: relative;
}
@media (min-width: 960px) {
  .feature_eiken_item h5 {
    font-size: 20px;
  }
}
.feature_eiken_item h5::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.feature_eiken_item:nth-of-type(1) h5 {
  padding-left: 34px;
}
@media (min-width: 960px) {
  .feature_eiken_item:nth-of-type(1) h5 {
    padding-left: 44px;
  }
}
.feature_eiken_item:nth-of-type(1) h5::after {
  background-image: url(../images/eiken/eiken_check1.svg);
  width: 27.2px;
  height: 18.7px;
}
@media (min-width: 960px) {
  .feature_eiken_item:nth-of-type(1) h5::after {
    width: 32px;
    height: 24px;
  }
}
.feature_eiken_item:nth-of-type(2) h5 {
  padding-left: 37.4px;
}
@media (min-width: 960px) {
  .feature_eiken_item:nth-of-type(2) h5 {
    padding-left: 47px;
  }
}
.feature_eiken_item:nth-of-type(2) h5::after {
  background-image: url(../images/eiken/eiken_check2.svg);
  width: 28.9px;
  height: 28.9px;
}
@media (min-width: 960px) {
  .feature_eiken_item:nth-of-type(2) h5::after {
    width: 35px;
    height: 36px;
  }
}
.feature_eiken_item:nth-of-type(3) h5 {
  padding-left: 30px;
}
@media (min-width: 960px) {
  .feature_eiken_item:nth-of-type(3) h5 {
    padding-left: 32px;
  }
}
.feature_eiken_item:nth-of-type(3) h5::after {
  background-image: url(../images/eiken/eiken_check3.svg);
  width: 20.4px;
  height: 27.2px;
}
@media (min-width: 960px) {
  .feature_eiken_item:nth-of-type(3) h5::after {
    width: 32px;
    height: 26px;
  }
}
.feature_eiken_item:nth-of-type(4) h5 {
  padding-left: 36px;
}
@media (min-width: 960px) {
  .feature_eiken_item:nth-of-type(4) h5 {
    padding-left: 44px;
  }
}
.feature_eiken_item:nth-of-type(4) h5::after {
  background-image: url(../images/eiken/eiken_check4.svg);
  width: 25.5px;
  height: 18.7px;
}
@media (min-width: 960px) {
  .feature_eiken_item:nth-of-type(4) h5::after {
    width: 32px;
    height: 26px;
  }
}
.feature_eiken_check {
  font-size: 10.2px;
  line-height: 1.3333333333;
  font-weight: 700;
  margin-top: 10.2px;
}
@media (min-width: 960px) {
  .feature_eiken_check {
    font-size: 16px;
  }
}
.feature_eiken_check li {
  position: relative;
  padding-left: 1em;
}
.feature_eiken_check li::after {
  position: absolute;
  content: "";
  background-image: url(../images/eiken/eiken_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 3px;
  width: 10.2px;
  height: 13.6px;
}
@media (min-width: 960px) {
  .feature_eiken_check li::after {
    width: 16px;
    height: 18px;
    top: 5px;
  }
}
.shogaku .feature_header_title_image {
  color: var(--color-shogaku);
}
.shogaku .feature_index_link {
  border-color: var(--color-shogaku);
  color: var(--color-shogaku);
}
.shogaku .feature_index_link:hover {
  background-color: var(--color-shogaku);
}
.shogaku .feature_number, .shogaku .feature_title > strong, .shogaku .feature_solution_answer > strong, .shogaku .feature_planner_try .feature_planner_caption, .shogaku .feature_dialog_comparison_try .feature_dialog_comparison_title, .shogaku .feature_solution_image, .shogaku .feature_planner_image, .shogaku .feature_seminor_title > strong {
  color: var(--color-shogaku);
}
.shogaku .feature_planner_try_comment {
  background-color: var(--color-shogaku);
}
.shogaku .feature_planner_try_comment::after {
  border-top-color: var(--color-shogaku);
}
.chugaku .feature_header_title_image {
  color: var(--color-chugaku);
}
.chugaku .feature_index_link {
  border-color: var(--color-chugaku);
  color: var(--color-chugaku);
}
.chugaku .feature_index_link:hover {
  background-color: var(--color-chugaku);
}
.chugaku .feature_number, .chugaku .feature_title > strong, .chugaku .feature_solution_answer > strong, .chugaku .feature_planner_try .feature_planner_caption, .chugaku .feature_dialog_comparison_try .feature_dialog_comparison_title, .chugaku .feature_solution_image, .chugaku .feature_planner_image, .chugaku .feature_seminor_title > strong {
  color: var(--color-chugaku);
}
.chugaku .feature_planner_try_comment {
  background-color: var(--color-chugaku);
}
.chugaku .feature_planner_try_comment::after {
  border-top-color: var(--color-chugaku);
}
.koukou .feature_header_title_image {
  color: var(--color-koukou);
}
.koukou .feature_index_link {
  border-color: var(--color-koukou);
  color: var(--color-koukou);
}
.koukou .feature_index_link:hover {
  background-color: var(--color-koukou);
}
.koukou .feature_number, .koukou .feature_title > strong, .koukou .feature_solution_answer > strong, .koukou .feature_planner_try .feature_planner_caption, .koukou .feature_dialog_comparison_try .feature_dialog_comparison_title, .koukou .feature_solution_image, .koukou .feature_planner_image, .koukou .feature_seminor_title > strong {
  color: var(--color-koukou);
}
.koukou .feature_planner_try_comment {
  background-color: var(--color-koukou);
}
.koukou .feature_planner_try_comment::after {
  border-top-color: var(--color-koukou);
}

.courses_grade.shogaku .courses_grade_emphasis {
  color: var(--color-shogaku);
}
.courses_grade.shogaku .courses_card::after {
  background-color: var(--color-shogaku);
}
.courses_grade.shogaku .courses_card_image {
  background-color: rgba(var(--color-shogaku-rgb), 0.1);
}
.courses_grade.shogaku .courses_card_icon {
  color: var(--color-shogaku);
}
.courses_grade.shogaku .courses_button {
  background-color: var(--color-shogaku);
}
.courses_grade.shogaku .courses_card_list_item::before {
  background-color: var(--color-shogaku);
  background-size: 24px 24px;
}
.courses_grade.shogaku .courses_card_review_text::before {
  color: var(--color-shogaku);
}
.courses_grade.chugaku .courses_grade_emphasis {
  color: var(--color-chugaku);
}
.courses_grade.chugaku .courses_card::after {
  background-color: var(--color-chugaku);
}
.courses_grade.chugaku .courses_card_image {
  background-color: rgba(var(--color-chugaku-rgb), 0.1);
}
.courses_grade.chugaku .courses_card_icon {
  color: var(--color-chugaku);
}
.courses_grade.chugaku .courses_button {
  background-color: var(--color-chugaku);
}
.courses_grade.chugaku .courses_card_list_item::before {
  background-color: var(--color-chugaku);
  background-size: 24px 24px;
}
.courses_grade.chugaku .courses_card_review_text::before {
  color: var(--color-chugaku);
}
.courses_grade.koukou .courses_grade_emphasis {
  color: var(--color-koukou);
}
.courses_grade.koukou .courses_card::after {
  background-color: var(--color-koukou);
}
.courses_grade.koukou .courses_card_image {
  background-color: rgba(var(--color-koukou-rgb), 0.1);
}
.courses_grade.koukou .courses_card_icon {
  color: var(--color-koukou);
}
.courses_grade.koukou .courses_button {
  background-color: var(--color-koukou);
}
.courses_grade.koukou .courses_card_list_item::before {
  background-color: var(--color-koukou);
  background-size: 24px 24px;
}
.courses_grade.koukou .courses_card_review_text::before {
  color: var(--color-koukou);
}

.kobetsu .courses {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 960px) {
  .kobetsu .courses {
    gap: 80px;
  }
}
.kobetsu .courses_grade {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .kobetsu .courses_grade {
    align-items: center;
    gap: 24px;
  }
}
.kobetsu .courses_grade_title {
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
}
@media (min-width: 960px) {
  .kobetsu .courses_grade_title {
    font-size: 3.2rem;
  }
}
.kobetsu .courses_list {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  padding-left: 16px;
  padding-bottom: 24px;
  overflow-x: auto;
}
@media (min-width: 960px) {
  .kobetsu .courses_list {
    padding-left: min(16px, 8%);
    padding-right: min(16px, 8%);
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    overflow-x: unset;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  .kobetsu .courses_list {
    padding-left: calc(50% - var(false) / 2);
    padding-right: calc(50% - var(false) / 2);
  }
}
.kobetsu .courses_list_item {
  align-self: stretch;
}
.kobetsu .courses_card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: flex-start;
  align-items: center;
  gap: 8px;
  width: 200px;
  height: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--color-inverse);
  color: var(--color-text);
  transition: all 0.4s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media (min-width: 960px) {
  .kobetsu .courses_card {
    width: 320px;
    padding: 24px;
  }
}
.kobetsu .courses_card:hover {
  transform: translateY(-8px);
}
.kobetsu .courses_card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotate(45deg) translate(75%, 0);
}
.kobetsu .courses_card_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.kobetsu .courses_card_icon {
  width: 24px;
  height: 24px;
}
.kobetsu .courses_card_title {
  font-size: 1.8rem;
  font-weight: bolder;
  text-align: center;
}
.kobetsu .courses_card_description {
  font-size: 1.2rem;
}
.kobetsu .courses_button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  padding: 8px 24px;
  min-height: 48px;
  border-radius: 100px;
  font-weight: bolder;
  font-size: 1.6rem;
  color: var(--color-inverse);
  line-height: 1;
}
@media (min-width: 960px) {
  .kobetsu .courses_button {
    font-size: 2rem;
    padding: 16px 32px;
  }
}
.kobetsu .courses_button:hover {
  color: var(--color-inverse);
  opacity: 0.8;
}

.campaign .courses {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 960px) {
  .campaign .courses {
    gap: 80px;
  }
}
.campaign .courses_grade {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .campaign .courses_grade {
    align-items: center;
    gap: 24px;
  }
}
.campaign .courses_grade_title {
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
}
@media (min-width: 960px) {
  .campaign .courses_grade_title {
    font-size: 3.2rem;
  }
}
.campaign .courses_list {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  padding-left: 16px;
  padding-bottom: 24px;
  overflow-x: auto;
}
@media (min-width: 960px) {
  .campaign .courses_list {
    padding-left: min(16px, 8%);
    padding-right: min(16px, 8%);
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    overflow-x: unset;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  .campaign .courses_list {
    padding-left: calc(50% - var(false) / 2);
    padding-right: calc(50% - var(false) / 2);
  }
}
.campaign .courses_list_item {
  align-self: stretch;
}
.campaign .courses_card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: flex-start;
  align-items: center;
  gap: 8px;
  width: 200px;
  height: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--color-inverse);
  color: var(--color-text);
  transition: all 0.4s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media (min-width: 960px) {
  .campaign .courses_card {
    width: 320px;
    padding: 24px;
  }
}
.campaign .courses_card:hover {
  transform: translateY(-8px);
}
.campaign .courses_card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotate(45deg) translate(75%, 0);
}
.campaign .courses_card_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.campaign .courses_card_icon {
  width: 24px;
  height: 24px;
}
.campaign .courses_card_title {
  font-size: 1.8rem;
  font-weight: bolder;
  text-align: center;
}
.campaign .courses_card_description {
  font-size: 1.2rem;
}
.campaign .courses_button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  padding: 8px 24px;
  min-height: 48px;
  border-radius: 100px;
  font-weight: bolder;
  font-size: 1.6rem;
  color: var(--color-inverse);
  line-height: 1;
}
@media (min-width: 960px) {
  .campaign .courses_button {
    font-size: 2rem;
    padding: 16px 32px;
  }
}
.campaign .courses_button:hover {
  color: var(--color-inverse);
  opacity: 0.8;
}

.grades .courses {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px !important;
}
@media (min-width: 768px) {
  .grades .courses {
    padding-top: 80px !important;
  }
}
@media (min-width: 960px) {
  .grades .courses {
    gap: 80px;
  }
}
.grades .courses_grade {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .grades .courses_grade {
    align-items: center;
    gap: 24px;
  }
}
.grades .courses_grade_title {
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
}
@media (min-width: 960px) {
  .grades .courses_grade_title {
    font-size: 3.2rem;
  }
}
.grades .courses_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 16px;
  margin-left: 16px;
}
@media (min-width: 960px) {
  .grades .courses_list {
    padding-left: calc(50% - var(--width-content) / 2);
    padding-right: calc(50% - var(--width-content) / 2);
  }
}
@media (min-width: 960px) {
  .grades .courses_list {
    justify-content: center;
    gap: 24px;
  }
}
.grades .courses_card {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.grades .courses_card_inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-self: flex-start;
  align-items: center;
  gap: 16px;
  max-height: 160px;
  padding: 16px;
  background-color: var(--color-inverse);
  color: var(--color-text);
  transition: all 0.4s ease;
}
@media (min-width: 960px) {
  .grades .courses_card_inner {
    gap: 24px;
    max-height: 180px;
    padding: 24px 40px;
  }
}
.grades .courses_card_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
@media (min-width: 960px) {
  .grades .courses_card_image {
    width: 64px;
    height: 64px;
  }
}
.grades .courses_card_icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 960px) {
  .grades .courses_card_icon {
    width: 32px;
    height: 32px;
  }
}
.grades .courses_card_title {
  font-size: 1.8rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .grades .courses_card_title {
    font-size: 2.4rem;
  }
}
.grades .courses_card_list {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.grades .courses_card_list_item {
  display: flex;
  gap: 8px;
}
@media (min-width: 960px) {
  .grades .courses_card_list_item {
    gap: 16px;
  }
}
.grades .courses_card_list_item::before {
  flex: 0 0 auto;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(/assets/images/icons/done.svg);
  mask-image: url(/assets/images/icons/done.svg);
}
.grades .courses_card_review {
  flex: 1 1 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 8px;
  font-size: 1.4rem;
}
.grades .courses_card_review_image {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 2px solid var(--color-lightgray);
  background-color: var(--color-lightgray);
  color: var(--color-inverse);
}
.grades .courses_card_review_text {
  position: relative;
  flex: 1 1 auto;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--color-bg);
  font-size: 1.4rem;
}
.grades .courses_card_review_text::before {
  content: "REVIEW";
  display: inline-block;
  position: absolute;
  top: -0.5em;
  font-size: 1.4rem;
  font-weight: bolder;
  line-height: 1;
  letter-spacing: 0.2em;
}
.grades .courses_card_checkbox {
  display: none;
}
.grades .courses_card_label {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 80px;
  padding-top: 40px;
  font-size: 1.4rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 50%, #fff 100%);
  transform: translateX(-50%);
  z-index: 1;
}
.grades .courses_card_label::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--color-darkgray);
  background-size: 16px;
  -webkit-mask-image: url(/assets/images/icons/chevron-down.svg);
  mask-image: url(/assets/images/icons/chevron-down.svg);
}
.grades .courses_card_checkbox:checked + .courses_card_label {
  display: none;
}
.grades .courses_card_checkbox:checked + .courses_card_label + .courses_card_inner {
  height: unset;
  max-height: 100vh;
  overflow: auto;
}

.reviews {
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}
@media (min-width: 960px) {
  .reviews {
    padding-left: calc(50% - var(--width-desktopHD) / 2);
    padding-right: calc(50% - var(--width-desktopHD) / 2);
  }
}
.reviews_list {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 65px 16px 24px;
  overflow-x: auto;
}
@media (min-width: 960px) {
  .reviews_list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px 2%;
    padding-left: 40px;
    padding-right: 40px;
    overflow-x: unset;
  }
}
.reviews_item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 56px 16px 16px;
  background-color: var(--color-inverse);
  border-radius: 8px;
}
@media (min-width: 960px) {
  .reviews_item {
    width: 32%;
    padding: 80px 24px 24px;
  }
}
.reviews_image {
  position: absolute;
  top: -40px;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  min-height: 80px;
  background-color: var(--color-bg);
  color: var(--color-darkgray);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f0f0f0;
  transform: translate(-50%);
}
@media (min-width: 960px) {
  .reviews_image {
    top: -60px;
    width: 120px;
    height: 120px;
  }
}
.reviews_name {
  width: 240px;
  color: var(--color-gray);
  font-size: 1.1rem;
  font-weight: bolder;
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 960px) {
  .reviews_name {
    width: 320px;
  }
}
.reviews_profile {
  color: var(--color-gray);
  font-size: 1rem;
  margin-top: -3px;
  text-align: center;
}
.reviews_caption {
  text-align: center;
  font-size: 1.5rem;
  margin-top: -4px;
}
@media (min-width: 960px) {
  .reviews_caption {
    font-size: 2rem;
  }
}
.reviews_text {
  font-size: 1.1rem;
  line-height: 1.5;
}
.reviews_small {
  display: block;
  margin-left: 16px;
  margin-right: 16px;
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-darkgray);
}
.reviews .section_title {
  line-height: 1.4;
  margin-bottom: 35px;
}
@media (min-width: 960px) {
  .reviews .section_title {
    margin-bottom: unset;
  }
}

@media (min-width: 960px) {
  .futoukou .reviews,
  .abroad .reviews {
    padding-bottom: 40px;
  }
}

.abroad .experience_contents_item {
  margin-bottom: unset;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 960px) {
  .flow {
    padding-left: calc(50% - var(--width-desktop) / 2);
    padding-right: calc(50% - var(--width-desktop) / 2);
  }
}
@media (min-width: 960px) {
  .flow {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.flow.container {
  position: relative;
}
.flow.container::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: calc(100% - 32px);
  height: 1px;
  background: #cdcdcd;
}
.flow.container.noline {
  position: relative;
}
.flow.container.noline::after {
  position: unset;
  content: unset;
}
.flow_list {
  border-radius: 5px;
  border: 1px solid var(--color-red);
  margin-top: -12px;
  padding-bottom: 30px;
  background: #fff;
}
@media (min-width: 960px) {
  .flow_list {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }
}
.flow_list_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: rgb(255, 234, 234);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 5px 0 0;
  color: var(--color-red);
}
@media (min-width: 960px) {
  .flow_list_title {
    font-size: 24px;
    height: 60px;
  }
}
.flow_list_item {
  padding: 0 23px 0 12px;
  margin-top: 27px;
}
@media (min-width: 960px) {
  .flow_list_item {
    max-width: 600px;
    width: 100%;
    margin: 37px auto 0;
    padding: unset;
  }
}
.flow_list_item + .flow_list_item {
  margin-top: 34px;
}
@media (min-width: 960px) {
  .flow_list_item ul {
    margin-top: 22px;
  }
}
.flow_list_item li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
@media (min-width: 960px) {
  .flow_list_item li {
    max-width: 542px;
    margin-left: auto;
  }
}
.flow_title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.448125;
  position: relative;
  padding-right: 53px;
  padding-left: 45px;
}
@media (min-width: 960px) {
  .flow_title {
    font-size: 20px;
    line-height: 1.448;
    padding-left: 58px;
  }
}
.flow_title::after {
  position: absolute;
  right: 0;
  top: 0;
}
.flow_title::before {
  position: absolute;
  color: #fff;
  border-radius: 50%;
  background: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
@media (min-width: 960px) {
  .flow_title::before {
    width: 45px;
    font-size: 30px;
    height: 45px;
  }
}
.flow_title_1::before {
  content: "1";
  top: -4px;
}
@media (min-width: 960px) {
  .flow_title_1::before {
    top: -8px;
  }
}
.flow_title_1::after {
  content: url(../images/202401/flow1.svg);
  top: -8px;
}
.flow_title_2::before {
  content: "2";
  top: 2px;
}
@media (min-width: 960px) {
  .flow_title_2::before {
    top: -8px;
  }
}
.flow_title_2::after {
  content: url(../images/202401/flow2.svg);
  top: -5px;
}
.flow_text {
  font-size: 14px;
  line-height: 1.4478571429;
  margin-top: 16px;
}
@media (min-width: 960px) {
  .flow_text {
    margin-left: 58px;
  }
}
.flow_step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 80px;
  color: var(--color-red);
  background: rgb(255, 234, 234);
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 960px) {
  .flow_step {
    height: 60px;
    width: 152px;
  }
}
.flow_step + .flow_text {
  width: calc(100% - 110px - 13px);
  margin-left: 13px;
  margin-top: unset;
}
.flow_support {
  background-color: var(--color-inverse);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
}
@media (min-width: 960px) {
  .flow_support {
    flex-direction: row;
  }
}
.flow_support_2 {
  background-color: var(--color-inverse);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
  margin-top: 32px;
}
@media (min-width: 960px) {
  .flow_support_2 {
    flex-direction: row;
    margin-top: 64px;
  }
}
.flow_support_texts {
  flex: 1 1 50%;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 960px) {
  .flow_support_texts {
    padding: 40px;
  }
}
.flow_support_texts {
  flex: 1 1 50%;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 960px) {
  .flow_support_texts {
    padding: 29px 22px 19px 22px;
  }
}
.flow_support_title {
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 960px) {
  .flow_support_title {
    font-size: 2.4rem;
    text-align: left;
  }
}
.flow_support_title_2 {
  font-size: 18px;
  text-align: center;
}
@media (min-width: 960px) {
  .flow_support_title_2 {
    font-size: 18px;
    text-align: left;
    letter-spacing: 0em;
  }
}
.flow_support_description_2 {
  font-size: 14px;
}
.flow_support_image {
  width: 100%;
  height: 160px;
  background-color: #f0f0f0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 960px) {
  .flow_support_image {
    width: 50%;
    height: unset;
  }
}

.price {
  letter-spacing: normal;
}
.price_lead {
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  margin-top: 60px;
}
@media (min-width: 960px) {
  .price_lead {
    font-size: 23px;
  }
}
.price_bg_blue {
  background: rgba(199, 241, 255, 0.1);
}
.price_pc {
  display: none;
}
@media (min-width: 768px) {
  .price_pc {
    display: block;
  }
}
.price_sp {
  display: block;
}
@media (min-width: 768px) {
  .price_sp {
    display: none;
  }
}
.price_title {
  border-left: 8px solid #e6003d;
  border-right: 8px solid #e6003d;
  background: #ffeaea;
  text-align: left;
  padding-left: 22px;
  font-size: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media (min-width: 960px) {
  .price_title {
    justify-content: center;
    font-size: 26px;
    height: 80px;
  }
  .price_title-1 {
    margin: 60px calc(50% - 50vw) 0;
  }
}
@media (max-width: 959px) {
  .price_title2 {
    font-size: 18px;
  }
}
.price_read {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  margin: 22px 0 47px;
  text-align: left;
}
@media (min-width: 960px) {
  .price_read {
    text-align: center;
    margin: 44px 0 61px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.price-nav_title {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .price-nav_title {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 60px;
  }
}
.price-nav_list {
  display: none;
}
@media (min-width: 768px) {
  .price-nav_list {
    display: flex;
    gap: 35px;
    justify-content: center;
  }
}
.price-nav_item a {
  color: var(--color-red);
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  color: var(--color-red);
  border: 1px solid;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .price-nav_item a {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 960px) {
  .price-nav_item a {
    width: 184px;
    height: 184px;
  }
}
.price-nav_item a::after {
  position: absolute;
  content: url(../images/icons/chevron-down-red.svg);
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}
.price-nav_item:hover a {
  color: #fff;
  background: var(--color-red);
}
.price-nav_item:hover a::after {
  position: absolute;
  content: url(../images/icons/chevron-down-white.svg);
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}
.price-admission .bg {
  margin: 0 calc(50% - 50vw);
  padding: 40px calc(50vw - 50%);
  width: 100vw;
}
@media (min-width: 960px) {
  .price-admission .bg {
    padding: 40px calc(50vw - 50%) 80px;
  }
}
.price-admission_contents {
  margin: 0 auto 0;
  background: #ffffff;
  border: 2px solid #e6003d;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 22px 18px 25px;
  width: auto;
}
.price-admission_contents_body {
  text-align: center;
}
.price-admission_contents_head {
  width: 56px;
  height: auto;
}
.price-admission_contents_head img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .price-admission_contents_head {
    width: 140px;
  }
}
@media (min-width: 960px) {
  .price-admission_contents {
    margin: 0px auto 0;
    gap: 60px;
    padding: 40px 0 45px 0;
    width: 802px;
    flex-direction: row;
  }
}
.price-admission_title {
  color: var(--color-red);
  border-bottom: 1px solid var(--color-darkgray);
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .price-admission_title {
    margin-bottom: 18px;
    padding-bottom: 5px;
  }
}
.price-admission_title_sm {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
}
@media (min-width: 960px) {
  .price-admission_title_sm {
    font-size: 18px;
  }
}
.price-admission_title_sm2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 160%;
}
@media (min-width: 960px) {
  .price-admission_title_sm2 {
    font-size: 16px;
  }
}
.price-admission_title_lg {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .price-admission_title_lg {
    font-size: 40px;
    line-height: 1.5;
  }
}
.price-admission_text {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 13px;
}
@media (min-width: 960px) {
  .price-admission_text {
    font-size: 14px;
    margin-bottom: 11px;
  }
}
.price-admission_list {
  text-align: left;
}
.price-admission_item {
  font-size: 10px;
}
@media (min-width: 960px) {
  .price-admission_item {
    font-size: 12px;
  }
}
.price-lesson_contents {
  max-width: 864px;
  margin: 0 auto;
}
.price-lesson_title {
  text-transform: uppercase;
  color: var(--color-red);
  background: #fff;
  padding: 0 14px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2em;
  width: 100%;
  align-items: center;
  display: flex;
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 60px;
  margin: 0 auto 37px auto;
}
@media (min-width: 960px) {
  .price-lesson_title {
    margin: 0 auto 37px 60px;
  }
}
.price-lesson_thumb {
  display: flex;
  justify-content: center;
  border-top: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  border-right: 2px solid var(--color-red);
  border-left: 2px solid var(--color-red);
  margin-top: -54px;
  text-align: center;
}
@media (min-width: 768px) {
  .price-lesson_thumb {
    font-size: 12px;
    border-right: none;
    border-left: none;
  }
}
.price-lesson_thumb-inner {
  padding: 50px 30px 28px;
}
@media (min-width: 768px) {
  .price-lesson_thumb-inner {
    padding: 45px 20px 18px;
  }
}
@media (max-width: 767px) {
  .price-lesson_thumb-inner {
    max-width: 400px;
  }
}
.price-lesson_thumb-inner img,
.price-lesson_thumb-inner picture {
  width: 100%;
  height: auto;
}
.price-lesson-example_head_title {
  text-align: center;
  margin-top: 35px;
}
@media (min-width: 960px) {
  .price-lesson-example_head_title {
    margin-top: 57px;
  }
}
.price-lesson-example_head_title .gray {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
  display: block;
  color: #9b9b9b;
}
@media (min-width: 960px) {
  .price-lesson-example_head_title .gray {
    margin-top: 57px;
    font-size: 20px;
    line-height: 1.48;
  }
}
.price-lesson-example_head_title .red {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.48;
  display: block;
  color: var(--color-red);
}
@media (min-width: 960px) {
  .price-lesson-example_head_title .red {
    font-size: 30px;
    line-height: 1.48;
  }
}
.price-lesson-example_head_lead {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 960px) {
  .price-lesson-example_head_lead {
    max-width: 800px;
    margin: 21px auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
  }
}
.price-lesson-example_list {
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}
@media (min-width: 960px) {
  .price-lesson-example_list {
    flex-direction: row;
    gap: 62px;
  }
}
.price-lesson-example.bg {
  margin: 30px calc(50% - 50vw) 0;
  width: 100vw;
  padding: 50px 0;
}
@media (min-width: 960px) {
  .price-lesson-example.bg {
    margin: 40px calc(50% - 50vw) 0;
    padding: 56px 0;
  }
}
.price-lesson-example_title {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-bottom: 34px;
}
.price-lesson-example_title span {
  font-size: 14px;
}
@media (min-width: 768px) {
  .price-lesson-example_title {
    font-size: 24px;
  }
  .price-lesson-example_title span {
    font-size: 16px;
  }
}
.price-lesson-example_item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
}
@media (min-width: 960px) {
  .price-lesson-example_item {
    display: block;
    width: 297px;
  }
}
.price-lesson-example_item_head {
  background: var(--color-shogaku);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border-radius: 8px 0px 0px 8px;
  width: 30%;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .price-lesson-example_item_head {
    border-radius: 8px 8px 0px 0px;
    height: 66px;
    width: 100%;
    font-size: 24px;
  }
}
.price-lesson-example_item_head2 {
  background: var(--color-chugaku);
}
.price-lesson-example_item_head3 {
  background: var(--color-koukou);
}
.price-lesson-example_item_body {
  background: #fff;
  border-radius: 0px 8px 0px 8px;
  height: 94px;
  text-align: center;
  padding: 18px 10px;
  width: 70%;
}
@media (min-width: 960px) {
  .price-lesson-example_item_body {
    border-radius: 0px 0px 8px 8px;
    padding: 26px 10px;
    height: 123px;
    width: 100%;
  }
}
.price-lesson-example_item_body_sm {
  font-weight: 500;
  font-size: 14px;
  display: block;
}
@media (min-width: 960px) {
  .price-lesson-example_item_body_sm {
    font-size: 16px;
  }
}
.price-lesson-example_item_body_lg {
  font-weight: 700;
  font-size: 20px;
  display: block;
}
.price-lesson-example_item_body_lg span {
  font-size: 14px;
}
@media (min-width: 960px) {
  .price-lesson-example_item_body_lg {
    font-size: 24px;
  }
  .price-lesson-example_item_body_lg span {
    font-size: 16px;
  }
  .price-lesson-example_item_body_lg span:last-of-type {
    font-size: 14px;
    font-weight: normal;
  }
}
.price-lesson-listbox {
  background: #fff9e2;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 28px 16px 28px;
}
.price-lesson-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 960px) {
  .price-lesson-list {
    max-width: 800px;
    margin: 0 auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 8px;
  }
}
.price-lesson-list_item {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  border-radius: 0 5px 0 5px;
  background: #fff;
  border-left: 4px solid var(--color-red);
  height: 57px;
  width: calc(50% - 4px);
  padding-left: 16px;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .price-lesson-list_item {
    width: 50%;
    max-width: 390px;
    padding-left: 12px;
  }
}
.price-system > .section_title {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 50px;
  padding-top: 12px;
  font-size: 18px;
}
.price-system > .section_title::before {
  position: absolute;
  content: "";
  background: url(../images/price/safe.png) no-repeat;
  background-size: contain;
  left: 50%;
  transform: translateX(-200%);
  top: 0;
  width: 40px;
  height: 40px;
  z-index: -1;
}
@media (min-width: 768px) {
  .price-system > .section_title {
    margin: 0 0;
    padding-top: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 24px;
    z-index: 2;
  }
  .price-system > .section_title::before {
    position: absolute;
    content: url(../images/price/safe.png);
    transform: translateX(-100%);
    background: none;
    width: auto;
    height: auto;
    left: 10px;
    top: -20px;
    z-index: -1;
  }
}
@media (min-width: 768px) {
  .price-system > .section_title {
    font-size: 3.2rem;
  }
}
.price-system > .section_title_2 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  z-index: 2;
  font-size: 22px;
}
.price-system > .section_title_2::before {
  display: block;
  position: absolute;
  content: "";
  background: url(../images/futoukou/safe.svg) no-repeat;
  width: 50px;
  height: 50px;
  z-index: -1;
  background-size: contain;
}
@media (max-width: 767px) {
  .price-system > .section_title_2::before {
    transform: translateX(-255%);
    top: 5px;
  }
}
@media (min-width: 768px) {
  .price-system > .section_title_2::before {
    width: 80px;
    height: 80px;
    left: 10px;
    top: -29px;
  }
}
@media (min-width: 768px) {
  .price-system > .section_title_2 {
    margin: 0 auto 42px;
    font-size: 3.2rem;
  }
}
.price-system > .price_read {
  text-align: center;
}
.price-system_bottom {
  display: block;
}
@media (min-width: 960px) {
  .price-system_bottom {
    display: block;
    text-align: right;
    margin-top: 10px;
  }
}
.price-system_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  margin-bottom: -16px;
}
@media (min-width: 768px) {
  .price-system_list {
    flex-direction: row;
    margin: 0 0 -16px -30px;
  }
}
@media (min-width: 960px) {
  .price-system_list {
    margin: 0 0 -32px -60px;
  }
}
.price-system_item {
  border: 2px solid var(--color-rightblue);
  border-radius: 16px;
  background: #fff;
  display: flex;
  gap: 18px;
  width: 100%;
  height: auto;
  padding-top: 20px;
  margin: 0 0 16px 0px;
}
@media (min-width: 768px) {
  .price-system_item {
    width: calc((100% - 60px) / 2);
    gap: 22px;
    margin: 0 0 16px 30px;
  }
}
@media (min-width: 960px) {
  .price-system_item {
    width: calc((100% - 120px) / 2);
    margin: 0 0 32px 60px;
  }
}
.price-system_item_head {
  width: 51px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .price-system_item_head {
    width: 100px;
  }
}
.price-system_item_head figure {
  margin: 0 auto 0 10px;
  width: 41px;
  height: 41px;
}
.price-system_item_head figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .price-system_item_head figure {
    margin: 0 auto 0 auto;
    width: none;
    max-width: 100%;
  }
}
.price-system_item_head span {
  display: block;
  background: var(--color-rightblue);
  border-radius: 0 16px 0 12px;
  color: #fff;
  letter-spacing: 0.4em;
  font-weight: 700;
  font-size: 14px;
  width: 52px;
  text-align: center;
}
@media (min-width: 960px) {
  .price-system_item_head span {
    font-size: 20px;
    width: 100px;
  }
}
.price-system_item_head_2 {
  width: 51px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 0px;
}
@media (min-width: 960px) {
  .price-system_item_head_2 {
    width: 100px;
    padding-left: 23px;
  }
}
.price-system_item_head_2 figure {
  margin: 0 auto 0 10px;
  width: 41px;
  height: 41px;
}
.price-system_item_head_2 figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .price-system_item_head_2 figure {
    margin: 0 auto 0 auto;
    width: none;
    max-width: 100%;
  }
}
.price-system_item_body {
  padding-bottom: 24px;
  padding-right: 18px;
}
@media (min-width: 960px) {
  .price-system_item_body {
    padding-right: 35px;
  }
}
.price-system_item_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-rightblue);
  margin-bottom: 11px;
}
@media (min-width: 960px) {
  .price-system_item_title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
}
.price-system_item_text {
  font-weight: 400;
  font-size: 14px;
}
@media (min-width: 960px) {
  .price-system_item_text {
    font-size: 16px;
  }
}
.price-system_item2 {
  border: 2px solid #f660a2;
}
.price-system_item2_head figure {
  margin: 0 auto 0 10px;
  width: 46px;
  height: 41px;
}
.price-system_item2_head figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .price-system_item2_head figure {
    margin: 0 auto 0 auto;
    width: none;
    max-width: 100%;
  }
}
.price-system_item2_head span {
  background: #f660a2;
}
.price-system_item2_title {
  color: #f660a2;
}
.price-optionbox {
  padding-bottom: 20px;
  margin: 0 calc(50% - 50vw);
}
.price-option_item {
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 20px 20px;
  position: relative;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .price-option_item {
    flex-direction: row;
    padding: 44px 28px 36px 45px;
    max-width: 1000px;
    margin: 0 auto 32px;
  }
}
.price-option_item:nth-of-type(-n + 3)::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "無料";
  padding: 6px 12px 6px 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--color-red);
  border-radius: 24px 2px 2px 2px;
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  .price-option_item:nth-of-type(-n + 3)::before {
    letter-spacing: 0.4em;
    padding: 2px 25px 4px 30px;
  }
}
@media (min-width: 768px) {
  .price-option_item {
    padding: 44px 28px 46px 45px;
    margin-bottom: 32px;
  }
}
.price-option_item_head {
  width: 100%;
}
@media (min-width: 768px) {
  .price-option_item_head {
    width: 60%;
    margin-right: 2%;
  }
}
.price-option_item_head figure {
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .price-option_item_head figure {
    margin-bottom: 0;
  }
}
.price-option_item_head figure img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .price-option_item_head figure img {
    max-width: 280px;
    height: auto;
  }
}
.price-option_item_head_title {
  margin-bottom: 11px;
  text-align: center;
}
@media (min-width: 768px) {
  .price-option_item_head_title {
    text-align: left;
    margin-bottom: 14px;
  }
}
.price-option_item_head_title_sm {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-darkgray);
  display: block;
}
@media (min-width: 768px) {
  .price-option_item_head_title_sm {
    font-size: 16px;
  }
}
.price-option_item_head_title_lg {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  display: block;
  font-size: 20px;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .price-option_item_head_title_lg {
    font-size: 24px;
    margin-top: 10px;
  }
}
.price-option_item_head_text {
  font-weight: 400;
  font-size: 14px;
}
@media (min-width: 768px) {
  .price-option_item_head_text {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .price-option_item_body {
    max-width: 322px;
    width: 40%;
  }
  .price-option_item_body img {
    width: 100%;
    height: auto;
  }
}
.price-option_read {
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  font-size: 14px;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .price-option_read {
    font-size: 24px;
    margin-top: 49px;
  }
}
@media (min-width: 960px) {
  .price-option_read {
    font-size: 32px;
  }
}
.price-option_read span {
  background: linear-gradient(transparent 60%, #fff844 60%);
}
.price_contact_sub {
  background: #fff !important;
  padding-top: 0;
}
.price_contact_sub .section_title {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #000 !important;
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .price_contact_sub .section_title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}
.price_contact_sub .contact_button {
  background-color: var(--color-red) !important;
  color: #fff !important;
  border: 2px solid var(--color-red) !important;
}
.price_contact_sub .contact_content {
  max-width: none;
  padding-right: 0;
  gap: 0px;
}
@media (min-width: 960px) {
  .price_contact_sub .contact_content {
    gap: 8px;
    padding-top: 16px;
  }
}
.price_contact_sub .contact_tel {
  color: var(--color-red) !important;
}
.price_contact_sub .contact_tel_icon {
  color: var(--color-red) !important;
}
.price_sp {
  display: block;
}
@media (min-width: 960px) {
  .price_sp {
    display: none;
  }
}
.price_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .price_sp--flex {
    display: none;
  }
}
.price_sp--inline {
  display: inline-block;
}
@media (min-width: 960px) {
  .price_sp--inline {
    display: none;
  }
}
.price_pc {
  display: none;
}
@media (min-width: 960px) {
  .price_pc {
    display: block;
  }
}
.price_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .price_pc--flex {
    display: flex;
  }
}
.price_pc--inline {
  display: none;
}
@media (min-width: 960px) {
  .price_pc--inline {
    display: inline-block;
  }
}

.overseas .section_title {
  line-height: 1.4;
  margin-bottom: 35px;
}
@media (min-width: 960px) {
  .overseas .section_title {
    margin-bottom: 32px;
  }
}
.overseas .section_title.-color1 {
  color: #10385E;
}
.overseas_comment {
  margin: 0 auto 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  color: #fff;
  border-radius: 36px;
  font-weight: 700;
  font-size: 20px;
  width: 276px;
  height: 45px;
  position: relative;
}
.overseas_comment::after {
  position: absolute;
  content: url(../images/abroad/comment.svg);
  bottom: -22px;
  left: 44px;
}
.overseas_comment.-color1 {
  background: #10385E;
}
.overseas_comment.-color1::after {
  position: absolute;
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #10385E;
  bottom: -12px;
  left: 44px;
  width: 16px;
  height: 20px;
}
.overseas_comment_2 {
  margin: 0 auto 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: #fff;
  border-radius: 36px;
  font-weight: 700;
  font-size: 14px;
  width: 142px;
  height: 36px;
  position: relative;
}
.overseas_comment_2::after {
  position: absolute;
  content: url(../images/abroad/comment_2.svg);
  bottom: -22px;
  left: 44px;
}
@media (min-width: 960px) {
  .overseas_comment_2 {
    height: 47px;
    font-size: 20px;
    width: 276px;
  }
}
.overseas_curriculum {
  max-width: none;
  background: #E0ECF2;
  padding: 20px 17px 20px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .overseas_curriculum {
    max-width: 1023px;
    padding: 30px 17px 57px;
  }
}
.overseas_curriculum_title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 17px;
}
@media (min-width: 960px) {
  .overseas_curriculum_title {
    margin-bottom: 35px;
  }
}
.overseas_curriculum_title_2 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: var(--color-red);
  margin-bottom: 17px;
}
@media (min-width: 960px) {
  .overseas_curriculum_title_2 {
    margin-bottom: 35px;
  }
}
.overseas_curriculum_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -7px;
  margin-bottom: -7px;
}
@media (min-width: 960px) {
  .overseas_curriculum_list {
    margin-left: -38px;
    margin-bottom: -22px;
  }
}
.overseas_curriculum_item {
  color: var(--color-blue);
  background: #fff;
  border: 2px solid;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  width: 47%;
  height: auto;
  margin-left: 7px;
  margin-bottom: 7px;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.2;
}
@media (min-width: 960px) {
  .overseas_curriculum_item {
    border-radius: 8px;
    padding: 10px 35px 12px;
    border: 2px none;
    font-size: 20px;
    width: 29%;
    height: 52px;
    margin-left: 38px;
    margin-bottom: 22px;
  }
  .overseas_curriculum_item::before {
    position: absolute;
    content: url(../images/overseas/curriculum.svg);
    top: -1px;
    left: 7px;
  }
}
.overseas_curriculum_item2 {
  color: var(--color-red);
  background: #fff;
  border: 2px solid;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  width: 47%;
  height: auto;
  margin-left: 7px;
  margin-bottom: 7px;
  padding: 8px 10px 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.2;
}
@media (min-width: 960px) {
  .overseas_curriculum_item2 {
    border-radius: 8px;
    padding: 10px 35px 12px;
    border: 2px none;
    font-size: 20px;
    width: 29%;
    height: 52px;
    margin-left: 38px;
    margin-bottom: 22px;
  }
  .overseas_curriculum_item2::before {
    position: absolute;
    content: url(../images/futoukou/curriculum.svg);
    top: -1px;
    left: 7px;
  }
}
.overseas_curriculum_2 {
  max-width: none;
  background: rgba(230, 0, 61, 0.1);
  padding: 20px 17px 20px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .overseas_curriculum_2 {
    max-width: 1023px;
    padding: 30px 17px 57px;
  }
}
.overseas_text {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .overseas_text {
    font-size: 20px;
    margin-top: 54px;
  }
}
.overseas_text2 {
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .overseas_text2 {
    font-size: 20px;
    margin-top: 54px;
  }
}
.overseas_text2 strong {
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.overseas_text2 strong::after {
  position: absolute;
  content: "";
  background: #FFF95D;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  z-index: -1;
}
.overseas_thumb {
  margin: 0 auto 0;
  max-width: 1008px;
  padding: 0 24px;
}
.overseas_thumb img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .overseas_2col {
    display: flex;
    justify-content: center;
    gap: 50px;
  }
  .overseas_2col .overseas_thumb {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    max-width: 50%;
  }
  .overseas_2col .overseas_text2 {
    text-align: left;
  }
}

.futoukou .cta.futoukou-cta {
  padding-top: 20px;
}
.futoukou .section_title_3 {
  color: var(--color-red);
  font-size: 18px;
  margin-bottom: 12px;
}
@media (min-width: 960px) {
  .futoukou .section_title_3 {
    font-size: 32px;
    margin-bottom: 17px;
  }
}
.futoukou .section_title_3 + .futoukou-support_read {
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .futoukou .section_title_3 + .futoukou-support_read {
    text-align: center;
    margin-bottom: 38px;
  }
}
.futoukou_read {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 32px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
@media (min-width: 960px) {
  .futoukou_read {
    display: block;
    position: relative;
    gap: 10px;
    margin-top: -64px;
    height: 390px;
  }
}
@media (min-width: 960px) {
  .futoukou_read {
    position: relative;
  }
  .futoukou_read::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("/assets/images/futoukou/futoukou_read_pc.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: calc(50% - 50vw);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-position: left -200px center;
    gap: 0;
    height: 100%;
  }
}
@media (min-width: 960px) {
  .futoukou_read::before {
    width: 50%;
    height: 390px;
    background-position: 0% 50%;
  }
}
.futoukou_read_body {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}
@media (min-width: 960px) {
  .futoukou_read_body {
    width: 50%;
    position: relative;
    margin-top: 82px;
    margin-bottom: 100px;
    text-align: center;
  }
}
@media (max-width: 959px) {
  .futoukou_read_body strong {
    font-size: 17px;
  }
}
.futoukou_read_body_text {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .futoukou_read_body_text {
    font-size: 30px;
  }
}
@media (min-width: 960px) {
  .futoukou_read_body_text {
    font-size: 26px;
  }
  .futoukou_read_body_text:first-of-type {
    margin-top: 82px;
    margin-bottom: 8px;
  }
}
.futoukou_read_body_text strong {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.4;
  display: block;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .futoukou_read_body_text strong {
    font-size: 48px;
  }
}
@media (min-width: 960px) {
  .futoukou_read_body_text strong {
    font-size: 32px;
    display: inline-block;
  }
}
.futoukou_read_thumb {
  display: block;
  width: 100%;
  margin-right: auto;
}
.futoukou_read_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .futoukou_read_thumb {
    display: none;
    margin-top: 0px;
    margin-bottom: 0;
  }
}
.futoukou-support_contents {
  text-align: center;
}
.futoukou-support_thumb {
  display: block;
  max-width: 600px;
  margin: 0 auto;
}
.futoukou-support_thumb img {
  width: 100%;
  height: auto;
}
.futoukou-support_read {
  font-size: 14px;
}
@media (min-width: 960px) {
  .futoukou-support_read {
    font-size: 16px;
  }
}
.futoukou .section_title {
  line-height: 1.4;
  margin-bottom: 35px;
}

.futoukou002-read {
  background-color: #F9F9F9;
  padding-bottom: 60px;
  position: relative;
}
@media (max-width: 767px) {
  .futoukou002-read {
    padding-bottom: 40px;
    margin-top: -10px;
  }
}
.futoukou002-read::after {
  position: absolute;
  content: "";
  background-color: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 305px;
}
.futoukou002-read_before {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.futoukou002-read_before_img img {
  width: 100%;
  height: auto;
}
.futoukou002-read_before_text {
  font-size: 40px;
  line-height: 140%;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 14.4px rgb(79, 138, 180);
  position: absolute;
  left: 72px;
  top: 43%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .futoukou002-read_before_text {
    font-size: 23.5px;
    line-height: 130%;
    left: 50%;
    transform: translateX(-50%);
    top: 27px;
    width: -moz-max-content;
    width: max-content;
  }
  .futoukou002-read_before_text br {
    display: none;
  }
}
.futoukou002-read_after {
  max-width: 1000px;
  margin: -144px auto 0;
  position: relative;
}
@media (max-width: 767px) {
  .futoukou002-read_after {
    margin: -50px auto 0;
  }
}
.futoukou002-read_after_img {
  width: 705px;
  margin-left: -82px;
  display: block;
}
@media (max-width: 767px) {
  .futoukou002-read_after_img {
    margin-left: unset;
    width: 100%;
  }
}
.futoukou002-read_after_img img {
  width: 100%;
  height: auto;
}
.futoukou002-read_after_text {
  font-size: 32px;
  line-height: 130%;
  font-weight: 700;
  position: absolute;
  right: 63px;
  top: 54%;
  transform: translateY(-50%);
}
.futoukou002-read_after_text span {
  font-size: 40px;
  color: #E6003D;
  margin-top: 2px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .futoukou002-read_after_text {
    font-size: 20px;
    line-height: 130%;
    right: unset;
    left: 23px;
    top: 45%;
  }
  .futoukou002-read_after_text span {
    font-size: 24px;
  }
}
.futoukou002-read_listwrap {
  max-width: 1210px;
  overflow-x: scroll;
  overflow-y: hidden;
  margin: -66px auto 0;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
}
@media (max-width: 767px) {
  .futoukou002-read_listwrap {
    margin: -56px auto 0;
    padding: 0 16px 16px;
  }
}
.futoukou002-read_listwrap::-webkit-scrollbar {
  height: 5px;
}
.futoukou002-read_listwrap::-webkit-scrollbar-track {
  background: #FFFFFF;
}
.futoukou002-read_listwrap::-webkit-scrollbar-thumb {
  background: #999999;
}
.futoukou002-read_listwrap::-webkit-scrollbar-thumb:hover {
  background: #999999;
}
.futoukou002-read_list {
  width: 1680px;
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .futoukou002-read_list {
    width: 980px;
    gap: 10px;
  }
}
.futoukou002-read_item {
  background-color: #fff;
  border-radius: 4px;
  border: #E6003D 1px solid;
  width: 260px;
  height: 319px;
  padding: 24px 24px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .futoukou002-read_item {
    padding: 12px 5px;
    width: 155px;
    height: 248px;
    justify-content: flex-start;
  }
}
.futoukou002-read_item_title {
  font-size: 22px;
  line-height: 144%;
  font-weight: 700;
  text-align: center;
  color: #E6003D;
}
@media (max-width: 767px) {
  .futoukou002-read_item_title {
    font-size: 14px;
  }
}
.futoukou002-read_item_text {
  font-size: 14px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .futoukou002-read_item_text {
    font-size: 12px;
    padding: 0 5px;
  }
}
.futoukou002-read_item_img {
  margin-top: 7px;
}
@media (max-width: 767px) {
  .futoukou002-read_item_img {
    margin-top: 4px;
  }
}
.futoukou002-read_item_img img {
  width: 100%;
  height: auto;
}
.futoukou002-feature {
  padding-top: 60px;
  padding-bottom: 52px;
  overflow-x: hidden;
}
@media (min-width: 960px) {
  .futoukou002-feature {
    padding-left: calc(50% - var(--width-desktopHD) / 2);
    padding-right: calc(50% - var(--width-desktopHD) / 2);
  }
}
@media (max-width: 767px) {
  .futoukou002-feature {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
.futoukou002-feature_maintitle {
  color: #e6003d;
}
.futoukou002-feature_maintitle .border {
  padding: 10px 0 2px;
  border-top: 1px solid #e6003d;
  border-bottom: 1px solid #e6003d;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .futoukou002-feature_maintitle .border {
    padding: 2px 0 0px;
    font-size: 16px;
  }
}
.futoukou002-feature_maintitle strong {
  font-size: 50px;
  margin-top: 7px;
  display: block;
  text-align: center;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .futoukou002-feature_maintitle strong {
    font-size: 24px;
    margin-top: -2px;
  }
}
.futoukou002-feature_maintitle .number {
  font-size: 80px;
}
@media (max-width: 767px) {
  .futoukou002-feature_maintitle .number {
    font-size: 36px;
  }
}
.futoukou002-feature_list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .futoukou002-feature_list {
    gap: 40px;
    margin-top: 23px;
  }
}
.futoukou002-feature_item {
  display: flex;
  flex-direction: column;
  gap: 53px;
}
@media (max-width: 767px) {
  .futoukou002-feature_item {
    border: unset;
    padding-left: 16px;
    padding-right: 16px;
    gap: 23px;
    padding-bottom: unset;
  }
}
.futoukou002-feature_item:nth-of-type(1) .futoukou002-feature_title::after {
  background-image: url(../images/futoukou002/point1.png);
}
.futoukou002-feature_item:nth-of-type(1) .futoukou002-feature_texts {
  padding-top: 65px;
}
@media (max-width: 767px) {
  .futoukou002-feature_item:nth-of-type(1) .futoukou002-feature_texts {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  .futoukou002-feature_item:nth-of-type(1) .futoukou002-feature_header {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .futoukou002-feature_item:nth-of-type(2) {
    margin-bottom: -10px;
  }
}
.futoukou002-feature_item:nth-of-type(2) .futoukou002-feature_title::after {
  background-image: url(../images/futoukou002/point2.png);
  top: -53px;
}
@media (max-width: 767px) {
  .futoukou002-feature_item:nth-of-type(2) .futoukou002-feature_title::after {
    top: 50%;
  }
}
.futoukou002-feature_item:nth-of-type(2) .futoukou002-feature_texts {
  padding-top: 52px;
}
@media (max-width: 767px) {
  .futoukou002-feature_item:nth-of-type(2) .futoukou002-feature_texts {
    padding-top: unset;
  }
}
.futoukou002-feature_item:nth-of-type(3) .futoukou002-feature_title::after {
  background-image: url(../images/futoukou002/point3.png);
  top: -75px;
}
@media (max-width: 767px) {
  .futoukou002-feature_item:nth-of-type(3) .futoukou002-feature_title::after {
    top: 50%;
  }
}
.futoukou002-feature_item:nth-of-type(3) .futoukou002-feature_texts {
  padding-top: 78px;
}
@media (max-width: 767px) {
  .futoukou002-feature_item:nth-of-type(3) .futoukou002-feature_texts {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  .futoukou002-feature_item:nth-of-type(3) .futoukou002-feature_image {
    margin-top: 22px;
    margin-bottom: -3px;
  }
}
.futoukou002-feature_header {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .futoukou002-feature_header {
    gap: unset;
    flex-direction: column-reverse;
  }
}
.futoukou002-feature_image {
  width: 37.5%;
  flex: unset;
}
@media (max-width: 767px) {
  .futoukou002-feature_image {
    width: 100%;
    margin-top: 30px;
  }
}
.futoukou002-feature_image img {
  width: 100%;
  height: auto;
}
.futoukou002-feature_title {
  font-size: 40px;
  line-height: 130%;
  font-weight: 700;
  position: relative;
}
@media (max-width: 767px) {
  .futoukou002-feature_title {
    font-size: 20px;
    padding-left: 94px;
  }
}
.futoukou002-feature_title::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: -63px;
  width: 158px;
  height: 130px;
  z-index: -1;
}
@media (max-width: 767px) {
  .futoukou002-feature_title::after {
    right: unset;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 79px;
    height: 65px;
  }
}
.futoukou002-feature_texts {
  width: 57.5%;
}
@media (max-width: 767px) {
  .futoukou002-feature_texts {
    width: 100%;
  }
}
.futoukou002-feature_description {
  margin-top: 10px;
  font-size: 16px;
  line-height: 150%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .futoukou002-feature_description {
    font-size: 14px;
    line-height: 150%;
    margin-top: 18px;
  }
}
.futoukou002-feature_planner {
  display: flex;
  gap: 24px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .futoukou002-feature_planner {
    flex-direction: column;
    gap: 16px;
  }
}
.futoukou002-feature_planner_item {
  width: calc(50% - 39px);
  min-height: 347px;
  background-color: #F9F9F9;
  border-radius: 16px;
  padding: 30px 30px 22px;
}
@media (max-width: 767px) {
  .futoukou002-feature_planner_item {
    width: 100%;
    padding: 30px 20px 22px;
    min-height: unset;
  }
}
.futoukou002-feature_planner_item.-color {
  background-color: #FFF5F5;
}
.futoukou002-feature_planner_item.-color .futoukou002-feature_planner_caption {
  color: #E6003D;
}
.futoukou002-feature_planner_caption {
  font-size: 20px;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
  height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .futoukou002-feature_planner_caption {
    height: auto;
  }
}
.futoukou002-feature_planner_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.futoukou002-feature_planner_img {
  margin: 16px auto 0;
  text-align: center;
  max-width: 250px;
}
.futoukou002-feature_planner_img img {
  width: 100%;
  height: auto;
}
.futoukou002-feature_planner_img.-img1 {
  margin: 39px auto 0;
}
@media (max-width: 767px) {
  .futoukou002-feature_planner_img.-img1 {
    margin: 17px auto 0;
  }
}
.futoukou002-feature_planner_img.-img2 {
  margin: 14px auto 0;
}
.futoukou002-feature_planner_img.-img3 {
  margin: 15px auto 7px;
  max-width: 297px;
}
.futoukou002-feature_planner_img.-img4 {
  margin: 15px auto 10px;
  max-width: 297px;
}
@media (max-width: 767px) {
  .futoukou002-feature_planner_text {
    font-size: 14px;
    list-style: 150%;
  }
}
.futoukou002-reviews {
  padding-top: 65px;
  padding-bottom: 60px;
}
@media (max-width: 959px) {
  .futoukou002-reviews {
    padding-bottom: 50px;
  }
}
.futoukou002-reviews .section_header {
  gap: 10px;
}
.futoukou002-reviews_listwrap {
  max-width: 1000px;
  margin: 54px auto 0;
}
@media (max-width: 959px) {
  .futoukou002-reviews_listwrap {
    overflow-x: scroll;
    overflow-y: hidden;
    margin: -15px 16px 0;
    padding: 50px 0 23px;
  }
  .futoukou002-reviews_listwrap::-webkit-scrollbar {
    height: 5px;
  }
  .futoukou002-reviews_listwrap::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .futoukou002-reviews_listwrap::-webkit-scrollbar-thumb {
    background: #999999;
  }
  .futoukou002-reviews_listwrap::-webkit-scrollbar-thumb:hover {
    background: #999999;
  }
}
.futoukou002-reviews_list {
  display: flex;
  gap: 46px;
  margin: 0 auto;
}
@media (max-width: 959px) {
  .futoukou002-reviews_list {
    width: 560px;
    gap: 16px;
    max-width: unset;
  }
}
.futoukou002-reviews_item {
  width: calc(50% - 23px);
  background-color: #fff;
  border-radius: 20px;
  padding: 70px 30px 40px;
}
@media (max-width: 959px) {
  .futoukou002-reviews_item {
    width: calc(50% - 8px);
    padding: 70px 15px 40px;
  }
}
.futoukou002-reviews_title {
  font-size: 24px;
  line-height: 130%;
  font-weight: 700;
  margin-top: 24px;
}
@media (max-width: 959px) {
  .futoukou002-reviews_title {
    font-size: 16px;
    margin-top: 13px;
  }
}
.futoukou002-reviews_text {
  font-size: 16px;
  line-height: 150%;
  margin-top: 14px;
}
@media (max-width: 959px) {
  .futoukou002-reviews_text {
    font-size: 14px;
    margin-top: 9px;
  }
}
.futoukou002-reviews_img {
  max-width: 110px;
  margin: -140px auto 0;
}
@media (max-width: 959px) {
  .futoukou002-reviews_img {
    max-width: 90px;
    margin: -120px auto 0;
  }
}
.futoukou002-reviews_img img {
  width: 100%;
  height: auto;
}
.futoukou002-reviews_small {
  font-size: 10px;
  line-height: 150%;
  color: #999999;
  display: block;
  margin-top: 25px;
}
@media (max-width: 959px) {
  .futoukou002-reviews_small {
    margin-left: 16px;
  }
}
.futoukou002-support {
  padding-top: 63px;
  padding-bottom: 92px;
}
@media (max-width: 959px) {
  .futoukou002-support {
    padding-top: 33px;
    padding-bottom: 52px;
  }
}
.futoukou002-support .section_title {
  font-size: 40px;
  line-height: 130%;
  font-weight: 700;
  color: #E6003D;
  text-align: center;
  margin-bottom: 18px !important;
}
@media (max-width: 767px) {
  .futoukou002-support .section_title {
    font-size: 24px;
  }
}
.futoukou002-support_read {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .futoukou002-support_read {
    font-size: 14px;
    line-height: 150%;
    margin: -7px auto 0;
  }
}
.futoukou002-support_thumb {
  display: block;
  margin: 37px auto 0;
  max-width: 1000px;
}
@media (max-width: 767px) {
  .futoukou002-support_thumb {
    position: relative;
    z-index: -1;
    margin: 0 -16px -33px;
  }
}
.futoukou002-support_thumb img {
  width: 100%;
  height: auto;
}
.futoukou002-support_read {
  font-size: 14px;
}
@media (min-width: 768px) {
  .futoukou002-support_read {
    font-size: 16px;
  }
}
.futoukou002-pickup {
  background-color: #E6003D;
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
}
@media (max-width: 959px) {
  .futoukou002-pickup {
    padding: 50px 20px 30px;
  }
}
.futoukou002-pickup_maintitle {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  top: -39px;
}
@media (max-width: 959px) {
  .futoukou002-pickup_maintitle {
    top: -26px;
  }
}
.futoukou002-pickup_maintitle h2 {
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #E6003D;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 959px) {
  .futoukou002-pickup_maintitle h2 {
    font-size: 18px;
    top: 10px;
  }
}
@media (max-width: 959px) {
  .futoukou002-pickup_maintitle svg {
    width: 260px;
    height: 57px;
  }
}
.futoukou002-pickup_list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 959px) {
  .futoukou002-pickup_list {
    gap: 30px;
  }
}
.futoukou002-pickup_item {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 6%;
  padding: 47px 45px 45px;
}
@media (max-width: 959px) {
  .futoukou002-pickup_item {
    flex-direction: column;
    padding: 30px 20px 28px;
  }
}
.futoukou002-pickup_img {
  width: 45%;
}
@media (max-width: 959px) {
  .futoukou002-pickup_img {
    width: 100%;
    margin-top: 20px;
  }
  .futoukou002-pickup_img.-img1 {
    margin: 20px auto 0;
  }
  .futoukou002-pickup_img.-img1 img {
    width: 100%;
  }
}
.futoukou002-pickup_img img {
  width: 100%;
  height: auto;
}
.futoukou002-pickup_contents {
  width: 49%;
}
@media (max-width: 959px) {
  .futoukou002-pickup_contents {
    width: 100%;
  }
}
@media (max-width: 959px) {
  .futoukou002-pickup_title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.futoukou002-pickup_title_sm {
  font-size: 16px;
  color: #E6003D;
  line-height: 130%;
  position: relative;
  z-index: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 959px) {
  .futoukou002-pickup_title_sm {
    font-size: 14px;
  }
}
.futoukou002-pickup_title_sm::after {
  position: absolute;
  content: "";
  background: #FCFF6D;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.futoukou002-pickup_title_lg {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 959px) {
  .futoukou002-pickup_title_lg {
    margin-top: 6px;
    gap: 6px;
  }
}
.futoukou002-pickup_title_free {
  width: 55px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFEAEA;
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 1;
  color: #E6003D;
}
@media (max-width: 959px) {
  .futoukou002-pickup_title_free {
    width: 50px;
    height: 26px;
    font-size: 14px;
    margin-left: -14px;
  }
}
.futoukou002-pickup_text {
  font-size: 16px;
  line-height: 150%;
  margin-top: 16px;
}
@media (max-width: 959px) {
  .futoukou002-pickup_text {
    font-size: 14px;
    line-height: 160%;
    margin-top: 14px;
  }
}
.futoukou002-pickup_text span {
  color: #E6003D;
  font-weight: 700;
}
.futoukou002 .sp_only {
  display: none;
}
@media (max-width: 767px) {
  .futoukou002 .sp_only {
    display: block;
  }
}
.futoukou002 .pc_only {
  display: block;
}
@media (max-width: 767px) {
  .futoukou002 .pc_only {
    display: none;
  }
}
.futoukou002 .pc_only--flex {
  display: flex;
}
@media (max-width: 767px) {
  .futoukou002 .pc_only--flex {
    display: none;
  }
}
.futoukou002 .hero_thumb {
  margin-top: 10px;
}
.futoukou002 .hero_aside_item {
  font-size: 10px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.futoukou002 .flow {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .futoukou002 .flow {
    padding-top: 48px;
  }
}
@media (max-width: 767px) {
  .futoukou002 .futoukou002-reviews {
    padding-top: 43px;
  }
  .futoukou002 .section_caption {
    font-size: 16px;
  }
}

.eiken .cta.eiken-cta {
  padding-top: 20px;
}
.eiken .section_title {
  line-height: 1.4;
  margin-bottom: 35px;
  display: block;
}
@media (min-width: 960px) {
  .eiken .section_title {
    margin-bottom: 32px;
  }
}
.eiken .section_title.-color1 {
  color: #10385E;
}
@media (min-width: 960px) {
  .eiken .section_title sup {
    font-size: 17px;
  }
}
.eiken .section_title_2 {
  font-size: 17px;
}
.eiken .section_title_2 strong {
  font-size: 37px;
  margin-top: -21px;
}
.eiken .section_title_2 .number {
  font-size: 55px;
}
.eiken .hero {
  margin-bottom: 0;
  padding-top: 0;
}
@media (min-width: 768px) {
  .eiken .hero {
    max-width: var(--width-desktopHD);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    background-position: 100% 50%;
  }
}
.eiken .hero picture {
  max-width: 1200px;
}
@media (min-width: 768px) {
  .eiken .hero picture {
    margin-top: 15px;
  }
}
.eiken .hero picture img {
  width: 100%;
  height: auto;
}
.eiken .hero_aside_item::before {
  content: none;
}
.eiken .hero_aside_item {
  padding-left: 2em;
  text-indent: -2em;
}
.eiken .feature_list_item_2 {
  width: auto;
}
.eiken .feature_list_item {
  padding-left: 0;
  padding-right: 0;
  margin-left: 16px;
  margin-right: 16px;
}
.eiken_comment {
  margin: 0 auto 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  color: #fff;
  border-radius: 36px;
  font-weight: 700;
  font-size: 20px;
  width: 276px;
  height: 45px;
  position: relative;
}
.eiken_comment::after {
  position: absolute;
  content: url(../images/abroad/comment.svg);
  bottom: -22px;
  left: 44px;
}
.eiken_comment.-color1 {
  background: #10385E;
}
.eiken_comment.-color1::after {
  position: absolute;
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #10385E;
  bottom: -12px;
  left: 44px;
  width: 16px;
  height: 20px;
}
.eiken_comment_2 {
  margin: 0 auto 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: #fff;
  border-radius: 36px;
  font-weight: 700;
  font-size: 14px;
  width: 142px;
  height: 36px;
  position: relative;
}
.eiken_comment_2::after {
  position: absolute;
  content: url(../images/abroad/comment_2.svg);
  bottom: -22px;
  left: 44px;
}
@media (min-width: 960px) {
  .eiken_comment_2 {
    height: 47px;
    font-size: 20px;
    width: 276px;
  }
}
.eiken_table {
  display: block;
  margin: 0 auto 0;
  max-width: 1008px;
  padding: 0 24px;
}
.eiken_table img {
  width: 100%;
  height: auto;
}
.eiken_curriculum {
  max-width: none;
  background: #E0ECF2;
  padding: 20px 17px 20px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .eiken_curriculum {
    max-width: 1023px;
    padding: 30px 17px 57px;
  }
}
.eiken_curriculum_title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 17px;
}
@media (min-width: 960px) {
  .eiken_curriculum_title {
    margin-bottom: 35px;
  }
}
.eiken_curriculum_title_2 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: var(--color-red);
  margin-bottom: 17px;
}
@media (min-width: 960px) {
  .eiken_curriculum_title_2 {
    margin-bottom: 35px;
  }
}
.eiken_curriculum_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -7px;
  margin-bottom: -7px;
}
@media (min-width: 960px) {
  .eiken_curriculum_list {
    margin-left: -38px;
    margin-bottom: -22px;
  }
}
.eiken_curriculum_item {
  color: var(--color-blue);
  background: #fff;
  border: 2px solid;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  width: 47%;
  height: auto;
  margin-left: 7px;
  margin-bottom: 7px;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.2;
}
@media (min-width: 960px) {
  .eiken_curriculum_item {
    border-radius: 8px;
    padding: 10px 35px 12px;
    border: 2px none;
    font-size: 20px;
    width: 29%;
    height: 52px;
    margin-left: 38px;
    margin-bottom: 22px;
  }
  .eiken_curriculum_item::before {
    position: absolute;
    content: url(../images/overseas/curriculum.svg);
    top: -1px;
    left: 7px;
  }
}
.eiken_curriculum_item2 {
  color: var(--color-red);
  background: #fff;
  border: 2px solid;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  width: 47%;
  height: auto;
  margin-left: 7px;
  margin-bottom: 7px;
  padding: 8px 10px 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.2;
}
@media (min-width: 960px) {
  .eiken_curriculum_item2 {
    border-radius: 8px;
    padding: 10px 35px 12px;
    border: 2px none;
    font-size: 20px;
    width: 29%;
    height: 52px;
    margin-left: 38px;
    margin-bottom: 22px;
  }
  .eiken_curriculum_item2::before {
    position: absolute;
    content: url(../images/futoukou/curriculum.svg);
    top: -1px;
    left: 7px;
  }
}
.eiken_curriculum_2 {
  max-width: none;
  background: rgba(230, 0, 61, 0.1);
  padding: 20px 17px 20px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .eiken_curriculum_2 {
    max-width: 1023px;
    padding: 30px 17px 57px;
  }
}
.eiken_text {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .eiken_text {
    font-size: 20px;
    margin-top: 54px;
  }
}
.eiken_text2 {
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .eiken_text2 {
    font-size: 20px;
    margin-top: 54px;
  }
}
.eiken_text2 span {
  display: block;
}
.eiken_text2 span + span {
  margin-top: 1em;
}
.eiken_text2 strong {
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.eiken_text2 strong::after {
  position: absolute;
  content: "";
  background: #FFF95D;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  z-index: -1;
}
.eiken_thumb {
  margin: 0 auto 0;
  max-width: 1008px;
  padding: 0 24px;
}
.eiken_thumb img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .eiken_2col {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
  }
  .eiken_2col .eiken_thumb {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    max-width: 50%;
  }
  .eiken_2col .eiken_text2 {
    text-align: left;
    width: 50%;
    margin-top: unset;
  }
}
.eiken__program {
  padding: 40px 0px 0px;
  margin-bottom: -20px;
}
@media (min-width: 960px) {
  .eiken__program {
    padding: 20px 0;
    margin-bottom: unset;
  }
}
.eiken__program-inner {
  background-color: #fff;
  border: 1px solid #E6003D;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px 10px 10px 10px;
}
.eiken__program-header {
  text-align: center;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.eiken__program-header .program-catch {
  display: block;
  width: 190px;
}
.eiken__program-header .program-catch img {
  width: 100%;
  height: auto;
}
.eiken__program-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.eiken__program-title {
  background-color: #E6003D;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: 21px 8px 10px;
  border-radius: 10px 10px 0 0;
  letter-spacing: 0.01em;
}
.eiken__program-title span {
  font-size: 14px;
}
.eiken__program-title sup {
  font-size: 12px;
}
@media (min-width: 960px) {
  .eiken__program-title {
    font-size: 32px;
    padding: 17px 30px 1px;
  }
  .eiken__program-title span {
    font-size: 20px;
  }
  .eiken__program-title sup {
    font-size: 20px;
  }
}
.eiken__program-image picture, .eiken__program-image img {
  max-width: 100%;
  height: auto;
}
.eiken__program-content {
  background-color: #fff;
  padding: 20px 15px 24px;
  border-radius: 10px 10px 10px 10px;
}
@media (min-width: 960px) {
  .eiken__program-content {
    max-width: 415px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px 0;
  }
}
.eiken__program-content p {
  font-size: 13px;
  line-height: 1.3;
  margin-top: 13px;
}
@media (min-width: 960px) {
  .eiken__program-content p {
    margin-top: 15px;
    font-size: 16px;
  }
}
.eiken__program-content strong {
  font-size: 13px;
  font-weight: 600;
  color: #E6003D;
  line-height: 1.3;
}
@media (min-width: 960px) {
  .eiken__program-content strong {
    font-size: 16px;
  }
}
.eiken__program-content small {
  margin-top: 12px;
  font-size: 9px;
  line-height: 1.3;
  display: block;
}
@media (min-width: 960px) {
  .eiken__program-content small {
    margin-top: 12px;
    line-height: 1.2;
  }
}

.eiken_container {
  max-width: 1160px;
  margin-top: 8px;
}

@media screen and (max-width: 1023px) {
  .eiken_container {
    width: 100%;
    margin-top: 8px;
    padding: 0px 15px;
  }
}
.eiken_counter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  padding: 8px 0;
  background: linear-gradient(180deg, #ff799d 0%, #e7003e 100%);
  border: solid #fff 2px;
  border-radius: 6px;
  text-align: center;
  font-size: 19px;
  font-weight: 540;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .eiken_counter {
    font-size: 16px;
  }
}
.upchar {
  vertical-align: super;
  font-size: 12px;
}

.upchar {
  vertical-align: super;
  font-size: 12px;
}

.madeato {
  font-size: 14px;
}

#remaining-day-count {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  padding: 0 4px;
}

.remaining-day-count-num {
  color: #e6003d;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  background: #fff;
  border-radius: 3px;
  padding: 3px 2px;
  text-shadow: none;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 1023px) {
  .remaining-day-count-num {
    font-size: 28px;
  }
}
.eiken_note {
  margin-top: 8px;
  font-size: 8px;
}

.eiken002 {
  overflow-x: hidden;
}
.eiken002-worries {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .eiken002-worries {
    padding-top: 28px;
    padding-bottom: 26px;
    position: relative;
    z-index: 2;
    margin-top: -20px;
  }
}
.eiken002-worries_title {
  font-size: 32px;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
  color: #E6003D;
}
.eiken002-worries_title sup {
  font-size: 20px;
}
@media (max-width: 767px) {
  .eiken002-worries_title {
    font-size: 22px;
  }
  .eiken002-worries_title sup {
    font-size: 11px;
  }
}
.eiken002-worries_contents {
  display: flex;
  gap: 24px;
  max-width: 1000px;
  margin: 35px auto 0;
}
@media (max-width: 767px) {
  .eiken002-worries_contents {
    flex-direction: column;
    margin: 20px auto 0;
    gap: 20px;
  }
}
.eiken002-worries_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eiken002-worries_item {
  background-color: #fff;
  border-radius: 16px;
  width: calc(50% - 39px);
  padding: 34px 32px 30px;
}
@media (max-width: 767px) {
  .eiken002-worries_item {
    width: 100%;
    padding: 20px 19px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.eiken002-worries_caption {
  font-size: 20px;
  line-height: 130%;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 767px) {
  .eiken002-worries_caption {
    margin-top: 12px;
  }
}
.eiken002-worries_caption span {
  color: #E6003D;
}
.eiken002-worries_text {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  margin: 0 -2px;
}
@media (max-width: 767px) {
  .eiken002-worries_text {
    font-size: 14px;
    line-height: 150%;
    text-align: left;
  }
}
.eiken002-worries_text span {
  color: #E6003D;
  font-weight: 700;
}
.eiken002-worries_img.-img1 {
  max-width: 390px;
  margin: -5px auto 6px;
}
@media (max-width: 767px) {
  .eiken002-worries_img.-img1 {
    margin: 19px -1px 6px;
  }
}
.eiken002-worries_img.-img2 {
  max-width: 400px;
  margin: 14px auto 10px;
}
@media (max-width: 767px) {
  .eiken002-worries_img.-img2 {
    margin: 19px -13px 21px;
  }
}
.eiken002-worries_img img {
  width: 100%;
  height: auto;
}
.eiken002-feature {
  padding-top: 60px;
  padding-bottom: 62px;
}
@media (min-width: 960px) {
  .eiken002-feature {
    padding-left: calc(50% - var(--width-desktopHD) / 2);
    padding-right: calc(50% - var(--width-desktopHD) / 2);
  }
}
@media (max-width: 767px) {
  .eiken002-feature {
    padding-top: 40px;
    padding-bottom: 0px;
    margin-bottom: -12px;
  }
}
.eiken002-feature_maintitle {
  color: #e6003d;
}
@media (max-width: 767px) {
  .eiken002-feature_maintitle {
    padding: 0 16px;
  }
}
.eiken002-feature_maintitle .border {
  padding: 10px 0 2px;
  border-top: 1px solid #e6003d;
  border-bottom: 1px solid #e6003d;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
}
.eiken002-feature_maintitle .border sup {
  font-size: 18px;
}
@media (max-width: 767px) {
  .eiken002-feature_maintitle .border {
    padding: 2px 0 0px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  .eiken002-feature_maintitle .border sup {
    font-size: 12px;
  }
}
.eiken002-feature_maintitle strong {
  font-size: 50px;
  margin-top: 7px;
  display: block;
  text-align: center;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .eiken002-feature_maintitle strong {
    font-size: 24px;
    margin-top: -2px;
  }
}
.eiken002-feature_maintitle .number {
  font-size: 80px;
}
@media (max-width: 767px) {
  .eiken002-feature_maintitle .number {
    font-size: 36px;
  }
}
.eiken002-feature_list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .eiken002-feature_list {
    gap: 45px;
    margin-top: 23px;
  }
}
.eiken002-feature_item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 767px) {
  .eiken002-feature_item {
    border: unset;
    padding-left: 16px;
    padding-right: 16px;
    gap: 26px;
    padding-bottom: unset;
  }
}
.eiken002-feature_item:nth-of-type(1) .eiken002-feature_title::after {
  background-image: url(../images/eiken002/point1.png);
}
.eiken002-feature_item:nth-of-type(1) .eiken002-feature_texts {
  padding-top: 70px;
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(1) .eiken002-feature_texts {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(1) .eiken002-feature_header {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(2) {
    margin-bottom: -10px;
  }
}
.eiken002-feature_item:nth-of-type(2) .eiken002-feature_title::after {
  background-image: url(../images/eiken002/point2.png);
  top: -53px;
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(2) .eiken002-feature_title::after {
    top: 50%;
  }
}
.eiken002-feature_item:nth-of-type(2) .eiken002-feature_texts {
  padding-top: 21px;
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(2) .eiken002-feature_texts {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(2) .eiken002-feature_image {
    margin-top: 20px;
  }
}
.eiken002-feature_item:nth-of-type(3) .eiken002-feature_title::after {
  background-image: url(../images/eiken002/point3.png);
  top: -75px;
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(3) .eiken002-feature_title::after {
    top: 50%;
  }
}
.eiken002-feature_item:nth-of-type(3) .eiken002-feature_texts {
  padding-top: 70px;
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(3) .eiken002-feature_texts {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  .eiken002-feature_item:nth-of-type(3) .eiken002-feature_image {
    margin-top: 28px;
  }
}
.eiken002-feature_header {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .eiken002-feature_header {
    gap: unset;
    flex-direction: column-reverse;
  }
}
.eiken002-feature_image {
  width: 37.5%;
  flex: unset;
}
@media (max-width: 767px) {
  .eiken002-feature_image {
    width: 100%;
    margin-top: 30px;
  }
}
.eiken002-feature_image img {
  width: 100%;
  height: auto;
}
.eiken002-feature_title {
  font-size: 40px;
  line-height: 130%;
  font-weight: 700;
  position: relative;
}
@media (max-width: 767px) {
  .eiken002-feature_title {
    font-size: 20px;
    padding-left: 94px;
  }
}
.eiken002-feature_title sup {
  font-size: 22px;
}
@media (max-width: 767px) {
  .eiken002-feature_title sup {
    font-size: 12px;
  }
}
.eiken002-feature_title::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: -63px;
  width: 158px;
  height: 130px;
  z-index: -1;
}
@media (max-width: 767px) {
  .eiken002-feature_title::after {
    right: unset;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 79px;
    height: 65px;
  }
}
.eiken002-feature_texts {
  width: 57.5%;
}
@media (max-width: 767px) {
  .eiken002-feature_texts {
    width: 100%;
  }
}
.eiken002-feature_description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 150%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .eiken002-feature_description {
    font-size: 14px;
    line-height: 150%;
    margin-top: 16px;
  }
}
.eiken002-feature_description span {
  position: relative;
  display: inline-block;
  padding-right: 8px;
}
.eiken002-feature_description sup {
  position: absolute;
  right: 0;
  top: -4px;
}
.eiken002-feature_ex {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex {
    padding-bottom: unset;
    margin-bottom: -16px;
  }
}
.eiken002-feature_ex_title {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #E6003D;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_title {
    font-size: 19px;
  }
}
.eiken002-feature_ex_title::before, .eiken002-feature_ex_title::after {
  content: "";
  flex-grow: 1;
  background-color: #E6003D;
  height: 1px;
}
.eiken002-feature_ex_list {
  display: flex;
  gap: 13px;
  margin-top: 14px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.eiken002-feature_ex_item {
  width: calc(25% - 9.75px);
  background-color: #FFF5F5;
  padding: 21px 19px 19px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_item {
    width: calc(50% - 5px);
    padding: 12px 12px 15px;
  }
}
.eiken002-feature_ex_item_title {
  font-size: 20px;
  line-height: 130%;
  color: #E6003D;
  position: relative;
  padding-left: 28px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_item_title {
    font-size: 14px;
    padding-left: 18px;
  }
}
.eiken002-feature_ex_item_title::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_item_title::after {
    width: 17px;
    height: 17px;
  }
}
.eiken002-feature_ex_item_title.-title1::after {
  background-image: url("../images/eiken002/ex_icon1.svg");
}
.eiken002-feature_ex_item_title.-title2 {
  margin-left: -8px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_item_title.-title2 {
    margin-left: unset;
  }
}
.eiken002-feature_ex_item_title.-title2::after {
  background-image: url("../images/eiken002/ex_icon2.svg");
}
.eiken002-feature_ex_item_title.-title3::after {
  background-image: url("../images/eiken002/ex_icon3.svg");
}
.eiken002-feature_ex_item_title.-title4::after {
  background-image: url("../images/eiken002/ex_icon4.svg");
}
.eiken002-feature_ex_checklist {
  font-size: 16px;
  line-height: 130%;
  font-weight: 700;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_checklist {
    font-size: 10px;
    margin-top: 3px;
  }
}
.eiken002-feature_ex_checklist li {
  position: relative;
  padding-left: 19px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_checklist li {
    padding-left: 11px;
  }
}
.eiken002-feature_ex_checklist li::after {
  position: absolute;
  content: "";
  background-image: url("../images/eiken002/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: 2px;
  top: 4px;
  width: 16px;
  height: 12px;
}
@media (max-width: 767px) {
  .eiken002-feature_ex_checklist li::after {
    width: 12px;
    height: 8px;
    left: 0px;
    top: 2px;
  }
}
.eiken002-difference {
  padding-top: 42px;
  padding-bottom: unset;
}
@media (max-width: 767px) {
  .eiken002-difference {
    padding-top: 0px;
    padding-bottom: unset;
    margin-top: -9px;
  }
}
.eiken002-difference_title {
  font-size: 40px;
  line-height: 134%;
  font-weight: 700;
  color: #E6003D;
  text-align: center;
}
@media (max-width: 767px) {
  .eiken002-difference_title {
    font-size: 24px;
    line-height: 130%;
  }
}
.eiken002-difference_title span {
  position: relative;
  padding-right: 18px;
}
@media (max-width: 767px) {
  .eiken002-difference_title span {
    padding-right: 13px;
  }
}
.eiken002-difference_title span sup {
  position: absolute;
  right: -1px;
  top: -11px;
  font-size: 26px;
}
@media (max-width: 767px) {
  .eiken002-difference_title span sup {
    font-size: 16px;
    top: -7px;
  }
}
.eiken002-difference_thumb {
  display: block;
  max-width: 1000px;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .eiken002-difference_thumb {
    margin: 18px auto 0;
  }
}
.eiken002-difference_thumb img {
  width: 100%;
  height: auto;
}
.eiken002-plan_wrap {
  display: flex;
  gap: 6%;
  padding-top: 90px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .eiken002-plan_wrap {
    flex-direction: column;
    padding-top: 19px;
  }
}
.eiken002-plan_thumb {
  width: 35%;
}
@media (max-width: 767px) {
  .eiken002-plan_thumb {
    width: 100%;
    margin-top: 17px;
  }
}
.eiken002-plan_thumb img {
  width: 100%;
  height: auto;
}
.eiken002-plan_contents {
  width: 59%;
  padding-top: 6px;
}
@media (max-width: 767px) {
  .eiken002-plan_contents {
    width: 100%;
  }
}
.eiken002-plan_title {
  font-size: 40px;
  line-height: 130%;
  font-weight: 700;
  color: #E6003D;
}
@media (max-width: 767px) {
  .eiken002-plan_title {
    font-size: 24px;
    text-align: center;
  }
}
.eiken002-plan_title span {
  position: relative;
  padding-right: 18px;
}
@media (max-width: 767px) {
  .eiken002-plan_title span {
    padding-right: 14px;
  }
}
.eiken002-plan_title span sup {
  position: absolute;
  right: -1px;
  top: -11px;
  font-size: 26px;
}
@media (max-width: 767px) {
  .eiken002-plan_title span sup {
    font-size: 16px;
    top: -7px;
  }
}
.eiken002-plan_text {
  font-size: 16px;
  line-height: 150%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .eiken002-plan_text {
    font-size: 14px;
    margin-top: 15px;
  }
}
.eiken002-plan_text span {
  position: relative;
  padding-right: 6px;
}
.eiken002-plan_text span sup {
  position: absolute;
  right: -1px;
  top: -7px;
}
.eiken002-support {
  padding-top: 46px;
  padding-bottom: 42px;
}
@media (max-width: 767px) {
  .eiken002-support {
    padding-top: 33px;
    padding-bottom: 0px;
    margin-bottom: -50px;
  }
}
.eiken002-support .section_title {
  font-size: 40px;
  line-height: 130%;
  font-weight: 700;
  color: #E6003D;
  text-align: center;
  margin-bottom: 21px !important;
}
@media (max-width: 767px) {
  .eiken002-support .section_title {
    font-size: 24px;
  }
}
.eiken002-support_read {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media (max-width: 767px) {
  .eiken002-support_read {
    font-size: 14px;
    line-height: 150%;
    margin: -7px auto 0;
    text-align: left;
  }
}
.eiken002-support_thumb {
  display: block;
  margin: 37px auto 0;
  max-width: 1000px;
}
@media (max-width: 767px) {
  .eiken002-support_thumb {
    position: relative;
    z-index: -1;
    margin: 0 -16px -33px;
  }
}
.eiken002-support_thumb img {
  width: 100%;
  height: auto;
}
.eiken002-support_read {
  font-size: 14px;
}
@media (min-width: 768px) {
  .eiken002-support_read {
    font-size: 16px;
  }
}
.eiken002-pickup {
  background-color: #E6003D;
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .eiken002-pickup {
    padding: 50px 20px 30px;
    margin-top: 10px;
  }
}
.eiken002-pickup_maintitle {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  top: -39px;
}
@media (max-width: 767px) {
  .eiken002-pickup_maintitle {
    top: -26px;
  }
}
.eiken002-pickup_maintitle h2 {
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #E6003D;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .eiken002-pickup_maintitle h2 {
    font-size: 18px;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .eiken002-pickup_maintitle svg {
    width: 260px;
    height: 57px;
  }
}
.eiken002-pickup_list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .eiken002-pickup_list {
    gap: 30px;
  }
}
.eiken002-pickup_item {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 6%;
  padding: 47px 45px 42px;
}
@media (max-width: 767px) {
  .eiken002-pickup_item {
    flex-direction: column;
    padding: 30px 20px 28px;
  }
}
.eiken002-pickup_img {
  width: 45%;
}
@media (max-width: 767px) {
  .eiken002-pickup_img {
    width: 100%;
    margin-top: 20px;
  }
  .eiken002-pickup_img.-img1 {
    margin: 20px auto 0;
  }
  .eiken002-pickup_img.-img1 img {
    width: 100%;
  }
}
.eiken002-pickup_img img {
  width: 100%;
  height: auto;
}
.eiken002-pickup_contents {
  width: 49%;
}
@media (max-width: 767px) {
  .eiken002-pickup_contents {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .eiken002-pickup_title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.eiken002-pickup_title_sm {
  font-size: 16px;
  color: #E6003D;
  line-height: 130%;
  position: relative;
  z-index: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .eiken002-pickup_title_sm {
    font-size: 14px;
  }
}
.eiken002-pickup_title_sm::after {
  position: absolute;
  content: "";
  background: #FCFF6D;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.eiken002-pickup_title_lg {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .eiken002-pickup_title_lg {
    margin-top: 6px;
    gap: 6px;
  }
}
.eiken002-pickup_title_free {
  width: 55px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFEAEA;
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 1;
  color: #E6003D;
}
@media (max-width: 767px) {
  .eiken002-pickup_title_free {
    width: 50px;
    height: 26px;
    font-size: 14px;
    margin-left: -14px;
  }
}
.eiken002-pickup_text {
  font-size: 16px;
  line-height: 150%;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .eiken002-pickup_text {
    font-size: 14px;
    line-height: 160%;
    margin-top: 14px;
  }
}
.eiken002-pickup_text span {
  color: #E6003D;
  font-weight: 700;
}
.eiken002 .sp_only {
  display: none;
}
@media (max-width: 767px) {
  .eiken002 .sp_only {
    display: block;
  }
}
.eiken002 .pc_only {
  display: block;
}
@media (max-width: 767px) {
  .eiken002 .pc_only {
    display: none;
  }
}
.eiken002 .pc_only--flex {
  display: flex;
}
@media (max-width: 767px) {
  .eiken002 .pc_only--flex {
    display: none;
  }
}
.eiken002 .hero {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .eiken002 .hero {
    margin-bottom: -12px;
  }
}
.eiken002 .hero_read {
  padding-left: 38px;
  padding-top: 12px;
}
.eiken002 .hero_read sup {
  font-size: 20px;
}
@media (max-width: 767px) {
  .eiken002 .hero_read {
    padding-left: 27px;
    padding-top: 14px;
    padding-bottom: 4px;
  }
  .eiken002 .hero_read sup {
    font-size: 14px;
  }
}
.eiken002 .hero_read::before {
  top: 12px;
}
.eiken002 .hero_thumb {
  margin-top: 10px;
  display: block;
}
.eiken002 .hero_aside_item {
  font-size: 10px;
  margin-top: 10px;
  margin-right: 15px;
  margin-left: 15px;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .eiken002 .hero_aside_item {
    font-size: 10px;
    line-height: 150%;
    margin-top: 4px;
    margin-right: 15px;
    margin-left: 32px;
    text-indent: -15px;
  }
}
.eiken002 .cta_lead.eiken002-1 {
  font-size: 32px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.eiken002 .cta_lead.eiken002-1 sup {
  font-size: 22px;
}
@media (max-width: 767px) {
  .eiken002 .cta_lead.eiken002-1 {
    font-size: 20px;
    margin: 0 0 3px 0;
    width: auto;
  }
  .eiken002 .cta_lead.eiken002-1 sup {
    font-size: 12px;
  }
}
.eiken002 .cta_lead.eiken002-2 {
  font-size: 33px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media (max-width: 767px) {
  .eiken002 .cta_lead.eiken002-2 {
    font-size: 20px;
    margin: 0 0 5px 0;
    width: auto;
  }
}
.eiken002 .cta_lead.eiken002-3 {
  font-size: 33px;
  margin: 0 calc(50% - 50vw) 2px;
  width: 100vw;
}
.eiken002 .cta_lead.eiken002-3 .lg {
  font-size: 45px;
}
@media (max-width: 767px) {
  .eiken002 .cta_lead.eiken002-3 {
    font-size: 20px;
    margin: 0 0 2px 0;
    width: auto;
  }
  .eiken002 .cta_lead.eiken002-3 .lg {
    font-size: 28px;
  }
}
.eiken002 .flow {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .eiken002 .flow {
    padding-top: 48px;
  }
}
.eiken002 .flow .section_header {
  margin-bottom: 30px;
}
.eiken002 .faq {
  padding-top: 90px;
  gap: 68px;
}
@media (max-width: 767px) {
  .eiken002 .faq {
    padding-top: 42px;
    gap: 31px;
  }
}
@media (max-width: 767px) {
  .eiken002 .section_caption {
    font-size: 16px;
  }
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding: 40px 16px;
  border: 4px solid var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.02);
}
@media (min-width: 960px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
    border: 8px solid var(--color-primary);
  }
  .contact:not(.contact_sub) {
    max-width: var(--width-desktopHD);
    margin-left: auto;
    margin-right: auto;
  }
}
.contact .section_title {
  color: var(--color-primary);
}
.contact_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
@media (min-width: 960px) {
  .contact_content {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    max-width: 960px;
    margin: 60px auto 0;
  }
}
.contact_contentinner {
  max-width: 510px;
  width: 100%;
}
.contact_image {
  width: 64%;
  height: auto;
}
@media (min-width: 960px) {
  .contact_image {
    position: absolute;
    top: 50%;
    right: 0;
    width: 75%;
    transform: unset;
  }
}
.contact_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 560px;
  height: auto;
  padding: 8px;
  background-color: var(--color-primary);
  border-radius: 8px;
  color: var(--color-inverse);
  font-size: 2.2rem;
  font-weight: bold;
  overflow: hidden;
}
.contact_button::before {
  animation: shine 4s infinite;
}
.contact_button::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
@media (min-width: 960px) {
  .contact_button {
    padding: 24px;
    font-size: 3.2rem;
  }
}
.contact_button:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  opacity: 1;
  transform: translateY(-2px) scale(1.01);
}
.contact_button_small {
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .contact_button_small {
    font-size: 1.6rem;
  }
}
.contact_button-taiken {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 560px;
  height: auto;
  padding: 12px;
  border-radius: 8px;
  background-color: var(--color-primary);
  color: var(--color-inverse);
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 960px) {
  .contact_button-taiken {
    gap: 24px;
    font-size: 2rem;
    padding: 16px;
  }
}
.contact_button-taiken:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
}
.contact_button_icon {
  width: 32px;
  height: 32px;
  color: var(--color-inverse);
}
@media (min-width: 960px) {
  .contact_button_icon {
    width: 40px;
    height: 40px;
  }
}
.contact_button_texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact_tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  font-weight: bold;
  color: var(--color-primary);
  border-radius: 8px;
  border: 2px solid var(--color-primary);
  padding: 16px;
}
@media (min-width: 960px) {
  .contact_tel {
    gap: 0 16px;
    margin-top: 16px;
    padding: 0;
    border: unset;
  }
}
.contact_tel_number {
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  .contact_tel_number {
    font-size: 4rem;
  }
}
.contact_tel_icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}
@media (min-width: 960px) {
  .contact_tel_icon {
    width: 48px;
    height: 48px;
  }
}
.contact_tel_small {
  flex: 1 1 100%;
  font-size: 1.2rem;
  text-align: center;
  margin-left: 48px;
}
@media (min-width: 960px) {
  .contact_tel_small {
    margin-left: 56px;
    font-size: 1.4rem;
  }
}
.contact_simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-inverse);
  background-color: var(--color-primary);
}
@media (min-width: 960px) {
  .contact_simple {
    gap: 24px;
  }
}
.contact_simple .contact_content {
  align-items: center;
}
@media (min-width: 960px) {
  .contact_simple .contact_content {
    padding: 0;
  }
}
.contact_simple .contact_button {
  margin-top: 16px;
  border: 2px solid var(--color-inverse);
  background-color: var(--color-inverse);
  color: var(--color-primary);
}
.contact_simple .contact_button:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  opacity: 1;
}
.contact_simple .contact_button-taiken {
  color: var(--color-inverse);
  border: 2px solid var(--color-inverse);
  background-color: var(--color-primary);
}
.contact_simple .contact_button-taiken:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  opacity: 1;
}
.contact_simple .contact_button_icon {
  color: var(--color-inverse);
}
.contact_simple .contact_button-taiken:hover .contact_button_icon {
  color: var(--color-primary);
}
.contact_simple .contact_tel {
  color: var(--color-inverse);
  border-color: var(--color-inverse);
}
.contact_simple .contact_tel_icon {
  color: var(--color-inverse);
}
.contact_sub {
  color: var(--color-inverse);
  background-color: var(--color-primary);
}
.contact_sub .section_title {
  color: var(--color-inverse);
  font-size: 22px;
  line-height: 1.4481818182;
}
@media (min-width: 960px) {
  .contact_sub .section_title {
    font-size: 48px;
    line-height: 1.4479166667;
  }
}
@media (min-width: 960px) {
  .contact_sub.section {
    padding-top: 84px;
    padding-bottom: 102px;
  }
}
.contact_sub .contact_button {
  color: var(--color-primary);
  background-color: var(--color-inverse);
  border: 2px solid var(--color-inverse);
  margin-top: 14px;
  letter-spacing: unset;
  box-shadow: 0px 4px 0px 0px rgb(198, 0, 52);
}
@media (min-width: 960px) {
  .contact_sub .contact_button {
    font-size: 32px;
    letter-spacing: 0.16em;
    padding: 13px 13px 19px 13px;
  }
  .contact_sub .contact_button .contact_button_small {
    letter-spacing: 0.2em;
  }
}
.contact_sub .contact_button:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  opacity: 1;
}
@media (min-width: 960px) {
  .contact_sub .contact_button_texts {
    margin-left: 10px;
    letter-spacing: 0.16em;
  }
}
@media (min-width: 960px) {
  .contact_sub .contact_button_small {
    font-size: 14px;
    line-height: 1.4407142857;
  }
}
.contact_sub .contact_button-taiken {
  color: var(--color-inverse);
  border: 2px solid var(--color-inverse);
  background-color: var(--color-primary);
  margin-top: -5px;
  padding: 8px;
  letter-spacing: unset;
}
@media (min-width: 960px) {
  .contact_sub .contact_button-taiken {
    margin-top: 21px;
    gap: unset;
  }
}
.contact_sub .contact_button-taiken:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  opacity: 1;
}
.contact_sub .contact_button_icon {
  color: var(--color-inverse);
}
.contact_sub .contact_tel {
  color: var(--color-inverse);
  border-color: var(--color-inverse);
  margin-top: 12px;
  padding: 12px;
  letter-spacing: unset;
  width: 100%;
}
@media (min-width: 960px) {
  .contact_sub .contact_tel {
    margin-top: 12px;
  }
}
@media (min-width: 960px) {
  .contact_sub .contact_tel_number {
    font-size: 32px;
    line-height: 1.171875;
    letter-spacing: 0.16em;
  }
}
.contact_sub .contact_tel_icon {
  color: var(--color-inverse);
}
@media (min-width: 960px) {
  .contact_sub .contact_tel_icon {
    width: 48px;
    height: 48px;
  }
}
.contact_sub .contact_tel_icon_1 {
  margin-left: -28px;
}
@media (min-width: 960px) {
  .contact_sub .contact_tel_icon_1 {
    margin-top: 15px;
    margin-left: -16px;
  }
}
.contact_sub .contact_tel_icon_2 {
  margin-left: 20px;
}
.contact_sub .contact_tel_small {
  display: block;
  margin-left: unset;
}
.contact_sub_img {
  position: relative;
  text-align: center;
  margin-top: 14px;
}
@media (min-width: 960px) {
  .contact_sub_img {
    margin-left: 10px;
  }
}
@media (min-width: 960px) {
  .contact_sub_img img {
    position: unset;
  }
}
.contact_sub_img a {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 183px;
}
@media (min-width: 960px) {
  .contact_sub_img a {
    width: 244px;
    right: -12px;
    bottom: 51px;
  }
}
.contact_sub_img a img {
  width: 100%;
  height: auto;
}
.contact_sp {
  display: block;
}
@media (min-width: 960px) {
  .contact_sp {
    display: none;
  }
}
.contact_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .contact_sp--flex {
    display: none;
  }
}
.contact_pc {
  display: none;
}
@media (min-width: 960px) {
  .contact_pc {
    display: block;
  }
}
.contact_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .contact_pc--flex {
    display: flex;
  }
}

@keyframes shine {
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .faq {
    gap: 40px;
  }
}
.faq_title {
  margin-bottom: 32px;
  position: relative;
  border-bottom: 4px solid #efefef;
}
.faq_title::after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 9px;
  background: url(../images/qa/icon-qa-down.png) no-repeat;
  background-size: contain;
}
@media (min-width: 960px) {
  .faq_title::after {
    bottom: -19px;
    left: calc(50% + 41px);
    width: 22px;
    height: 19px;
    background-size: contain;
  }
}
.faq_title .section_title {
  position: relative;
}
@media (max-width: 767px) {
  .faq_title .section_title {
    left: -19px;
  }
}
.faq_title .section_title::before {
  display: inline-block;
  content: "";
  width: 37px;
  height: 35px;
  background: url(../images/qa/icon-common.svg) no-repeat;
}
@media (min-width: 960px) {
  .faq_title .section_title::before {
    width: 82px;
    height: 83px;
  }
}
.faq_title .section_title.section_title_teacher::before {
  background: url(../images/qa/icon-teacher.svg) no-repeat;
  background-size: contain;
}
.faq_title .section_title.section_title_class::before {
  background: url(../images/qa/icon-class.svg) no-repeat;
  background-size: contain;
}
.faq_title .section_title.section_title_price::before {
  background: url(../images/qa/icon-price.svg) no-repeat;
  background-size: contain;
}
.faq_title .section_title.section_title_support::before {
  background: url(../images/qa/icon-support.svg) no-repeat;
  background-size: contain;
}
.faq_title .section_title.section_title_other::before {
  background: url(../images/qa/icon-other.svg) no-repeat;
  background-size: contain;
}
.faq_title .section_title::after {
  content: "";
  position: absolute;
  right: 0;
  width: calc(100% - 37px);
  bottom: -4px;
  background: var(--color-red);
  height: 4px;
}
@media (min-width: 960px) {
  .faq_title .section_title::after {
    width: calc(100% - 82px);
  }
}
.faq_title strong {
  color: var(--color-red);
}
.faq_listtitle {
  display: flex;
  align-items: center;
  font-size: 14.2222222222px;
  line-height: 1.328125;
  font-weight: 400;
}
@media (min-width: 960px) {
  .faq_listtitle {
    font-size: 24px;
    font-weight: 700;
  }
}
.faq_listtitle::before, .faq_listtitle::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #cdcdcd;
}
.faq_listtitle::before {
  margin-right: 1em;
  margin-left: 1.5em;
}
.faq_listtitle::after {
  margin-left: 1em;
  margin-right: 1.5em;
}
.faq_item + .faq_item {
  border-top: 1px solid var(--color-border);
}
@media (min-width: 960px) {
  .faq_item + .faq_item {
    margin-top: 16px;
    padding-top: 16px;
  }
}
.faq_checkbox {
  display: none;
}
.faq_checkbox:checked + .faq_q {
  background-image: url("/assets/images/icons/chevron-up.svg");
}
.faq_checkbox:checked ~ .faq_a {
  height: unset;
  max-height: 100vh;
  overflow: auto;
  padding-bottom: 12px;
}
.faq_q, .faq_a {
  position: relative;
  padding-left: 32px;
  padding-right: 24px;
  font-size: 14px;
}
@media (min-width: 960px) {
  .faq_q, .faq_a {
    padding-left: 48px;
    font-size: 16px;
  }
}
.faq_q {
  padding-top: 12px;
  padding-bottom: 12px;
  display: block;
  font-weight: bolder;
  background: url("/assets/images/icons/chevron-down.svg") no-repeat 100% 16px;
  background-size: 24px 24px;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media (min-width: 960px) {
  .faq_q {
    padding-top: 8px;
    padding-bottom: 8px;
    background-position-y: 0.5em;
    background-size: 32px 32px;
  }
}
.faq_q:hover {
  opacity: 0.7;
}
.faq_q::before {
  position: absolute;
  top: 12px;
  left: 0;
  content: "Q.";
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .faq_q::before {
    top: 4px;
    font-size: 3.2rem;
  }
}
.faq_a {
  max-height: 0;
  overflow: hidden;
}
.faq_a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "A.";
  color: var(--color-darkgray);
  font-size: 2.4rem;
  font-weight: bolder;
  line-height: 1;
}
@media (min-width: 960px) {
  .faq_a::before {
    font-size: 3.2rem;
  }
}
.faq_lead {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 960px) {
  .faq_lead {
    font-size: 16px;
    text-align: center;
  }
}
.faq_button {
  width: 100%;
  letter-spacing: 1;
  margin: 7.7777777778px auto 0;
}
@media (min-width: 960px) {
  .faq_button {
    height: 64px;
    font-size: 24px;
    width: 563.0434782609px;
    margin: 5.652173913px auto 0;
    padding: 39px 10px;
  }
}
.faq_button p {
  position: relative;
  padding-right: 15px;
  line-height: 1;
  transition: all 0.4s ease;
  color: var(--color-primary);
}
@media (min-width: 960px) {
  .faq_button p {
    padding-right: 40px;
  }
}
.faq_button p::after {
  position: absolute;
  content: "";
  background-image: url(../images/202401/arrow_red_r.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 46%;
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
  transition: all 0.4s ease;
}
@media (min-width: 960px) {
  .faq_button p::after {
    top: 48%;
    width: 20px;
    height: 24px;
  }
}
.faq_button:hover {
  background: var(--color-red);
  color: #fff;
}
.faq_button:hover p {
  color: #fff;
}
.faq_button:hover p::after {
  background-image: url(../images/202401/arrow_white_r.svg);
}
.shogaku .faq_q::before {
  color: var(--color-shogaku);
}
.chugaku .faq_q::before {
  color: var(--color-chugaku);
}
.koukou .faq_q::before {
  color: var(--color-koukou);
}
.faq_cta {
  padding-top: 20px;
}
@media (min-width: 960px) {
  .faq_cta {
    padding-bottom: 0;
    padding-top: 30px;
  }
}
@media (min-width: 960px) {
  .faq_cta_tel {
    display: block;
  }
}
.faq_cta.section02 {
  padding-bottom: 0;
}
.faq .contact_content {
  flex-direction: column;
}
.faq .price_contact_sub .contact_content {
  margin: 0 auto;
}
@media (min-width: 960px) {
  .faq .price_contact_sub .contact_content {
    padding-top: unset;
  }
}
.faq .contact_sub .contact_button {
  height: 42px;
  padding: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 2.2rem;
  margin-top: unset;
  padding-top: 3px;
}
@media (min-width: 960px) {
  .faq .contact_sub .contact_button {
    height: 100px;
    font-size: 32px;
    padding-top: unset;
  }
}
.faq .contact_tel_number {
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  .faq .contact_tel_number {
    font-size: 4rem;
  }
}
.faq .contact_tel_small {
  flex: 1 1 100%;
  font-size: 1.2rem;
  text-align: center;
  margin-left: 48px;
}
@media (min-width: 960px) {
  .faq .contact_tel_small {
    margin-left: 56px;
    font-size: 1.4rem;
  }
}
.faq .price_contact_sub .section_title {
  font-size: 16px;
}
@media (min-width: 960px) {
  .faq .price_contact_sub .section_title {
    font-size: 24px;
  }
}

.lp002e {
  overflow-x: hidden;
}
.lp002e .hero-2 {
  max-width: unset;
}
.lp002e-worries {
  padding: 92px 0 0;
}
@media (max-width: 767px) {
  .lp002e-worries {
    padding: 35px 0 0;
  }
}
.lp002e-worries__maintitle {
  font-size: 35px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-align: center;
}
@media (max-width: 767px) {
  .lp002e-worries__maintitle {
    font-size: 24px;
  }
}
.lp002e-worries__listwrap {
  max-width: 1200px;
  overflow-x: scroll;
  overflow-y: hidden;
  margin: 0 auto 0;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  padding-top: 67px;
}
@media (max-width: 767px) {
  .lp002e-worries__listwrap {
    overflow: unset;
    padding-top: 30px;
    padding-bottom: unset;
  }
}
.lp002e-worries__listwrap::-webkit-scrollbar {
  height: 5px;
}
.lp002e-worries__listwrap::-webkit-scrollbar-track {
  background: #FFFFFF;
}
.lp002e-worries__listwrap::-webkit-scrollbar-thumb {
  background: #999999;
}
.lp002e-worries__listwrap::-webkit-scrollbar-thumb:hover {
  background: #999999;
}
.lp002e-worries__list {
  width: 1635px;
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .lp002e-worries__list {
    width: auto;
    flex-wrap: wrap;
    gap: 24px 13px;
  }
}
.lp002e-worries__item {
  background-color: #fff;
  border-radius: 12px;
  border: #E6003D 3px solid;
  width: 260px;
  height: 297px;
  padding: 38px 20px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .lp002e-worries__item {
    width: calc(50% - 6.5px);
    height: 185px;
    padding: 33px 13px 21px;
    border-radius: 8px;
  }
  .lp002e-worries__item:nth-of-type(1) .lp002e-worries__img {
    padding-top: 12px;
    margin-bottom: -17px;
  }
  .lp002e-worries__item:nth-of-type(2) .lp002e-worries__img {
    padding-top: 12px;
    margin-bottom: -17px;
  }
  .lp002e-worries__item:nth-of-type(3), .lp002e-worries__item:nth-of-type(4) {
    padding: 23px 13px 21px;
  }
  .lp002e-worries__item:nth-of-type(5) .lp002e-worries__img {
    margin-top: 14px;
  }
  .lp002e-worries__item:nth-of-type(6) .lp002e-worries__img {
    padding-top: 12px;
    margin-bottom: -17px;
  }
}
.lp002e-worries__item::after {
  position: absolute;
  content: "";
  background-image: url("../images/lp002e/icon-check.webp");
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: -22px;
  width: 42px;
  height: 42px;
}
@media (max-width: 767px) {
  .lp002e-worries__item::after {
    width: 28px;
    height: 28px;
    top: -17px;
  }
}
.lp002e-worries__title {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex: 1;
}
@media (max-width: 767px) {
  .lp002e-worries__title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .lp002e-worries__img {
    max-width: 131px;
  }
}
.lp002e-worries__img img {
  width: 100%;
  height: auto;
}
.lp002e-etecatch {
  max-width: 903px;
  margin: 0 auto;
  display: flex;
  padding: 50px 0 62px;
}
@media (max-width: 767px) {
  .lp002e-etecatch {
    flex-direction: column-reverse;
    padding: 30px 0 30px;
    margin: 0 -16px;
  }
}
.lp002e-etecatch__head {
  max-width: 315px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .lp002e-etecatch__head {
    display: none;
  }
}
.lp002e-etecatch__head img {
  width: 100%;
  height: auto;
}
.lp002e-etecatch__body {
  width: 56%;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .lp002e-etecatch__body {
    width: 100%;
  }
}
.lp002e-etecatch__title {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .lp002e-etecatch__title {
    display: none;
  }
}
.lp002e-etecatch__text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 10px;
  margin-right: -43px;
}
@media (max-width: 767px) {
  .lp002e-etecatch__text {
    line-height: 1.8;
    text-align: center;
    margin-right: unset;
  }
}
.lp002e-etecatch__small {
  color: #999999;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  margin-right: -30px;
  margin-top: 46px;
  display: block;
}
@media (max-width: 767px) {
  .lp002e-etecatch__small {
    margin-right: unset;
    margin: 15px 16px 0;
  }
}
.lp002e-etecatch__img {
  width: 44%;
}
@media (max-width: 767px) {
  .lp002e-etecatch__img {
    width: 100%;
  }
}
.lp002e-etecatch__img img {
  width: 100%;
  height: auto;
}
.lp002e-point {
  background-color: #E6003D;
  padding: 70px 0 100px;
}
@media (max-width: 767px) {
  .lp002e-point {
    padding: 13px 0 50px;
  }
}
.lp002e-point__maintitle {
  line-height: 1.26;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .lp002e-point__maintitle {
    line-height: 1;
  }
}
.lp002e-point__maintitle .-color {
  color: #FCFF6D;
}
@media (max-width: 767px) {
  .lp002e-point__maintitle .-color {
    font-size: 35px;
  }
}
.lp002e-point__maintitle .-lg {
  font-size: 91px;
  letter-spacing: 0.01em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .lp002e-point__maintitle .-lg {
    font-size: 54px;
  }
}
.lp002e-point__maintitle .-md {
  font-size: 45px;
}
@media (max-width: 767px) {
  .lp002e-point__maintitle .-md {
    font-size: 20px;
  }
}
.lp002e-point__maintitle .-sm {
  font-size: 48px;
}
@media (max-width: 767px) {
  .lp002e-point__maintitle .-sm {
    font-size: 35px;
  }
}
.lp002e-point__list {
  display: flex;
  flex-direction: column;
  margin: 59px auto 0;
  max-width: 1000px;
  gap: 67px;
  counter-reset: number 0;
}
@media (max-width: 767px) {
  .lp002e-point__list {
    margin: 40px auto 0;
    gap: 43px;
  }
}
.lp002e-point__item {
  display: flex;
  align-items: center;
  gap: 5.5%;
  border-radius: 12px;
  background-color: #fff;
  padding: 50px 60px 40px 50px;
  position: relative;
  min-height: 370px;
}
@media (max-width: 767px) {
  .lp002e-point__item {
    flex-direction: column;
    padding: 42px 20px 28px;
  }
}
.lp002e-point__item:nth-of-type(3) {
  padding: 62px 60px 50px 50px;
}
@media (max-width: 767px) {
  .lp002e-point__item:nth-of-type(3) {
    padding: 42px 20px 30px 20px;
  }
}
.lp002e-point__item:nth-of-type(3) .lp002e-point__title {
  margin-top: -2px;
}
.lp002e-point__item::after {
  position: absolute;
  content: "";
  counter-increment: number 1;
  content: "Point" counter(number);
  left: 50%;
  transform: translateX(-50%);
  top: -27px;
  width: 156px;
  height: 51px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  background-color: #FCFF6D;
  border: #E6003D 3px solid;
  color: #E6003D;
}
@media (max-width: 767px) {
  .lp002e-point__item::after {
    font-size: 20px;
    width: 132px;
    height: 42px;
    top: -25px;
  }
}
.lp002e-point__img {
  width: 45%;
}
@media (max-width: 767px) {
  .lp002e-point__img {
    width: 100%;
    margin-top: 22px;
  }
}
.lp002e-point__img img {
  width: 100%;
  height: auto;
}
.lp002e-point__body {
  width: 49.5%;
}
@media (max-width: 767px) {
  .lp002e-point__body {
    width: 100%;
  }
}
.lp002e-point__title {
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .lp002e-point__title {
    font-size: 20px;
    text-align: center;
    margin-top: unset;
  }
}
.lp002e-point__text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .lp002e-point__text {
    font-size: 14px;
  }
}
.lp002e-point__text span {
  color: #E6003D;
  font-weight: 700;
}
.lp002e-point__box {
  background-color: #F9F9F9;
  border-radius: 4px;
  padding: 7px 16px 10px;
  margin-top: 11px;
}
.lp002e-point__box strong {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.lp002e-point__box p {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .lp002e-point__box p {
    font-size: 10px;
  }
}
.lp002e-online {
  padding: 90px 0 80px;
}
@media (max-width: 767px) {
  .lp002e-online {
    padding: 45px 0 40px;
  }
}
.lp002e-online__maintitle {
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: center;
  color: #E6003D;
}
@media (max-width: 767px) {
  .lp002e-online__maintitle {
    font-size: 24px;
    line-height: 1.4;
  }
}
.lp002e-online__list {
  max-width: 800px;
  margin: 40px auto 0;
  border: #E6003D 1px solid;
  border-radius: 10px;
  padding: 11px 60px;
}
@media (max-width: 767px) {
  .lp002e-online__list {
    padding: 20px;
    margin: 15px auto 0;
  }
}
.lp002e-online__item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .lp002e-online__item {
    gap: 12px;
    padding: 20px 0 10px;
  }
}
.lp002e-online__item:not(:last-of-type) {
  border-bottom: 1px solid #E6003D;
}
.lp002e-online__item:nth-of-type(1) {
  padding: 40px 0 28px;
}
@media (max-width: 767px) {
  .lp002e-online__item:nth-of-type(1) {
    padding: 4px 0 13px;
  }
}
.lp002e-online__item:nth-of-type(3) {
  padding: 30px 0 37px;
}
@media (max-width: 767px) {
  .lp002e-online__item:nth-of-type(3) {
    padding: 20px 0 4px;
  }
}
.lp002e-online__img {
  width: 80px;
}
@media (max-width: 767px) {
  .lp002e-online__img {
    width: 60px;
  }
}
.lp002e-online__img img {
  width: 100%;
  height: auto;
}
.lp002e-online__body {
  width: calc(100% - 80px);
}
@media (max-width: 767px) {
  .lp002e-online__body {
    width: calc(100% - 74px);
  }
}
.lp002e-online__title {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .lp002e-online__title {
    font-size: 16px;
  }
}
.lp002e-online__text {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-top: 13px;
}
@media (max-width: 767px) {
  .lp002e-online__text {
    font-size: 14px;
    margin-top: 9px;
    letter-spacing: -0.01em;
  }
}
.lp002e-price-system {
  padding-top: 68px;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .lp002e-price-system {
    padding-top: 35px;
    padding-bottom: 50px;
  }
}
.lp002e-price-system .section_title.section_title_2 {
  padding-left: 69px;
  font-size: 35px;
}
@media (max-width: 767px) {
  .lp002e-price-system .section_title.section_title_2 {
    font-size: 24px;
    padding-left: 45px;
  }
}
.lp002e-price-system .section_title.section_title_2::before {
  width: 81px;
  height: 67px;
  left: 85px;
  top: -10px;
}
@media (max-width: 767px) {
  .lp002e-price-system .section_title.section_title_2::before {
    width: 55px;
    height: 47px;
    top: 8px;
    left: calc(50% - 77px);
    transform: translateX(-50%);
  }
}
.lp002e-price-system .price-system_contents {
  max-width: 1205px;
  margin: -20px auto 0;
}
@media (max-width: 767px) {
  .lp002e-price-system .price-system_contents {
    margin: -4px auto 0;
  }
}
.lp002e-price-system .price-system_list {
  gap: 20px 15px;
  margin: unset;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1104px;
  margin: 67px auto 0;
}
@media (max-width: 767px) {
  .lp002e-price-system .price-system_list {
    flex-direction: column;
    margin: 30px auto 0;
    gap: 15px 15px;
  }
}
.lp002e-price-system .price-system_item {
  padding: 30px 26px 23px 27px;
  margin: unset;
  gap: 17px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .lp002e-price-system .price-system_item {
    padding: 20px 14px 20px 9px;
    gap: 22px;
  }
}
.lp002e-price-system .price-system_item figure {
  width: 100%;
}
.lp002e-price-system .price-system_item figure img {
  width: 100%;
  height: auto;
}
.lp002e-price-system .price-system_item_head {
  padding-left: unset;
  width: 60px;
}
@media (max-width: 767px) {
  .lp002e-price-system .price-system_item_head {
    width: 50px;
  }
}
.lp002e-price-system .price-system_item_body {
  padding: unset;
  width: calc(100% - 60px - 17px);
}
@media (max-width: 767px) {
  .lp002e-price-system .price-system_item_body {
    width: calc(100% - 50px - 24px);
  }
}
.lp002e-price-system .price-system_item_title {
  font-size: 22px;
  margin-bottom: 4px;
  margin-top: -6px;
}
@media (max-width: 767px) {
  .lp002e-price-system .price-system_item_title {
    font-size: 16px;
    margin-bottom: 4px;
    margin-top: 4px;
  }
}
.lp002e-price-system .price-system_item_text {
  font-size: 16px;
  line-height: 130%;
  padding-right: unset;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .lp002e-price-system .price-system_item_text {
    font-size: 14px;
    line-height: 1.5;
  }
}
.lp002e-price-system .price-system_item_title small {
  color: #16A7D6;
  font-size: 12px;
  font-weight: 700;
}
.lp002e-price-system .price-system_small {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: #999999;
  display: block;
  margin-top: 9px;
}
@media (max-width: 767px) {
  .lp002e-price-system .price-system_small {
    text-align: left;
    margin-top: 27px;
  }
}
.lp002e-reviews {
  padding-top: 83px;
  padding-bottom: 127px;
}
@media (max-width: 767px) {
  .lp002e-reviews {
    padding-bottom: 80px;
    padding-top: 52px;
  }
}
.lp002e-reviews_title {
  font-size: 35px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .lp002e-reviews_title {
    font-size: 24px;
  }
}
.lp002e-reviews_listwrap {
  max-width: 1200px;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .lp002e-reviews_listwrap {
    margin: 20px auto 0;
    padding: 0px 0px 44px;
    position: relative;
  }
}
.lp002e-reviews_list {
  display: flex;
  gap: 18px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .lp002e-reviews_list {
    gap: unset;
    max-width: unset;
  }
}
.lp002e-reviews_item {
  background-color: #fff;
  border-radius: 8px;
  padding: 28px 30px;
  box-shadow: 2px 4px 9px 0px rgba(163, 163, 163, 0.2);
}
@media (min-width: 768px) {
  .lp002e-reviews_item.swiper-slide, .lp002e-reviews_item .swiper-slide {
    width: calc(33.3333333333% - 12px);
    display: flex;
    flex-direction: column;
    height: auto;
  }
}
@media (max-width: 767px) {
  .lp002e-reviews_item {
    padding: 30px 32px 22px;
  }
  .lp002e-reviews_item.swiper-slide, .lp002e-reviews_item .swiper-slide {
    height: auto;
  }
}
.lp002e-reviews_head {
  display: flex;
  align-items: center;
  gap: 15px;
}
.lp002e-reviews_name {
  display: flex;
  flex-direction: column;
}
.lp002e-reviews_name .-sm {
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .lp002e-reviews_name .-sm {
    font-size: 12px;
  }
}
.lp002e-reviews_name .-lg {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .lp002e-reviews_name .-lg {
    font-size: 20px;
  }
}
.lp002e-reviews_text {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .lp002e-reviews_text {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .lp002e-reviews_text {
    font-size: 14px;
    margin-top: 9px;
  }
}
.lp002e-reviews_img {
  width: 80px;
}
@media (max-width: 767px) {
  .lp002e-reviews_img {
    width: 60px;
  }
}
.lp002e-reviews_img img {
  width: 100%;
  height: auto;
}
.lp002e-reviews_small {
  font-size: 10px;
  line-height: 150%;
  color: #999999;
  display: block;
  margin-top: 12px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .lp002e-reviews_small {
    margin-left: 16px;
    margin-top: 23px;
  }
}
@media (min-width: 768px) {
  .lp002e-reviews .swiper-pagination, .lp002e-reviews .swiper-button-prev, .lp002e-reviews .swiper-button-next {
    display: none;
  }
}
.lp002e-reviews .swiper-button-next:after, .lp002e-reviews .swiper-rtl .swiper-button-prev:after, .lp002e-reviews .swiper-button-prev:after, .lp002e-reviews .swiper-rtl .swiper-button-next:after {
  content: none;
}
.lp002e-reviews .swiper-button-next, .lp002e-reviews .swiper-rtl .swiper-button-prev {
  top: calc(50% - 30px);
  transform: translateY(-50%);
}
.lp002e-reviews .swiper-button-next, .lp002e-reviews .swiper-rtl .swiper-button-prev, .lp002e-reviews .swiper-button-prev, .lp002e-reviews .swiper-rtl .swiper-button-next {
  width: 41px;
  height: 41px;
  background-image: url(../images/lp002e/slide.png);
  background-size: contain;
}
.lp002e-reviews .swiper-button-prev, .lp002e-reviews .swiper-rtl .swiper-button-next {
  top: calc(50% - 30px);
  transform: scaleX(-1) translateY(-50%);
}
.lp002e-reviews .swiper-pagination {
  max-width: 343px;
  left: 50% !important;
  transform: translateX(-50%);
}
.lp002e-reviews .swiper-pagination-bullet {
  height: 5px;
  border-radius: unset;
  background-color: #fff;
  opacity: 1;
  width: 33.3333333333%;
}
.lp002e-reviews .swiper-pagination-bullet-active {
  background-color: #999999;
}
.lp002e-reviews .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .lp002e-reviews .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0 0 0;
}
.lp002e-pickup {
  background-color: #E6003D;
  position: relative;
  padding-top: 100px;
  padding-bottom: 111px;
  margin-bottom: -20px;
}
@media (max-width: 767px) {
  .lp002e-pickup {
    padding: 50px 20px 30px;
    margin-bottom: -3px;
  }
}
.lp002e-pickup_maintitle {
  position: absolute;
  width: 100%;
  max-width: 430px;
  left: 50%;
  transform: translateX(-50%);
  top: -43px;
}
@media (max-width: 767px) {
  .lp002e-pickup_maintitle {
    top: -26px;
  }
}
.lp002e-pickup_maintitle h2 {
  font-size: 26px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #E6003D;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .lp002e-pickup_maintitle h2 {
    font-size: 18px;
    top: 10px;
    letter-spacing: -0.04em;
  }
}
@media (max-width: 767px) {
  .lp002e-pickup_maintitle svg {
    width: 265px;
    height: 60px;
    margin: 0 auto;
    display: block;
  }
}
.lp002e-pickup_list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  counter-reset: number 0;
}
@media (max-width: 767px) {
  .lp002e-pickup_list {
    flex-direction: column;
    gap: 30px;
    max-width: 906px;
  }
}
.lp002e-pickup_item {
  border-radius: 16px;
  background-color: #fff;
  padding: 40px 40px 22px;
  width: calc(33.3333333333% - 20px);
  position: relative;
}
@media (max-width: 767px) {
  .lp002e-pickup_item {
    width: 100%;
    padding: 30px 20px 30px;
  }
}
.lp002e-pickup_item::after {
  position: absolute;
  counter-increment: number 1;
  content: "0" counter(number) "";
  left: -12px;
  top: -23px;
  width: 65px;
  height: 65px;
  border-radius: 50px;
  background-color: #FCFF6D;
  border: 3px solid #E6003D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #E6003D;
}
@media (max-width: 767px) {
  .lp002e-pickup_item::after {
    width: 55px;
    height: 55px;
    font-size: 24px;
    border: 2px solid #E6003D;
    left: -8px;
    top: -11px;
  }
}
@media (max-width: 767px) {
  .lp002e-pickup_item:nth-of-type(1) {
    order: 1;
  }
}
@media (max-width: 767px) {
  .lp002e-pickup_item:nth-of-type(2) {
    order: 3;
  }
}
.lp002e-pickup_item:nth-of-type(2) .lp002e-pickup_img {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .lp002e-pickup_item:nth-of-type(3) {
    order: 2;
  }
}
.lp002e-pickup_item:nth-of-type(3) .lp002e-pickup_title {
  padding-top: 17px;
}
.lp002e-pickup_item:nth-of-type(3) .lp002e-pickup_img {
  margin-top: 32px;
}
.lp002e-pickup_img {
  width: 100%;
  margin-top: 20px;
}
.lp002e-pickup_img img {
  width: 100%;
  height: auto;
}
.lp002e-pickup_contents {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.lp002e-pickup_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.lp002e-pickup_title_sm {
  font-size: 18px;
  color: #E6003D;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  z-index: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media (max-width: 767px) {
  .lp002e-pickup_title_sm {
    font-size: 14px;
  }
}
.lp002e-pickup_title_sm::after {
  position: absolute;
  content: "";
  background: #FCFF6D;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.lp002e-pickup_title_lg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 23px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 9px;
  position: relative;
  padding-left: 54px;
}
@media (max-width: 767px) {
  .lp002e-pickup_title_lg {
    margin-top: 11px;
    gap: 8px;
    justify-content: center;
    font-size: 20px;
    padding-left: 46px;
  }
}
.lp002e-pickup_title_free {
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFEAEA;
  font-size: 15px;
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  color: #E6003D;
}
@media (max-width: 767px) {
  .lp002e-pickup_title_free {
    width: 50px;
    height: 26px;
    font-size: 14px;
    margin-left: -14px;
  }
}
.lp002e-pickup_text {
  font-size: 16px;
  line-height: 1.4;
  margin-right: -11px;
  letter-spacing: 0.03em;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .lp002e-pickup_text {
    font-size: 14px;
    line-height: 160%;
    margin-top: 12px;
    letter-spacing: 0.04em;
    margin-right: unset;
  }
}
.lp002e-pickup_text span {
  color: #E6003D;
  font-weight: 700;
}
.lp002e .sp_only {
  display: none;
}
@media (max-width: 767px) {
  .lp002e .sp_only {
    display: block;
  }
}
.lp002e .pc_only {
  display: block;
}
@media (max-width: 767px) {
  .lp002e .pc_only {
    display: none;
  }
}
.lp002e .pc_only--flex {
  display: flex;
}
@media (max-width: 767px) {
  .lp002e .pc_only--flex {
    display: none;
  }
}
.lp002e .hero {
  margin-bottom: -5px;
}
@media (max-width: 767px) {
  .lp002e .hero {
    margin-bottom: -26px;
  }
}
.lp002e .hero_read {
  padding-left: 38px;
  padding-top: 12px;
}
.lp002e .hero_read sup {
  font-size: 20px;
}
@media (max-width: 767px) {
  .lp002e .hero_read {
    padding-left: 27px;
    padding-top: 14px;
    padding-bottom: 4px;
  }
  .lp002e .hero_read sup {
    font-size: 14px;
  }
}
.lp002e .hero_read::before {
  top: 12px;
}
.lp002e .hero_thumb {
  margin-bottom: -30px;
  margin-top: 0px;
  display: block;
}
@media (max-width: 767px) {
  .lp002e .hero_thumb {
    margin-bottom: -10px;
  }
}
.lp002e .hero_aside {
  margin-top: 10px;
}
.lp002e .hero_aside_item {
  font-size: 10px;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .lp002e .hero_aside_item {
    font-size: 10px;
    line-height: 150%;
  }
}
.lp002e .cta_lead.abroad002-1 {
  font-size: 33px;
  margin: 0 calc(50% - 50vw) 10px;
  width: 100vw;
}
.lp002e .cta_lead.abroad002-1 .lg {
  font-size: 45px;
}
@media (max-width: 767px) {
  .lp002e .cta_lead.abroad002-1 {
    font-size: 20px;
    margin: 0 0 2px 0;
    width: auto;
  }
  .lp002e .cta_lead.abroad002-1 .lg {
    font-size: 28px;
  }
}
.lp002e .cta_wrap_new {
  background-color: #FFF5F5;
}
.lp002e .cta_wrap_new small {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #999999;
  margin-top: 12px;
  margin-left: 4px;
  display: block;
}
.lp002e .cta {
  padding: 46px 16px 50px;
}
@media (max-width: 767px) {
  .lp002e .cta {
    padding: 32px 19px 30px;
  }
}
.lp002e .cta.cta_container {
  max-width: 840px;
}
.lp002e .cta_lead {
  font-size: 26px;
  line-height: 1.26;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .lp002e .cta_lead {
    font-size: 22px;
  }
}
.lp002e .cta_lead .lg {
  font-weight: 700;
}
@media (max-width: 767px) {
  .lp002e .cta_lead .lg {
    font-size: 32px;
  }
}
.lp002e .cta_box {
  margin: 10px 0 10px;
}
.lp002e .faq {
  padding-top: 100px;
  padding-bottom: 120px;
  gap: 36px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .lp002e .faq {
    padding-top: 42px;
    gap: 14px;
    margin-top: -10px;
    padding-bottom: 40px;
  }
  .lp002e .faq .section_caption {
    font-size: 15px;
  }
}
.lp002e .faq .section_title {
  font-size: 35px;
}
@media (max-width: 767px) {
  .lp002e .faq .section_title {
    font-size: 24px;
  }
}
.lp002e .faq .faq_list {
  max-width: 1000px;
  margin: 0 auto;
}
.lp002e .faq .faq_item {
  background-color: #FFF5F5;
  border-radius: 6px;
}
.lp002e .faq .faq_item + .faq_item {
  margin-top: 20px;
  padding-top: unset;
  border-top: unset;
}
@media (max-width: 767px) {
  .lp002e .faq .faq_item + .faq_item {
    margin-top: 15px;
  }
}
.lp002e .faq .faq_q {
  font-size: 18px;
  line-height: 1.35;
  background-image: unset;
  padding-top: 29px;
  padding-bottom: 28px;
  padding-left: 53px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Noto Sans JP;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .lp002e .faq .faq_q {
    font-size: 14px;
    padding-top: 13px;
    padding-bottom: 11px;
    padding-right: 50px;
    padding-left: 46px;
  }
}
.lp002e .faq .faq_q.active {
  padding-bottom: 19px;
}
.lp002e .faq .faq_q.active + .faq_a {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .lp002e .faq .faq_q.active + .faq_a {
    padding-bottom: 15px;
    padding-left: 45px;
    padding-right: 22px;
  }
}
@media (max-width: 767px) {
  .lp002e .faq .faq_a {
    font-size: 14px;
    line-height: 1.5;
  }
}
.lp002e .faq .faq_q::before, .lp002e .faq .faq_a::before {
  font-size: 20px;
  color: #E6003D;
  font-family: Noto Sans JP;
  top: 32px;
  left: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .lp002e .faq .faq_q::before, .lp002e .faq .faq_a::before {
    top: 12px;
    left: 20px;
  }
}
.lp002e .faq .faq_a::before {
  top: 0px;
}
.lp002e .faq .-cross {
  background-color: #E6003D;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .lp002e .faq .-cross {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.lp002e .faq .-cross::before, .lp002e .faq .-cross::after {
  position: absolute;
  content: "";
  background-color: #fff;
  display: block;
  width: 18px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
@media (max-width: 767px) {
  .lp002e .faq .-cross::before, .lp002e .faq .-cross::after {
    width: 12px;
    height: 2px;
  }
}
.lp002e .faq .-cross::after {
  rotate: 90deg;
  transform: unset;
  left: 6px;
  top: 14px;
}
@media (max-width: 767px) {
  .lp002e .faq .-cross::after {
    left: 4px;
    top: 9.5px;
  }
}
.lp002e .faq .-cross.active::after {
  rotate: 0deg;
}

.home_hero {
  display: flex;
  margin: 24px 16px;
  background-size: contain;
}
@media (min-width: 960px) {
  .home_hero {
    max-width: var(--width-desktopHD);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    background-size: contain;
  }
}
.home_hero_texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1080px) {
  .home_hero_texts {
    flex: 0 0 50%;
    justify-content: center;
    gap: 16px;
  }
}
.home_hero_image {
  display: none;
}
@media (min-width: 1080px) {
  .home_hero_image {
    display: block;
    flex: 0 0 50%;
    width: 30%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.home_hero_title {
  font-size: 2.4rem;
}
@media (min-width: 960px) {
  .home_hero_title {
    font-size: 4.4rem;
  }
}
.home_hero_description {
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .home_hero_description {
    font-size: 1.6rem;
  }
}
.home .services_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .home .services_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.home .services_list_item {
  flex: 1 1 calc(50% - 40px);
  position: relative;
}
.home .services_link {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
}
@media (min-width: 960px) {
  .home .services_link:hover {
    background-color: var(--color-inverse);
  }
}
.home .services_icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}
@media (min-width: 960px) {
  .home .services_icon {
    width: 24px;
    height: 24px;
  }
}
.home .services_card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.home .services_image {
  width: 100%;
}
.home .services_list_item:nth-of-type(3), .home .services_list_item:nth-of-type(4) {
  display: flex;
  gap: 8px;
}
.home .services_list_item:nth-of-type(3) .services_card, .home .services_list_item:nth-of-type(4) .services_card {
  display: flex;
  align-items: center;
  padding: 8px;
}
@media (min-width: 960px) {
  .home .services_list_item:nth-of-type(3) .services_card, .home .services_list_item:nth-of-type(4) .services_card {
    padding: 24px;
    gap: 16px;
  }
}
.home .services_list_item:nth-of-type(3) .services_image, .home .services_list_item:nth-of-type(4) .services_image {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--color-primary);
}
@media (min-width: 960px) {
  .home .services_list_item:nth-of-type(3) .services_image, .home .services_list_item:nth-of-type(4) .services_image {
    width: 100px;
    height: 100px;
  }
}
.home .services_list_item:nth-of-type(3) .services_name, .home .services_list_item:nth-of-type(4) .services_name {
  font-size: 2rem;
}
@media (min-width: 960px) {
  .home .services_list_item:nth-of-type(3) .services_name, .home .services_list_item:nth-of-type(4) .services_name {
    font-size: 3.2rem;
  }
}
@media (min-width: 960px) {
  .home .services_list_item:nth-of-type(3) .services_description, .home .services_list_item:nth-of-type(4) .services_description {
    font-size: 1.6rem;
  }
}
.home .services_texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px 16px;
}
.home .services_caption {
  display: none;
  font-size: 1.1rem;
  font-weight: bolder;
  line-height: 1.6;
}
@media (min-width: 960px) {
  .home .services_caption {
    display: block;
    color: var(--color-darkgray);
    font-size: 1.4rem;
  }
}
.home .services_name {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .home .services_name {
    font-size: 4rem;
  }
}
.home .services_description {
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .home .services_description {
    font-size: 1.4rem;
  }
}
.home .record_title {
  font-size: 2.4rem;
  text-align: center;
}
@media (min-width: 960px) {
  .home .record_title {
    font-size: 3.2rem;
  }
}
.home .record_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 80%;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .home .record_list {
    flex-wrap: nowrap;
    gap: 40px;
    width: 100%;
    margin-top: 40px;
  }
}
.home .record_list_item {
  flex: 1 1 calc(50% - 48px);
}
@media (min-width: 960px) {
  .home .record_list_item {
    flex: 1 1 calc(25% - 24px);
  }
}
.home .record_image {
  width: 100%;
}
.home .record_small {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--color-darkgray);
}
@media (min-width: 960px) {
  .home .record_small {
    margin-top: 40px;
    font-size: 1.2rem;
  }
}
.home .mission {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 960px) {
  .home .mission {
    gap: 80px;
    flex-wrap: nowrap;
  }
}
.home .mission_texts {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 960px) {
  .home .mission_texts {
    flex: 1 1 60%;
  }
}
.home .mission_image {
  flex: 1 1 100%;
  width: 100%;
}
@media (min-width: 960px) {
  .home .mission_image {
    flex: 1 1 calc(40% - 80px);
    width: calc(40% - 80px);
  }
}
.home .mission_title {
  font-size: 3.2rem;
}
@media (min-width: 960px) {
  .home .mission_title {
    font-size: 6rem;
  }
}
.home .mission_description {
  font-weight: bolder;
  font-size: 1.6rem;
  line-height: 2;
}
@media (min-width: 960px) {
  .home .mission_description {
    font-size: 2rem;
  }
}

.kobetsu_mv img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .kobetsu_mv {
    background: #fcfcfc;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    width: 100vw;
    height: auto;
  }
}
.kobetsu_mv_sp {
  display: block;
}
@media (min-width: 960px) {
  .kobetsu_mv_sp {
    display: none;
  }
}
.kobetsu_mv_pc {
  display: none;
}
@media (min-width: 960px) {
  .kobetsu_mv_pc {
    display: block;
  }
}
.kobetsu_container {
  max-width: 1160px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .kobetsu_container {
    padding: 0 16px;
  }
}
@media (min-width: 960px) {
  .kobetsu_main .cam_banner {
    padding: 20px 0 20px 0;
  }
  .kobetsu_main .cam_banner + .cta {
    padding: 14px 16px;
  }
}
@media (min-width: 960px) {
  .kobetsu_about {
    margin-top: 98px;
  }
}
.kobetsu .cam_banner a {
  display: block;
}
.kobetsu .cam_banner picture {
  width: 100%;
  height: auto;
  display: block;
}
.kobetsu .cam_banner img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 960px) {
  .kobetsu .cam_banner {
    max-width: 750px;
    margin: 0 auto;
  }
}

.ly_cont {
  text-align: center;
  max-width: 1160px;
  margin: 0 auto;
}

.banner_area {
  max-width: 100%;
  padding: min(8%, 50px) 0;
}

.banner_area p {
  margin: 0;
}

.banner_area img {
  width: min(100%, 1160px);
  margin: 0 auto;
}

/*キャンペーン用のソースコード*/
.campaign {
  /*キャンペーン用のソースコード ここまで*/
}
.campaign .header_nav_contact_small {
  font-size: 1rem;
  letter-spacing: 0.35em;
}
.campaign .header_nav_arrow {
  background: url(../images/campaign/show_next.svg) no-repeat right center;
}
.campaign_hero {
  background: url(../images/campaign/hero_campaign_sp.jpg) no-repeat center top;
  background-size: cover;
  width: 100%;
  padding-top: 53%;
}
@media (min-width: 960px) {
  .campaign_hero {
    background: url(../images/campaign/hero_campaign.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 607px;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .campaign_hero {
    background: url(../images/campaign/hero_campaign.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    padding-top: 42%;
  }
}
.campaign_hero_sp {
  max-width: 500px;
  margin: -100px auto 0 !important;
  padding: 0 16px;
}
.campaign_hero_sp img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .campaign_hero_sp {
    display: none;
  }
}
.campaign_benefits {
  background: var(--color-campaign01);
  width: 880px;
  margin: 80px auto;
  padding: 16px 0 54px;
}
.campaign_benefits_image {
  width: 62px;
  height: 46px;
}
.campaign_benefits_lead {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-size: 16px;
  font-weight: bolder;
  color: var(--color-campaign02);
  line-height: 1.6;
}
.campaign_benefits_lead small {
  font-size: 16px;
}
.campaign_benefits_lead strong {
  font-size: 24px;
  line-height: 1.6;
}
.campaign_benefits_title {
  font-size: 16px;
  font-weight: bolder;
  color: var(--color-campaign02);
  line-height: 1.6;
  text-align: center;
}
.campaign_benefits_title strong {
  font-size: 24px;
  line-height: 1.6;
}
.campaign_benefits_name {
  font-size: 20px;
  font-weight: bolder;
  color: var(--color-campaign02);
  line-height: 1.45;
  text-align: center;
}
@media (max-width: 959px) {
  .campaign_benefits {
    display: none;
  }
}
.campaign_new_freshman {
  width: 880px;
  margin: 80px auto;
  padding: 0 32px 8px;
  border: 4px solid var(--color-campaign02);
  border-radius: 16px;
}
.campaign_new_freshman_title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -39px;
  margin-left: 48px;
  width: 374px;
  height: 79px;
  background: url(../images/campaign/new_freshman_bg.svg) no-repeat center center;
  font-size: 2rem;
  font-weight: bolder;
  color: #fff;
  line-height: 1.45;
}
.campaign_new_freshman_subtitle {
  font-size: 2.4rem;
}
.campaign_new_freshman_subtitle small {
  font-size: 1.6rem;
}
.campaign_new_freshman_subtitle strong {
  margin-left: 8px;
  font-size: 3.2rem;
  color: var(--color-campaign02);
}
.campaign_new_freshman_body {
  display: flex;
}
.campaign_new_freshman_image {
  width: 176px;
}
.campaign_new_freshman_footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.campaign_new_freshman_item {
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
.campaign_new_freshman_button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  padding: 8px 24px;
  background-color: #378ff8;
  min-height: 60px;
  border-radius: 100px;
  font-weight: bolder;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1;
}
@media (min-width: 960px) {
  .campaign_new_freshman_button {
    width: 260px;
    font-size: 2rem;
    padding: 16px 32px;
  }
}
.campaign_new_freshman_button:hover {
  color: var(--color-campaign02);
  opacity: 0.8;
}
.campaign_new_freshman_student {
  width: 250px;
  margin-left: 40px;
}
@media (max-width: 959px) {
  .campaign_new_freshman {
    display: none;
  }
}
@media (min-width: 768px) {
  .campaign .introduction_students {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 960px) {
  .campaign .introduction_students {
    max-width: unset;
  }
}
@media (max-width: 549px) {
  .campaign .introduction_students {
    gap: 8px;
  }
}
@media (max-width: 549px) {
  .campaign .introduction_student_image {
    width: 52px;
    height: 42px;
  }
}
@media (max-width: 959px) {
  .campaign .introduction_student_comment {
    text-align: left;
  }
}
@media (max-width: 549px) {
  .campaign .introduction_student_comment {
    padding: 8px 4px;
    font-size: 1rem;
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
    text-align: center;
  }
}
@media (max-width: 549px) {
  .campaign .introduction_student_comment::after {
    left: 2px;
    border-top: 6px solid transparent;
    border-right: 10px solid var(--color-inverse);
    border-bottom: 6px solid transparent;
    border-left: 10px solid transparent;
  }
}
.campaign_introduction {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.campaign_introduction_title {
  text-align: center;
  font-size: 2rem;
}
@media (min-width: 960px) {
  .campaign_introduction_title {
    font-size: 4rem;
  }
}
.campaign_introduction_students {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
  width: 100%;
}
@media (min-width: 960px) {
  .campaign_introduction_students {
    justify-content: flex-start;
    gap: 40px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 959px) {
  .campaign_introduction_students {
    flex-wrap: wrap;
  }
}
.campaign_introduction_student {
  display: flex;
  align-items: center;
  width: calc((100% - 64px) / 2);
  flex-direction: column-reverse;
  gap: 20px;
  margin-top: 16px;
}
@media (min-width: 960px) {
  .campaign_introduction_student {
    gap: 24px;
    min-width: 200px;
  }
}
@media (max-width: 959px) {
  .campaign_introduction_student:nth-child(2n) {
    margin-left: 40px;
  }
}
.campaign_introduction_student_comment {
  position: relative;
  padding: 12px;
  width: 100%;
  border-radius: 16px;
  background-color: var(--color-inverse);
  font-size: 1.2rem;
  font-weight: bolder;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.05));
}
@media (min-width: 960px) {
  .campaign_introduction_student_comment {
    padding: 16px;
    font-size: 1.6rem;
  }
}
.campaign_introduction_student_comment::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border-top: 8px solid var(--color-inverse);
  border-bottom: 8px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
@media (min-width: 960px) {
  .campaign_introduction_student_comment::after {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    border-top: 16px solid var(--color-inverse);
    border-bottom: 16px solid transparent;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
  }
}
.campaign_introduction_student_image {
  color: var(--color-shogaku);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 100%;
     object-position: 0 100%;
  line-height: 1;
  width: 60px;
  height: 60px;
}
@media (min-width: 960px) {
  .campaign_introduction_student_image {
    width: 120px;
    height: 120px;
  }
}
.campaign_introduction_solution {
  margin-top: 24px;
  margin-bottom: 24px;
  line-height: 0;
  text-align: center;
}
@media (min-width: 960px) {
  .campaign_introduction_solution {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
.campaign_introduction_solution_image > * {
  width: 80%;
}
@media (min-width: 960px) {
  .campaign_introduction_solution_image > * {
    width: 100%;
  }
}
.campaign_introduction_bg {
  padding-top: 36%;
  background: url(../images/campaign/introduction_solution_bg_sp.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 960px) {
  .campaign_introduction_bg {
    background: url(../images/campaign/introduction_solution_bg_sp.svg) no-repeat;
  }
}
.campaign_cta {
  position: relative;
  background-color: #ffdfef;
}
@media (max-width: 959px) {
  .campaign_cta .section02 {
    padding-top: 56px;
  }
}
@media (max-width: 820px) {
  .campaign_cta img {
    max-width: 70%;
  }
}
@media (max-width: 550px) {
  .campaign_cta img {
    max-width: 100%;
  }
}
.campaign_cta_trysun {
  position: absolute;
  right: 10px;
  bottom: -10px;
  z-index: 0;
  width: 340px;
}
@media (min-width: 1900px) {
  .campaign_cta_trysun {
    width: 450px;
    height: auto;
  }
}
@media (max-width: 1140px) {
  .campaign_cta_trysun {
    right: -40px;
    width: 280px;
  }
}
.campaign_cta_trysun img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 960px) {
  .campaign_cta_trysun {
    overflow: hidden;
  }
}
@media (max-width: 959px) {
  .campaign_cta_trysun {
    display: none;
  }
}
.campaign_cta_arrow {
  margin: -100px auto 20px;
  display: block !important;
  max-width: 685px;
}
@media (max-width: 820px) {
  .campaign_cta_arrow {
    margin: -54px auto 20px;
  }
}
@media (max-width: 550px) {
  .campaign_cta_arrow {
    margin: -100px auto 20px;
  }
}
.campaign_cta_arrow img {
  width: 100%;
}
@media (min-width: 768px) {
  .campaign_cta_arrow {
    display: none !important;
  }
}
@media (max-width: 549px) {
  .campaign_cta_arrow {
    margin: -52px auto 0px;
  }
}
.campaign_cta_image {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 960px) {
  .campaign_cta_image {
    margin-bottom: 40px;
  }
}
.campaign_cta_startdash {
  display: flex;
  justify-content: center;
}
@media (max-width: 820px) {
  .campaign_cta_startdash img {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .campaign_cta_startdash img {
    max-width: 100%;
  }
}
.campaign_cta .microcopy {
  font-size: 1.6rem;
  font-weight: bolder;
  color: #10385e;
}
@media (min-width: 960px) {
  .campaign_cta .microcopy {
    font-size: 1.8rem;
  }
}
.campaign_feature_bg {
  background: rgb(238, 251, 255);
}
.campaign_feature_mediablock {
  position: relative;
}
@media (min-width: 960px) {
  .campaign_feature_mediablock {
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 959px) {
  .campaign_feature_mediablock {
    position: relative;
  }
}
.campaign_feature_title {
  font-size: 3.2rem;
  line-height: 1.45;
  color: var(--color-campaign02);
}
@media (max-width: 549px) {
  .campaign_feature_title h3 {
    font-size: 2rem;
    font-weight: 900;
  }
}
@media (min-width: 550px) {
  .campaign_feature_title h3 {
    font-size: 2.8rem;
  }
}
@media (min-width: 960px) {
  .campaign_feature_title {
    display: flex;
    align-items: center;
    background: rgba(254, 246, 250, 0.9);
    padding: 24px;
    line-height: 1.4375;
    border: 2px solid var(--color-darkpink);
  }
  .campaign_feature_title h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 959px) {
  .campaign_feature_title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
.campaign_feature_title::before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  background: var(--color-campaign02);
  border-radius: 50%;
  margin-right: 32px;
  width: 78px;
  height: 78px;
  font-size: 3.6rem;
  font-weight: bolder;
  line-height: 1.4444444444;
  color: var(--color-white);
}
@media (max-width: 959px) {
  .campaign_feature_title::before {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 58px;
    height: 58px;
  }
}
.campaign_feature_title--one::before {
  content: "1";
}
@media (min-width: 768px) {
  .campaign_feature_title--one {
    top: -32px;
  }
}
.campaign_feature_title--two::before {
  content: "2";
}
.campaign_feature_title--three::before {
  content: "3";
}
.campaign_feature_photo {
  width: 100%;
}
@media (min-width: 960px) {
  .campaign_feature_photo {
    position: absolute;
    left: 0;
    width: 500px;
  }
}
@media (max-width: 959px) {
  .campaign_feature_photo {
    padding-top: 70px;
  }
}
.campaign_feature_photo img {
  width: 100%;
  height: auto;
}
.campaign_feature_content {
  z-index: 2;
  width: 100%;
}
@media (min-width: 960px) {
  .campaign_feature_content {
    position: relative;
    width: calc(100% - 433px);
    margin-left: 88px;
    padding-top: 24px;
  }
}
.campaign_feature_text {
  margin-top: 16px;
  font-size: 1.2rem;
  line-height: 1.625;
  color: var(--color-secondary);
}
@media (min-width: 550px) {
  .campaign_feature_text {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .campaign_feature_text {
    margin-top: 40px;
    margin-left: auto;
    width: calc(100% - 154px);
    font-size: 1.4rem;
  }
}
.campaign_feature_subtitle {
  font-size: 2rem;
  font-weight: bolder;
  color: var(--color-secondary);
  line-height: 1.4583333333;
  text-align: center;
}
@media (min-width: 550px) {
  .campaign_feature_subtitle {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .campaign_feature_subtitle {
    font-size: 2.4rem;
  }
}
.campaign_feature_subtitle strong {
  background: linear-gradient(transparent 60%, #fff844 60%);
}
.campaign_feature_center {
  text-align: center;
}
.campaign_feature_list {
  display: inline-flex;
  justify-content: flex-start;
  margin: 16px 0 48px 0;
  flex-direction: column;
  text-align: left;
}
.campaign_feature_item {
  margin-top: 16px;
  padding: 5px 0 5px 34px;
  background: url(../images/campaign/icon_feature_check.svg) no-repeat left center;
  background-size: 27px;
  font-size: 1.4rem;
  font-weight: bolder;
  color: var(--color-secondary);
  line-height: 160%;
}
@media (min-width: 550px) {
  .campaign_feature_item {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .campaign_feature_item {
    font-size: 1.6rem;
  }
}
@media (max-width: 959px) {
  .campaign_feature_item {
    background-position: left top 8px;
  }
}
.campaign_feature_lead {
  margin: 40px 0;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
.campaign_feature_point {
  position: relative;
  margin-top: 38px;
  padding: 32px 16px;
  background: var(--color-white);
}
@media (min-width: 960px) {
  .campaign_feature_point {
    margin-top: 88px;
    padding: 80px 24px 56px;
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.05);
  }
}
.campaign_feature_point::before {
  display: block;
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  width: 78px;
  height: 37px;
  background: url(../images/campaign/campaign_feature_point.svg) no-repeat;
}
@media (min-width: 960px) {
  .campaign_feature_point::before {
    top: -60px;
    width: 193px;
    height: 90px;
  }
}
@media (max-width: 959px) {
  .campaign_feature_point::before {
    background: url(../images/campaign/campaign_feature_point_sp.svg) no-repeat;
    transform: translateX(-12.5%);
  }
}
@media (min-width: 768px) {
  .campaign .feature_planner {
    align-items: flex-start;
    gap: 0 8px;
  }
}
.campaign .feature_planner_caption {
  font-size: 1.6rem;
  color: var(--color-secondary);
}
@media (min-width: 550px) {
  .campaign .feature_planner_caption {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .campaign .feature_planner_caption {
    font-size: 2rem;
  }
}
.campaign .feature_planner_caption span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .campaign .feature_planner {
    display: block;
  }
}
.campaign .feature_planner_description {
  display: block;
}
@media (max-width: 549px) {
  .campaign .feature_planner_description {
    font-size: 1.4rem;
  }
}
@media (max-width: 549px) {
  .campaign .feature_planner_image {
    text-align: center;
  }
  .campaign .feature_planner_image img {
    max-width: 75%;
  }
}
@media (max-width: 959px) {
  .campaign .feature_planner_other,
  .campaign .feature_planner_try {
    width: 100%;
  }
}
.campaign .feature_planner_try_caption {
  color: var(--color-darkpink);
}
.campaign .feature_planner_try_comment {
  padding: 8px 16px;
  margin-bottom: 10px;
  background: var(--color-darkpink);
}
@media (max-width: 767px) {
  .campaign .feature_planner_try {
    margin-top: 32px;
  }
}
.campaign .feature_planner_try .feature_planner_caption {
  color: var(--color-darkpink);
}
.campaign_cp {
  margin-top: 40px;
}
.campaign_cp .campaign_feature_subtitle {
  margin-bottom: 32px;
}
@media (min-width: 960px) {
  .campaign_cp {
    margin-top: 122px;
  }
}
.campaign_cp_title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: -23px;
  background: var(--color-campaign02);
  border-radius: 30px;
  width: 246px;
  height: 46px;
  font-size: 1.6rem;
  color: var(--color-white);
  z-index: 2;
}
@media (max-width: 959px) {
  .campaign_cp_title {
    margin-left: auto;
    margin-right: auto;
  }
}
.campaign_cp_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 0;
}
@media (max-width: 959px) {
  .campaign_cp_list {
    flex-direction: columns;
  }
}
.campaign_cp_item {
  border: 5px solid var(--color-link);
  border-radius: 32px;
  background: var(--color-white);
  padding: 24px 16px 8px 8px;
  width: 100%;
}
@media (max-width: 820px) {
  .campaign_cp_item:first-child {
    padding-top: 34px;
  }
}
@media (min-width: 960px) {
  .campaign_cp_item {
    padding: 32px 16px 16px 8px;
    width: calc((100% - 48px) / 2);
  }
}
.campaign_cp_item_title {
  color: var(--color-darkpink);
  text-align: center;
}
.campaign_cp_mediablock {
  margin-top: 16px;
  display: flex;
  gap: 20px;
}
@media (min-width: 960px) {
  .campaign_cp_mediablock {
    display: flex;
    align-items: center;
  }
}
.campaign_cp_photo {
  max-width: 217px;
}
.campaign_cp_photo img {
  width: 100%;
  height: auto;
}
@media (max-width: 549px) {
  .campaign_cp_photo {
    width: 108px;
  }
}
.campaign_cp_content {
  flex: 1;
  font-size: 1.4rem;
}
@media (min-width: 550px) {
  .campaign_cp_content {
    font-size: 1.6rem;
    margin-left: 24px;
  }
}
.campaign .flow_support {
  background: rgba(199, 241, 255, 0.4);
}
.campaign .flow_support_title {
  color: rgb(36, 155, 217);
}
.campaign_flow {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.campaign_flow_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 960px) {
  .campaign_flow_title {
    font-size: 4rem;
  }
}
.campaign_flow_title small {
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media (min-width: 960px) {
  .campaign_flow_title small {
    font-size: 3.2rem;
  }
}
.campaign_flow_head {
  position: relative;
  background: var(--color-white);
}
@media (max-width: 959px) {
  .campaign_flow_head.--icon {
    padding-top: 32px;
  }
}
@media (min-width: 960px) {
  .campaign_flow_head {
    padding: 12px 24px 20px 0;
    width: 184px;
  }
}
@media (max-width: 959px) {
  .campaign_flow_head {
    display: flex;
    align-items: center;
  }
}
.campaign_flow_head::after {
  position: absolute;
  right: 0;
  top: 12px;
  background: #f4f4f4;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
}
.campaign_flow_head_2 {
  position: relative;
  background: var(--color-white);
}
@media (min-width: 960px) {
  .campaign_flow_head_2 {
    padding: 12px 0px 20px 0;
  }
}
@media (max-width: 959px) {
  .campaign_flow_head_2 {
    display: flex;
    align-items: center;
  }
}
.campaign_flow_head_2::after {
  position: absolute;
  right: 0;
  top: 12px;
  background: #f4f4f4;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
}
.campaign_flow_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  margin-top: 32px;
  list-style: none;
}
@media (min-width: 960px) {
  .campaign_flow_list {
    margin-top: 48px;
  }
}
@media (min-width: 960px) {
  .campaign_flow_list_item {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 959px) {
  .campaign_flow_list_item {
    background: var(--color-white);
    padding: 16px;
  }
}
.campaign_flow_list_item:not(:last-of-type) {
  padding-bottom: 40px;
  background-image: url(../images/campaign/campaign_flow_chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 12px 7px;
}
@media (min-width: 960px) {
  .campaign_flow_list_item:not(:last-of-type) {
    background-position: 72px calc(100% - 8px);
    background-size: 27px 15px;
  }
}
@media (max-width: 959px) {
  .campaign_flow_list_item.--icon {
    position: relative;
  }
}
@media (min-width: 960px) {
  .campaign_flow_list_item_2 {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 959px) {
  .campaign_flow_list_item_2 {
    background: var(--color-white);
    padding: 16px;
  }
}
.campaign_flow_list_item_2:not(:last-of-type) {
  padding-bottom: 40px;
  background-image: url(../images/icons/scroll_down2.png);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 30px 31px;
}
@media (min-width: 960px) {
  .campaign_flow_list_item_2:not(:last-of-type) {
    background-position: center calc(100% - 8px);
    background-size: 35px 36px;
  }
}
.campaign_flow_step {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-campaign01);
  width: 85px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--color-primary);
  font-weight: bolder;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .campaign_flow_step {
    flex: 1 1 auto;
  }
}
.campaign_flow_step_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  width: -moz-fit-content;
  width: fit-content;
  height: 26px;
  flex: 0 0 auto;
  color: var(--color-red);
  font-weight: bolder;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .campaign_flow_step_2 {
    flex: 1 1 auto;
    width: 100%;
  }
}
.campaign_flow_caption {
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .campaign_flow_caption {
    margin-top: 8px;
    margin-left: 24px;
    font-size: 2rem;
  }
}
@media (max-width: 959px) {
  .campaign_flow_caption {
    margin-left: 16px;
  }
}
.campaign_flow_caption_2 {
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .campaign_flow_caption_2 {
    margin-top: 8px;
    margin-left: 0;
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 959px) {
  .campaign_flow_caption_2 {
    margin-left: 16px;
  }
}
.campaign_flow_description {
  display: flex;
  align-items: center;
  flex: 1;
  background-color: var(--color-white);
  font-size: 1.4rem;
}
@media (min-width: 550px) {
  .campaign_flow_description {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .campaign_flow_description {
    position: relative;
    padding: 16px 24px;
    min-height: 98px;
    font-size: 1.4rem;
  }
}
@media (max-width: 959px) {
  .campaign_flow_description {
    margin-top: 8px;
  }
}
.campaign_flow_description.--icon::before {
  display: block;
  content: url(../images/campaign/icon-free.svg);
  position: absolute;
  left: 16px;
  top: -4px;
  width: 162px;
  height: 43px;
}
@media (min-width: 960px) {
  .campaign_flow_description.--icon::before {
    left: 80px;
    top: -28px;
  }
}
.campaign_flow {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.campaign_flow_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 960px) {
  .campaign_flow_title {
    font-size: 4rem;
  }
}
.campaign_flow_title small {
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media (min-width: 960px) {
  .campaign_flow_title small {
    font-size: 3.2rem;
  }
}
.campaign_flow_head {
  position: relative;
  background: var(--color-white);
}
@media (max-width: 959px) {
  .campaign_flow_head.--icon {
    padding-top: 32px;
  }
}
@media (min-width: 960px) {
  .campaign_flow_head {
    padding: 12px 24px 20px 0;
    width: 184px;
  }
}
@media (max-width: 959px) {
  .campaign_flow_head {
    display: flex;
    align-items: center;
  }
}
.campaign_flow_head::after {
  position: absolute;
  right: 0;
  top: 12px;
  background: #f4f4f4;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
}
.campaign_flow_head_2 {
  position: relative;
  background: var(--color-white);
}
@media (min-width: 960px) {
  .campaign_flow_head_2 {
    padding: 12px 0px 20px 0;
  }
}
@media (max-width: 959px) {
  .campaign_flow_head_2 {
    display: flex;
    align-items: center;
  }
}
.campaign_flow_head_2::after {
  position: absolute;
  right: 0;
  top: 12px;
  background: #f4f4f4;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
}
.campaign_flow_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  margin-top: 32px;
  list-style: none;
}
@media (min-width: 960px) {
  .campaign_flow_list {
    margin-top: 48px;
  }
}
@media (min-width: 960px) {
  .campaign_flow_list_item {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 959px) {
  .campaign_flow_list_item {
    background: var(--color-white);
    padding: 16px;
  }
}
.campaign_flow_list_item:not(:last-of-type) {
  padding-bottom: 40px;
  background-image: url(../images/campaign/campaign_flow_chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 12px 7px;
}
@media (min-width: 960px) {
  .campaign_flow_list_item:not(:last-of-type) {
    background-position: 72px calc(100% - 8px);
    background-size: 27px 15px;
  }
}
@media (max-width: 959px) {
  .campaign_flow_list_item.--icon {
    position: relative;
  }
}
@media (min-width: 960px) {
  .campaign_flow_list_item_2 {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 959px) {
  .campaign_flow_list_item_2 {
    background: var(--color-white);
    padding: 16px;
  }
}
.campaign_flow_list_item_2:not(:last-of-type) {
  padding-bottom: 40px;
  background-image: url(../images/icons/scroll_down2.png);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 30px 31px;
}
@media (min-width: 960px) {
  .campaign_flow_list_item_2:not(:last-of-type) {
    background-position: center calc(100% - 8px);
    background-size: 35px 36px;
  }
}
.campaign_flow_step {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-campaign01);
  width: 85px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--color-primary);
  font-weight: bolder;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .campaign_flow_step {
    flex: 1 1 auto;
  }
}
.campaign_flow_step_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  width: -moz-fit-content;
  width: fit-content;
  height: 26px;
  flex: 0 0 auto;
  color: var(--color-red);
  font-weight: bolder;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .campaign_flow_step_2 {
    flex: 1 1 auto;
    width: 100%;
  }
}
.campaign_flow_caption {
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .campaign_flow_caption {
    margin-top: 8px;
    margin-left: 24px;
    font-size: 2rem;
  }
}
@media (max-width: 959px) {
  .campaign_flow_caption {
    margin-left: 16px;
  }
}
.campaign_flow_caption_2 {
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .campaign_flow_caption_2 {
    margin-top: 8px;
    margin-left: 0;
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 959px) {
  .campaign_flow_caption_2 {
    margin-left: 16px;
  }
}
.campaign_flow_description {
  display: flex;
  align-items: center;
  flex: 1;
  background-color: var(--color-white);
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .campaign_flow_description {
    position: relative;
    padding: 16px 24px;
    min-height: 98px;
    font-size: 1.3rem;
  }
}
@media (max-width: 959px) {
  .campaign_flow_description {
    margin-top: 8px;
  }
}
.campaign_flow_description.--icon::before {
  display: block;
  content: url(../images/campaign/icon-free.svg);
  position: absolute;
  left: 16px;
  top: -4px;
  width: 162px;
  height: 43px;
}
@media (min-width: 960px) {
  .campaign_flow_description.--icon::before {
    left: 80px;
    top: -28px;
  }
}
.campaign .flow_support {
  margin-top: 48px;
}
.campaign .flow_support:last-of-type .flow_support_title {
  color: var(--color-darkpink);
}
.campaign .flow_support:last-of-type .flow_support_texts {
  background: #f8e0ec;
}
.campaign .flow_support_title {
  font-size: 1.6rem;
}
@media (min-width: 550px) {
  .campaign .flow_support_title {
    font-size: 2rem;
  }
}
@media (min-width: 960px) {
  .campaign .flow_support_title {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
@media (min-width: 960px) {
  .campaign .flow_support_texts {
    padding: 24px 16px;
  }
}
.campaign .flow_support_description {
  font-size: 1.4rem;
  line-height: 1.6428571429;
}
@media (min-width: 550px) {
  .campaign .flow_support_description {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .campaign .flow_support_description {
    font-size: 1.4rem;
  }
}
.campaign_voice_title {
  font-size: 2rem;
  color: var(--color-campaign02);
  line-height: 1.45;
  text-align: center;
}
@media (min-width: 550px) {
  .campaign_voice_title {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .campaign_voice_title {
    font-size: 4rem;
  }
}
.campaign_voice_slider {
  margin-top: 24px;
}
@media (min-width: 960px) {
  .campaign_voice_slider {
    margin-top: 32px;
  }
}
.campaign_voice_subtitle {
  font-size: 1.6rem;
  font-weight: bolder;
  letter-spacing: 0.07em;
}
@media (min-width: 960px) {
  .campaign_voice_subtitle {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.campaign_voice_content {
  margin-top: 14px;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .campaign_voice_content {
    font-size: 1.4rem;
    line-height: 1.6428571429;
  }
}
.campaign_voice .slick-slide {
  margin: 0 10px;
}
.campaign_voice_item {
  /*
  padding: 16px 24px;
  background: var(--color-white);
  box-shadow: 0px 20px 64px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  @include mq-min(desktop) {
    padding: 32px;
  }
  */
}
.campaign_voice_footer {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
@media (min-width: 960px) {
  .campaign_voice_footer {
    margin-top: 20px;
  }
}
.campaign_voice_photo {
  width: 70px;
  height: 70px;
}
.campaign_voice_photo img {
  width: 100%;
  height: auto;
}
.campaign_voice_meta {
  margin-left: 20px;
}
.campaign_voice__name {
  font-size: 1.5rem;
  font-weight: bolder;
}
.campaign_voice__name small {
  margin-left: 5px;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 960px) {
  .campaign_voice__name {
    font-size: 1.8rem;
  }
  .campaign_voice__name small {
    font-size: 1.2rem;
  }
}
.campaign_voice__profile {
  font-size: 1rem;
}
@media (min-width: 960px) {
  .campaign_voice__profile {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.campaign_voice .slick-track {
  display: flex;
}
.campaign_voice .slick-slide {
  height: auto !important;
  padding: 16px 24px;
  background: var(--color-white);
  box-shadow: 0px 20px 64px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
@media (min-width: 960px) {
  .campaign_voice .slick-slide {
    padding: 32px;
  }
}
.campaign_voice .prev-arrow {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-100%);
  z-index: 2;
}
@media (min-width: 960px) {
  .campaign_voice .prev-arrow {
    left: 100px;
  }
}
.campaign_voice .next-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-100%);
  z-index: 2;
}
@media (min-width: 960px) {
  .campaign_voice .next-arrow {
    right: 100px;
  }
}
.campaign_voice_caution {
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--color-darkgray);
  line-height: 1.5833333333;
  text-align: center;
}
@media (min-width: 960px) {
  .campaign_voice_caution {
    margin-top: 24px;
  }
}
.campaign_voice_button {
  display: flex;
  justify-content: center;
  width: 247px;
  height: 56px;
  margin: 16px auto 0;
  font-size: 1.6rem;
  color: var(--color-campaign02);
}
@media (min-width: 960px) {
  .campaign_voice_button {
    margin: 40px auto 0;
    width: 392px;
    height: 78px;
    font-size: 2.4rem;
  }
}
.campaign_voice_button:hover {
  color: var(--color-inverse);
  background-color: var(--color-primary);
}
.campaign_voice_button-border {
  border: 3px solid var(--color-campaign02);
  color: var(--color-campaign02);
  font-weight: bolder;
}
@media (min-width: 960px) {
  .campaign_voice_button-border {
    border: 4px solid var(--color-campaign02);
  }
}
.campaign .contact_content {
  align-items: center;
}
@media (min-width: 960px) {
  .campaign .contact_content {
    padding: 0;
  }
}
.campaign .contact_button {
  position: relative;
  margin: 16px auto 0;
  max-width: 640px;
  background-color: var(--color-link);
  font-size: 2rem;
  color: var(--color-white);
  overflow: hidden;
}
.campaign .contact_button::before {
  animation: shine 4s infinite;
}
.campaign .contact_button::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
@media (min-width: 550px) {
  .campaign .contact_button {
    font-size: 2.8rem;
  }
}
@media (min-width: 960px) {
  .campaign .contact_button {
    margin-top: 16px;
    font-size: 4rem;
  }
}
@media (max-width: 959px) {
  .campaign .contact_button {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 960px) {
  .campaign .contact_button small {
    font-size: 1.6rem;
  }
}
.campaign .contact_button:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-defalut-h) + 0deg), calc(var(--color-defalut-s) + 0%), calc(var(--color-defalut-l) + -20%), calc(var(--color-defalut-a) + -0.5));
  opacity: 1;
}
.campaign .contact_button-taiken {
  color: var(--color-campaign02);
  border: 2px solid var(--color-campaign02);
  background-color: var(--color-primary);
}
.campaign .contact_button-taiken:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  opacity: 1;
}
.campaign .contact_button_icon {
  color: var(--color-campaign02);
}
.campaign .contact_button-taiken:hover .contact_button_icon {
  color: var(--color-primary);
}
.campaign .contact_tel {
  color: var(--color-white);
  border: 0;
}
.campaign .contact_tel_link {
  color: var(--color-link);
}
.campaign .contact_tel_number {
  font-size: 3.2rem;
}
@media (max-width: 959px) {
  .campaign .contact_tel_number {
    font-size: 2rem;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  }
}
.campaign .contact_tel_small {
  letter-spacing: 0;
}
@media (max-width: 959px) {
  .campaign .contact_tel_small {
    font-size: 1.1rem;
    margin-top: 8px;
    margin-left: 0;
  }
}
.campaign .contact_tel_icon {
  width: 44px;
  height: 44px;
  color: var(--color-white);
}
@media (max-width: 959px) {
  .campaign .contact_tel_icon {
    width: 22px;
    height: 22px;
  }
}
.campaign .contact_tel_icon_link {
  color: var(--color-link);
}
@media (min-width: 960px) {
  .campaign .microcopy {
    margin-bottom: 0;
  }
}
.campaign .faq_q::before {
  color: var(--color-darkpink);
}
.campaign .section_title_secondary {
  color: var(--color-secondary);
}
.campaign .contact_simple02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-campaign02);
  background-color: var(--color-campaign01);
}
@media (min-width: 960px) {
  .campaign .contact_simple02 {
    gap: 24px;
  }
}
.campaign .contact_simple02_darkpink {
  color: var(--color-white);
  background-color: #ff539e;
}
.campaign .contact_simple02_bg {
  background-image: url(../images/campaign/cta_bg_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom 0;
}
@media (min-width: 960px) {
  .campaign .contact_simple02_bg {
    background-image: url(../images/campaign/cta_bg_01_sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom -100px;
  }
}
.campaign .contact_simple02_bg02 {
  background-image: url(../images/campaign/cta_bg_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom -40px;
}
@media (min-width: 960px) {
  .campaign .contact_simple02_bg02 {
    background-image: url(../images/campaign/cta_bg_01_sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom -100px;
  }
}
.campaign .contact_simple02_title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
}
@media (min-width: 550px) {
  .campaign .contact_simple02_title {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .campaign .contact_simple02_title {
    font-size: 3.2rem;
    line-height: 1.4375;
  }
}
.campaign .contact_simple02_record {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .campaign .contact_simple02_record {
    margin-bottom: 56px;
  }
}
@media (max-width: 959px) {
  .campaign .contact_simple02_record {
    margin-top: 8px;
  }
}
@media (max-width: 959px) {
  .campaign .contact_simple02_record img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.campaign .contact_simple02_record_item {
  width: 609px;
}
.campaign .contact_simple02_overview {
  display: flex;
  justify-content: center;
  color: #999999;
}
@media (max-width: 959px) {
  .campaign .contact_simple02_overview {
    margin-top: 8px;
  }
}
.campaign .contact_simple02_overview_caption {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  font-weight: bolder;
  line-height: 2;
}
@media (min-width: 960px) {
  .campaign .contact_simple02_overview_caption {
    font-size: 1.2rem;
    font-weight: bolder;
    color: var(--color-darkpink);
  }
}
.campaign .bg-sakura01 {
  background-color: #fafafa;
  background-image: url(../images/campaign/campaign_introduction_sakura_bg.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.campaign .bg-sakura02 {
  background-image: url(../images/campaign/cta_bg_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom -240%;
}
.campaign .microcopy02 {
  margin-bottom: -16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .campaign .microcopy02 {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}
@keyframes shine {
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.campaign .contact_simple02--last .microcopy02 {
  margin-bottom: 0;
  white-space: nowrap;
}
@media (min-width: 960px) {
  .campaign .contact_simple02--last .microcopy02 {
    font-size: 2rem !important;
  }
}

/*0614修正*/
.campaign_flow_list {
  margin-top: unset;
}
@media (min-width: 960px) {
  .campaign_flow_list {
    flex-direction: row;
  }
}

.campaign_flow_list_item.campaign_flow_list_item_2:not(:last-of-type) {
  background-position: center calc(100% + 2px);
}
@media (min-width: 960px) {
  .campaign_flow_list_item.campaign_flow_list_item_2 {
    flex-direction: column;
    padding-bottom: unset;
    width: 25%;
  }
  .campaign_flow_list_item.campaign_flow_list_item_2:not(:last-of-type) {
    position: relative;
  }
  .campaign_flow_list_item.campaign_flow_list_item_2:not(:last-of-type)::after {
    position: absolute;
    content: "";
    background-image: url(../images/icons/scroll_down2.png);
    background-repeat: no-repeat;
    background-size: contain;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    rotate: -90deg;
    z-index: 10;
  }
  .campaign_flow_list_item.campaign_flow_list_item_2:first-of-type .campaign_flow_head {
    border-radius: 16px 0 0 0;
  }
  .campaign_flow_list_item.campaign_flow_list_item_2:first-of-type .campaign_flow_description {
    border-radius: 0 0 0 16px;
  }
  .campaign_flow_list_item.campaign_flow_list_item_2:last-of-type .campaign_flow_head {
    border-radius: 0 16px 0 0;
  }
  .campaign_flow_list_item.campaign_flow_list_item_2:last-of-type .campaign_flow_description {
    border-radius: 0 0 16px 0;
  }
}

@media (min-width: 960px) {
  .campaign_flow_head {
    width: 100%;
  }
}

@media (min-width: 960px) {
  .campaign_flow_head_2 {
    padding: 12px 0px 0px 0;
  }
}

@media (min-width: 960px) {
  .campaign_flow_head_2::after {
    position: unset;
    content: none;
  }
}

@media (min-width: 960px) {
  .campaign_flow_description {
    align-items: flex-start;
  }
}

.campaign_flow_head.--icon {
  padding-top: unset;
}

@media (min-width: 960px) {
  .campaign_flow_list_item.campaign_flow_list_item_2:last-of-type .campaign_flow_head {
    padding: 12px 0px 0px 0;
  }
}

/*キャンペーン用のソースコード*/
.summercp {
  /*トライの夏期講習なら、そのようなお悩みをすべて解決します！*/
  /*トライの夏期講習のここがすごい*/
  /*合格実績*/
}
@media (min-width: 960px) {
  .summercp {
    padding: 0 20px;
  }
}
@media (min-width: 550px) {
  .summercp {
    padding: 0 0px;
    margin: 0 auto;
    overflow-x: hidden;
  }
}
.summercp_hero {
  background: url(../images/summercp/mv_sp.jpg) no-repeat center top;
  background-size: cover;
  width: 100%;
  padding-top: 53%;
}
@media (min-width: 960px) {
  .summercp_hero {
    background: url(../images/summercp/mv_pc.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    padding-top: 42%;
  }
}
.summercp_bg {
  background: var(--color-summercp01);
}
.summercp_bg2 {
  background: #f5f5f5;
}
.summercp_bg3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-summercp02);
  background-color: #d9f1ff;
}
@media (min-width: 768px) {
  .summercp_bg3 {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .summercp .contact_simple02_title-02 {
    font-weight: 700;
  }
}
.summercp .contact_simple02_title-03 {
  color: #fff;
  line-height: 1.4;
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .summercp .contact_simple02_title-03 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .summercp .contact_simple02_title-04 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .summercp .contact_simple02_title-05 {
    line-height: 1.4;
  }
}
.summercp__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-summercp-strong);
}
@media (min-width: 550px) {
  .summercp__title {
    font-size: 3rem;
  }
}
@media (min-width: 960px) {
  .summercp__title {
    font-size: 3.6rem;
  }
}
.summercp__title span {
  font-size: 2rem;
}
@media (min-width: 550px) {
  .summercp__title span {
    font-size: 2.2rem;
  }
}
@media (min-width: 960px) {
  .summercp__title span {
    font-size: 2.4rem;
  }
}
.summercp .header_nav_contact_small {
  font-size: 1rem;
  letter-spacing: 0.35em;
}
.summercp .header_nav_arrow {
  background: url(../images/summercp/show_next.svg) no-repeat right center;
}
.summercp .cm_video {
  padding: 80px 0;
  background: linear-gradient(180deg, #134a8b 0%, #378ff8 100%);
}
.summercp .cm_video .iframe_wrap {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .summercp .cm_video {
    padding: 24px 0;
  }
}
.summercp .cm_video_title02 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px) {
  .summercp .cm_video_title02 {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .summercp .cm_video_title02 {
    font-size: 2.8rem;
  }
}
@media (max-width: 959px) {
  .summercp .introduction.section02 {
    padding: 40px 0 80px !important;
  }
}
@media (max-width: 767px) {
  .summercp .introduction.section02 {
    padding: 40px 0 20px !important;
  }
}
@media (min-width: 768px) {
  .summercp .introduction_students {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 960px) {
  .summercp .introduction_students {
    max-width: unset;
  }
}
@media (max-width: 549px) {
  .summercp .introduction_students {
    gap: 16px;
  }
}
@media (max-width: 549px) {
  .summercp .introduction_student_image {
    width: 52px;
    height: 42px;
  }
}
.summercp .introduction_student_comment strong {
  color: var(--color-summercp02);
}
@media (max-width: 959px) {
  .summercp .introduction_student_comment {
    text-align: left;
    border: 1px solid var(--color-summercp02);
    background: var(--color-summercp01);
    padding: 12px 16px;
    font-size: 1.2rem;
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
    text-align: center;
    color: #134a8b;
  }
}
@media (max-width: 959px) {
  .summercp .introduction_student_comment::after {
    display: none;
  }
}
.summercp_introduction {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.section02 .summercp_introduction_title {
  text-align: center;
  font-size: 2rem;
  color: var(--color-summercp02);
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .section02 .summercp_introduction_title {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .section02 .summercp_introduction_title {
    font-size: 4rem;
  }
}
.summercp_introduction_students {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
  width: 100%;
}
@media (min-width: 960px) {
  .summercp_introduction_students {
    justify-content: flex-start;
    gap: 40px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 959px) {
  .summercp_introduction_students {
    flex-wrap: wrap;
  }
}
.summercp_introduction_student {
  display: flex;
  align-items: center;
  width: calc((100% - 64px) / 2);
  flex-direction: column-reverse;
  gap: 20px;
  margin-top: 16px;
}
@media (min-width: 960px) {
  .summercp_introduction_student {
    gap: 24px;
    min-width: 200px;
  }
}
@media (max-width: 959px) {
  .summercp_introduction_student:nth-child(2n) {
    margin-left: 40px;
  }
}
.summercp_introduction_student_comment {
  position: relative;
  padding: 12px;
  width: 100%;
  border-radius: 16px;
  background-color: var(--color-inverse);
  font-size: 1.2rem;
  font-weight: bolder;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.05));
}
@media (min-width: 960px) {
  .summercp_introduction_student_comment {
    padding: 16px;
    font-size: 1.6rem;
  }
}
.summercp_introduction_student_comment::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border-top: 8px solid var(--color-inverse);
  border-bottom: 8px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
@media (min-width: 960px) {
  .summercp_introduction_student_comment::after {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    border-top: 16px solid var(--color-inverse);
    border-bottom: 16px solid transparent;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
  }
}
.summercp_introduction_student_image {
  color: var(--color-shogaku);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 100%;
     object-position: 0 100%;
  line-height: 1;
  width: 60px;
  height: 60px;
}
@media (min-width: 960px) {
  .summercp_introduction_student_image {
    width: 120px;
    height: 120px;
  }
}
.summercp_introduction_solution {
  margin-top: 24px;
  margin-bottom: 24px;
  line-height: 0;
  text-align: center;
}
@media (min-width: 960px) {
  .summercp_introduction_solution {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
.summercp_introduction_solution_image > * {
  width: 80%;
}
@media (min-width: 960px) {
  .summercp_introduction_solution_image > * {
    width: 100%;
  }
}
.summercp__resolution .summercp__title {
  margin: 45px 0 30px;
  color: #f51d7a;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .summercp__resolution .summercp__title {
    margin: 80px 0 80px;
    font-size: 4.8rem;
  }
}
.summercp .feature02 {
  max-width: 895px;
  margin: 0 auto;
}
.summercp .feature02__header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -60px;
}
@media (min-width: 400px) {
  .summercp .feature02__header {
    margin-top: -80px;
  }
}
.summercp .feature02__title {
  position: relative;
  top: 8px;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-summercp02);
  text-align: left;
  line-height: 1.2;
}
@media (min-width: 550px) {
  .summercp .feature02__title {
    top: 24px;
    font-size: 4.8rem;
  }
}
@media (min-width: 960px) {
  .summercp .feature02__title {
    top: unset;
    margin-left: auto;
    width: 612px;
    font-size: 6.4rem;
    text-align: center;
  }
}
.summercp .feature02__title span {
  font-size: 1.6rem;
}
@media (min-width: 550px) {
  .summercp .feature02__title span {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .summercp .feature02__title span {
    font-size: 4rem;
  }
}
.summercp .feature02__try {
  width: 101px;
}
@media (min-width: 400px) {
  .summercp .feature02__try {
    width: 150px;
    margin-right: 25px;
  }
}
@media (min-width: 960px) {
  .summercp .feature02__try {
    width: 216px;
    margin-right: 50px;
  }
}
.summercp .feature02__item {
  position: relative;
  margin-bottom: 28px;
  padding: 20px;
  border: 2px solid var(--color-summercp02);
  border-radius: 2px;
  background: #fff;
}
@media (min-width: 768px) {
  .summercp .feature02__item {
    margin-bottom: 56px;
    padding: 30px;
  }
}
.summercp .feature02__item::after {
  display: block;
  content: "";
  position: absolute;
  transform: translate(-50%, 50%);
  left: 50%;
  bottom: 0;
  background: url(/assets/images/summercp/icon-feature.png) no-repeat;
  width: 99px;
  height: 48px;
}
.summercp .feature02__item-header {
  display: flex;
  align-items: center;
  color: var(--color-summercp02);
}
.summercp .feature02__number {
  margin-right: 12px;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 768px) {
  .summercp .feature02__number {
    font-size: 4.8rem;
  }
}
@media (min-width: 960px) {
  .summercp .feature02__number {
    margin-right: 24px;
    font-size: 6rem;
  }
}
.summercp .feature02__sub-title {
  padding-left: 12px;
  border-left: 2px solid var(--color-summercp02);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .summercp .feature02__sub-title {
    font-size: 2.6rem;
  }
}
@media (min-width: 960px) {
  .summercp .feature02__sub-title {
    padding-left: 24px;
    font-size: 2.8rem;
  }
}
.summercp .feature02__image {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 339px;
}
@media (max-width: 767px) {
  .summercp .feature02__image {
    margin-right: auto;
    margin-left: auto;
  }
}
.summercp .feature02__image img {
  width: 100%;
  height: auto;
}
.summercp .feature02__content {
  margin-top: 13px;
  flex: 1;
  font-size: 1.2rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .summercp .feature02__content {
    margin-top: 0;
    margin-left: 40px;
    font-size: 1.6rem;
  }
}
.summercp .feature02__body {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .summercp .feature02__body {
    margin-top: 24px;
    display: flex;
    align-items: center;
    padding-left: 24px;
  }
}
.summercp .feature02__answer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-summercp-strong);
  text-align: center;
}
.summercp .feature02__answer p {
  border-bottom: 13px solid #ffdd76;
}
@media (min-width: 768px) {
  .summercp .feature02__answer p {
    border-bottom: 26px solid rgba(255, 221, 118, 0.6);
    line-height: 1.1;
  }
}
@media (min-width: 768px) {
  .summercp .feature02__answer {
    margin-bottom: 45px;
    font-size: 4rem;
    text-align: left;
  }
}
.summercp .feature02__message {
  margin: 16px 0 32px;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-summercp02);
  text-align: center;
}
@media (min-width: 960px) {
  .summercp .feature02__message {
    margin: 80px 0 72px;
    font-size: 4.8rem;
  }
}
.summercp .benefits {
  text-align: center;
}
.summercp__cta .contact_simple02_title.--blue {
  margin-bottom: 40px;
  line-height: 1.4;
}
@media (max-width: 399px) {
  .summercp__cta .contact_simple02_title.--blue {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.summercp__cta .microcopy02 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #134a8b;
}
@media (min-width: 960px) {
  .summercp__cta .microcopy02 {
    font-size: 2rem;
  }
}
.summercp__cta .microcopy02-2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: -8px;
  color: #134a8b;
}
@media (min-width: 960px) {
  .summercp__cta .microcopy02-2 {
    margin-bottom: -16px;
    font-size: 2rem;
  }
}
.summercp__cta .summercp__copy {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #134a8b;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .summercp__cta .summercp__copy {
    margin-top: 8px;
    font-size: 2.6rem;
  }
}
@media (min-width: 960px) {
  .summercp__cta .summercp__copy {
    margin-top: 0;
    font-size: 3.2rem;
  }
}
.summercp__cta .summercp__copy span {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .summercp__cta .summercp__copy span {
    font-size: 2rem;
  }
}
@media (min-width: 960px) {
  .summercp__cta .summercp__copy span {
    font-size: 2.4rem;
  }
}
.summercp__cta .contact_button {
  margin-top: 8px !important;
  background-color: #f6d021 !important;
  color: #134a8b !important;
}
@media (min-width: 768px) {
  .summercp__cta .contact_button {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .summercp__cta .contact_button .contact_button_small {
    font-size: 2rem;
    font-weight: 700;
  }
}
.summercp__cta .contact_button2 {
  margin-top: 8px !important;
  background-color: #f6d021 !important;
  color: #134a8b !important;
  font-weight: 900;
}
@media (min-width: 768px) {
  .summercp__cta .contact_button2 {
    margin-top: 0;
    font-size: 3.6rem !important;
  }
}
.summercp__cta .contact_tel,
.summercp__cta .contact_tel_icon {
  color: #134a8b !important;
}
.summercp__cta2 {
  background: url(/assets/images/summercp/summercp_bg02.png) no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .summercp__cta2_inner {
    max-width: 700px;
  }
}
.summercp__cta2 .contact_simple02_record {
  margin: 16px 0 24px;
}
@media (min-width: 768px) {
  .summercp__cta2 .contact_simple02_record {
    margin: 24px 0;
  }
}
@media (min-width: 960px) {
  .summercp__cta2 .contact_simple02_record {
    margin: 36px 0;
  }
}
.summercp__cta2 .contact_simple02_title.--blue {
  line-height: 1.6 !important;
  margin-bottom: 20px;
}
@media (max-width: 959px) {
  .summercp__cta2 .contact_simple02_title.--blue {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .summercp__cta2 .contact_simple02_title.--blue {
    font-size: 2.4rem;
  }
}
@media (max-width: 399px) {
  .summercp__cta2 .contact_simple02_title.--blue {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.summercp__cta2 .contact_button {
  background: #134a8b !important;
}
.summercp__cta2 .contact_tel, .summercp__cta2 .contact_tel_icon {
  color: #134a8b !important;
}
.summercp .curriculum {
  background: #b1ebfe;
  padding: 40px;
}
@media (max-width: 767px) {
  .summercp .curriculum {
    padding: 16px;
  }
}
.summercp .curriculum .container {
  padding: 0 20px;
}
@media (max-width: 767px) {
  .summercp .curriculum .container {
    padding: 0 0px;
  }
}
.summercp .curriculum__title {
  display: block;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 160%;
  text-align: center;
}
@media (max-width: 959px) {
  .summercp .curriculum__title {
    text-align: left;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 959px) {
  .summercp .curriculum__title {
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .summercp .curriculum__title {
    justify-content: space-between;
  }
}
.summercp .curriculum__title h2 {
  display: inline-block;
  border-bottom: 1px solid #134a8b;
  font-size: 2rem;
  color: #134a8b;
}
@media (min-width: 768px) {
  .summercp .curriculum__title h2 {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .summercp .curriculum__title h2 {
    font-size: 4rem;
  }
}
@media (max-width: 959px) {
  .summercp .curriculum__title h2 {
    border-bottom: unset;
  }
}
.summercp .curriculum__title figure {
  display: none;
}
@media (max-width: 959px) {
  .summercp .curriculum__title figure {
    margin-left: 0.5em;
  }
}
@media (max-width: 959px) {
  .summercp .curriculum__title figure {
    display: block;
    width: 68px;
    height: auto;
  }
  .summercp .curriculum__title figure img {
    width: 100%;
    height: auto;
  }
}
.summercp .curriculum__title2 {
  font-size: 20px;
  line-height: 1.6;
  color: #134a8b;
  position: relative;
  padding-left: 33px;
  height: 55px;
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.summercp .curriculum__title2::before {
  position: absolute;
  content: url(/assets/images/summercp/pen.png);
  left: 0;
  top: 28%;
}
.summercp .curriculum__header {
  display: flex;
  justify-content: space-between;
  max-width: 550px;
  margin: 22px auto 0;
}
@media (max-width: 959px) {
  .summercp .curriculum__header {
    max-width: 370px;
    margin: -20px auto 0;
    justify-content: flex-start;
  }
}
@media (max-width: 500px) {
  .summercp .curriculum__header {
    justify-content: left;
  }
}
@media (max-width: 959px) {
  .summercp .curriculum__list {
    max-width: 370px;
    margin-top: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 959px) {
  .summercp .curriculum__list + img {
    display: none;
  }
}
.summercp .curriculum__item {
  margin-top: 12px;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 43px;
  padding-left: 72px;
  font-weight: 700;
  font-size: 1.2;
  line-height: 160%;
  color: #134a8b;
}
@media (min-width: 768px) {
  .summercp .curriculum__item {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .summercp .curriculum__item {
    font-size: 2rem;
  }
}
@media (max-width: 959px) {
  .summercp .curriculum__item {
    padding-left: 30px;
    min-height: unset;
  }
}
.summercp .curriculum__item::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: url(/assets/images/summercp/curriculum-check.png) no-repeat;
  width: 43px;
  height: 43px;
}
@media (max-width: 959px) {
  .summercp .curriculum__item::before {
    background: url(/assets/images/summercp/curriculum-check-sp.png) no-repeat;
    width: 22px;
    height: 22px;
  }
}
.summercp .curriculum__table {
  border: 1px solid #378ff8;
  width: 100%;
}
.summercp .curriculum__table th {
  font-size: 10px;
  color: #134a8b;
  background: #f1f1f1;
  font-weight: 500;
  height: 23px;
  text-align: left;
  padding: 0 10px;
  font-weight: 700;
}
.summercp .curriculum__table td {
  border-top: 1px solid #378ff8;
  font-size: 12px;
  line-height: 1.6;
  color: #134a8b;
  font-weight: 500;
  padding: 13px 10px;
  font-weight: 700;
}
.summercp .curriculum__table td:first-of-type {
  width: 173px;
  background: #f7faff;
}
@media (max-width: 767px) {
  .summercp .curriculum__table td:first-of-type {
    width: auto;
    max-width: 40%;
  }
}
.summercp .curriculum__read {
  color: #134a8b;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  margin-top: 52px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .summercp .curriculum__read {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .summercp .curriculum__read {
    font-size: 3.2rem;
    margin-top: 29px;
    line-height: 150%;
  }
}
.summercp .curriculum__read span {
  background: linear-gradient(0deg, rgb(242, 201, 76) 0%, rgb(242, 201, 76) 35%, rgba(255, 255, 255, 0) 35%);
}
@media (max-width: 959px) {
  .summercp .curriculum__read span {
    background: linear-gradient(0deg, rgb(255, 235, 167) 0%, rgb(255, 235, 167) 35%, rgba(255, 255, 255, 0) 35%);
  }
}
.summercp .tab-container {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 48px auto 0;
}
@media (max-width: 959px) {
  .summercp .tab-container {
    margin: 20px auto 0;
  }
}
.summercp .tab-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 33.3333333333%;
  height: 43px;
  background-color: #f6d021;
  color: #f6d021;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  color: #134a8b;
  padding: 10px 20px;
  border: none;
  border-bottom: 1px solid #378ff8;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (max-width: 959px) {
  .summercp .tab-button {
    font-size: 12px;
  }
}
.summercp .tab-button p {
  position: relative;
}
.summercp .tab-button p::after {
  position: absolute;
  content: url(/assets/images/summercp/arrow-right.svg);
  left: -20px;
}
.summercp .tab-button:not(:first-child)::before {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 2px;
  height: 32px;
  background: #134a8b;
}
.summercp .tab-button:hover {
  background-color: #ffffff;
}
.summercp .tab-button.active {
  border: 1px solid #378ff8;
  border-bottom: 1px solid #fff;
  background-color: #ffffff;
}
.summercp .tab-button.active p::after {
  position: absolute;
  content: url(/assets/images/summercp/tab-active.svg);
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
}
.summercp .tab-button.active:not(:first-child)::before {
  position: unset;
  content: none;
}
.summercp .tab-button.active + .tab-button:not(:first-child)::before {
  position: unset;
  content: none;
}
.summercp .tab-content {
  display: none;
  border-right: 1px solid #378ff8;
  border-left: 1px solid #378ff8;
  border-bottom: 1px solid #378ff8;
  border-top: 1px solid #fff;
  background: #fff;
  padding: 0px 67px 50px 60px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .summercp .tab-content {
    padding: 0px 10px 50px 10px;
  }
}
.summercp .tab-content.active {
  display: block;
}
.summercp .pass-record {
  text-align: center;
}
.summercp .pass-record__title {
  font-size: 2rem;
  line-height: 1.2;
  color: #134a8b;
}
@media (min-width: 768px) {
  .summercp .pass-record__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 960px) {
  .summercp .pass-record__title {
    margin-top: 16px;
    font-size: 3.6rem;
  }
}
.summercp .pass-record__caption {
  margin-top: 10px;
  color: #134a8b;
  font-weight: 100;
  font-size: 0.7rem;
  max-width: 900px;
  margin: 10px auto 0;
}
@media (min-width: 960px) {
  .summercp .pass-record__caption {
    margin: 24px auto 0;
    font-size: 1.2rem;
  }
}
.summercp .pass-record img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .summercp .pass-record img {
    max-width: 80%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 960px) {
  .summercp .pass-record img {
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) {
  .summercp .feature_planner {
    align-items: flex-start;
    gap: 0 8px;
  }
}
.summercp .feature_planner_caption {
  font-size: 1.6rem;
  color: var(--color-secondary);
}
@media (min-width: 550px) {
  .summercp .feature_planner_caption {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .summercp .feature_planner_caption {
    font-size: 2rem;
  }
}
.summercp .feature_planner_caption span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .summercp .feature_planner {
    display: block;
  }
}
.summercp .feature_planner_description {
  display: block;
}
@media (max-width: 549px) {
  .summercp .feature_planner_description {
    font-size: 1.4rem;
  }
}
@media (max-width: 549px) {
  .summercp .feature_planner_image {
    text-align: center;
  }
  .summercp .feature_planner_image img {
    max-width: 75%;
  }
}
@media (max-width: 959px) {
  .summercp .feature_planner_other,
  .summercp .feature_planner_try {
    width: 100%;
  }
}
.summercp .feature_planner_try_caption {
  color: var(--color-darkpink);
}
.summercp .feature_planner_try_comment {
  padding: 8px 16px;
  margin-bottom: 10px;
  background: var(--color-darkpink);
}
@media (max-width: 767px) {
  .summercp .feature_planner_try {
    margin-top: 32px;
  }
}
.summercp .feature_planner_try .feature_planner_caption {
  color: var(--color-darkpink);
}
.summercp_cp {
  margin-top: 40px;
}
.summercp_cp .campaign_feature_subtitle {
  margin-bottom: 32px;
}
@media (min-width: 960px) {
  .summercp_cp {
    margin-top: 122px;
  }
}
.summercp_cp_title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: -23px;
  background: var(--color-summercp02);
  border-radius: 30px;
  width: 246px;
  height: 46px;
  font-size: 1.6rem;
  color: var(--color-white);
  z-index: 2;
}
@media (max-width: 959px) {
  .summercp_cp_title {
    margin-left: auto;
    margin-right: auto;
  }
}
.summercp_cp_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 0;
}
@media (max-width: 959px) {
  .summercp_cp_list {
    flex-direction: columns;
  }
}
.summercp_cp_item {
  border: 5px solid var(--color-summercp-strong);
  border-radius: 32px;
  background: var(--color-white);
  padding: 24px 16px 8px 8px;
  width: 100%;
}
@media (max-width: 820px) {
  .summercp_cp_item:first-child {
    padding-top: 34px;
  }
}
@media (min-width: 960px) {
  .summercp_cp_item {
    padding: 32px 16px 16px 8px;
    width: calc((100% - 48px) / 2);
  }
}
.summercp_cp_item_title {
  color: var(--color-darkpink);
  text-align: center;
}
.summercp_cp_mediablock {
  margin-top: 16px;
  display: flex;
  gap: 20px;
}
@media (min-width: 960px) {
  .summercp_cp_mediablock {
    display: flex;
    align-items: center;
  }
}
.summercp_cp_photo {
  max-width: 217px;
}
.summercp_cp_photo img {
  width: 100%;
  height: auto;
}
@media (max-width: 549px) {
  .summercp_cp_photo {
    width: 108px;
  }
}
.summercp_cp_content {
  flex: 1;
  font-size: 1.4rem;
}
@media (min-width: 550px) {
  .summercp_cp_content {
    font-size: 1.6rem;
    margin-left: 24px;
  }
}
.summercp .flow_support {
  background: rgba(199, 241, 255, 0.4);
}
.summercp .flow_support_title {
  color: rgb(36, 155, 217);
}
.summercp_flow {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
}
.summercp_flow_bg {
  background: #e2f5fc;
}
.summercp_flow_title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 960px) {
  .summercp_flow_title {
    font-size: 4rem;
  }
}
.summercp_flow_title small {
  font-size: 1.6rem;
  line-height: 1.4375;
  color: var(--color-summercp02);
}
@media (min-width: 960px) {
  .summercp_flow_title small {
    font-size: 3.2rem;
  }
}
.summercp_flow_head {
  position: relative;
  background: var(--color-white);
}
@media (max-width: 959px) {
  .summercp_flow_head.--icon {
    padding-top: 32px;
  }
}
@media (min-width: 960px) {
  .summercp_flow_head {
    padding: 12px 24px 20px 0;
    width: 184px;
  }
}
@media (max-width: 959px) {
  .summercp_flow_head {
    display: flex;
    align-items: center;
  }
}
.summercp_flow_head::after {
  position: absolute;
  right: 0;
  top: 12px;
  background: #f4f4f4;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
}
.summercp_flow_head_2 {
  position: relative;
  background: var(--color-white);
}
@media (min-width: 960px) {
  .summercp_flow_head_2 {
    padding: 12px 0px 20px 0;
  }
}
@media (max-width: 959px) {
  .summercp_flow_head_2 {
    display: flex;
    align-items: center;
  }
}
.summercp_flow_head_2::after {
  position: absolute;
  right: 0;
  top: 12px;
  background: #f4f4f4;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
}
.summercp_flow_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  margin-top: 32px;
  list-style: none;
}
@media (min-width: 960px) {
  .summercp_flow_list {
    margin-top: 48px;
  }
}
@media (min-width: 960px) {
  .summercp_flow_list_item {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 959px) {
  .summercp_flow_list_item {
    background: var(--color-white);
    padding: 16px;
  }
}
.summercp_flow_list_item:not(:last-of-type) {
  padding-bottom: 40px;
  background-image: url(../images/summercp/campaign_flow_chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 12px 7px;
}
@media (min-width: 960px) {
  .summercp_flow_list_item:not(:last-of-type) {
    background-position: 72px calc(100% - 8px);
    background-size: 27px 15px;
  }
}
@media (max-width: 959px) {
  .summercp_flow_list_item.--icon {
    position: relative;
  }
}
@media (min-width: 960px) {
  .summercp_flow_list_item_2 {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 959px) {
  .summercp_flow_list_item_2 {
    background: var(--color-white);
    padding: 16px;
  }
}
.summercp_flow_list_item_2:not(:last-of-type) {
  padding-bottom: 40px;
  background-image: url(../images/icons/scroll_down2.png);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 30px 31px;
}
@media (min-width: 960px) {
  .summercp_flow_list_item_2:not(:last-of-type) {
    background-position: center calc(100% - 8px);
    background-size: 35px 36px;
  }
}
.summercp_flow_step {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-summercp01);
  width: 85px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--color-primary);
  font-weight: bolder;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .summercp_flow_step {
    flex: 1 1 auto;
  }
}
.summercp_flow_step_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  width: -moz-fit-content;
  width: fit-content;
  height: 26px;
  flex: 0 0 auto;
  color: var(--color-red);
  font-weight: bolder;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .summercp_flow_step_2 {
    flex: 1 1 auto;
    width: 100%;
  }
}
.summercp_flow_caption {
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .summercp_flow_caption {
    margin-top: 8px;
    margin-left: 24px;
    font-size: 2rem;
  }
}
@media (max-width: 959px) {
  .summercp_flow_caption {
    margin-left: 16px;
  }
}
.summercp_flow_caption_2 {
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .summercp_flow_caption_2 {
    margin-top: 8px;
    margin-left: 0;
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 959px) {
  .summercp_flow_caption_2 {
    margin-left: 16px;
  }
}
.summercp_flow_description {
  display: flex;
  align-items: center;
  flex: 1;
  background-color: var(--color-white);
  font-size: 1.4rem;
}
@media (min-width: 550px) {
  .summercp_flow_description {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .summercp_flow_description {
    position: relative;
    padding: 16px 24px;
    min-height: 98px;
    font-size: 1.4rem;
  }
}
@media (max-width: 959px) {
  .summercp_flow_description {
    margin-top: 8px;
  }
}
.summercp_flow_description.--icon::before {
  display: block;
  content: url(../images/summercp/icon-free.svg);
  position: absolute;
  left: 16px;
  top: -4px;
  width: 162px;
  height: 43px;
}
@media (min-width: 960px) {
  .summercp_flow_description.--icon::before {
    left: 80px;
    top: -28px;
  }
}
.summercp_flow {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
}
.summercp_flow_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 960px) {
  .summercp_flow_title {
    font-size: 4rem;
  }
}
.summercp_flow_title small {
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media (min-width: 960px) {
  .summercp_flow_title small {
    font-size: 3.2rem;
  }
}
.summercp_flow_head {
  position: relative;
  background: var(--color-white);
}
@media (max-width: 959px) {
  .summercp_flow_head.--icon {
    padding-top: 32px;
  }
}
@media (min-width: 960px) {
  .summercp_flow_head {
    padding: 12px 24px 20px 0;
    width: 184px;
  }
}
@media (max-width: 959px) {
  .summercp_flow_head {
    display: flex;
    align-items: center;
  }
}
.summercp_flow_head::after {
  position: absolute;
  right: 0;
  top: 12px;
  background: #f4f4f4;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
}
.summercp_flow_head_2 {
  position: relative;
  background: var(--color-white);
}
@media (min-width: 960px) {
  .summercp_flow_head_2 {
    padding: 12px 0px 20px 0;
  }
}
@media (max-width: 959px) {
  .summercp_flow_head_2 {
    display: flex;
    align-items: center;
  }
}
.summercp_flow_head_2::after {
  position: absolute;
  right: 0;
  top: 12px;
  background: #f4f4f4;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
}
.summercp_flow_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  margin-top: 32px;
  list-style: none;
}
@media (min-width: 960px) {
  .summercp_flow_list {
    margin-top: 48px;
  }
}
@media (min-width: 960px) {
  .summercp_flow_list_item {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 959px) {
  .summercp_flow_list_item {
    background: var(--color-white);
    padding: 16px;
  }
}
.summercp_flow_list_item:not(:last-of-type) {
  padding-bottom: 40px;
  background-image: url(../images/summercp/summercp_flow_chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 12px 7px;
}
@media (min-width: 960px) {
  .summercp_flow_list_item:not(:last-of-type) {
    background-position: 72px calc(100% - 8px);
    background-size: 27px 15px;
  }
}
@media (max-width: 959px) {
  .summercp_flow_list_item.--icon {
    position: relative;
  }
}
@media (min-width: 960px) {
  .summercp_flow_list_item_2 {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 959px) {
  .summercp_flow_list_item_2 {
    background: var(--color-white);
    padding: 16px;
  }
}
.summercp_flow_list_item_2:not(:last-of-type) {
  padding-bottom: 40px;
  background-image: url(../images/icons/scroll_down2.png);
  background-repeat: no-repeat;
  background-position: center calc(100% - 8px);
  background-size: 30px 31px;
}
@media (min-width: 960px) {
  .summercp_flow_list_item_2:not(:last-of-type) {
    background-position: center calc(100% - 8px);
    background-size: 35px 36px;
  }
}
.summercp_flow_step {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-summercp01);
  width: 85px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--color-summercp02);
  font-weight: bolder;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .summercp_flow_step {
    flex: 1 1 auto;
  }
}
.summercp_flow_step_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  width: -moz-fit-content;
  width: fit-content;
  height: 26px;
  flex: 0 0 auto;
  color: var(--color-red);
  font-weight: bolder;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .summercp_flow_step_2 {
    flex: 1 1 auto;
    width: 100%;
  }
}
.summercp_flow_caption {
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .summercp_flow_caption {
    margin-top: 8px;
    margin-left: 24px;
    font-size: 2rem;
  }
}
@media (max-width: 959px) {
  .summercp_flow_caption {
    margin-left: 16px;
  }
}
.summercp_flow_caption_2 {
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .summercp_flow_caption_2 {
    margin-top: 8px;
    margin-left: 0;
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 959px) {
  .summercp_flow_caption_2 {
    margin-left: 16px;
  }
}
.summercp_flow_description {
  display: flex;
  align-items: center;
  flex: 1;
  background-color: var(--color-white);
  font-size: 1.4rem;
}
@media (min-width: 550px) {
  .summercp_flow_description {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .summercp_flow_description {
    position: relative;
    padding: 16px 24px;
    min-height: 98px;
    font-size: 1.4rem;
  }
}
@media (max-width: 959px) {
  .summercp_flow_description {
    margin-top: 8px;
  }
}
.summercp_faq {
  background: #fff;
}
.summercp_faq_title {
  color: #378ff8;
}
.summercp .flow_support {
  margin-top: 48px;
}
.summercp .flow_support_title {
  font-size: 1.6rem;
}
@media (min-width: 550px) {
  .summercp .flow_support_title {
    font-size: 2rem;
  }
}
@media (min-width: 960px) {
  .summercp .flow_support_title {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.summercp .flow_support_texts {
  background: #fff;
}
@media (min-width: 960px) {
  .summercp .flow_support_texts {
    padding: 24px 16px;
  }
}
.summercp .flow_support_description {
  font-size: 1.4rem;
  line-height: 1.6428571429;
}
@media (min-width: 550px) {
  .summercp .flow_support_description {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .summercp .flow_support_description {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}
.summercp_voice_title {
  font-size: 2rem;
  color: var(--color-text);
  line-height: 1.45;
  text-align: center;
}
@media (min-width: 550px) {
  .summercp_voice_title {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .summercp_voice_title {
    font-size: 4rem;
  }
}
.summercp_voice_slider {
  margin-top: 24px;
}
@media (min-width: 960px) {
  .summercp_voice_slider {
    margin-top: 32px;
  }
}
.summercp_voice_subtitle {
  font-size: 1.6rem;
  font-weight: bolder;
  letter-spacing: 0.07em;
}
@media (min-width: 960px) {
  .summercp_voice_subtitle {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.summercp_voice_content {
  margin-top: 14px;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .summercp_voice_content {
    font-size: 1.4rem;
    line-height: 1.6428571429;
  }
}
.summercp_voice .slick-slide {
  margin: 0 10px;
}
.summercp_voice_item {
  /*
  padding: 16px 24px;
  background: var(--color-white);
  box-shadow: 0px 20px 64px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  @include mq-min(desktop) {
    padding: 32px;
  }
  */
}
.summercp_voice_footer {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
@media (min-width: 960px) {
  .summercp_voice_footer {
    margin-top: 20px;
  }
}
.summercp_voice_photo {
  width: 70px;
  height: 70px;
}
.summercp_voice_photo img {
  width: 100%;
  height: auto;
}
.summercp_voice_meta {
  margin-left: 20px;
}
.summercp_voice__name {
  font-size: 1.5rem;
  font-weight: bolder;
}
.summercp_voice__name small {
  margin-left: 5px;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 960px) {
  .summercp_voice__name {
    font-size: 1.8rem;
  }
  .summercp_voice__name small {
    font-size: 1.2rem;
  }
}
.summercp_voice__profile {
  font-size: 1rem;
}
@media (min-width: 960px) {
  .summercp_voice__profile {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.summercp_voice .slick-track {
  display: flex;
}
.summercp_voice .slick-slide {
  height: auto !important;
  padding: 16px 24px;
  background: var(--color-white);
  box-shadow: 0px 20px 64px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
@media (min-width: 960px) {
  .summercp_voice .slick-slide {
    padding: 32px;
  }
}
.summercp_voice .prev-arrow {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-100%);
  z-index: 2;
}
@media (min-width: 960px) {
  .summercp_voice .prev-arrow {
    left: 100px;
  }
}
.summercp_voice .next-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-100%);
  z-index: 2;
}
@media (min-width: 960px) {
  .summercp_voice .next-arrow {
    right: 100px;
  }
}
.summercp_voice_caution {
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--color-darkgray);
  line-height: 1.5833333333;
  text-align: center;
}
@media (min-width: 960px) {
  .summercp_voice_caution {
    margin-top: 24px;
  }
}
.summercp_voice_caution1 {
  margin-top: 8px;
  font-size: 1rem;
  color: var(--color-darkgray);
  line-height: 1.5833333333;
  text-align: center;
}
@media (min-width: 960px) {
  .summercp_voice_caution1 {
    margin-top: 0px;
    font-size: 1.2rem;
  }
}
.summercp_voice_button {
  display: flex;
  justify-content: center;
  width: 247px;
  height: 56px;
  margin: 16px auto 0;
  font-size: 1.6rem;
  color: var(--color-summercp02);
}
@media (min-width: 960px) {
  .summercp_voice_button {
    background: #fff;
    margin: 40px auto 0;
    width: 392px;
    height: 78px;
    font-size: 2.4rem;
  }
}
.summercp_voice_button:hover {
  color: var(--color-inverse);
  background-color: var(--color-summercp02);
}
.summercp_voice_button-border {
  border: 3px solid var(--color-summercp02);
  color: var(--color-summercp02);
  font-weight: bolder;
}
@media (min-width: 960px) {
  .summercp_voice_button-border {
    border: 4px solid var(--color-summercp02);
  }
}
.summercp .contact_content {
  align-items: center;
}
@media (min-width: 960px) {
  .summercp .contact_content {
    padding: 0;
  }
}
.summercp .contact_button {
  position: relative;
  margin: 16px auto 0;
  max-width: 640px;
  background-color: var(--color-summercp-strong);
  font-size: 2rem;
  color: var(--color-white);
  overflow: hidden;
}
.summercp .contact_button::before {
  animation: shine 4s infinite;
}
.summercp .contact_button::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
@media (min-width: 550px) {
  .summercp .contact_button {
    font-size: 2.8rem;
  }
}
@media (min-width: 960px) {
  .summercp .contact_button {
    margin-top: 16px;
    font-size: 4rem;
  }
}
@media (max-width: 959px) {
  .summercp .contact_button {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}
@media (min-width: 960px) {
  .summercp .contact_button small {
    font-size: 1.6rem;
  }
}
.summercp .contact_button:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-defalut-h) + 0deg), calc(var(--color-defalut-s) + 0%), calc(var(--color-defalut-l) + -20%), calc(var(--color-defalut-a) + -0.5));
  opacity: 1;
}
.summercp .contact_button-taiken {
  color: var(--color-summercp02);
  border: 2px solid var(--color-summercp02);
  background-color: var(--color-primary);
}
.summercp .contact_button-taiken:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  opacity: 1;
}
.summercp .contact_button_icon {
  color: var(--color-summercp02);
}
.summercp .contact_button-taiken:hover .contact_button_icon {
  color: var(--color-primary);
}
.summercp .contact_tel {
  padding: 0;
  border: 0;
  color: var(--color-white);
}
.summercp .contact_tel_link {
  margin-top: 20px;
  color: var(--color-summercp-strong);
}
.summercp .contact_tel_number {
  font-size: 3.2rem;
}
@media (max-width: 959px) {
  .summercp .contact_tel_number {
    font-size: 2.4rem;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  }
}
.summercp .contact_tel_small {
  letter-spacing: 0;
}
@media (max-width: 959px) {
  .summercp .contact_tel_small {
    font-size: 1.4rem;
    margin-top: 8px;
    margin-left: 0;
  }
}
.summercp .contact_tel_icon {
  width: 44px;
  height: 44px;
  color: var(--color-white);
}
@media (max-width: 959px) {
  .summercp .contact_tel_icon {
    width: 22px;
    height: 22px;
  }
}
.summercp .contact_tel_icon_link {
  color: var(--color-summercp-strong);
}
@media (min-width: 960px) {
  .summercp .microcopy {
    margin-bottom: 0;
  }
}
@media (min-width: 960px) {
  .summercp .faq_item + .faq_item {
    margin-top: 8px;
  }
}
@media (max-width: 959px) {
  .summercp .faq_q,
  .summercp .faq_a {
    padding-left: 48px;
  }
}
.summercp .faq_q {
  background: url(/assets/images/summercp/faq-chevron-down.png) no-repeat 100% 16px;
  background-size: 24px 24px;
  box-shadow: none;
}
@media (max-width: 959px) {
  .summercp .faq_q {
    font-size: 1.6rem;
  }
}
.summercp .faq_checkbox:checked + .faq_q {
  background-image: url(/assets/images/summercp/faq-chevron-up.png);
}
.summercp .faq_q::before {
  color: var(--color-darkgray);
}
@media (max-width: 767px) {
  .summercp .faq_q::before {
    font-size: 3.2rem;
  }
}
.summercp .faq_a {
  margin-top: 16px;
}
.summercp .faq_a p {
  color: var(--color-summercp02);
  line-height: 1.6;
}
@media (max-width: 959px) {
  .summercp .faq_a p {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}
.summercp .faq_a::before {
  color: var(--color-summercp02);
}
@media (max-width: 767px) {
  .summercp .faq_a::before {
    font-size: 3.2rem;
  }
}

.summercp_reserve {
  color: #134a8b;
}
.summercp_reserve_container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 24px 0;
  padding: 16px 16px 24px;
  border: #f2c94c 3px solid;
  background: rgba(255, 248, 207, 0.4696253501);
}
@media (min-width: 768px) {
  .summercp_reserve_container {
    align-items: unset;
    flex-direction: row;
    margin: 118px auto 96px;
    padding: 38px 30px 28px 29px;
  }
}
.summercp_reserve_thumb {
  flex: 1;
}
@media (max-width: 767px) {
  .summercp_reserve_thumb {
    flex: unset;
    display: none;
  }
}
.summercp_reserve_thumb img {
  width: 100%;
  height: auto;
}
.summercp_reserve_thumb2 {
  display: none;
}
@media (max-width: 767px) {
  .summercp_reserve_thumb2 {
    display: block;
  }
}
.summercp_reserve_thumb2 img {
  width: 100%;
  height: auto;
}
.summercp_reserve_body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 40px;
}
@media (min-width: 768px) {
  .summercp_reserve_body {
    width: 352px;
  }
}
@media (max-width: 767px) {
  .summercp_reserve_body {
    margin-left: 0px;
  }
}
.summercp_reserve_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0em;
  text-align: center;
}
@media (max-width: 959px) {
  .summercp_reserve_title {
    font-size: 20px;
  }
}
.summercp_reserve_read {
  margin: 8px 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: center;
}
@media (max-width: 959px) {
  .summercp_reserve_read {
    font-size: 15px;
  }
}
.summercp_reserve_button {
  background: #f2c94c;
  border-radius: 30px;
  display: block;
  width: 100%;
  height: 86px;
  color: #134a8b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 960px) {
  .summercp_reserve_button {
    height: 116px;
  }
}
.summercp_reserve_button::after {
  position: absolute;
  content: url(/assets/images/summercp/arrow-right.png);
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .summercp_reserve_button::after {
    right: 27px;
  }
}
.summercp_reserve_button:hover {
  color: #134a8b;
  background: rgba(255, 235, 167, 0.9);
}
.summercp_reserve_button_text {
  text-align: center;
}
.summercp_reserve_button_text-sm {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: center;
}
.summercp_reserve_button_text-lg {
  font-size: 16px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .summercp_reserve_button_text-lg {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.4;
  }
}
@media (min-width: 960px) {
  .summercp_reserve_button_text-lg {
    font-size: 2.8rem;
  }
}
@media (min-width: 768px) {
  .summercp_reserve_button_text-lg {
    font-size: 24px;
  }
}

.section_title_secondary {
  color: var(--color-secondary);
}

.contact_simple02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-summercp02);
  background-color: var(--color-summercp01);
}
@media (min-width: 768px) {
  .contact_simple02 {
    gap: 24px;
  }
}
.contact_simple02_summercp {
  color: var(--color-white);
  background-color: var(--color-link);
}
.contact_simple02_title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-summercp-strong);
}
.contact_simple02_title.--blue {
  color: #134a8b;
}
.contact_simple02_title-02 {
  font-size: 2rem;
  color: #fff;
  line-height: 1.4;
}
@media (min-width: 550px) {
  .contact_simple02_title {
    font-size: 3rem;
  }
}
@media (min-width: 960px) {
  .contact_simple02_title {
    font-size: 3.6rem;
  }
}
@media (max-width: 549px) {
  .contact_simple02_title span {
    font-size: 2rem;
  }
}
.contact_simple02_cta-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  color: var(--color-summercp-strong);
}
@media (min-width: 550px) {
  .contact_simple02_cta-title {
    font-size: 2.6rem;
  }
}
@media (min-width: 960px) {
  .contact_simple02_cta-title {
    font-size: 3.2rem;
  }
}
.contact_simple02_cta-title span {
  font-size: 2rem;
}
@media (min-width: 550px) {
  .contact_simple02_cta-title span {
    font-size: 2.2rem;
  }
}
@media (min-width: 960px) {
  .contact_simple02_cta-title span {
    font-size: 2.4rem;
  }
}
.contact_simple02_record {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 959px) {
  .contact_simple02_record {
    margin-top: 8px;
  }
}
@media (max-width: 959px) {
  .contact_simple02_record img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.contact_simple02_record_item {
  width: 609px;
}
.contact_simple02_overview {
  display: flex;
  justify-content: center;
  color: #999999;
}
.contact_simple02_overview_caption {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  font-weight: bolder;
  line-height: 1.1;
}
@media (max-width: 549px) {
  .contact_simple02_overview_caption {
    max-width: 248px;
    line-height: 1.6;
    font-weight: 500;
  }
}
@media (min-width: 960px) {
  .contact_simple02_overview_caption {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
  }
}

.microcopy02 {
  margin-bottom: -16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .microcopy02 {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}
.microcopy02-1 {
  font-size: 1.2rem;
  margin-top: 8px;
  margin-bottom: -16px;
}
@media (min-width: 960px) {
  .microcopy02-1 {
    margin-top: 0;
    font-size: 1.3rem;
  }
}

.microcopy02-3 {
  margin-bottom: -16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bolder;
  margin-top: 8px;
}
@media (min-width: 960px) {
  .microcopy02-3 {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}
.microcopy02-3-1 {
  margin-bottom: -16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bolder;
}
@media (min-width: 960px) {
  .microcopy02-3-1 {
    margin-bottom: -8px;
    margin-top: 16px;
    font-size: 1.6rem;
  }
}
.microcopy02-3-2 {
  margin-bottom: -16px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #134a8b;
}
@media (min-width: 960px) {
  .microcopy02-3-2 {
    font-size: 2rem;
  }
}

@keyframes shine {
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.contact_simple02--last .microcopy02 {
  margin-bottom: 0;
  white-space: nowrap;
}
@media (min-width: 960px) {
  .contact_simple02--last .microcopy02 {
    font-size: 2rem !important;
  }
}

/*キャンペーン用のユーティリティ*/
.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-mb105 {
  margin-bottom: 105px !important;
}

.u-mb110 {
  margin-bottom: 110px !important;
}

.u-mb115 {
  margin-bottom: 115px !important;
}

.u-mb120 {
  margin-bottom: 120px !important;
}

.u-mb125 {
  margin-bottom: 125px !important;
}

.u-mb130 {
  margin-bottom: 130px !important;
}

.u-mb135 {
  margin-bottom: 135px !important;
}

.u-mb140 {
  margin-bottom: 140px !important;
}

.u-mb145 {
  margin-bottom: 145px !important;
}

.u-mb150 {
  margin-bottom: 150px !important;
}

.u-mb155 {
  margin-bottom: 155px !important;
}

.u-mb160 {
  margin-bottom: 160px !important;
}

.u-mb165 {
  margin-bottom: 165px !important;
}

.u-mb170 {
  margin-bottom: 170px !important;
}

.u-mb175 {
  margin-bottom: 175px !important;
}

.u-mb180 {
  margin-bottom: 180px !important;
}

.u-mb185 {
  margin-bottom: 185px !important;
}

.u-mb190 {
  margin-bottom: 190px !important;
}

.u-mb195 {
  margin-bottom: 195px !important;
}

.u-mb200 {
  margin-bottom: 200px !important;
}

.u-mb205 {
  margin-bottom: 205px !important;
}

.u-mb210 {
  margin-bottom: 210px !important;
}

.u-mb215 {
  margin-bottom: 215px !important;
}

.u-mb220 {
  margin-bottom: 220px !important;
}

.u-mb225 {
  margin-bottom: 225px !important;
}

.u-mb230 {
  margin-bottom: 230px !important;
}

.u-mb235 {
  margin-bottom: 235px !important;
}

.u-mb240 {
  margin-bottom: 240px !important;
}

.u-mb245 {
  margin-bottom: 245px !important;
}

.u-mb250 {
  margin-bottom: 250px !important;
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mt105 {
  margin-top: 105px !important;
}

.u-mt110 {
  margin-top: 110px !important;
}

.u-mt115 {
  margin-top: 115px !important;
}

.u-mt120 {
  margin-top: 120px !important;
}

.u-mt125 {
  margin-top: 125px !important;
}

.u-mt130 {
  margin-top: 130px !important;
}

.u-mt135 {
  margin-top: 135px !important;
}

.u-mt140 {
  margin-top: 140px !important;
}

.u-mt145 {
  margin-top: 145px !important;
}

.u-mt150 {
  margin-top: 150px !important;
}

.u-mt155 {
  margin-top: 155px !important;
}

.u-mt160 {
  margin-top: 160px !important;
}

.u-mt165 {
  margin-top: 165px !important;
}

.u-mt170 {
  margin-top: 170px !important;
}

.u-mt175 {
  margin-top: 175px !important;
}

.u-mt180 {
  margin-top: 180px !important;
}

.u-mt185 {
  margin-top: 185px !important;
}

.u-mt190 {
  margin-top: 190px !important;
}

.u-mt195 {
  margin-top: 195px !important;
}

.u-mt200 {
  margin-top: 200px !important;
}

.u-mt205 {
  margin-top: 205px !important;
}

.u-mt210 {
  margin-top: 210px !important;
}

.u-mt215 {
  margin-top: 215px !important;
}

.u-mt220 {
  margin-top: 220px !important;
}

.u-mt225 {
  margin-top: 225px !important;
}

.u-mt230 {
  margin-top: 230px !important;
}

.u-mt235 {
  margin-top: 235px !important;
}

.u-mt240 {
  margin-top: 240px !important;
}

.u-mt245 {
  margin-top: 245px !important;
}

.u-mt250 {
  margin-top: 250px !important;
}

@media (max-width: 767px) {
  .u-smb0 {
    margin-bottom: 0px !important;
  }
}

@media (max-width: 767px) {
  .u-smb5 {
    margin-bottom: 5px !important;
  }
}

@media (max-width: 767px) {
  .u-smb10 {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 767px) {
  .u-smb15 {
    margin-bottom: 15px !important;
  }
}

@media (max-width: 767px) {
  .u-smb20 {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 767px) {
  .u-smb25 {
    margin-bottom: 25px !important;
  }
}

@media (max-width: 767px) {
  .u-smb30 {
    margin-bottom: 30px !important;
  }
}

@media (max-width: 767px) {
  .u-smb35 {
    margin-bottom: 35px !important;
  }
}

@media (max-width: 767px) {
  .u-smb40 {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 767px) {
  .u-smb45 {
    margin-bottom: 45px !important;
  }
}

@media (max-width: 767px) {
  .u-smb50 {
    margin-bottom: 50px !important;
  }
}

@media (max-width: 767px) {
  .u-smb55 {
    margin-bottom: 55px !important;
  }
}

@media (max-width: 767px) {
  .u-smb60 {
    margin-bottom: 60px !important;
  }
}

@media (max-width: 767px) {
  .u-smb65 {
    margin-bottom: 65px !important;
  }
}

@media (max-width: 767px) {
  .u-smb70 {
    margin-bottom: 70px !important;
  }
}

@media (max-width: 767px) {
  .u-smb75 {
    margin-bottom: 75px !important;
  }
}

@media (max-width: 767px) {
  .u-smb80 {
    margin-bottom: 80px !important;
  }
}

@media (max-width: 767px) {
  .u-smb85 {
    margin-bottom: 85px !important;
  }
}

@media (max-width: 767px) {
  .u-smb90 {
    margin-bottom: 90px !important;
  }
}

@media (max-width: 767px) {
  .u-smb95 {
    margin-bottom: 95px !important;
  }
}

@media (max-width: 767px) {
  .u-smb100 {
    margin-bottom: 100px !important;
  }
}

@media (max-width: 767px) {
  .u-smb105 {
    margin-bottom: 105px !important;
  }
}

@media (max-width: 767px) {
  .u-smb110 {
    margin-bottom: 110px !important;
  }
}

@media (max-width: 767px) {
  .u-smb115 {
    margin-bottom: 115px !important;
  }
}

@media (max-width: 767px) {
  .u-smb120 {
    margin-bottom: 120px !important;
  }
}

@media (max-width: 767px) {
  .u-smb125 {
    margin-bottom: 125px !important;
  }
}

@media (max-width: 767px) {
  .u-smb130 {
    margin-bottom: 130px !important;
  }
}

@media (max-width: 767px) {
  .u-smb135 {
    margin-bottom: 135px !important;
  }
}

@media (max-width: 767px) {
  .u-smb140 {
    margin-bottom: 140px !important;
  }
}

@media (max-width: 767px) {
  .u-smb145 {
    margin-bottom: 145px !important;
  }
}

@media (max-width: 767px) {
  .u-smb150 {
    margin-bottom: 150px !important;
  }
}

@media (max-width: 767px) {
  .u-smb155 {
    margin-bottom: 155px !important;
  }
}

@media (max-width: 767px) {
  .u-smb160 {
    margin-bottom: 160px !important;
  }
}

@media (max-width: 767px) {
  .u-smb165 {
    margin-bottom: 165px !important;
  }
}

@media (max-width: 767px) {
  .u-smb170 {
    margin-bottom: 170px !important;
  }
}

@media (max-width: 767px) {
  .u-smb175 {
    margin-bottom: 175px !important;
  }
}

@media (max-width: 767px) {
  .u-smb180 {
    margin-bottom: 180px !important;
  }
}

@media (max-width: 767px) {
  .u-smb185 {
    margin-bottom: 185px !important;
  }
}

@media (max-width: 767px) {
  .u-smb190 {
    margin-bottom: 190px !important;
  }
}

@media (max-width: 767px) {
  .u-smb195 {
    margin-bottom: 195px !important;
  }
}

@media (max-width: 767px) {
  .u-smb200 {
    margin-bottom: 200px !important;
  }
}

@media (max-width: 767px) {
  .u-smb205 {
    margin-bottom: 205px !important;
  }
}

@media (max-width: 767px) {
  .u-smb210 {
    margin-bottom: 210px !important;
  }
}

@media (max-width: 767px) {
  .u-smb215 {
    margin-bottom: 215px !important;
  }
}

@media (max-width: 767px) {
  .u-smb220 {
    margin-bottom: 220px !important;
  }
}

@media (max-width: 767px) {
  .u-smb225 {
    margin-bottom: 225px !important;
  }
}

@media (max-width: 767px) {
  .u-smb230 {
    margin-bottom: 230px !important;
  }
}

@media (max-width: 767px) {
  .u-smb235 {
    margin-bottom: 235px !important;
  }
}

@media (max-width: 767px) {
  .u-smb240 {
    margin-bottom: 240px !important;
  }
}

@media (max-width: 767px) {
  .u-smb245 {
    margin-bottom: 245px !important;
  }
}

@media (max-width: 767px) {
  .u-smb250 {
    margin-bottom: 250px !important;
  }
}

@media (max-width: 767px) {
  .u-smt0 {
    margin-top: 0px !important;
  }
}

@media (max-width: 767px) {
  .u-smt5 {
    margin-top: 5px !important;
  }
}

@media (max-width: 767px) {
  .u-smt10 {
    margin-top: 10px !important;
  }
}

@media (max-width: 767px) {
  .u-smt15 {
    margin-top: 15px !important;
  }
}

@media (max-width: 767px) {
  .u-smt20 {
    margin-top: 20px !important;
  }
}

@media (max-width: 767px) {
  .u-smt25 {
    margin-top: 25px !important;
  }
}

@media (max-width: 767px) {
  .u-smt30 {
    margin-top: 30px !important;
  }
}

@media (max-width: 767px) {
  .u-smt35 {
    margin-top: 35px !important;
  }
}

@media (max-width: 767px) {
  .u-smt40 {
    margin-top: 40px !important;
  }
}

@media (max-width: 767px) {
  .u-smt45 {
    margin-top: 45px !important;
  }
}

@media (max-width: 767px) {
  .u-smt50 {
    margin-top: 50px !important;
  }
}

@media (max-width: 767px) {
  .u-smt55 {
    margin-top: 55px !important;
  }
}

@media (max-width: 767px) {
  .u-smt60 {
    margin-top: 60px !important;
  }
}

@media (max-width: 767px) {
  .u-smt65 {
    margin-top: 65px !important;
  }
}

@media (max-width: 767px) {
  .u-smt70 {
    margin-top: 70px !important;
  }
}

@media (max-width: 767px) {
  .u-smt75 {
    margin-top: 75px !important;
  }
}

@media (max-width: 767px) {
  .u-smt80 {
    margin-top: 80px !important;
  }
}

@media (max-width: 767px) {
  .u-smt85 {
    margin-top: 85px !important;
  }
}

@media (max-width: 767px) {
  .u-smt90 {
    margin-top: 90px !important;
  }
}

@media (max-width: 767px) {
  .u-smt95 {
    margin-top: 95px !important;
  }
}

@media (max-width: 767px) {
  .u-smt100 {
    margin-top: 100px !important;
  }
}

@media (max-width: 767px) {
  .u-smt105 {
    margin-top: 105px !important;
  }
}

@media (max-width: 767px) {
  .u-smt110 {
    margin-top: 110px !important;
  }
}

@media (max-width: 767px) {
  .u-smt115 {
    margin-top: 115px !important;
  }
}

@media (max-width: 767px) {
  .u-smt120 {
    margin-top: 120px !important;
  }
}

@media (max-width: 767px) {
  .u-smt125 {
    margin-top: 125px !important;
  }
}

@media (max-width: 767px) {
  .u-smt130 {
    margin-top: 130px !important;
  }
}

@media (max-width: 767px) {
  .u-smt135 {
    margin-top: 135px !important;
  }
}

@media (max-width: 767px) {
  .u-smt140 {
    margin-top: 140px !important;
  }
}

@media (max-width: 767px) {
  .u-smt145 {
    margin-top: 145px !important;
  }
}

@media (max-width: 767px) {
  .u-smt150 {
    margin-top: 150px !important;
  }
}

@media (max-width: 767px) {
  .u-smt155 {
    margin-top: 155px !important;
  }
}

@media (max-width: 767px) {
  .u-smt160 {
    margin-top: 160px !important;
  }
}

@media (max-width: 767px) {
  .u-smt165 {
    margin-top: 165px !important;
  }
}

@media (max-width: 767px) {
  .u-smt170 {
    margin-top: 170px !important;
  }
}

@media (max-width: 767px) {
  .u-smt175 {
    margin-top: 175px !important;
  }
}

@media (max-width: 767px) {
  .u-smt180 {
    margin-top: 180px !important;
  }
}

@media (max-width: 767px) {
  .u-smt185 {
    margin-top: 185px !important;
  }
}

@media (max-width: 767px) {
  .u-smt190 {
    margin-top: 190px !important;
  }
}

@media (max-width: 767px) {
  .u-smt195 {
    margin-top: 195px !important;
  }
}

@media (max-width: 767px) {
  .u-smt200 {
    margin-top: 200px !important;
  }
}

@media (max-width: 767px) {
  .u-smt205 {
    margin-top: 205px !important;
  }
}

@media (max-width: 767px) {
  .u-smt210 {
    margin-top: 210px !important;
  }
}

@media (max-width: 767px) {
  .u-smt215 {
    margin-top: 215px !important;
  }
}

@media (max-width: 767px) {
  .u-smt220 {
    margin-top: 220px !important;
  }
}

@media (max-width: 767px) {
  .u-smt225 {
    margin-top: 225px !important;
  }
}

@media (max-width: 767px) {
  .u-smt230 {
    margin-top: 230px !important;
  }
}

@media (max-width: 767px) {
  .u-smt235 {
    margin-top: 235px !important;
  }
}

@media (max-width: 767px) {
  .u-smt240 {
    margin-top: 240px !important;
  }
}

@media (max-width: 767px) {
  .u-smt245 {
    margin-top: 245px !important;
  }
}

@media (max-width: 767px) {
  .u-smt250 {
    margin-top: 250px !important;
  }
}

/*キャンペーン用のソースコード ここまで*/
.summercp2024 .summercp_closed_wrap {
  background-color: #eeeeee;
  border: #ccc 1px solid;
  padding: 16px 8px;
  text-align: center;
  max-width: 1440px;
  margin: 20px auto;
}
@media (max-width: 959px) {
  .summercp2024 .summercp_closed_wrap {
    max-width: 91%;
  }
}
.summercp2024 .summercp_closed {
  color: #666666;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 959px) {
  .summercp2024 .summercp_closed {
    text-align: left;
    font-size: 11px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: unset;
  }
}
.summercp2024 .summercp2024_close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cccccc;
  padding: 1em;
}
.summercp2024 .summercp2024_close p {
  color: #efefef;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
}
@media (max-width: 959px) {
  .summercp2024 .summercp2024_close p {
    font-size: 20px;
  }
}
@media (max-width: 959px) {
  .summercp2024 .summercp2024_cv02_inner {
    gap: calc(10 * var(--base-font, 1) / 10);
    padding-top: calc(20 * var(--base-font, 1) / 10);
  }
}

/*キャンペーン用のソースコード*/
.resolution {
  padding: 24px 0 40px;
}
@media (min-width: 960px) {
  .resolution {
    padding: 56px 0 120px;
  }
}
.resolution_flex {
  padding: 80px 0;
}
@media (max-width: 820px) {
  .resolution_flex {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: url(../images/campaign/trysansp.png) no-repeat right -5px bottom -7px;
    background-size: 180px 237px;
    margin-bottom: -34px;
  }
}
@media (max-width: 767px) {
  .resolution_flex {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: url(../images/campaign/trysansp.png) no-repeat right -5px bottom -7px;
    background-size: 116px 153px;
    margin-bottom: -10px;
  }
}
@media (max-width: 549px) {
  .resolution_flex {
    justify-content: flex-start;
  }
}
.resolution_title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-campaign02);
  line-height: 1.3958333333;
  text-align: center;
}
@media (min-width: 768px) {
  .resolution_title {
    font-size: 2.8rem;
  }
}
@media (min-width: 960px) {
  .resolution_title {
    font-size: 4.8rem;
  }
}
.resolution_title small {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .resolution_title small {
    font-size: 3rem;
  }
}
@media (min-width: 960px) {
  .resolution_title small {
    font-size: 3.6rem;
  }
}
.resolution_title strong {
  background: linear-gradient(transparent 60%, #FFF844 60%);
  font-weight: 900;
}
.resolution_lead {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1034px;
  margin: 24px auto;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: bolder;
  line-height: 1.45;
  text-align: center;
}
@media (max-width: 767px) {
  .resolution_lead {
    margin: 0 auto 24px;
  }
}
@media (min-width: 960px) {
  .resolution_lead {
    font-size: 2rem;
  }
}
.resolution_lead:before, .resolution_lead:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: var(--color-text);
}
.resolution_lead:before {
  margin-right: 4rem;
}
@media (min-width: 960px) {
  .resolution_lead:before {
    margin-right: 1rem;
  }
}
.resolution_lead:after {
  margin-left: 4rem;
}
@media (min-width: 960px) {
  .resolution_lead:after {
    margin-left: 1rem;
  }
}
.resolution_list {
  display: flex;
  justify-content: center;
  margin-top: -12px;
  margin-left: -12px;
}
@media (max-width: 959px) {
  .resolution_list {
    flex-wrap: wrap;
  }
}
@media (min-width: 960px) {
  .resolution_list {
    margin-top: -20px;
    margin-left: -20px;
  }
}
.resolution_item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-left: 12px;
  width: 101px;
  height: 101px;
  background: var(--color-white);
  border: 3px solid var(--color-campaign02);
  border-radius: 50%;
  box-shadow: 7.76048px 7.76048px 0px rgba(241, 179, 208, 0.4);
  font-weight: bolder;
  font-size: 1.3rem;
  line-height: 130%;
  color: var(--color-campaign02);
  text-align: center;
}
@media (min-width: 960px) {
  .resolution_item {
    margin-top: 20px;
    margin-left: 20px;
    width: 157px;
    height: 157px;
    border: 4px solid var(--color-campaign02);
    box-shadow: 12px 12px 0px rgba(241, 179, 208, 0.4);
    font-size: 2rem;
  }
}

/*キャンペーン用のソースコード ここまで*/
/*キャンペーン用のソースコード*/
.reason {
  background: rgb(238, 251, 255);
}
@media (min-width: 960px) {
  .reason {
    padding-left: calc(50% - var(--width-desktopHD) / 2);
    padding-right: calc(50% - var(--width-desktopHD) / 2);
  }
}
.reason .section_title {
  font-size: 2.4rem;
}
@media (min-width: 550px) {
  .reason .section_title {
    font-size: 3.2rem;
  }
}
@media (min-width: 960px) {
  .reason .section_title {
    font-size: 40px;
  }
}
.reason_list {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media (max-width: 959px) {
  .reason_list {
    display: none;
  }
}
.reason_item {
  border: 2px solid var(--color-darkpink);
  box-shadow: 0px 8px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  width: calc((100% - 96px) / 3);
}
.reason_item a {
  display: block;
  padding: 16px 8px 36px;
  font-size: 2rem;
  font-weight: bolder;
  line-height: 1.45;
  text-align: center;
  color: var(--color-darkpink);
}
.reason_item::after {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 27px;
  height: 15px;
  background: url(../images/campaign/reason-chevron-down.svg) no-repeat;
}
.reason_item:nth-of-type(1)::before {
  content: "1";
}
.reason_item:nth-of-type(2)::before {
  content: "2";
}
.reason_item:nth-of-type(3)::before {
  content: "3";
}
.reason_item::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: -40px;
  top: -40px;
  font-size: 3.6rem;
  background: var(--color-darkpink);
  color: var(--color-white);
}

/*キャンペーン用のソースコード　ここまで*/
.c-title {
  text-align: center;
  font-size: 2.4rem;
}
@media (min-width: 960px) {
  .c-title {
    font-size: 4rem;
  }
}

.page-link-menu {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 57px;
}
.page-link-menu_list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 57px;
}
.page-link-menu_link {
  color: var(--color-text);
}
.page-link-menu_item {
  font-size: 14px;
  font-weight: bolder;
  background: var(--color-white);
  width: 200px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-link_title {
  text-align: center;
  font-weight: bolder;
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-link_title {
    font-size: 24px;
  }
}
.page-link_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .page-link_list {
    row-gap: 24px;
  }
}
.page-link_item {
  width: calc((100% - 16px) / 2);
}
@media (min-width: 768px) {
  .page-link_item {
    width: calc((100% - 48px) / 3);
  }
}
@media (min-width: 960px) {
  .page-link_item {
    width: calc((100% - 120px) / 3);
  }
}
.experience .page-link_item {
  width: calc((100% - 16px) / 3);
}
@media (min-width: 768px) {
  .experience .page-link_item {
    width: calc((100% - 120px) / 3);
  }
}
.page-link_link {
  display: flex;
  background: var(--color-white);
  align-items: center;
  border: 1px solid var(--color-white);
  box-shadow: 0px 8px 0px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}
@media (min-width: 960px) {
  .page-link_link {
    padding: 0 0 0 30px;
  }
}
@media (max-width: 959px) {
  .page-link_link {
    padding-top: 8px;
  }
}
.page-link_link:hover {
  border: 1px solid var(--color-red);
}
.page-link_link-orange:hover {
  border: 1px solid var(--color-shogaku);
}
.page-link_link-green:hover {
  border: 1px solid var(--color-chugaku);
}
.page-link_link-blue:hover {
  border: 1px solid var(--color-koukou);
}
@media (max-width: 959px) {
  .experience .page-link_link {
    flex-direction: column;
  }
}
@media (max-width: 959px) {
  .page-link_head {
    display: none;
  }
}
@media (max-width: 959px) {
  .experience .page-link_head {
    display: block;
    width: 24px;
  }
  .experience .page-link_head img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 960px) {
  .page-link_head--common img, .page-link_head--teacher img, .page-link_head--class img, .page-link_head--price img, .page-link_head--support img, .page-link_head--other img {
    width: auto;
    height: 75px;
  }
}
.page-link_body {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  width: 100%;
  position: relative;
}
@media (min-width: 960px) {
  .page-link_body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 127px;
    position: relative;
    right: 16px;
  }
}
.page-link_body::after {
  content: url(/assets/images/qa/scroll_down.png);
}
@media (min-width: 960px) {
  .page-link_body::after {
    position: absolute;
    right: 12px;
    top: 50%;
  }
}
@media (max-width: 959px) {
  .page-link_body::after {
    display: flex;
    justify-content: center;
    height: 19px;
    margin-bottom: 8px;
  }
}
.page-link_body2 {
  position: relative;
}
.page-link_body2::after {
  content: url(/assets/images/experience/arrow-down-orange.svg);
}
@media (min-width: 960px) {
  .page-link_body2::after {
    position: absolute;
    right: 12px;
    content: url(/assets/images/experience/arrow-right-orange.svg);
    top: 50%;
    transform: translateY(-50%);
  }
}
.page-link_body3 {
  position: relative;
}
.page-link_body3::after {
  content: url(/assets/images/experience/arrow-down-green.svg);
}
@media (min-width: 960px) {
  .page-link_body3::after {
    position: absolute;
    right: 12px;
    top: 50%;
    content: url(/assets/images/experience/arrow-right-green.svg);
    transform: translateY(-50%);
  }
}
.page-link_body4 {
  position: relative;
}
.page-link_body4::after {
  content: url(/assets/images/experience/arrow-down-blue.svg);
}
@media (min-width: 960px) {
  .page-link_body4::after {
    position: absolute;
    right: 12px;
    top: 50%;
    content: url(/assets/images/experience/arrow-right-blue.svg);
    transform: translateY(-50%);
  }
}
.page-link_text {
  text-align: center;
  font-weight: bolder;
  font-size: 12px;
  color: var(--color-red);
}
@media (min-width: 550px) {
  .page-link_text {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .page-link_text {
    font-size: 20px;
  }
}
@media (min-width: 960px) {
  .page-link_text {
    font-size: 24px;
  }
}
.page-link_text-orange {
  color: var(--color-shogaku);
}
.page-link_text-green {
  color: var(--color-chugaku);
}
.page-link_text-blue {
  color: var(--color-koukou);
}
.page-link_text2 {
  color: #666;
}

.container02 {
  max-width: 900px;
  margin: 0 auto;
}

.experience_title {
  margin-bottom: 32px;
  position: relative;
}
.experience_title .section_title {
  position: relative;
  font-size: 20px;
}
@media (min-width: 768px) {
  .experience_title .section_title {
    font-size: 24px;
  }
}
@media (min-width: 960px) {
  .experience_title .section_title {
    font-size: 32px;
  }
}
.experience_title .section_title::before {
  display: inline-block;
  content: "";
  width: 37px;
  height: 35px;
  background: url(../images/experience/title-speech-orange-sp.svg) no-repeat;
}
@media (min-width: 960px) {
  .experience_title .section_title::before {
    width: 82px;
    height: 83px;
    background: url(../images/experience/title-speech-orange.svg) no-repeat;
  }
}
.experience_title .section_title-sm {
  text-transform: uppercase;
  color: var(--color-darkgray);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  width: 100%;
  align-items: center;
  display: flex;
}
@media (min-width: 768px) {
  .experience_title .section_title-sm {
    font-size: 24px;
  }
}
.experience_title .section_title-sm::after, .experience_title .section_title-sm::before {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: var(--color-shogaku);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.experience_title .section_title-sm::after {
  margin-right: 1rem;
}
.experience_title .section_title-sm::before {
  margin-right: 1rem;
}
.experience_title .section_title-green::after, .experience_title .section_title-green::before {
  background: var(--color-chugaku);
}
.experience_title .section_title-blue::after, .experience_title .section_title-blue::before {
  background: var(--color-koukou);
}
.experience_title .section_title.section_title_2::before {
  background: url(../images/experience/title-flower-orange-sp.svg) no-repeat;
}
@media (min-width: 960px) {
  .experience_title .section_title.section_title_2::before {
    background: url(../images/experience/title-flower-orange.svg) no-repeat;
  }
}
.experience_title .section_title.section_title_3::before {
  background: url(../images/experience/title-speech-green-sp.svg) no-repeat;
}
@media (min-width: 960px) {
  .experience_title .section_title.section_title_3::before {
    background: url(../images/experience/title-speech-green.svg) no-repeat;
  }
}
.experience_title .section_title.section_title_4::before {
  background: url(../images/experience/title-flower-green-sp.svg) no-repeat;
}
@media (min-width: 960px) {
  .experience_title .section_title.section_title_4::before {
    background: url(../images/experience/title-flower-green.svg) no-repeat;
  }
}
.experience_title .section_title.section_title_5::before {
  background: url(../images/experience/title-speech-blue-sp.svg) no-repeat;
}
@media (min-width: 960px) {
  .experience_title .section_title.section_title_5::before {
    background: url(../images/experience/title-speech-blue.svg) no-repeat;
  }
}
.experience_title .section_title.section_title_6::before {
  background: url(../images/experience/title-flower-blue-sp.svg) no-repeat;
}
@media (min-width: 960px) {
  .experience_title .section_title.section_title_6::before {
    background: url(../images/experience/title-flower-blue.svg) no-repeat;
  }
}
.experience_title strong {
  color: var(--color-shogaku);
  font-size: 24px;
}
@media (min-width: 768px) {
  .experience_title strong {
    font-size: 30px;
  }
}
@media (min-width: 960px) {
  .experience_title strong {
    font-size: 39px;
  }
}
.experience_title .gr {
  color: var(--color-chugaku);
}
.experience_title .bl {
  color: var(--color-koukou);
}
.experience_contents {
  padding: 36px 15px 35px 15px;
  margin: 0 auto;
  background: rgba(255, 146, 46, 0.1);
}
@media (min-width: 960px) {
  .experience_contents {
    padding: 55px 120px 57px 120px;
  }
}
.experience_contents-green {
  background: rgba(59, 185, 125, 0.1);
}
.experience_contents-blue {
  background: rgba(36, 155, 217, 0.1);
}
.experience_contents_item {
  display: flex;
  margin-bottom: 24px;
  flex-direction: column-reverse;
  background: var(--color-white);
  border-radius: 20px;
  padding: 24px 24px 10px 24px;
}
@media (min-width: 960px) {
  .experience_contents_item {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    background: none;
    margin-bottom: 56px;
    gap: 55px;
  }
}
@media (min-width: 960px) {
  .futoukou .experience_contents_item, .experience_contents_item .abroad {
    margin-bottom: 0;
  }
}
.experience_contents_name {
  text-align: left;
}
@media (min-width: 960px) {
  .experience_contents_name {
    text-align: center;
  }
}
.experience_contents_name span:first-of-type {
  font-weight: 700;
  font-size: 14px;
  display: block;
}
.experience_contents_name span:last-of-type {
  font-weight: 400;
  font-size: 14px;
  display: block;
}
.experience_contents_head {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (min-width: 960px) {
  .experience_contents_head {
    width: 145px;
    display: block;
  }
}
.experience_contents_thumb {
  width: 56px;
  height: auto;
}
.experience_contents_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
@media (min-width: 960px) {
  .experience_contents_thumb {
    width: 100%;
  }
}
.experience_contents_body {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  padding: 0px 0px 0px 0px;
  flex: 1;
}
@media (min-width: 960px) {
  .experience_contents_body {
    padding: 24px 24px 10px 24px;
  }
  .experience_contents_body::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 32px;
    background: url(../images/experience/fukidashi.svg) no-repeat;
    width: 41px;
    height: 32px;
  }
}
.experience_contents_title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 22px;
}
.experience_contents_title span {
  background: linear-gradient(transparent 60%, #FFF844 60%);
  font-weight: 700;
}
@media (min-width: 960px) {
  .experience_contents_title {
    font-size: 20px;
  }
}
.experience_contents_text {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .experience_contents_text {
    margin-bottom: 0;
  }
}
.experience_contents_button {
  margin: 0 auto;
  display: block;
  position: relative;
  width: 288px;
  height: 50px;
  color: var(--color-white);
  background: var(--color-shogaku);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border-radius: 20px;
}
.experience_contents_button:hover {
  color: #fff;
  opacity: 0.8;
}
.experience_contents_button::after {
  position: absolute;
  content: url(../images/icons/arrow-right-button.png);
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.experience_contents_button_green {
  background: var(--color-chugaku);
}
.experience_contents_button_blue {
  background: var(--color-koukou);
}
@media (min-width: 960px) {
  .experience_contents_button {
    width: 338px;
    height: 60px;
    font-size: 24px;
  }
  .experience_contents_button::after {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.online-flow {
  max-width: 960px;
  margin: 0 auto;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .online-flow {
    max-width: 1000px;
  }
}
@media (min-width: 960px) {
  .online-flow .section02 {
    padding-top: 60px;
  }
}
.online-flow-head_text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3125;
  text-align: center;
}
@media (min-width: 960px) {
  .online-flow-head_text {
    font-size: 18px;
    line-height: 1.4;
  }
}
.online-flow-head_nav {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .online-flow-head_nav {
    display: flex;
    max-width: 900px;
    margin: 23px auto 0;
  }
}
.online-flow-head_navitem {
  background: #fff5f5;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5714285714;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 6px;
  height: 44px;
  padding: 0 20px;
  position: relative;
}
@media (min-width: 960px) {
  .online-flow-head_navitem {
    max-width: unset;
    width: 33.3333333333%;
    padding: 0 0px 0 52px;
  }
  .online-flow-head_navitem + .online-flow-head_navitem {
    margin-left: 26px;
  }
}
.online-flow-head_navitem::after {
  position: absolute;
  content: url(../images/202401/arrow_red.svg);
  right: 11px;
  top: 60%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .online-flow-head_navitem::before {
    position: absolute;
    content: url(../images/202401/Q.svg);
    left: 20px;
    top: 58%;
    transform: translateY(-50%);
  }
}
.online-flow-head + section {
  margin: 60px auto 0;
}
@media (min-width: 960px) {
  .online-flow-head + section {
    margin: 80px auto 0;
  }
}
.online-flow_title {
  border-left: 8px solid #e6003d;
  border-right: 8px solid #e6003d;
  background: #ffeaea;
  text-align: left;
  padding-left: 22px;
  font-size: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  width: 100vw;
  margin: 50px calc(50% - 50vw) 0;
}
@media (min-width: 960px) {
  .online-flow_title {
    margin: 80px auto 0;
    width: 100%;
    height: 80px;
    font-size: 26px;
    padding-left: 32px;
  }
}
.online-flow_title + .online-flow_item {
  margin-top: 21px;
}
@media (min-width: 960px) {
  .online-flow_title + .online-flow_item {
    margin-top: 38px;
  }
}
.online-flow_title2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.875;
  text-align: center;
  color: var(--color-red);
  margin-top: 30px;
}
.online-flow_title2 .lg {
  font-size: 22px;
  line-height: 1.5;
}
.online-flow_title2 .line {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.online-flow_title2 .line::after {
  position: absolute;
  content: "";
  background: #fcff6d;
  width: 100%;
  height: 14px;
  left: 0;
  bottom: -4px;
  z-index: -1;
}
@media (min-width: 960px) {
  .online-flow_title2 {
    margin-top: 45px;
    font-size: 22px;
    line-height: 1.3636363636;
  }
  .online-flow_title2 .lg {
    font-size: 28px;
    line-height: 1.5;
  }
  .online-flow_title2 .line::after {
    height: 18px;
  }
}
.online-flow_box1 {
  background: #f9f9f9;
  border-radius: 5px;
  margin-top: 30px;
  padding: 14px 10px 8px;
}
@media (min-width: 960px) {
  .online-flow_box1 {
    max-width: 800px;
    margin: 40px auto 0;
  }
}
.online-flow_box1_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3125;
  text-align: center;
}
.online-flow_box1_textbox {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8%, rgb(255, 255, 255) 8%, rgb(255, 255, 255) 89%, rgba(255, 255, 255, 0) 89%);
  margin: 5px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 960px) {
  .online-flow_box1_textbox {
    width: 400px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgb(255, 255, 255) 12%, rgb(255, 255, 255) 84%, rgba(255, 255, 255, 0) 84%);
  }
}
.online-flow_box1_textbox figure {
  width: 74px;
  margin-left: 13px;
}
@media (min-width: 960px) {
  .online-flow_box1_textbox figure {
    margin-left: unset;
  }
}
.online-flow_box1_textbox figure img {
  width: 100%;
  height: auto;
}
.online-flow_box1_textbox p {
  margin-left: 5px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3125;
}
@media (min-width: 960px) {
  .online-flow_box1_textbox p {
    margin-left: 7px;
  }
}
.online-flow_box2 {
  background: #f9f9f9;
  border-radius: 5px;
  margin-top: 18px;
  padding: 14px 10px 23px;
}
@media (min-width: 960px) {
  .online-flow_box2 {
    max-width: 800px;
    margin: 18px auto 0;
    padding: 22px 0 30px;
  }
}
.online-flow_box2_title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9285714286;
  text-align: center;
}
.online-flow_box2_title2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.375;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .online-flow_box2_title2 {
    text-align: center;
  }
}
.online-flow_box2_listtitle {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3616666667;
  color: #666666;
  width: 257px;
  margin: 19px auto 0;
}
@media (min-width: 960px) {
  .online-flow_box2_listtitle {
    font-size: 14px;
    line-height: 1.3621428571;
    text-align: center;
  }
}
@media (min-width: 960px) {
  .online-flow_box2_listbox {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
}
.online-flow_box2_list {
  width: 245px;
  margin: 8px auto 0;
}
@media (min-width: 960px) {
  .online-flow_box2_list {
    margin: unset;
    max-width: 300px;
    width: 50%;
  }
  .online-flow_box2_list + .online-flow_box2_list {
    margin-left: 20px;
  }
}
.online-flow_box2_list2 {
  width: 257px;
  margin: 3px auto 0;
}
@media (min-width: 960px) {
  .online-flow_box2_list2 {
    margin: unset;
    max-width: 300px;
    width: 50%;
  }
  .online-flow_box2_list2 + .online-flow_box2_list2 {
    margin-left: 20px;
  }
}
.online-flow_box2_listitem {
  font-size: 14px;
  line-height: 1.5714285714;
  font-weight: 700;
  color: #666666;
  padding-left: 19px;
  position: relative;
}
.online-flow_box2_listitem::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666666;
  left: 6px;
  top: 8px;
}
.online-flow_box3 {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .online-flow_box3 {
    margin-top: unset;
  }
}
.online-flow_box3 + .online-flow_box3 {
  margin-top: 7px;
}
@media (min-width: 960px) {
  .online-flow_box3 + .online-flow_box3 {
    margin-top: unset;
    margin-left: 21px;
  }
}
@media (min-width: 960px) {
  .online-flow_box3_flex {
    display: flex;
    margin-top: 20px;
    max-width: 800px;
    margin: 20px auto 0;
  }
}
.online-flow_box3_title {
  color: var(--color-red);
  background: #ffeaea;
  text-align: center;
  font-size: 12px;
  line-height: 1.75;
  font-weight: 700;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .online-flow_box3_title {
    height: 40px;
    font-size: 18px;
  }
}
.online-flow_box3_body {
  display: flex;
  align-items: center;
}
@media (min-width: 960px) {
  .online-flow_box3_body {
    background: #f9f9f9;
  }
}
.online-flow_box3_body figure {
  width: 83px;
}
@media (min-width: 960px) {
  .online-flow_box3_body figure {
    width: 145px;
  }
}
.online-flow_box3_body figure img {
  width: 100%;
  height: auto;
}
.online-flow_box3_body div {
  font-size: 12px;
  line-height: 1.75;
  font-weight: 700;
  margin-left: 7px;
  width: calc(100% - 7px - 83px);
}
@media (min-width: 960px) {
  .online-flow_box3_body div {
    width: calc(100% - 15px - 145px);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 15px;
    margin-left: unset;
  }
}
.online-flow_box3_body div span {
  color: var(--color-red);
}
@media (min-width: 960px) {
  .online-flow_box3_body2 div {
    margin-top: -55px;
  }
}
.online-flow_box4 {
  margin-top: 20px;
  padding-bottom: 21px;
  background: #f9f9f9;
}
@media (min-width: 960px) {
  .online-flow_box4 {
    margin: 20px auto 0;
    max-width: 800px;
    padding-bottom: 30px;
  }
}
.online-flow_box4_title {
  background: #ffeaea;
  text-align: center;
  font-size: 12px;
  line-height: 1.75;
  font-weight: 700;
  height: 50px;
  padding-top: 4px;
}
@media (min-width: 960px) {
  .online-flow_box4_title {
    height: 70px;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 13px;
  }
}
.online-flow_box4_title span {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-red);
  display: block;
}
@media (min-width: 960px) {
  .online-flow_box4_title span {
    height: 70px;
    font-size: 20px;
    line-height: 1.05;
  }
}
.online-flow_box4_body {
  margin: 14px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 960px) {
  .online-flow_box4_body {
    max-width: 640px;
    width: 100%;
    margin: 21px auto 0px;
  }
}
.online-flow_box4_body > div {
  margin-left: 10px;
}
@media (min-width: 960px) {
  .online-flow_box4_body > div {
    position: relative;
  }
}
.online-flow_box4_body figure {
  max-width: 280px;
  text-align: center;
  margin: 14px 0 0 19px;
}
@media (min-width: 960px) {
  .online-flow_box4_body figure {
    margin-left: auto;
    max-width: 352px;
  }
}
.online-flow_box4_body figure img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .online-flow_box4_body2 figure {
    margin-right: auto;
    margin-left: unset;
  }
}
.online-flow_box4_textbox {
  margin: -32px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 960px) {
  .online-flow_box4_textbox {
    position: absolute;
    left: -11px;
    bottom: 27px;
  }
}
@media (min-width: 960px) {
  .online-flow_box4_textbox2 {
    position: absolute;
    left: unset;
    right: 0;
    bottom: 27px;
  }
}
@media (min-width: 960px) {
  .online-flow_box4_textbox3 {
    position: absolute;
    left: -9px;
    bottom: 27px;
  }
  .online-flow_box4_textbox3 .online-flow_box4_text {
    padding: 20px 40px 22px 40px;
  }
}
.online-flow_box4_text {
  font-size: 12px;
  line-height: 1.75;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  margin-left: -54px;
  width: fit-content;
  padding: 10px 10px 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .online-flow_box4_text {
    margin-left: unset;
    font-size: 14px;
    line-height: 1.4;
    padding: 20px 20px 20px;
  }
}
@media (min-width: 960px) {
  .online-flow_box4_text2 {
    margin-left: unset;
  }
}
.online-flow_box4_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .online-flow_box4_flex {
    max-width: 633px;
    margin: 26px auto 0;
    justify-content: flex-start;
  }
}
.online-flow_box4_flex figure {
  width: 66px;
  height: auto;
}
@media (min-width: 960px) {
  .online-flow_box4_flex figure {
    width: 80px;
    height: 80px;
  }
}
.online-flow_box4_flex figure img {
  width: 100%;
  height: auto;
}
.online-flow_box4_flex p {
  font-size: 12px;
  line-height: 1.3616666667;
  font-weight: 400;
  margin-left: 13.5px;
}
@media (min-width: 960px) {
  .online-flow_box4_flex p {
    font-size: 16px;
    line-height: 1.361875;
    margin-left: 18px;
  }
}
.online-flow_tool {
  margin: 30px calc(50% - 50vw) 0;
  padding: 43px calc(50vw - 50%) 40px;
  width: 100vw;
}
.online-flow_tool .online-flow_item {
  margin-top: 18px;
}
.online-flow_tool .price-option_list {
  margin-top: 18px;
}
.online-flow_item {
  position: relative;
  border: var(--color-red) 2px solid;
  border-radius: 16px;
}
@media (min-width: 960px) {
  .online-flow_item {
    max-width: 800px;
    margin: 5px auto 0;
  }
}
.online-flow_item_title {
  height: 47px;
  border-radius: 13px 13px 0 0;
  background: var(--color-red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3125;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .online-flow_item_title {
    height: 60px;
    font-size: 20px;
  }
}
.online-flow_item_title span {
  color: rgb(252, 255, 109);
  font-size: 22px;
  line-height: 0.9545454545;
  margin-right: 10px;
}
@media (min-width: 960px) {
  .online-flow_item_title span {
    font-size: 27px;
  }
}
.online-flow_item_thumb img {
  width: 100%;
  height: auto;
}
.online-flow_item_lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3125;
  text-align: center;
  padding: 11px 0;
}
@media (min-width: 960px) {
  .online-flow_item_lead {
    font-size: 20px;
    padding: 15px 0 17px;
  }
}
.online-flow_item_lead span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
}
@media (min-width: 960px) {
  .online-flow_item_lead span {
    font-size: 16px;
  }
}
.online-flow_item_lead2 {
  position: absolute;
  left: 4px;
  bottom: 17px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3125;
  padding: 9px 12px 10px 7px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
}
.online-flow_item_lead2 span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
}
.online-flow_item2 {
  border: unset;
}
.online-flow_item2 .online-flow_item_title {
  border-radius: 16px 16px 0 0;
}
.online-flow_item2 .online-flow_item_thumb {
  margin-top: -8px;
}
.online-flow_item2 .online-flow_item_lead2 {
  bottom: 26px;
}
.online-flow_arrow {
  margin: 14px auto 0;
  text-align: center;
}
.online-flow .price-option_item2 {
  background: #ffeaea;
}
.online-flow_sp {
  display: block;
}
@media (min-width: 960px) {
  .online-flow_sp {
    display: none;
  }
}
.online-flow_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .online-flow_sp--flex {
    display: none;
  }
}
.online-flow_pc {
  display: none;
}
@media (min-width: 960px) {
  .online-flow_pc {
    display: block;
  }
}
.online-flow_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .online-flow_pc--flex {
    display: flex;
  }
}
.online-flow_pc--inline {
  display: none;
}
@media (min-width: 960px) {
  .online-flow_pc--inline {
    display: inline-block;
  }
}

.online-flow02 {
  max-width: 960px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .online-flow02 {
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
  }
}
.online-flow02_item {
  width: 100%;
  background: var(--color-white);
  border: 1px solid #16a7d6;
  border-radius: 16px;
  padding: 15px 15px 15px 15px;
}
@media (min-width: 768px) {
  .online-flow02_item {
    width: calc((100% - 32px) / 2);
    padding: 15px 25px 32px 20px;
  }
}
.online-flow02_content {
  display: flex;
  margin-top: 14px;
}
@media (min-width: 768px) {
  .online-flow02_content {
    margin-top: 16px;
  }
}
.online-flow02_title {
  font-size: 16px;
  font-weight: bolder;
  color: #16a7d6;
  line-height: 23px;
  text-align: center;
}
@media (min-width: 768px) {
  .online-flow02_title {
    font-size: 22px;
    line-height: 35px;
  }
}
@media (min-width: 960px) {
  .online-flow02_title {
    font-size: 24px;
  }
}
.online-flow02_image {
  width: 120px;
}
.online-flow02_image img {
  width: 100%;
  height: auto;
}
.online-flow02_body {
  flex: 1;
  margin-left: 20px;
  font-size: 12px;
  line-height: 160%;
}
@media (min-width: 768px) {
  .online-flow02_body {
    font-size: 14px;
  }
}

.contact_simple03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-link);
  background-color: #e8fbff;
}
@media (min-width: 768px) {
  .contact_simple03 {
    gap: 24px;
  }
}
.contact_simple03_title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
}
@media (min-width: 550px) {
  .contact_simple03_title {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .contact_simple03_title {
    font-size: 3.2rem;
    line-height: 1.4375;
  }
}
.contact_simple03 .contact_content {
  align-items: center;
}
@media (min-width: 768px) {
  .contact_simple03 .contact_content {
    padding: 0;
  }
}
.contact_simple03 .contact_button {
  position: relative;
  margin: 16px auto 0;
  max-width: 640px;
  background-color: var(--color-link);
  font-size: 2rem;
  color: var(--color-white);
  overflow: hidden;
}
.contact_simple03 .contact_button::before {
  animation: shine 4s infinite;
}
.contact_simple03 .contact_button::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
@media (min-width: 550px) {
  .contact_simple03 .contact_button {
    font-size: 2.8rem;
  }
}
@media (min-width: 768px) {
  .contact_simple03 .contact_button {
    margin-top: 16px;
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .contact_simple03 .contact_button {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .contact_simple03 .contact_button small {
    font-size: 1.6rem;
  }
}
.contact_simple03 .contact_button:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-defalut-h) + 0deg), calc(var(--color-defalut-s) + 0%), calc(var(--color-defalut-l) + -20%), calc(var(--color-defalut-a) + -0.5));
  opacity: 1;
}
.contact_simple03 .contact_button-taiken {
  color: var(--color-link);
  border: 2px solid var(--color-link);
  background-color: var(--color-primary);
}
.contact_simple03 .contact_button-taiken:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) + -20%), calc(var(--color-primary-a) + -0.5));
  opacity: 1;
}
.contact_simple03 .contact_button_icon {
  color: var(--color-link);
}
.contact_simple03 .contact_button-taiken:hover .contact_button_icon {
  color: var(--color-primary);
}
.contact_simple03 .contact_tel {
  color: var(--color-link);
  border: 0;
}
.contact_simple03 .contact_tel_link {
  color: var(--color-link);
}
.contact_simple03 .contact_tel_number {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .contact_simple03 .contact_tel_number {
    font-size: 2rem;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  }
}
.contact_simple03 .contact_tel_small {
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .contact_simple03 .contact_tel_small {
    font-size: 1.1rem;
    margin-top: 8px;
    margin-left: 0;
  }
}
.contact_simple03 .contact_tel_icon {
  width: 44px;
  height: 44px;
  color: var(--color-link);
}
@media (max-width: 767px) {
  .contact_simple03 .contact_tel_icon {
    width: 22px;
    height: 22px;
  }
}
.contact_simple03 .contact_tel_icon_link {
  color: var(--color-link);
}
@media (min-width: 768px) {
  .contact_simple03 .microcopy {
    margin-bottom: 0;
  }
}
.contact_simple03 .faq_q::before {
  color: var(--color-darkpink);
}
.contact_simple03 .microcopy02 {
  margin-bottom: -16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bolder;
}
@media (min-width: 768px) {
  .contact_simple03 .microcopy02 {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}

.point-content_list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 960px) {
  .point-content_list {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 32px;
    gap: 0px;
  }
}
.point-content_item {
  display: flex;
  width: 100%;
  padding: 12px 24px 16px 8px;
  background: rgba(22, 167, 214, 0.05);
  border-radius: 8px;
}
@media (min-width: 960px) {
  .point-content_item {
    width: calc((100% - 40px) / 2);
  }
}
.point-content_icon {
  display: block;
  content: "";
  background: url(../images/classes/icon-point.svg) no-repeat;
  width: 40px;
  height: 42px;
}
.point-content_body {
  flex: 1;
  margin-left: 10px;
}
.point-content_body dt {
  font-weight: bolder;
  color: #16a7d6;
  font-size: 14px;
}
@media (min-width: 960px) {
  .point-content_body dt {
    font-size: 16px;
  }
}
.point-content_body dd {
  margin: 14px 0 0 0;
  font-size: 12px;
  line-height: 1.4285714286;
}
@media (min-width: 960px) {
  .point-content_body dd {
    font-size: 14px;
    margin: 12px 0 0 0;
  }
}

.teacher-support {
  max-width: 1000px;
  margin: 0 auto;
}
.teacher-support_title {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  padding: 12px 0;
  background: var(--color-lightpink);
  border-radius: 16px;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .teacher-support_title {
    font-size: 24px;
    padding: 16px 0;
  }
}
.teacher-support_title strong {
  font-size: 22px;
  color: var(--color-red);
}
@media (min-width: 768px) {
  .teacher-support_title strong {
    font-size: 32px;
  }
}
.teacher-support_title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 22px;
  height: 22px;
  background: url(../images/classes/teacher-support_down.svg) no-repeat;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 768px) {
  .teacher-support_title::after {
    width: 29px;
    height: 28px;
    bottom: -25.5px;
  }
}
.teacher-support_media-block {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .teacher-support_media-block {
    flex-direction: row;
    align-items: center;
    margin-top: 37px;
  }
}
.teacher-support_sub_title {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .teacher-support_sub_title {
    font-size: 20px;
  }
}
.teacher-support_sub_title::before {
  display: inline-block;
  content: "";
  margin-right: 10px;
  width: 56px;
  height: 56px;
  background: url(../images/classes/icon-support.svg) no-repeat;
}
.teacher-support_text {
  margin-top: 18px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .teacher-support_text {
    margin-top: 16px;
    font-size: 16px;
  }
}
.teacher-support_body {
  flex: 1;
}
@media (max-width: 767px) {
  .teacher-support_body {
    order: 2;
  }
}
.teacher-support_image {
  margin-bottom: 30px;
}
.teacher-support_image img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .teacher-support_image {
    width: 40%;
    margin-left: 40px;
    margin-bottom: 0px;
  }
}
@media (min-width: 960px) {
  .teacher-support_image {
    width: 455px;
    margin-left: 78px;
  }
}
@media (max-width: 767px) {
  .teacher-support_image {
    order: 1;
  }
}
.teacher-support_sp {
  display: block;
}
@media (min-width: 960px) {
  .teacher-support_sp {
    display: none;
  }
}
.teacher-support_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .teacher-support_sp--flex {
    display: none;
  }
}
.teacher-support_pc {
  display: none;
}
@media (min-width: 960px) {
  .teacher-support_pc {
    display: block;
  }
}
.teacher-support_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .teacher-support_pc--flex {
    display: flex;
  }
}
.teacher-support_pc--inline {
  display: none;
}
@media (min-width: 960px) {
  .teacher-support_pc--inline {
    display: inline-block;
  }
}

.consultation-case {
  border: none;
  margin: 50px auto 0;
}
@media (min-width: 768px) {
  .consultation-case {
    max-width: 1000px;
    margin: 82px auto 0;
    border: 2px solid #999999;
    border-radius: 16px;
  }
}
.consultation-case_inner {
  padding: 0 11px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .consultation-case_inner {
    padding: 48px 44px 56px;
    margin: 0 auto;
  }
}
.consultation-case img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .consultation-case img {
    max-width: 400px;
  }
}
.consultation-case_title {
  margin-top: -17px;
  font-size: 20px;
  font-weight: bolder;
  line-height: 1.4583333333;
  text-align: center;
  margin-bottom: 23px;
}
@media (min-width: 768px) {
  .consultation-case_title {
    font-size: 24px;
    margin-bottom: 0px;
  }
}
.consultation-case_title p {
  display: inline-block;
  background: var(--color-white);
  padding: 0 24px;
}
.consultation-case_title p span {
  background: linear-gradient(transparent 60%, #FFF844 60%);
}

.c-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: var(--color-red);
}
.c-to-top::before, .c-to-top::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.c-to-top::before {
  left: 11px;
  transform: rotate(-45deg);
}
.c-to-top::after {
  left: 21px;
  transform: rotate(45deg);
}
.c-to-top:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media (min-width: 960px) {
  .c-to-top {
    border-radius: 2px;
  }
  .c-to-top::before, .c-to-top::after {
    top: 45%;
  }
  .c-to-top::before {
    left: 10px;
  }
  .c-to-top::after {
    left: auto;
    right: 10px;
  }
}

.seminar {
  padding-bottom: 82px;
}
@media (max-width: 959px) {
  .seminar {
    padding-bottom: 35px;
  }
}
.seminar .container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.seminar .section_title {
  color: #E6003D;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 959px) {
  .seminar .section_title {
    justify-content: center;
    padding-left: unset;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.seminar_button {
  background: linear-gradient(180deg, rgb(253, 255, 253) 0%, rgb(25, 181, 38) 33%, rgb(25, 172, 29) 100%);
  border: 3px solid #079F11;
  padding: 0 25px 0 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  transition: all 0.4s ease;
}
@media (max-width: 959px) {
  .seminar_button {
    min-height: 64px;
  }
}
.seminar_button:hover {
  color: var(--color-inverse);
  opacity: 0.8;
}
.seminar_button_circle {
  background: #fff;
  color: #208F21;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  width: 56px;
  height: 56px;
}
@media (max-width: 959px) {
  .seminar_button_circle {
    width: 43px;
    height: 43px;
  }
}
.seminar_button_circle .sm {
  font-size: 13px;
  display: block;
  letter-spacing: -0.06em;
}
@media (max-width: 959px) {
  .seminar_button_circle .sm {
    font-size: 10px;
  }
}
.seminar_button_circle .lg {
  font-size: 18px;
  display: block;
  line-height: 1;
}
@media (max-width: 959px) {
  .seminar_button_circle .lg {
    font-size: 14px;
  }
}
.seminar_button_text {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
@media (max-width: 959px) {
  .seminar_button_text {
    font-size: 18px;
    line-height: 1.2222222222;
    text-align: center;
  }
}
.seminar_button_arrow {
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
@media (max-width: 959px) {
  .seminar_button_arrow {
    width: 20px;
    height: 20px;
  }
}
.seminar_button_arrow span {
  background: #079F11;
  width: 10px;
  height: 12px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  margin-left: 2px;
}
@media (max-width: 959px) {
  .seminar_button_arrow span {
    width: 8px;
    height: 10px;
  }
}
.seminar_mv {
  position: relative;
  background-image: url(../images/seminar/kv_lg.jpg);
  background-position: center;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media (max-width: 959px) {
  .seminar_mv {
    background-image: url(../images/seminar/kv_sm.jpg);
    background-position: center;
  }
}
.seminar_mv_contents {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 23px 10px 35px;
}
@media (max-width: 959px) {
  .seminar_mv_contents {
    max-width: 364px;
  }
}
.seminar_mv_lead {
  font-weight: 900;
}
.seminar_mv_lead .sm {
  font-size: 42px;
  display: block;
}
@media (max-width: 959px) {
  .seminar_mv_lead .sm {
    font-size: 27px;
  }
}
.seminar_mv_lead .lg {
  font-size: 66px;
  line-height: 1.2878787879;
  color: #E83364;
  display: block;
}
@media (max-width: 959px) {
  .seminar_mv_lead .lg {
    font-size: 38px;
    line-height: 1.2894736842;
  }
}
.seminar_mv_lead .lg span {
  position: relative;
  z-index: 2;
}
.seminar_mv_lead .lg span::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 24px;
  background: #FFF95D;
  z-index: -1;
}
@media (max-width: 959px) {
  .seminar_mv_lead .lg span::after {
    height: 14px;
  }
}
.seminar_mv_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 596px;
  border: #FFAFC4 3px solid;
  border-radius: 5px;
  background: #fff;
  padding: 0 37px;
  min-height: 66px;
  margin-top: 25px;
}
@media (max-width: 959px) {
  .seminar_mv_list {
    flex-direction: column;
    align-items: flex-start;
    max-width: 200px;
    padding: unset;
    justify-content: center;
    margin-top: 22px;
    min-height: 120px;
  }
}
.seminar_mv_item {
  font-size: 18px;
  line-height: 1.5555555556;
  font-weight: 700;
  position: relative;
  padding-left: 29px;
}
@media (max-width: 959px) {
  .seminar_mv_item {
    width: 160px;
    margin: 0 auto;
  }
}
.seminar_mv_item::after {
  position: absolute;
  content: "";
  background-image: url(../images/seminar/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 12px;
}
.seminar_mv_text {
  max-width: 310px;
  margin: 19px auto 0;
}
@media (max-width: 959px) {
  .seminar_mv_text {
    max-width: 160px;
  }
}
.seminar_mv_text img {
  width: 100%;
  height: auto;
}
.seminar_mv_button {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 959px) {
  .seminar_mv_button {
    max-width: 297px;
    padding: 0 13px;
  }
}
.seminar_mv .seminar_button_circle {
  width: 62px;
  height: 56px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 900;
}
@media (max-width: 959px) {
  .seminar_mv .seminar_button_circle {
    width: 45px;
    height: 45px;
  }
}
.seminar_worries {
  padding: 60px 10px 131px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  position: relative;
  background-image: url(../images/seminar/worries.jpg);
  background-position: bottom;
}
@media (max-width: 959px) {
  .seminar_worries {
    padding: 37px 10px 68px;
    background-size: cover;
  }
}
.seminar_worries_title {
  font-size: 28px;
  line-height: 1.2142857143;
  font-weight: 700;
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 959px) {
  .seminar_worries_title {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}
.seminar_worries_title span {
  font-size: 40px;
  line-height: 1.2;
  color: #02A4EE;
}
@media (max-width: 959px) {
  .seminar_worries_title span {
    font-size: 27px;
    line-height: 1.2272727273;
  }
}
.seminar_worries_title::after {
  position: absolute;
  content: "";
  background: #FFF95D;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 20px;
  z-index: -1;
}
@media (max-width: 959px) {
  .seminar_worries_title::after {
    height: 14px;
  }
}
.seminar_worries_list {
  margin: 40px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (max-width: 959px) {
  .seminar_worries_list {
    margin: 33px auto 0;
    width: 323px;
  }
}
.seminar_worries_list::after {
  position: absolute;
  content: "";
  background-image: url(../images/seminar/q.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: -147px;
  top: -30px;
  width: 128px;
  height: 191px;
}
@media (max-width: 959px) {
  .seminar_worries_list::after {
    width: 71px;
    height: 110px;
    right: 13px;
    top: 0;
  }
}
.seminar_worries_item {
  font-size: 22px;
  line-height: 2.2727272727;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 959px) {
  .seminar_worries_item {
    font-size: 16px;
    line-height: 1.4;
  }
  .seminar_worries_item + .seminar_worries_item {
    margin-top: 0.5em;
  }
}
.seminar_worries_item span {
  color: #02A4EE;
}
@media (max-width: 959px) {
  .seminar_worries_item span {
    font-weight: 700;
  }
}
.seminar_head {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
@media (max-width: 959px) {
  .seminar_head {
    margin-top: 26px;
  }
}
.seminar_head_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  -moz-column-gap: 58px;
       column-gap: 58px;
}
@media (max-width: 959px) {
  .seminar_head_box {
    -moz-column-gap: unset;
         column-gap: unset;
  }
}
.seminar_head_lead {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 700;
}
@media (max-width: 959px) {
  .seminar_head_lead {
    font-size: 16px;
    line-height: 1.75;
  }
}
.seminar_head_lead span {
  font-size: 26px;
  line-height: 1.3461538462;
  color: #E6003D;
  position: relative;
}
@media (max-width: 959px) {
  .seminar_head_lead span {
    font-size: 20px;
    line-height: 1.4;
  }
}
.seminar_head_lead span::after {
  position: absolute;
  content: "";
  background: #FFF95D;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 20px;
  z-index: -1;
}
@media (max-width: 959px) {
  .seminar_head_lead span::after {
    height: 14px;
  }
}
.seminar_head_thumb {
  width: 124px;
  display: flex;
}
@media (max-width: 959px) {
  .seminar_head_thumb {
    width: 97px;
  }
}
.seminar_head_thumb img {
  width: 100%;
  height: auto;
}
.seminar_head_cloud {
  border: 4px solid #FFAFC4;
  padding: 16px 10px 15px;
  position: relative;
  border-radius: 5px;
}
@media (max-width: 959px) {
  .seminar_head_cloud {
    border: 3px solid #FFAFC4;
    padding: 10px 10px 10px;
  }
}
.seminar_head_cloud::after {
  position: absolute;
  content: "";
  background-image: url(../images/seminar/cloud.png);
  background-size: contain;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  left: 50%;
  transform: translateX(-50%);
  bottom: -31px;
  width: 22px;
  height: 32px;
}
@media (max-width: 959px) {
  .seminar_head_cloud::after {
    width: 18px;
    height: 26px;
    bottom: -25px;
  }
}
.seminar_head_cloud p {
  font-size: 24px;
  line-height: 1.375;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 959px) {
  .seminar_head_cloud p {
    font-size: 20px;
    line-height: 1.35;
  }
}
.seminar_head_cloud p span {
  font-size: 28px;
  line-height: 1.3571428571;
  color: #E6003D;
}
@media (max-width: 959px) {
  .seminar_head_cloud p span {
    font-size: 20px;
    line-height: 1.35;
  }
}
.seminar_about {
  margin-top: 16px;
}
@media (max-width: 959px) {
  .seminar_about {
    margin-top: 14px;
  }
}
.seminar_about_list {
  max-width: 800px;
  margin: 50px auto 0;
}
@media (max-width: 959px) {
  .seminar_about_list {
    margin: 33px auto 0;
  }
}
.seminar_about_item + .seminar_about_item {
  margin-top: 60px;
}
@media (max-width: 959px) {
  .seminar_about_item + .seminar_about_item {
    margin-top: 30px;
  }
}
.seminar_about_title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  min-height: 80px;
  background: #F9F9F9;
  padding: 13px 30px;
}
@media (max-width: 959px) {
  .seminar_about_title {
    font-size: 16px;
    line-height: 1.375;
    min-height: 44px;
    padding: 7px 0px 7px 16px;
    -moz-column-gap: 26px;
         column-gap: 26px;
  }
}
.seminar_about_title .number {
  color: #E6003D;
  font-size: 50px;
  font-family: 700;
}
@media (max-width: 959px) {
  .seminar_about_title .number {
    font-size: 32px;
  }
}
.seminar_about_title .red {
  color: #E6003D;
}
.seminar_about_text {
  font-size: 16px;
  margin-top: 30px;
}
@media (max-width: 959px) {
  .seminar_about_text {
    font-size: 13px;
    margin-top: 12px;
  }
}
.seminar_introduction {
  margin-top: 100px;
}
@media (max-width: 959px) {
  .seminar_introduction {
    margin-top: 50px;
  }
}
.seminar_introduction_contents {
  display: flex;
  align-items: center;
  margin: 50px auto 0;
  -moz-column-gap: 27px;
       column-gap: 27px;
}
@media (max-width: 959px) {
  .seminar_introduction_contents {
    -moz-column-gap: unset;
         column-gap: unset;
    margin: 44px auto 0;
    justify-content: center;
  }
}
.seminar_introduction_obje {
  width: 18%;
}
@media (max-width: 959px) {
  .seminar_introduction_obje {
    width: 56px;
  }
}
.seminar_introduction_obje img {
  width: 100%;
  height: auto;
}
.seminar_introduction_thumb {
  width: 41%;
}
@media (max-width: 959px) {
  .seminar_introduction_thumb {
    width: 110px;
  }
}
.seminar_introduction_thumb img {
  width: 100%;
  height: auto;
}
.seminar_introduction_body {
  width: 67%;
}
@media (max-width: 959px) {
  .seminar_introduction_body {
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.seminar_introduction_name .sm {
  font-size: 16px;
  line-height: 1.375;
  display: block;
}
@media (max-width: 959px) {
  .seminar_introduction_name .sm {
    font-size: 14px;
    line-height: 1.3571428571;
  }
}
.seminar_introduction_name .lg {
  font-size: 29px;
  line-height: 1.3448275862;
  font-weight: 700;
  display: block;
}
@media (max-width: 959px) {
  .seminar_introduction_name .lg {
    font-size: 24px;
    line-height: 1.375;
  }
}
.seminar_introduction_list {
  background: #F9F9F9;
  border-radius: 10px;
  padding: 20px 30px;
  margin-top: 10px;
}
@media (max-width: 959px) {
  .seminar_introduction_list {
    padding: 22px 9px;
  }
}
.seminar_introduction_item {
  font-size: 16px;
  line-height: 1.875;
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
}
@media (max-width: 959px) {
  .seminar_introduction_item {
    font-size: 14px;
    line-height: 1.7142857143;
    text-indent: 0em;
    padding-left: 0em;
    margin-left: 22px;
  }
}
@media (max-width: 959px) {
  .seminar_introduction_item::after {
    position: absolute;
    content: "";
    background-image: url(../images/seminar/check2.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: -21px;
    top: 8px;
    width: 16px;
    height: 9px;
  }
}
.seminar_flow {
  margin-top: 100px;
}
@media (max-width: 959px) {
  .seminar_flow {
    margin-top: 40px;
  }
}
.seminar_flow_lead {
  text-align: center;
  margin: 0 auto 20px;
  font-weight: 700;
  font-size: 24px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 46px;
}
@media (max-width: 959px) {
  .seminar_flow_lead {
    font-size: 15px;
    padding: 0 20px;
    margin: 0 auto 11px;
  }
}
.seminar_flow_lead::before, .seminar_flow_lead::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 35px;
}
@media (max-width: 959px) {
  .seminar_flow_lead::before, .seminar_flow_lead::after {
    width: 14px;
    height: 22px;
  }
}
.seminar_flow_lead::before {
  background-image: url(../images/seminar/flow-l.png);
  left: 0;
}
.seminar_flow_lead::after {
  background-image: url(../images/seminar/flow-r.png);
  right: 0;
}
.seminar_flow_lead span {
  font-size: 30px;
  color: #E6003D;
}
@media (max-width: 959px) {
  .seminar_flow_lead span {
    font-size: 20px;
  }
}
.seminar_flow_list {
  max-width: 800px;
  margin: 50px auto 0;
}
@media (max-width: 959px) {
  .seminar_flow_list {
    margin: 27px auto 0;
  }
}
.seminar_flow_item {
  border: 2px solid #FFDDDD;
  border-radius: 10px;
  display: flex;
}
.seminar_flow_item + .seminar_flow_item {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 959px) {
  .seminar_flow_item + .seminar_flow_item {
    margin-top: 52px;
  }
}
.seminar_flow_item + .seminar_flow_item::after {
  position: absolute;
  content: "";
  background-image: url(../images/seminar/arrow.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  width: 40px;
  height: 40px;
}
@media (max-width: 959px) {
  .seminar_flow_item + .seminar_flow_item::after {
    top: -46px;
  }
}
.seminar_flow_item_head {
  background: #FFDDDD;
  color: #E6003D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100px;
  text-align: center;
  line-height: 1;
}
@media (max-width: 959px) {
  .seminar_flow_item_head {
    width: 60px;
    font-size: 14px;
  }
}
.seminar_flow_item_head span {
  font-size: 50px;
  display: block;
  line-height: 0.8;
}
@media (max-width: 959px) {
  .seminar_flow_item_head span {
    font-size: 32px;
  }
}
.seminar_flow_item_body {
  padding: 40px;
}
@media (max-width: 959px) {
  .seminar_flow_item_body {
    width: calc(100% - 60px);
    padding: 20px;
  }
}
.seminar_flow_item_text {
  font-size: 18px;
  line-height: 1.375;
}
@media (max-width: 959px) {
  .seminar_flow_item_text {
    font-size: 14px;
    line-height: 1.3571428571;
  }
}
.seminar_flow_text2 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  margin-top: 40px;
}
@media (max-width: 959px) {
  .seminar_flow_text2 {
    font-size: 17px;
    line-height: 169%;
    margin-top: 35px;
  }
}
.seminar_flow_button {
  max-width: 580px;
  width: 100%;
  padding: 0 20px;
  margin: 17px auto 0;
}
@media (max-width: 959px) {
  .seminar_flow_button {
    margin: 14px auto 0;
    padding: 0 10px;
  }
}
.seminar_flow_button .seminar_button_text {
  font-size: 24px;
}
@media (max-width: 959px) {
  .seminar_flow_button .seminar_button_text {
    font-size: 16px;
    line-height: 1.25;
  }
}
.seminar_detail {
  margin-top: 39px;
}
@media (max-width: 959px) {
  .seminar_detail {
    margin-top: 29px;
  }
}
.seminar_detail_table {
  max-width: 800px;
  margin: 30px auto 0;
  width: 100%;
}
@media (max-width: 959px) {
  .seminar_detail_table {
    margin: 13px auto 0;
  }
}
.seminar_detail_table tr:not(:last-of-type) {
  border-bottom: #D4D4D4 1px solid;
}
.seminar_detail_table th {
  padding: 22px 0;
  font-size: 24px;
  font-weight: 400;
  vertical-align: top;
  width: 242px;
  text-align: left;
  padding-left: 101px;
}
@media (max-width: 959px) {
  .seminar_detail_table th {
    padding: 16px 0;
    font-size: 14px;
    font-weight: 700;
    width: 70px;
  }
}
.seminar_detail_table td {
  padding: 22px 0;
  font-size: 24px;
}
@media (max-width: 959px) {
  .seminar_detail_table td {
    padding: 16px 0;
    font-size: 14px;
    padding-left: 30px;
  }
}
.seminar_detail_table td span {
  font-size: 16px;
  color: #999999;
  display: inline-block;
  margin-left: 22px;
}
@media (max-width: 959px) {
  .seminar_detail_table td span {
    font-size: 12px;
    display: block;
    margin-left: unset;
  }
}
.seminar_detail_text {
  font-size: 24px;
  line-height: 1.4583333333;
  font-weight: 500;
  text-align: center;
  color: #E6003D;
  margin-top: 38px;
}
@media (max-width: 959px) {
  .seminar_detail_text {
    font-size: 18px;
    margin-top: 13px;
  }
}
.seminar_detail_button {
  max-width: 800px;
  margin: 10px auto 0;
}
.seminar .pc-only {
  display: block;
}
@media (max-width: 959px) {
  .seminar .pc-only {
    display: none;
  }
}
.seminar .sp-only {
  display: none;
}
@media (max-width: 959px) {
  .seminar .sp-only {
    display: block;
  }
}

.ao-suisen__cta {
  background: #FFF5F5;
}
.ao-suisen .cta {
  margin-top: 0;
}
@media (min-width: 960px) {
  .ao-suisen .cta {
    max-width: 760px;
    padding-right: 0;
    padding-left: 0;
  }
}
.ao-suisen .cta_lead {
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 900;
}
@media (min-width: 960px) {
  .ao-suisen .cta_lead {
    font-size: 27px;
  }
}
.ao-suisen .cta_lead .lg {
  font-size: 32px;
  line-height: 1.26;
}
@media (min-width: 960px) {
  .ao-suisen .cta_lead .lg {
    font-size: 41px;
  }
}
.ao-suisen .cta_lead .red {
  font-size: 22px;
}
@media (min-width: 960px) {
  .ao-suisen .cta_lead .red {
    font-size: 28px;
  }
}
.ao-suisen__cta-text {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #999999;
}
@media (min-width: 960px) {
  .ao-suisen__cta-text {
    margin-top: 13px;
    font-size: 12px;
  }
}
.ao-suisen__cta-button {
  margin-top: 8px;
}
.ao-suisen__about {
  background-image: url("../images/ao-suisen/about-bg.png");
  background-repeat: repeat;
  background-size: inherit;
  padding: 62px 16px 42px;
  overflow: hidden;
}
@media (max-width: 959px) {
  .ao-suisen__about {
    padding: 29px 16px;
  }
}
.ao-suisen__about .sp-only {
  display: none;
}
@media (max-width: 959px) {
  .ao-suisen__about .sp-only {
    display: block;
  }
}
.ao-suisen__about-container {
  max-width: 1000px;
  margin: 0 auto;
}
.ao-suisen__about-title {
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  border-bottom: #999999 1px solid;
  position: relative;
  padding-bottom: 11px;
}
@media (max-width: 959px) {
  .ao-suisen__about-title {
    font-size: 26px;
    max-width: 307px;
    margin: 0 auto;
    padding-bottom: 10px;
  }
}
.ao-suisen__about-title::after {
  position: absolute;
  content: "";
  background-image: url("../images/ao-suisen/about-arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
  width: 22.5px;
  height: 11px;
}
.ao-suisen__about-title::before {
  position: absolute;
  content: "";
  width: 22.5px;
  height: 2px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
}
.ao-suisen__about-title2 {
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
  border-bottom: #999999 1px solid;
  text-align: left;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
@media (max-width: 959px) {
  .ao-suisen__about-title2 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
}
.ao-suisen__about-text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
@media (max-width: 959px) {
  .ao-suisen__about-text {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .ao-suisen__about-text.-text2 {
    line-height: 1.4;
  }
}
.ao-suisen__about-lead {
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-align: center;
  margin-top: 22px;
}
@media (max-width: 959px) {
  .ao-suisen__about-lead {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-top: 17px;
  }
}
.ao-suisen__about-lead span {
  font-weight: 700;
  color: #E6003D;
}
.ao-suisen__about-box {
  border: #999999 1px solid;
  margin-top: 50px;
  padding: 38px 20px 50px;
  max-height: 400px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  position: relative;
}
@media (max-width: 959px) {
  .ao-suisen__about-box {
    margin-top: 17px;
    padding: 14px 13px 50px;
    max-height: 268px;
  }
}
.ao-suisen__about-inner {
  max-width: 880px;
  margin: 0 auto;
}
.ao-suisen__about-cloud {
  background-color: #FFEAEA;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 15px 20px;
}
@media (max-width: 959px) {
  .ao-suisen__about-cloud {
    font-size: 18px;
  }
}
.ao-suisen__about-cloud::after {
  position: absolute;
  content: "";
  background-color: #FFEAEA;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 15px;
  height: 15px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.ao-suisen__about-cloud span {
  color: #E6003D;
}
.ao-suisen__about-cloud-img {
  max-width: 246px;
  margin: 30px auto 0;
}
@media (max-width: 959px) {
  .ao-suisen__about-cloud-img {
    max-width: 205px;
    margin: 25px auto 0;
  }
}
.ao-suisen__about-cloud-img img {
  width: 100%;
  height: auto;
}
.ao-suisen__about-cloud-small {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #999999;
  text-align: center;
  display: block;
  margin-top: 10px;
}
@media (max-width: 959px) {
  .ao-suisen__about-cloud-small {
    font-size: 10px;
    margin-top: 3px;
    text-align: left;
  }
}
.ao-suisen__about-section {
  margin-top: 45px;
}
@media (max-width: 959px) {
  .ao-suisen__about-section {
    margin-top: 27px;
  }
}
.ao-suisen__about-img {
  max-width: 760px;
  margin: 25px auto -8px;
  display: block;
}
@media (max-width: 959px) {
  .ao-suisen__about-img {
    margin: 15px auto -8px;
  }
}
.ao-suisen__about-img img {
  width: 100%;
  height: auto;
}
.ao-suisen__about-policy {
  max-width: 760px;
  margin: 25px auto 0;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy {
    margin: 15px auto 0;
  }
}
.ao-suisen__about-policy + .ao-suisen__about-policy {
  margin: 15px auto 25px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy + .ao-suisen__about-policy {
    margin: 15px auto 13px;
  }
}
.ao-suisen__about-policy-title {
  background-color: #1AB2B0;
  text-align: center;
  padding: 6px 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: baseline;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-title {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 20px;
  }
}
.ao-suisen__about-policy-title .lg {
  color: #FCFF6D;
  font-size: 30px;
  margin-left: 7px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-title .lg {
    display: block;
    font-size: 20px;
    letter-spacing: 0.02em;
    margin-left: unset;
  }
}
.ao-suisen__about-policy-title .sm {
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.02em;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-title .sm {
    display: block;
    font-size: 14px;
    margin-top: -5px;
  }
}
.ao-suisen__about-policy-text {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: -4px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-text {
    margin-right: -6px;
    font-size: 10px;
  }
  .ao-suisen__about-policy-text.-text2 {
    margin: 2px 0px -6px 9px;
  }
}
.ao-suisen__about-policy-body {
  background-color: #E8F6F6;
  padding: 30px 30px 26px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-body {
    padding: 15px 12px 14px;
  }
}
.ao-suisen__about-policy-bg {
  background-color: #fff;
  padding: 30px 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-bg {
    padding: 12px 14px 12px 9px;
  }
}
.ao-suisen__about-policy-small {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #999999;
  display: block;
  margin-top: 16px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-small {
    font-size: 10px;
    margin-top: 13px;
    line-height: 1.3;
  }
}
.ao-suisen__about-policy-strong {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-strong {
    font-size: 20px;
    margin: 11px -10px 0;
  }
}
.ao-suisen__about-policy-strong .color {
  color: #14918F;
  position: relative;
  z-index: 1;
}
.ao-suisen__about-policy-strong .color::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background-color: #FCFF6D;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-strong .color::after {
    height: 4px;
  }
}
.ao-suisen__about-policy-strong .color span {
  position: relative;
  z-index: 1;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-strong .color span {
    display: inline-block;
    margin: 0 -5px;
  }
}
.ao-suisen__about-policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-list {
    gap: 10px;
  }
}
.ao-suisen__about-policy-item h5 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-item h5 {
    font-size: 12px;
  }
}
.ao-suisen__about-policy-item h5 span {
  margin-right: -8px;
  display: inline-block;
  font-size: 14px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-item h5 span {
    font-size: 12px;
    margin-right: -3px;
  }
}
.ao-suisen__about-policy-item p {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin: -3px 0 0 14px;
}
@media (max-width: 959px) {
  .ao-suisen__about-policy-item p {
    font-size: 10px;
    line-height: 1.4;
  }
}
.ao-suisen__about-fade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 26%, rgba(255, 255, 255, 0.5) 39%, rgb(255, 255, 255) 57%);
  width: 100vw;
  height: 280px;
  margin: -200px calc(50% - 50vw) -100px;
  position: relative;
}
@media (max-width: 959px) {
  .ao-suisen__about-fade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 26%, rgba(255, 255, 255, 0.3) 49%, rgb(255, 255, 255) 72%);
    height: 270px;
    margin: -207px calc(50% - 50vw) -65px;
  }
}
.ao-suisen__about-fade.active {
  display: none;
}
.ao-suisen__about-toggle {
  background-color: #E6003D;
  border: unset;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  max-width: 560px;
  margin: 0 auto;
  height: 57px;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-top: 6px;
}
@media (max-width: 959px) {
  .ao-suisen__about-toggle {
    max-width: 222px;
    height: 37px;
    font-size: 20px;
    padding-top: 2px;
  }
}
.ao-suisen__about-toggle::after {
  position: absolute;
  content: "";
  background-image: url(../images/ao-suisen/about-btn-arw.webp);
  background-size: contain;
  background-repeat: no-repeat;
  right: 23px;
  top: 52%;
  transform: translateY(-50%);
  width: 24px;
  height: 13px;
}
@media (max-width: 959px) {
  .ao-suisen__about-toggle::after {
    right: 14px;
    width: 14px;
    height: 8px;
  }
}
.ao-suisen__about-toggle.active {
  margin: 50px auto 40px;
}
@media (max-width: 959px) {
  .ao-suisen__about-toggle.active {
    margin: 18px auto 0px;
  }
}
.ao-suisen__about-toggle.active::after {
  rotate: 180deg;
  top: 28%;
}
.ao-suisen__achievement {
  background: #EEF6FD;
  padding: 24px 0 24px;
}
@media (min-width: 960px) {
  .ao-suisen__achievement {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
.ao-suisen__achievement-bg {
  width: 100%;
}
.ao-suisen__achievement-bg picture, .ao-suisen__achievement-bg img {
  width: 100%;
  height: auto;
}
.ao-suisen__achievement-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin-top: -20px;
  margin-right: auto;
  margin-left: auto;
  gap: 15px;
  padding: 0 15px;
}
@media (min-width: 960px) {
  .ao-suisen__achievement-list {
    margin-top: -45px;
    padding: 0;
  }
}
.ao-suisen__achievement-item {
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(120, 154, 179, 0.25);
}
@media (min-width: 960px) {
  .ao-suisen__achievement-item {
    padding: 30px 40px;
  }
}
.ao-suisen__achievement-sub-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
}
.ao-suisen__achievement-sub-title span {
  position: relative;
  padding: 0 37px;
}
.ao-suisen__achievement-sub-title span::before {
  display: block;
  content: "";
  width: 27px;
  height: 27px;
  background: url(../images/ao-suisen/achievement-left.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ao-suisen__achievement-sub-title span::after {
  display: block;
  content: "";
  width: 27px;
  height: 27px;
  background: url(../images/ao-suisen/achievement-right.svg) no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .ao-suisen__achievement-sub-title {
    font-size: 22px;
  }
}
.ao-suisen__achievement-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 960px) {
  .ao-suisen__achievement-text {
    font-size: 16px;
  }
}
.ao-suisen__achievement-lead {
  font-size: 12px;
  color: #999999;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .ao-suisen__achievement-lead {
    font-size: 12px;
  }
}
.ao-suisen__counseling {
  position: relative;
  background-color: #E6003D;
  padding: 30px 20px 9.6vw;
}
@media (min-width: 960px) {
  .ao-suisen__counseling {
    padding: 40px 20px 4.286vw;
  }
}
.ao-suisen__counseling::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  width: 100%;
  height: 9.6vw;
  background: url(../images/ao-suisen/counseling_sp.svg) no-repeat;
  background-size: cover;
}
@media (min-width: 960px) {
  .ao-suisen__counseling::after {
    background: url(../images/ao-suisen/counseling_pc.svg) no-repeat;
    background-size: cover;
    height: 4.286vw;
  }
}
.ao-suisen__counseling-container {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .ao-suisen__counseling-container {
    margin-bottom: 30px;
  }
}
.ao-suisen__counseling-title {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin: 0 0 20px 0;
}
@media (min-width: 960px) {
  .ao-suisen__counseling-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.ao-suisen__counseling-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ao-suisen__counseling-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  position: relative;
}
@media (min-width: 960px) {
  .ao-suisen__counseling-item {
    padding: 35px 40px;
  }
}
.ao-suisen__counseling-number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #E6003D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
@media (min-width: 960px) {
  .ao-suisen__counseling-number {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
.ao-suisen__counseling-heading {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-left: 35px;
}
@media (min-width: 960px) {
  .ao-suisen__counseling-heading {
    font-size: 27px;
    padding-left: 35px;
  }
}
.ao-suisen__counseling-text {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-left: 35px;
  margin-top: 10px;
}
@media (min-width: 960px) {
  .ao-suisen__counseling-text {
    margin-top: 10px;
    font-size: 16px;
    padding-left: 35px;
  }
}
.ao-suisen__program {
  padding: 50px 15px 30px;
}
@media (min-width: 960px) {
  .ao-suisen__program {
    padding: 80px 0;
  }
}
.ao-suisen__program-inner {
  background-color: #fff;
  border: 1px solid #E6003D;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}
.ao-suisen__program-header {
  text-align: center;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.ao-suisen__program-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ao-suisen__program-title {
  background-color: #E6003D;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: 16px 8px;
  border-radius: 10px 10px 0 0;
  letter-spacing: 0.01em;
}
@media (min-width: 960px) {
  .ao-suisen__program-title {
    font-size: 30px;
    padding: 20px 30px;
  }
}
.ao-suisen__program-content {
  background-color: #fff;
  padding: 30px 20px;
}
@media (min-width: 960px) {
  .ao-suisen__program-content {
    padding: 40px 35px;
  }
}
.ao-suisen__program-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 960px) {
  .ao-suisen__program-list {
    gap: 25px;
  }
}
.ao-suisen__program-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .ao-suisen__program-item {
    gap: 16px;
  }
}
.ao-suisen__program-number {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-color: #E6003D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 1;
}
@media (min-width: 960px) {
  .ao-suisen__program-number {
    width: 35px;
    height: 35px;
    font-size: 22px;
  }
}
.ao-suisen__program-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 10px 0;
  padding-left: 30px;
  position: relative;
}
@media (min-width: 960px) {
  .ao-suisen__program-heading {
    padding-left: 40px;
    font-size: 27px;
    margin-bottom: 0;
  }
}
.ao-suisen__program-content-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
@media (min-width: 960px) {
  .ao-suisen__program-content-wrapper {
    padding-left: 45px;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.ao-suisen__program-image {
  width: 100%;
}
@media (min-width: 960px) {
  .ao-suisen__program-image {
    width: 227px;
  }
}
.ao-suisen__program-image img {
  width: 100%;
  height: auto;
}
.ao-suisen__program-text {
  width: 100%;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media (min-width: 960px) {
  .ao-suisen__program-text {
    font-size: 16px;
    width: calc(100% - 251px);
  }
}
.ao-suisen__program-description {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 960px) {
  .ao-suisen__program-description {
    font-size: 16px;
    line-height: 1.5;
  }
}
.ao-suisen__program-note {
  margin-top: 20px;
  padding: 15px 0;
  background: #F3F0EB;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media (min-width: 960px) {
  .ao-suisen__program-note {
    font-size: 20px;
    margin-top: 30px;
    padding: 15px 0;
  }
}
.ao-suisen__voice-container {
  background-color: #F9F9F9;
  padding: 60px 0 40px;
}
@media (max-width: 959px) {
  .ao-suisen__voice-container {
    padding: 40px 0 40px;
  }
}
.ao-suisen__voice-title {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  color: #E6003D;
}
@media (max-width: 959px) {
  .ao-suisen__voice-title {
    font-size: 24px;
    line-height: 1.3;
  }
}
.ao-suisen__voice-slider {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 959px) {
  .ao-suisen__voice-slider {
    margin-top: 26px;
  }
}
.ao-suisen__voice .slick-track {
  display: flex;
}
.ao-suisen__voice .slick-slide {
  margin: 0 12.5px;
  box-shadow: 2.82px 5.63px 12.68px 0px rgba(163, 163, 163, 0.2);
  background-color: #fff;
  border-radius: 11px;
  padding: 33px 44px 23px;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (max-width: 959px) {
  .ao-suisen__voice .slick-slide {
    padding: 24px 32px 4px;
    margin: 0 9px;
    min-height: 430px;
    box-shadow: 2px 4px 9px 0px rgba(163, 163, 163, 0.2);
  }
}
.ao-suisen__voice .slide-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 959px) {
  .ao-suisen__voice .slide-arrow {
    width: 41px;
    height: 41px;
    top: 43%;
  }
}
.ao-suisen__voice .prev-arrow {
  left: 28px;
}
@media (max-width: 959px) {
  .ao-suisen__voice .prev-arrow {
    left: 14px;
  }
}
.ao-suisen__voice .next-arrow {
  right: 28px;
}
@media (max-width: 959px) {
  .ao-suisen__voice .next-arrow {
    right: 14px;
  }
}
.ao-suisen__voice .slick-dots {
  display: flex;
  max-width: 1200px;
  margin: 10px auto 0;
}
@media (max-width: 959px) {
  .ao-suisen__voice .slick-dots {
    margin: 26px 16px 0;
  }
}
.ao-suisen__voice .slick-dots li {
  width: 20%;
  height: 5px;
  background-color: #fff;
}
.ao-suisen__voice .slick-dots li.slick-active {
  background-color: #999999;
}
.ao-suisen__voice .slick-dots li button {
  display: none;
}
.ao-suisen__voice-img {
  margin-bottom: 17px;
}
@media (max-width: 959px) {
  .ao-suisen__voice-img {
    margin-bottom: 10px;
  }
}
.ao-suisen__voice-img img {
  width: 100%;
  height: auto;
}
.ao-suisen__voice-name .sm, .ao-suisen__voice-name .lg {
  display: block;
}
.ao-suisen__voice-name .sm {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 959px) {
  .ao-suisen__voice-name .sm {
    font-size: 12px;
  }
}
.ao-suisen__voice-name .lg {
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-top: 3px;
}
@media (max-width: 959px) {
  .ao-suisen__voice-name .lg {
    font-size: 20px;
    margin-top: 1px;
  }
}
.ao-suisen__voice-name .lg span {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media (max-width: 959px) {
  .ao-suisen__voice-name .lg span {
    font-size: 12px;
  }
}
.ao-suisen__voice-name .lg.-mt {
  margin-top: -1px;
  margin-bottom: -10px;
}
.ao-suisen__voice-text {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: 18px;
}
@media (max-width: 959px) {
  .ao-suisen__voice-text {
    font-size: 14px;
    margin-top: 16px;
  }
}
.ao-suisen__voice-small {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.004em;
  color: #999999;
  display: block;
  text-align: right;
  max-width: 1216px;
  margin: 30px auto 0;
}
@media (max-width: 959px) {
  .ao-suisen__voice-small {
    font-size: 10px;
    text-align: left;
    margin: 26px 0 0 16px;
  }
}
.ao-suisen__flow {
  background-color: #F3F0EB;
  padding: 40px 15px;
}
@media (min-width: 960px) {
  .ao-suisen__flow {
    padding: 70px 0;
  }
}
.ao-suisen__flow-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 960px) {
  .ao-suisen__flow-title {
    font-size: 40px;
  }
}
.ao-suisen__flow-container {
  background-color: #fff;
  border-radius: 10px;
  max-width: 760px;
  margin: 0 auto;
  padding: 25px 20px;
}
@media (min-width: 960px) {
  .ao-suisen__flow-container {
    padding: 40px;
  }
}
.ao-suisen__flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 960px) {
  .ao-suisen__flow-list {
    gap: 30px;
  }
}
.ao-suisen__flow-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ao-suisen__flow-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ao-suisen__flow-badge {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.ao-suisen__flow-badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ao-suisen__flow-sub-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0;
}
@media (min-width: 960px) {
  .ao-suisen__flow-sub-title {
    font-size: 22px;
  }
}
.ao-suisen__flow-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ao-suisen__flow-image {
  max-width: 305px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 960px) {
  .ao-suisen__flow-image {
    max-width: 365px;
  }
}
.ao-suisen__flow-image img {
  width: 100%;
  height: auto;
}
.ao-suisen__flow-text {
  padding-left: 50px;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 960px) {
  .ao-suisen__flow-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.ao-suisen .pc-only {
  display: block;
}
@media (max-width: 959px) {
  .ao-suisen .pc-only {
    display: none;
  }
}
.ao-suisen .sp-only {
  display: none;
}
@media (max-width: 959px) {
  .ao-suisen .sp-only {
    display: block;
  }
}

.ao-suisen__features {
  /* ------------------------
     タイトルエリア
  ------------------------ */
  /* ------------------------
     h3 ブロック（連番バッジ付き）
  ------------------------ */
}
.ao-suisen__features .ao-suisen__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px 60px;
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__container {
    padding: 70px 0 90px;
  }
}
.ao-suisen__features .ao-suisen__title-container {
  position: relative;
  background-color: #E6003D;
  padding: 14px 0 22px;
}
.ao-suisen__features .ao-suisen__title-container::after {
  display: block;
  content: "";
  width: 27px;
  height: 13px;
  background: url(../images/ao-suisen/icon-features-arrow_sp.svg) no-repeat;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__title-container::after {
    width: 52px;
    height: 25px;
    bottom: -25px;
    background: url(../images/ao-suisen/icon-features-arrow_pc.svg) no-repeat;
  }
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__title-container {
    padding: 34px 0;
  }
}
.ao-suisen__features .ao-suisen__title-container .ao-suisen__title {
  margin: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 「総合型・学校推薦型選抜」 */
  /* 「に」 */
  /* 「トライが強い〜理由」 */
  /* 「3つ」 */
}
.ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__row {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__lead {
  color: #FCFF6D;
  font-size: 20px; /* SP */
  line-height: 1.26; /* 126% */
  letter-spacing: 0.01em; /* 1% */
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__lead {
    font-size: 30px; /* PC */
  }
}
.ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__ni {
  color: #fff;
  font-size: 20px; /* SP */
  line-height: 1.26;
  letter-spacing: 0.01em;
  margin-left: 4px;
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__ni {
    font-size: 30px; /* PC */
    margin-left: 6px;
  }
}
.ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__main {
  font-size: 26px; /* SP */
  line-height: 1.26;
  letter-spacing: 0;
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__main {
    font-size: 42px; /* PC */
  }
}
.ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__countwrap {
  color: #FCFF6D; /* 数字と「つ」を黄色に */
  display: inline-flex;
  align-items: baseline;
  margin: 0 4px;
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__countwrap {
    margin: 0 6px;
  }
}
.ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__num {
  font-weight: 700;
  font-size: 39px; /* SP */
  line-height: 1; /* 指示に合わせて詰める */
  letter-spacing: -0.01em; /* -1% */
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__num {
    font-size: 63px; /* PC */
    letter-spacing: -0.03em; /* -3% */
  }
}
.ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__tsu {
  font-size: 20px; /* SP：視覚バランス用に小さめ */
  line-height: 1.26;
  letter-spacing: 0;
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__title-container .ao-suisen__title .ao-suisen__tsu {
    font-size: 30px; /* PC：小さめ */
  }
}
.ao-suisen__features .ao-suisen__heading {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 45px; /* SP：35px(円) + 10px(隙間) */
  font-weight: 700;
  font-size: 20px; /* SP */
  line-height: 1.4; /* 140% */
  letter-spacing: 0.04em; /* 4% */
  /* 先頭の連番バッジ */
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__heading {
    margin-top: 70px;
    margin-bottom: 40px;
    padding-left: 63px; /* PC：51px(円) + 12px(隙間) */
    font-size: 34px; /* PC */
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.ao-suisen__features .ao-suisen__heading .ao-suisen__badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #E6003D; /* 背景：赤 */
  color: #FCFF6D; /* 文字：黄 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 21px; /* SP */
  line-height: 1.4; /* 140% */
  letter-spacing: 0.04em; /* 4% */
  text-align: center;
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__heading .ao-suisen__badge {
    width: 51px;
    height: 51px;
    font-size: 30px; /* PC */
    line-height: 1.44; /* 144% */
    letter-spacing: 0.04em;
  }
}
.ao-suisen__features .ao-suisen__heading .ao-suisen__heading-text {
  display: inline-block;
}
.ao-suisen__features .ao-suisen__heading .ao-suisen__heading-strong {
  color: #E6003D;
  font-weight: 700;
  font-size: 24px; /* SP */
  line-height: 1.4; /* 140% */
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .ao-suisen__features .ao-suisen__heading .ao-suisen__heading-strong {
    font-size: 40px; /* PC */
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}

/* ------------------------
   アイテムリスト（3カラム：flex:1等は不使用）
------------------------ */
.ao-suisen__items {
  margin-top: 20px; /* SP：上20 */
  margin-left: 0; /* SP：左0 */
  display: flex;
  flex-direction: column; /* SP：縦積み */
  gap: 12px; /* SP：アイテム間12 */
}
@media (min-width: 960px) {
  .ao-suisen__items {
    margin-top: 40px; /* PC：上40 */
    margin-left: 60px; /* PC：左60 */
    flex-direction: row; /* PC：横並び */
    gap: 15px; /* PC：アイテム間15 */
  }
}
.ao-suisen__items .ao-suisen__item {
  box-sizing: border-box;
  background-color: #FFEAEA;
  padding: 20px 15px 15px; /* SP：上下左右15 */
  width: 100%; /* SP：1列 */
  /* 見出し行（アイコン + タイトル） */
  /* 本文テキスト */
  /* ノート枠（白背景の囲み） */
}
@media (min-width: 960px) {
  .ao-suisen__items .ao-suisen__item {
    padding: 20px 30px; /* PC：上下30 左右24 */
    width: calc((100% - 30px) / 3); /* PC：3等分（隙間15px×2=30px） */
    min-width: calc((100% - 30px) / 3); /* 収縮防止（flex系指定は使わない） */
  }
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-header {
  display: flex;
  align-items: center;
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-title {
  position: relative;
  padding-left: 52px;
  font-weight: 700;
  font-size: 20px; /* SP */
  line-height: 1.4; /* 140% */
  letter-spacing: 0.04em; /* 4% */
}
@media (min-width: 960px) {
  .ao-suisen__items .ao-suisen__item .ao-suisen__item-title {
    padding-left: 60px;
    margin-top: 15px;
    font-size: 27px; /* PC */
  }
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-title.no01::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 45px;
  height: 45px;
  background-image: url(../images/ao-suisen/features01.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 960px) {
  .ao-suisen__items .ao-suisen__item .ao-suisen__item-title.no01::before {
    width: 45px;
    height: 45px;
  }
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-title.no02::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 45px;
  height: 45px;
  background-image: url(../images/ao-suisen/features02.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 960px) {
  .ao-suisen__items .ao-suisen__item .ao-suisen__item-title.no02::before {
    width: 45px;
    height: 45px;
  }
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-title.no03::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 45px;
  height: 45px;
  background-image: url(../images/ao-suisen/features03.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 960px) {
  .ao-suisen__items .ao-suisen__item .ao-suisen__item-title.no03::before {
    width: 45px;
    height: 45px;
  }
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-text {
  margin-top: 15px;
  font-size: 14px; /* SP */
  line-height: 1.6; /* 160% */
  letter-spacing: 0.04em; /* 4% */
}
@media (min-width: 960px) {
  .ao-suisen__items .ao-suisen__item .ao-suisen__item-text {
    margin-top: 15px;
    font-size: 16px; /* PC */
    line-height: 1.4; /* 140% */
    letter-spacing: 0.02em; /* 2% */
  }
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #F2F2F2;
  margin-top: 12px;
  padding: 12px 10px 10px; /* SP：上下左右10 */
}
@media (min-width: 960px) {
  .ao-suisen__items .ao-suisen__item .ao-suisen__item-note {
    margin-top: 15px;
    padding: 10px 20px; /* PC：上下左右20 */
  }
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-note .ao-suisen__item-note-title {
  display: block;
  font-weight: 700;
  font-size: 14px; /* 共通 */
  line-height: 1.4; /* 140% */
  letter-spacing: 0.04em; /* 4% */
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-note .ao-suisen__item-note-text {
  font-size: 12px; /* SP */
  line-height: 1.5; /* 150% */
  letter-spacing: 0.04em; /* 4% */
  /* 小論文ノート末尾の小さな注記 */
}
@media (min-width: 960px) {
  .ao-suisen__items .ao-suisen__item .ao-suisen__item-note .ao-suisen__item-note-text {
    font-size: 14px; /* PC */
    line-height: 1.35; /* 135% */
    letter-spacing: 0.04em;
  }
}
.ao-suisen__items .ao-suisen__item .ao-suisen__item-note .ao-suisen__item-note-text .ao-suisen__note-small {
  display: inline-block;
  color: #999999;
  font-size: 10px; /* SP/PC 共通 */
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* セクション2専用（見出しは既存 .ao-suisen__heading を使用） */
.ao-s2 {
  /* 2カラム：PC=横並び、SP=縦積み／左余白 PC=60px, SP=0 */
  /* ボックス全体 */
  /* タイトルバー：<span>のみ文字色を黄に */
  /* 中の白カード：左上アイコン用に relative、枠は #999999 */
  /* 併願校ポイント：左ラベル(ピンク) + 右説明(薄ピンク) */
}
.ao-s2 .ao-s2__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.ao-s2 .ao-s2__cols {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px; /* SPの縦間隔は既存仕様準拠 */
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__cols {
    margin-left: 60px;
    flex-direction: row;
    gap: 15px; /* 指定スペース */
  }
}
.ao-s2 .ao-s2__col {
  width: 100%;
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__col {
    width: calc((100% - 15px) / 2); /* 2等分（間1箇所×15px） */
    min-width: calc((100% - 15px) / 2); /* 収縮防止（grow/shrink不使用） */
  }
}
.ao-s2 .ao-s2__box {
  border: 1px solid #E6003D;
  padding: 12px;
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__box {
    padding: 30px 40px;
  }
}
.ao-s2 .ao-s2__box-title {
  background-color: #E6003D;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  /* 指定：黄色 */
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__box-title {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.ao-s2 .ao-s2__box-title span {
  font-size: 20px;
  font-weight: 700;
  color: #FCFF6D;
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__box-title span {
    font-size: 27px;
  }
}
.ao-s2 .ao-s2__card {
  position: relative; /* ::before でアイコン追加予定 */
}
.ao-s2 .ao-s2__card-text {
  position: relative;
  border: 1px solid #999999;
  padding: 5px 20px 5px 76px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ao-s2 .ao-s2__card-text::before {
  display: block;
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/ao-suisen/features04.svg) no-repeat;
  background-size: contain;
  width: 36px;
  height: 42px;
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__card-text::before {
    left: 83px;
    width: 45px;
    height: 52px;
  }
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__card-text {
    padding: 21px 20px 21px 138px;
    font-size: 20px;
  }
}
.ao-s2 .ao-s2__point {
  display: flex;
  align-items: stretch;
  margin-top: 12px;
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__point {
    margin-top: 14px;
  }
}
.ao-s2 .ao-s2__point-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px; /* SP固定幅 */
  background-color: #F87E9E; /* 指定背景 */
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 10px 8px;
  font-size: 14px;
  box-sizing: border-box;
  text-align: center;
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__point-label {
    width: 128px; /* PC固定幅 */
    padding: 12px 10px;
    font-size: 20px;
  }
}
.ao-s2 .ao-s2__point-desc {
  width: calc(100% - 110px); /* 残り幅（SP） */
  background-color: #FFEAEA; /* 指定背景 */
  padding: 10px 5px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 960px) {
  .ao-s2 .ao-s2__point-desc {
    font-size: 20px;
    width: calc(100% - 128px); /* 残り幅（PC） */
    padding: 18px 5px;
    line-height: 1.5;
  }
}

/* セクション3：学校とトライの対策の違い */
.ao-s3 {
  /* 2カラム配置 */
  /* ボックス */
  /* 上部バー */
  /* 学校の場合：グレー */
  /* トライの場合：赤 */
  /* 本体 */
  /* 人物＋キャプション行 */
  /* アイコン置き場（後で ::before で差し込み） */
  /* キャプションは高さautoを前提に（JSで上書き） */
}
.ao-s3__images img, .ao-s3__images picture {
  display: block;
  width: 100%;
  height: auto;
}
.ao-s3__images-caption {
  margin-top: 5px;
  color: #999999;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .ao-s3__images-caption {
    margin-top: 8px;
    font-size: 12px;
    text-align: right;
  }
}
.ao-s3__lead {
  margin-top: 10px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: 14px;
}
@media (min-width: 960px) {
  .ao-s3__lead {
    margin-top: 15px;
    font-size: 18px;
    letter-spacing: 0.07em;
    text-align: center;
  }
}
.ao-s3__title {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #242424;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 960px) {
  .ao-s3__title {
    margin-top: 40px;
    font-size: 27px;
  }
}
.ao-s3 .ao-s3__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.ao-s3 .ao-s3__cols {
  margin-left: 0; /* SP 左余白0 */
  margin-top: 20px; /* SP 見出しとの距離 */
  display: flex;
  gap: 12px;
  font-weight: 700; /* SP 縦間隔 */
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__cols {
    margin-left: 60px; /* PC 左余白60 */
    margin-top: 25px; /* PC 見出しとの距離 */
    font-size: 22px;
    gap: 15px; /* 指定スペース15 */
  }
}
.ao-s3 .ao-s3__col {
  width: 100%;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__col {
    width: calc((100% - 15px) / 2); /* 2等分（間1箇所×15px） */
    min-width: calc((100% - 15px) / 2); /* 収縮防止。grow/shrink不使用 */
  }
}
.ao-s3 .ao-s3__box {
  background-color: #fff;
  border: 1px solid #999999; /* 左カードの枠色 */
  box-sizing: border-box;
}
.ao-s3 .ao-s3__box--try {
  border-color: #E6003D; /* 右カードは赤枠 */
}
.ao-s3 .ao-s3__bar {
  text-align: center;
  color: #fff;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__bar {
    padding: 6px 10px;
  }
}
.ao-s3 .ao-s3__box--school .ao-s3__bar {
  background-color: #999999;
}
.ao-s3 .ao-s3__box--try .ao-s3__bar {
  background-color: #E6003D;
}
.ao-s3 .ao-s3__body {
  padding: 16px 10px 18px;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__body {
    padding: 20px 20px 22px;
  }
}
.ao-s3 .ao-s3__subtitle {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__subtitle {
    font-size: 20px;
  }
}
.ao-s3 .ao-s3__balloon {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4px auto 3px;
  padding: 8px 4px;
  border-radius: 4px;
}
.ao-s3 .ao-s3__balloon--gray::after {
  position: absolute;
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/ao-suisen/ao3-gray.svg) no-repeat;
  background-size: contain;
  right: 10%;
  bottom: -10px;
  z-index: 0;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__balloon--gray::after {
    right: 40%;
  }
}
.ao-s3 .ao-s3__balloon--pink::after {
  position: absolute;
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/ao-suisen/ao3-pink.svg) no-repeat;
  background-size: contain;
  right: 10%;
  bottom: -10px;
  z-index: 0;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__balloon--pink::after {
    right: 40%;
  }
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__balloon {
    margin: 12px auto 8px;
    padding: 8px 16px;
  }
}
.ao-s3 .ao-s3__balloon--gray {
  background-color: #DDDDDD;
}
.ao-s3 .ao-s3__balloon--pink {
  background-color: #FFEAEA;
}
.ao-s3__human {
  width: 40px;
  height: 52px;
  margin-right: auto;
  margin-left: auto;
}
.ao-s3__human img {
  width: 100%;
  height: auto;
}
.ao-s3 .ao-s3__balloon-text {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__balloon-text {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
}
.ao-s3 .ao-s3__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__row {
    gap: 14px;
  }
}
.ao-s3 .ao-s3__figure {
  position: relative; /* アイコン重ね用 */
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background-color: #CFCFCF;
  /* 学校側：グレー */
  /* トライ側：赤 */
}
.ao-s3 .ao-s3__figure--gray {
  background-color: #CFCFCF;
}
.ao-s3 .ao-s3__figure--red {
  background-color: #E6003D;
}
.ao-s3 .ao-s3__caption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .ao-s3 .ao-s3__caption {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }
}

.p-ao-suisen__faq {
  padding: 40px 15px;
  /* Q. / A. は赤 */
  /* ＋／− トグル（SP: 20×20、PC: 28×28） */
  /* ＋の縦棒 */
  /* 開いてるときは縦棒を消して「−」に */
  /* 回答ボディ：スムーズ開閉（max-heightアニメ） */
  /* QとAの距離 15px */
}
@media (min-width: 960px) {
  .p-ao-suisen__faq {
    padding: 70px 0;
  }
}
.p-ao-suisen__faq-title {
  font-weight: 700;
  line-height: 1.4;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 960px) {
  .p-ao-suisen__faq-title {
    font-size: 40px;
  }
}
.p-ao-suisen__faq .p-ao-suisen__faq-list {
  width: 100%;
  max-width: 1200px;
  margin: 14px auto 0;
}
@media (min-width: 960px) {
  .p-ao-suisen__faq .p-ao-suisen__faq-list {
    margin-top: 24px;
  }
}
.p-ao-suisen__faq .p-ao-suisen__faq-item {
  background-color: #FFF5F5;
  border-radius: 10px;
  margin: 0 0 12px;
  padding: 14px 20px; /* SP */
  cursor: pointer; /* 全体クリック */
  -webkit-tap-highlight-color: transparent;
  /* PCのみ25px四方 */
}
.p-ao-suisen__faq .p-ao-suisen__faq-item:focus, .p-ao-suisen__faq .p-ao-suisen__faq-item:focus-visible, .p-ao-suisen__faq .p-ao-suisen__faq-item:active {
  outline: none;
  box-shadow: none;
}
@media (min-width: 960px) {
  .p-ao-suisen__faq .p-ao-suisen__faq-item {
    padding: 25px;
  }
}
.p-ao-suisen__faq .p-ao-suisen__faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-ao-suisen__faq .p-ao-suisen__faq-q {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .p-ao-suisen__faq .p-ao-suisen__faq-q {
    font-size: 18px;
  }
}
.p-ao-suisen__faq .p-ao-suisen__faq-mark {
  color: #E6003D;
  font-weight: 700;
  font-size: 20px;
  margin-right: 6px;
}
@media (min-width: 960px) {
  .p-ao-suisen__faq .p-ao-suisen__faq-mark {
    font-size: 22px;
  }
}
.p-ao-suisen__faq .p-ao-suisen__faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex: 0 0 20px;
  background-color: #E6003D;
}
.p-ao-suisen__faq .p-ao-suisen__faq-toggle::before,
.p-ao-suisen__faq .p-ao-suisen__faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  margin-left: -5px;
  margin-top: -1px;
  background: #fff;
  transition: transform 200ms ease, opacity 200ms ease;
}
.p-ao-suisen__faq .p-ao-suisen__faq-toggle::after {
  transform: rotate(90deg);
}
.p-ao-suisen__faq .p-ao-suisen__faq-item[aria-expanded=true] .p-ao-suisen__faq-toggle::after {
  opacity: 0;
}
@media (min-width: 960px) {
  .p-ao-suisen__faq .p-ao-suisen__faq-toggle {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
  .p-ao-suisen__faq .p-ao-suisen__faq-toggle::before,
  .p-ao-suisen__faq .p-ao-suisen__faq-toggle::after {
    width: 14px;
    margin-left: -7px;
  }
}
.p-ao-suisen__faq .p-ao-suisen__faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}
.p-ao-suisen__faq .p-ao-suisen__faq-a {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 960px) {
  .p-ao-suisen__faq .p-ao-suisen__faq-a {
    font-size: 16px;
  }
}

.cta {
  padding: 40px 16px;
}
@media (min-width: 960px) {
  .cta {
    max-width: 632px;
    margin: 20px auto 0;
  }
}
.cta_title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 22.6px;
}
@media (min-width: 960px) {
  .cta_title {
    font-size: 24px;
    padding: 0 47.6px;
  }
}
.cta_title::before {
  position: absolute;
  content: url(../images/202401/icon/cta_line_l.svg);
  left: 0;
  bottom: -12px;
}
@media (min-width: 960px) {
  .cta_title::before {
    content: url(../images/202401/icon/cta_line_l_pc.svg);
  }
}
.cta_title::after {
  position: absolute;
  content: url(../images/202401/icon/cta_line_r.svg);
  right: 0;
  bottom: -12px;
}
@media (min-width: 960px) {
  .cta_title::after {
    content: url(../images/202401/icon/cta_line_r_pc.svg);
  }
}
.cta_title_red {
  color: var(--color-red);
}
.cta_title_lg {
  font-size: 24px;
}
@media (min-width: 960px) {
  .cta_title_lg {
    font-size: 42px;
  }
}
.cta_title1::before {
  left: 0;
  bottom: -2px;
}
@media (min-width: 960px) {
  .cta_title1::before {
    content: url(../images/202401/icon/cta_line_l_pc.svg);
  }
}
.cta_title1::after {
  right: 0;
  bottom: -2px;
}
@media (min-width: 960px) {
  .cta_title1::after {
    content: url(../images/202401/icon/cta_line_r_pc.svg);
  }
}
.cta_head {
  display: flex;
  margin-left: -7px;
  margin-top: 8px;
}
.cta_body {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}
@media (min-width: 960px) {
  .cta_body {
    gap: 20px;
    margin-top: 20px;
  }
}
.cta_body .contact_button-taiken {
  height: 54px;
  width: 50%;
  background: rgb(32, 65, 141);
  box-shadow: 0px 4px 0px 0px rgb(5, 21, 58);
  padding: unset;
  gap: 5px;
  justify-content: flex-start;
  padding: 0 8px 0 8px;
}
@media (min-width: 960px) {
  .cta_body .contact_button-taiken {
    height: 100px;
    justify-content: center;
    padding: unset;
    border-radius: 13px;
  }
  .cta_body .contact_button-taiken:hover {
    box-shadow: 0 8px 16px rgba(32, 65, 141, 0.5);
  }
}
.cta_body .contact_button-taiken .cta_button_text {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: normal;
  position: relative;
  margin-top: 2px;
  width: calc(100% - 4px - 36px);
  text-align: center;
  padding-right: 15px;
}
@media (min-width: 960px) {
  .cta_body .contact_button-taiken .cta_button_text {
    width: calc(100% - 24px - 90px);
    font-size: 20px;
    line-height: 1.2;
    padding-right: 34px;
    margin-left: 7px;
  }
}
.cta_body .contact_button-taiken .cta_button_text::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-image: url(../images/202401/cta_arrow_nay.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}
@media (min-width: 960px) {
  .cta_body .contact_button-taiken .cta_button_text::after {
    font-size: 17px;
    line-height: 1.2;
    width: 30px;
    height: 30px;
    right: -3px;
  }
}
.cta_body .contact_button-taiken .cta_button_text span {
  font-size: 16px;
  line-height: 1.4482352941;
}
@media (min-width: 960px) {
  .cta_body .contact_button-taiken .cta_button_text span {
    font-size: 29px;
    line-height: 1.5642105263;
  }
}
.cta_body .contact_button-taiken .cta_button_head {
  color: rgb(32, 65, 141);
}
.cta_button {
  border-radius: 2px;
  width: calc(50% - 7px);
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
}
@media (min-width: 960px) {
  .cta_button {
    margin-left: unset;
    border-radius: 13px;
    justify-content: flex-start;
  }
}
.cta_button_head {
  background: #fcff6d;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: normal;
  padding-top: 1.5px;
}
@media (min-width: 960px) {
  .cta_button_head {
    width: 70px;
    height: 70px;
    font-size: 27px;
    padding-top: 3px;
  }
}
.cta_button_text {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4483333333;
  text-align: center;
  position: relative;
}
@media (min-width: 960px) {
  .cta_button_text {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.448;
  }
}
.cta_button_text::after {
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  right: 0;
}
.cta_button_text span {
  font-size: 20px;
  line-height: 1.4482352941;
  font-weight: 800;
}
@media (min-width: 960px) {
  .cta_button_text span {
    font-weight: 700;
    font-size: 33px;
    line-height: 1.448;
  }
}
.cta_button_mail {
  background: var(--color-red);
  color: #fff;
  box-shadow: 0px 4px 0px 0px rgb(177, 0, 47);
  width: 100%;
  height: 54px;
  padding: 0 14px 0 17px;
}
@media (min-width: 960px) {
  .cta_button_mail {
    height: 100px;
    box-shadow: 0px 4px 0px 0px rgb(177, 0, 47);
    margin-top: 15px;
  }
  .cta_button_mail:hover {
    box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) - 20%), calc(var(--color-primary-a) - 0.5));
    transform: translateY(-2px) scale(1.01);
    opacity: 1;
  }
}
.cta_button_mail .cta_button_text {
  padding-right: 21px;
  margin-top: 5px;
  width: calc(100% - 10px - 36px);
  text-align: center;
}
@media (min-width: 960px) {
  .cta_button_mail .cta_button_text {
    width: calc(100% - 24px - 90px);
    padding-right: 70px;
    margin-top: 4px;
    margin-left: 26px;
    text-align: left;
  }
}
.cta_button_mail .cta_button_text::after {
  content: url(../images/202401/icon/cta_button_w.svg);
}
@media (min-width: 960px) {
  .cta_button_mail .cta_button_text::after {
    content: "";
    background-image: url(../images/202401/icon/cta_button_w.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
.cta_button_taiken {
  border: 2px solid #20418d;
  background: #20418d;
  color: #fff;
  box-shadow: 0px 2px 0px 0px rgb(32, 65, 141);
}
@media (min-width: 960px) {
  .cta_button_taiken {
    width: 50%;
    height: 120px;
  }
}
.cta_button_taiken .cta_button_text {
  margin-left: 6px;
  padding-right: 31px;
  margin-top: 4px;
}
.cta_button_taiken .cta_button_text::after {
  content: url(../images/202401/icon/cta_button_n.svg);
}
.cta_button_taiken .cta_button_head {
  color: #20418d;
}
.cta_tel {
  background: #ffeaea;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-red);
  padding: 8px 0;
  width: 50%;
  height: 56px;
  background: #fff;
  border: rgba(230, 0, 61, 0.5) 2px solid;
  box-shadow: 0px 2px 0px 0px rgba(230, 0, 61, 0.5);
}
@media (min-width: 960px) {
  .cta_tel {
    height: 102px;
    box-shadow: 0px 2px 0px 0px rgba(230, 0, 61, 0.5);
    border-radius: 13px;
  }
}
.cta_tel:hover {
  box-shadow: 0 8px 16px hsla(calc(var(--color-primary-h) + 0deg), calc(var(--color-primary-s) + 0%), calc(var(--color-primary-l) - 20%), calc(var(--color-primary-a) - 0.5));
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
}
.cta_tel_number {
  position: relative;
  padding-left: 37px;
  display: block;
  font-size: 16.73px;
  line-height: 1.2104004782;
  text-align: center;
  padding-left: 19px;
}
@media (min-width: 960px) {
  .cta_tel_number {
    font-size: 28px;
    line-height: 1.2102425876;
    padding-left: 47px;
    margin-top: 11px;
  }
}
.cta_tel_number::after {
  position: absolute;
  content: "";
  background-image: url(../images/202401/icon/cta_tel.svg);
  background-repeat: repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  left: 0px;
  top: 59%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .cta_tel_number::after {
    width: 30px;
    height: 30px;
    left: 8px;
    top: 47%;
  }
}
.cta_tel_time {
  display: block;
  text-align: center;
  font-weight: 500;
  color: #000;
  font-size: 8px;
  line-height: 1.51;
}
@media (min-width: 960px) {
  .cta_tel_time {
    font-size: 14.93px;
    line-height: 1.5097119893;
  }
}
.cta_time {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
}
.cta_sp {
  display: block;
}
@media (min-width: 960px) {
  .cta_sp {
    display: none;
  }
}
.cta_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .cta_sp--flex {
    display: none;
  }
}
.cta_pc {
  display: none;
}
@media (min-width: 960px) {
  .cta_pc {
    display: block;
  }
}
.cta_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .cta_pc--flex {
    display: flex;
  }
}

.cta_nay .cta_title::before {
  content: url(../images/202401/icon/cta_line_l.svg);
}
.cta_nay .cta_title::after {
  content: url(../images/202401/icon/cta_line_r.svg);
}
.cta_nay .cta_title_red {
  color: #20418d;
}
.cta_nay .cta_button_head {
  color: #20418d;
}
.cta_nay .cta_button_mail {
  background: #20418d;
  box-shadow: 0px 2px 0px 0px rgb(177, 0, 47);
}
.cta_nay .cta_button_mail .cta_button_text::after {
  content: url(../images/202401/icon/cta_button_w.svg);
}
.cta_nay .cta_button_taiken {
  border: 2px solid #20418d;
  color: #20418d;
  box-shadow: 0px 2px 0px 0px rgb(32, 65, 141);
}
.cta_nay .cta_button_taiken .cta_button_text {
  margin-left: 6px;
  padding-right: 31px;
  margin-top: 4px;
}
.cta_nay .cta_button_taiken .cta_button_text::after {
  content: url(../images/202401/icon/cta_button_r.svg);
}
.cta_nay .cta_tel {
  background: #feffdd;
  color: #20418d;
}
.cta_nay .cta_tel p::after {
  content: url(../images/202401/icon/cta_tel.svg);
}

.cta.cta_container {
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .cta.cta_container {
    max-width: 806px;
    margin: 20px auto 0;
  }
}

.cta.cta_500 {
  max-width: 500px;
  margin: 0 auto;
}

.cta_500.mb36 {
  margin-bottom: 36px;
}

.cta_box {
  display: flex;
}
.cta_box .cta_202405 {
  width: 50%;
}

.cta_lead {
  color: #4b4b4b;
  font-weight: 700;
  font-size: 14.2222222222px;
  text-align: center;
}
@media (min-width: 960px) {
  .cta_lead {
    font-size: 24px;
    margin-bottom: 15.652173913px;
  }
}
.cta_lead .red {
  color: var(--color-red);
}
.cta_lead .lg {
  font-size: 24px;
}
@media (min-width: 960px) {
  .cta_lead .lg {
    font-size: 38px;
  }
}

.cta_202405 {
  display: block;
  line-height: 0;
  text-align: center;
}

.cta_202405 img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}

.cta_202405:hover img {
  opacity: 0.7;
}

.cta_box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15.6px;
  margin: 16.8px 0 15px;
}
@media (min-width: 960px) {
  .cta_box2 {
    gap: 35px;
    flex-direction: row;
    margin: 36px 0 15px;
  }
}

.cta_box2 figure {
  max-width: 243.6px;
}
@media (min-width: 960px) {
  .cta_box2 figure {
    max-width: 336px;
    margin-left: 8px;
  }
}

.cta_box2 figure img {
  width: 100%;
  height: auto;
}

.cta_box2 p {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-top: -8px;
}
@media (min-width: 960px) {
  .cta_box2 p {
    font-size: 18px;
    line-height: 1.5555555556;
    margin-top: -22px;
  }
}

.cta2 {
  margin: 0 calc(50% - 50vw);
  padding: 60px calc(50vw - 50%);
  width: 100vw;
  background: #fff5f5;
}
@media (max-width: 750px) {
  .cta2 {
    padding: 29px calc(50vw - 50%);
  }
}
.cta2_inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta2_lead {
  font-size: 24px;
  line-height: 1.51;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 43px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 750px) {
  .cta2_lead {
    font-size: 13px;
    padding: 0 16px;
    line-height: 1.5384615385;
  }
}
.cta2_lead::after {
  position: absolute;
  content: "";
  background-image: url(../images/sapix/obje_l.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 43px;
  height: 30px;
}
@media (max-width: 750px) {
  .cta2_lead::after {
    width: 11px;
    height: 18px;
  }
}
.cta2_lead::before {
  position: absolute;
  content: "";
  background-image: url(../images/sapix/obje_r.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  width: 43px;
  height: 30px;
}
@media (max-width: 750px) {
  .cta2_lead::before {
    width: 11px;
    height: 18px;
  }
}
.cta2_flex {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .cta2_flex {
    -moz-column-gap: 7px;
         column-gap: 7px;
    margin-top: 9px;
  }
}
.cta2_free {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  color: var(--color-red);
  background: #fcff6d;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 750px) {
  .cta2_free {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.cta2_button1 {
  background: var(--color-red);
  box-shadow: 0px 4px 0px 0px rgb(177, 0, 47);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 13px 10px;
  position: relative;
  padding-right: 80px;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .cta2_button1 {
    border-radius: 8px;
    padding: 10px 10px;
    padding-right: 70px;
    margin-top: 7px;
  }
}
.cta2_button1::after {
  position: absolute;
  content: "";
  background-image: url(../images/sapix/icon_arrow_red.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
}
@media (max-width: 750px) {
  .cta2_button1::after {
    width: 15px;
    height: 15px;
    right: 14px;
  }
}
.cta2_button1_text {
  color: #fff;
  margin-left: 49px;
}
@media (max-width: 750px) {
  .cta2_button1_text {
    margin-left: 26px;
  }
}
.cta2_button1_text_lg {
  font-size: 36px;
  line-height: 1.4480555556;
  font-weight: 700;
}
@media (max-width: 750px) {
  .cta2_button1_text_lg {
    font-size: 17px;
  }
}
.cta2_button1_text_sm {
  font-size: 26px;
  line-height: 1.4480769231;
  font-weight: 700;
}
@media (max-width: 750px) {
  .cta2_button1_text_sm {
    font-size: 12px;
  }
}
.cta2_button2 {
  width: 50%;
  background: #20418d;
  box-shadow: 0px 4px 0px 0px rgb(5, 21, 58);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 11px 10px;
  position: relative;
  padding-right: 60px;
}
@media (max-width: 750px) {
  .cta2_button2 {
    border-radius: 8px;
    padding: 7px 33px 3px 7px;
  }
}
.cta2_button2::after {
  position: absolute;
  content: "";
  background-image: url(../images/sapix/icon_arrow_nay.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
}
@media (max-width: 750px) {
  .cta2_button2::after {
    width: 15px;
    height: 15px;
    right: 8px;
  }
}
.cta2_button2 .cta2_free {
  color: #20418d;
}
.cta2_button2_text {
  color: #fff;
  margin-left: 16px;
  text-align: center;
}
@media (max-width: 750px) {
  .cta2_button2_text {
    margin-left: 8px;
    line-height: 1;
  }
}
.cta2_button2_text_lg {
  font-size: 34px;
  line-height: 1.4479411765;
  font-weight: 700;
}
@media (max-width: 750px) {
  .cta2_button2_text_lg {
    font-size: 17px;
  }
}
.cta2_button2_text_sm {
  font-size: 22px;
  line-height: 1.4481818182;
  font-weight: 700;
}
@media (max-width: 750px) {
  .cta2_button2_text_sm {
    font-size: 12px;
  }
}
.cta2_button3 {
  width: 50%;
  background: #fff;
  box-shadow: 0px 4px 0px 0px rgba(230, 0, 61, 0.5);
  border-top: rgba(230, 0, 61, 0.5) 2px solid;
  border-left: rgba(230, 0, 61, 0.5) 2px solid;
  border-right: rgba(230, 0, 61, 0.5) 2px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 11px 10px;
}
@media (max-width: 750px) {
  .cta2_button3 {
    border-radius: 8px;
    padding: 9px 4px 1px;
  }
}
.cta2_button3_flex {
  display: flex;
}
.cta2_button3_tel {
  width: 37px;
}
@media (max-width: 750px) {
  .cta2_button3_tel {
    width: 15px;
  }
}
.cta2_button3_tel img {
  width: 100%;
  height: auto;
}
.cta2_button3_text1 {
  color: var(--color-red);
  margin-left: 8px;
  letter-spacing: 0;
  font-size: 34px;
  line-height: 1.2058823529;
  font-weight: 800;
  display: block;
  font-family: "Inter", sans-serif;
}
@media (max-width: 750px) {
  .cta2_button3_text1 {
    margin-left: 4px;
    font-size: 17px;
    line-height: 1;
  }
}
.cta2_button3_text2 {
  font-size: 15px;
  line-height: 1.5333333333;
  font-weight: 500;
  text-align: center;
  color: #000;
  display: block;
}
@media (max-width: 750px) {
  .cta2_button3_text2 {
    font-size: 8px;
    line-height: 1;
  }
}

.point {
  padding: 0 16px;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .point {
    padding: unset;
  }
}
.point_header {
  font-weight: 700;
  font-size: 16px;
  background: #fff5f5;
  border-left: 8px solid var(--color-red);
  border-right: 8px solid var(--color-red);
  text-align: center;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 9px 0;
}
@media (min-width: 960px) {
  .point_header {
    margin: 65px auto 0;
    padding: 12px 0;
    width: 100%;
    font-size: 26px;
  }
}
.point_header_red {
  color: var(--color-red);
  font-size: 24px;
  line-height: 1.2291666667;
}
@media (min-width: 960px) {
  .point_header_red {
    font-size: 40px;
  }
}
.point_header_sm {
  color: #656565;
  font-size: 11px;
}
.point_header_light {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.21;
}
@media (min-width: 960px) {
  .point_header_light {
    font-size: 26px;
  }
}
.point_header_lg {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2104545455;
}
@media (min-width: 960px) {
  .point_header_lg {
    font-size: 33.45px;
  }
}
.point_header_lead {
  font-size: 8px;
  font-weight: 500;
  color: #8c8c8c;
  line-height: 1.4475;
  margin-top: 9px;
}
@media (min-width: 960px) {
  .point_header_lead {
    text-align: right;
    margin-right: 92px;
  }
}
.point_list {
  margin-top: 30px;
}
@media (min-width: 960px) {
  .point_list {
    margin-top: 54px;
  }
}
.point_item + .point_item {
  margin-top: 50px;
}
@media (min-width: 960px) {
  .point_item + .point_item {
    margin-top: 97px;
  }
}
@media (min-width: 960px) {
  .point_item_flexbox {
    display: flex;
  }
}
@media (min-width: 960px) {
  .point_item_flexhead {
    position: relative;
  }
}
@media (min-width: 960px) {
  .point_item_flexbody {
    margin-left: 45px;
    width: calc(100% - 469px - 45px);
    margin-top: 35px;
  }
}
.point_item_title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.point_item_title_number {
  color: #fff;
  background: url(../images/202401/icon/point_number.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 64px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin-left: 3px;
}
@media (min-width: 960px) {
  .point_item_title_number {
    position: absolute;
    width: 120px;
    height: 121px;
    font-size: 60px;
    margin-left: 3px;
    margin-top: -16px;
  }
}
.point_item_title_text {
  margin-left: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.361875;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .point_item_title_text {
    font-size: 22px;
    line-height: 1.2;
    margin-left: unset;
  }
  .point_item_title_text_2 {
    font-size: 24px;
    line-height: 1.2;
  }
  .point_item_title_text_3 {
    font-size: 30px;
    line-height: 1.362;
  }
  .point_item_title_text_4 {
    font-size: 28px;
    line-height: 1.3621428571;
  }
}
.point_item_title_text .red {
  color: var(--color-red);
}
.point_item_title_text .s18 {
  font-size: 18px;
  line-height: 1.3622222222;
}
@media (min-width: 960px) {
  .point_item_title_text .s18 {
    font-size: 30px;
    line-height: 1.362;
  }
}
.point_item_title_text .s20 {
  font-size: 20px;
  line-height: 1.362;
}
@media (min-width: 960px) {
  .point_item_title_text .s20 {
    font-size: 37px;
    line-height: 1.362;
  }
}
.point_item_title_text .s22 {
  font-size: 22px;
  line-height: 1.3618181818;
}
@media (min-width: 960px) {
  .point_item_title_text .s22 {
    font-size: 30px;
    line-height: 1.2;
  }
  .point_item_title_text .s22_pc {
    font-size: 42px;
    line-height: 1.2;
  }
}
.point_item_title_text .s24 {
  font-size: 24px;
  line-height: 1.2104166667;
}
@media (min-width: 960px) {
  .point_item_title_text .s24 {
    font-size: 42px;
    line-height: 1.4;
  }
}
.point_item_title_text .s40 {
  font-size: 40px;
  line-height: 128%;
}
.point_item_mv {
  margin-top: 14px;
}
@media (min-width: 960px) {
  .point_item_mv {
    margin-left: 20px;
    max-width: 449px;
  }
}
.point_item_mv img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.point_item_list {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .point_item_list {
    margin-top: 20px;
    margin-left: 4px;
  }
}
.point_item_listitem {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857143;
  position: relative;
  padding-left: 22px;
}
@media (min-width: 960px) {
  .point_item_listitem {
    font-size: 16px;
    line-height: 1.5;
  }
  .point_item_listitem + .point_item_listitem {
    margin-top: 10px;
  }
}
.point_item_listitem::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 9px;
  top: 10px;
}
.point_item_listitem span {
  color: var(--color-red);
}
.point_item_button {
  font-size: 14.2222222222px;
  font-weight: 700;
  border-radius: 55.5555555556px;
  width: 287.7777777778px;
  height: 42.2222222222px;
  color: var(--color-red);
  border: var(--color-red) 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 0;
}
@media (min-width: 960px) {
  .point_item_button {
    font-size: 24px;
    border-radius: 108.6956521739px;
    width: 563.0434782609px;
    margin: 51.7391304348px auto 0;
    border: var(--color-red) 2px solid;
    padding: 39px 10px;
  }
}
.point_item_button:focus {
  color: var(--color-red);
}
.point_item_button p {
  position: relative;
  padding-right: 15px;
  line-height: 1;
}
@media (min-width: 960px) {
  .point_item_button p {
    padding-right: 40px;
    padding-top: 2px;
  }
}
.point_item_button p::after {
  position: absolute;
  content: "";
  background-image: url(../images/202401/arrow_red_r.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  transition: all 0.4s ease;
}
@media (min-width: 960px) {
  .point_item_button p::after {
    width: 20px;
    height: 24px;
  }
}
.point_item_button:hover {
  background: var(--color-red);
  color: #fff;
}
.point_item_button:hover p::after {
  background-image: url(../images/202401/arrow_white_r.svg);
}
.point_box {
  border: #ffeaea 3px solid;
  border-radius: 5px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .point_box {
    margin-top: 42px;
    border-radius: 10px;
    position: relative;
  }
}
.point_box_head {
  background: #ffeaea;
  color: var(--color-red);
  font-weight: 700;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  height: 24.71px;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
  padding: 1px 23px 0 11px;
  letter-spacing: normal;
  margin-top: -1px;
}
.point_box_head span {
  color: #000;
}
@media (min-width: 960px) {
  .point_box_head {
    position: absolute;
    left: 0;
    top: -0.5px;
    font-size: 18px;
    height: 32px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
    padding: 3px 23px 0 13px;
  }
}
.point_close {
  display: none;
}
@media (min-width: 960px) {
  .point_close {
    display: block;
  }
}
.point_open {
  background: #ffeaea;
  color: var(--color-red);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  cursor: pointer;
}
.point_open p {
  position: relative;
  padding-right: 18px;
  padding-top: 3px;
}
.point_open p::after {
  position: absolute;
  content: url(../images/202401/icon/point_open.svg);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.point_open.active {
  display: none;
}
@media (min-width: 960px) {
  .point_box1 {
    display: flex;
    position: relative;
    margin-top: 42px;
  }
  .point_box1 > div {
    width: 50%;
    padding: 45px 0px 25px;
  }
}
.point_box1_title {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-top: 14px;
  line-height: 1.3;
}
@media (min-width: 960px) {
  .point_box1_title {
    font-size: 22.47px;
    line-height: 1.2995104584;
    margin-top: 5px;
    margin-left: -3px;
  }
}
.point_box1_title span {
  font-size: 24px;
  position: relative;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .point_box1_title span {
    font-size: 33.7px;
    line-height: 1.5;
  }
}
.point_box1_title span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background: #fcff6d;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.point_box1_mv {
  max-width: 296px;
  margin: -10px auto 0;
}
@media (min-width: 960px) {
  .point_box1_mv {
    margin: 0 auto;
  }
}
.point_box1_mv img {
  width: 100%;
  height: auto;
}
.point_box1_list {
  padding: 16px 12px 20px;
  background: #fff5f5;
  margin-top: 3px;
}
@media (min-width: 960px) {
  .point_box1_list {
    margin-top: unset;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 11px;
  }
}
.point_box1_item {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4478571429;
  position: relative;
  padding-left: 20px;
}
@media (min-width: 960px) {
  .point_box1_item {
    font-size: 16px;
    line-height: 2;
    width: 370px;
    margin-top: 10px;
    padding-left: 27px;
  }
}
.point_box1_item + .point_box1_item {
  margin-top: 3px;
}
.point_box1_item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 8px;
  top: 11px;
}
.point_box1_item span {
  color: var(--color-red);
}
.point_box2 {
  border: #fff5f5 3px solid;
}
.point_box2_title {
  color: var(--color-red);
  font-family: "Inter", sans-serif !important;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  background: #fff5f5;
  padding-top: 14px;
}
@media (min-width: 960px) {
  .point_box2_title {
    font-size: 20px;
    padding-top: 13px;
  }
}
.point_box2_head {
  display: flex;
  padding-top: 6px;
  padding-bottom: 19px;
  justify-content: center;
  align-items: center;
  background: #fff5f5;
}
@media (min-width: 960px) {
  .point_box2_head {
    padding-top: 9px;
    padding-bottom: 24px;
  }
}
.point_box2_head_mv {
  width: 100px;
  height: 100px;
  margin-left: 6px;
}
@media (min-width: 960px) {
  .point_box2_head_mv {
    width: 150px;
    height: 150px;
    margin-left: 0px;
    margin-top: 13px;
  }
  .point_box2_head_mv + div {
    margin-left: 40px;
  }
}
.point_box2_head_mv img {
  width: 100%;
  height: auto;
}
.point_box2_head_list {
  margin-left: 12px;
}
@media (min-width: 960px) {
  .point_box2_head_list {
    margin-left: unset;
    margin-top: 9px;
  }
}
.point_box2_head_item {
  color: var(--color-red);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  font-family: "Inter", sans-serif;
  position: relative;
  padding-left: 1.3em;
}
.point_box2_head_item::before {
  content: "";
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--color-red);
  border-bottom: 3px solid var(--color-red);
  transform: rotate(-45deg);
  left: 0;
  top: 8px;
  position: absolute;
}
.point_box2_area1 {
  padding: 0 16px;
  margin-top: 30px;
}
@media (min-width: 960px) {
  .point_box2_area1 {
    margin-top: 40px;
  }
}
.point_box2_area1_title {
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  height: 35px;
  background: #9f9f9f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media (min-width: 960px) {
  .point_box2_area1_title {
    max-width: 400px;
    height: 50px;
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
  }
}
.point_box2_area1_mv {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .point_box2_area1_mv {
    max-width: 522px;
    margin: 20px auto 0;
  }
}
.point_box2_area1_mv img {
  width: 100%;
  height: auto;
}
.point_box2_area1_text {
  margin-top: 16px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  text-align: center;
}
.point_box2_area2 {
  padding: 0 16px 30px;
  margin-top: 40px;
}
@media (min-width: 960px) {
  .point_box2_area2 {
    margin-top: 50px;
    padding: 0 16px 40px;
  }
}
.point_box2_area2_title {
  font-weight: 700;
  font-size: 16px;
  width: 249px;
  height: 35px;
  background: #ffeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  margin: 0 auto;
}
@media (min-width: 960px) {
  .point_box2_area2_title {
    max-width: 400px;
    height: 50px;
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
  }
}
.point_box2_area2_mv {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .point_box2_area2_mv {
    max-width: 601px;
    margin: 30px auto 0;
  }
}
.point_box2_area2_mv img {
  width: 100%;
  height: auto;
}
.point_box2_area2_text {
  margin-top: 23px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .point_box2_area2_text {
    font-size: 22.69px;
    line-height: 1.6;
    margin-top: 31px;
  }
}
.point_box2_area2_text span {
  color: var(--color-red);
  line-height: 1.5;
  font-size: 20px;
}
@media (min-width: 960px) {
  .point_box2_area2_text span {
    font-size: 28.36px;
    line-height: 1.5;
  }
}
.point_box3_title {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 13px;
  line-height: 1.361875;
}
@media (min-width: 960px) {
  .point_box3_title {
    margin-top: 60px;
    font-size: 22px;
    line-height: 1.3618181818;
  }
}
.point_box3_title .red {
  color: var(--color-red);
}
.point_box3_title .lg {
  font-size: 26px;
  letter-spacing: 1.3619230769;
}
@media (min-width: 960px) {
  .point_box3_title .lg {
    font-size: 36px;
    letter-spacing: 1.3619444444;
  }
}
.point_box3_title .md {
  font-size: 20px;
  letter-spacing: 1.362;
}
@media (min-width: 960px) {
  .point_box3_title .md {
    font-size: 28px;
    letter-spacing: 1.3621428571;
  }
}
.point_box3_title .sm {
  font-weight: 400;
}
@media (min-width: 960px) {
  .point_box3_title .sm {
    font-size: 16px;
    letter-spacing: 1.361875;
  }
}
.point_box3_mv {
  max-width: 296px;
  margin: 0 auto;
}
.point_box3_mv img {
  width: 100%;
  height: auto;
}
.point_box3_cloud {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/202401/point_box3_cloud_bg.png);
  background-size: cover;
  width: 277.06px;
  height: 57px;
  position: relative;
  z-index: 1;
  margin: 18px auto -29px;
}
@media (min-width: 960px) {
  .point_box3_cloud {
    margin: 23px auto -29px;
  }
}
.point_box3_cloud figure {
  width: 39.1px;
  height: auto;
  margin-left: -17px;
  margin-top: 5px;
}
@media (min-width: 960px) {
  .point_box3_cloud figure {
    width: 49.1px;
    margin-top: -16px;
  }
}
.point_box3_cloud figure img {
  width: 100%;
  height: auto;
}
.point_box3_cloud p {
  font-weight: 500;
  font-size: 16px;
  margin-left: 6px;
}
.point_box3_cloud p .bl {
  font-weight: 700;
}
.point_box3_cloud p .sm {
  font-size: 12px;
}
.point_box3_area1 {
  background: #fff5f5;
  padding: 40px 9px 21px;
}
@media (min-width: 960px) {
  .point_box3_area1 {
    padding: 40px 9px 31px;
  }
}
.point_box3_area1_lead {
  font-weight: 700;
  font-size: 16px;
  margin-left: 12px;
  line-height: 1.6;
  margin-top: 2px;
}
@media (min-width: 960px) {
  .point_box3_area1_lead {
    text-align: center;
    margin-top: 7px;
  }
}
.point_box3_area1_lead .lg {
  font-size: 24px;
  line-height: 1.4;
}
.point_box3_area1_lead .line {
  position: relative;
  z-index: 2;
}
.point_box3_area1_lead .line::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background: #fcff6d;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.point_box3_area1_contents {
  display: flex;
  background: #fff;
  border-radius: 5px;
  margin-top: 12px;
}
@media (min-width: 960px) {
  .point_box3_area1_contents {
    width: 100% s;
    margin: 12px auto 0;
    max-width: 600px;
  }
}
.point_box3_area1_contents figure {
  width: 85px;
}
@media (min-width: 960px) {
  .point_box3_area1_contents figure {
    width: 100px;
  }
}
.point_box3_area1_contents figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 0 0 5px;
}
.point_box3_area1_contents div {
  padding: 14px 10px 14px 15px;
}
@media (min-width: 960px) {
  .point_box3_area1_contents div {
    display: flex;
    align-items: center;
    padding: 14px 10px 14px 30px;
  }
}
.point_box3_area1_contents p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3616666667;
}
@media (min-width: 960px) {
  .point_box3_area1_contents p {
    font-size: 15px;
    line-height: 1.362;
  }
}
.point_box3_area1_contents p span {
  color: var(--color-red);
  font-weight: 700;
}
.point_box3_area1_contents ul {
  margin-top: 10px;
}
@media (min-width: 960px) {
  .point_box3_area1_contents ul {
    margin-left: 35px;
    margin-top: unset;
  }
}
.point_box3_area1_contents li {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  padding-left: 17px;
}
.point_box3_area1_contents li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 8px;
  top: 6px;
}
@media (min-width: 960px) {
  .point_box3_area1_contents li::before {
    width: 3px;
    height: 3px;
    left: 6px;
    top: 8px;
  }
}
.point_box3_area2 {
  margin: 20px auto 0;
  padding: 0 14px 0 20px;
}
@media (min-width: 960px) {
  .point_box3_area2 {
    margin: 27px auto 0;
  }
}
.point_box3_area2_lead {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 1.361875;
}
@media (min-width: 960px) {
  .point_box3_area2_lead + div {
    max-width: 704px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
}
.point_box3_area2_item {
  display: flex;
  align-items: center;
  margin: 16px auto 0;
  width: 314px;
}
@media (min-width: 960px) {
  .point_box3_area2_item {
    flex-direction: column;
    display: inline-flex;
    margin: 0px auto 0;
    width: 230px;
  }
}
.point_box3_area2_item + .point_box3_area2_item {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .point_box3_area2_item + .point_box3_area2_item {
    margin-top: unset;
  }
}
.point_box3_area2_item_thumb {
  width: 64px;
  height: 67px;
}
@media (min-width: 960px) {
  .point_box3_area2_item_thumb {
    width: 120px;
    height: 120px;
  }
}
.point_box3_area2_item_thumb img {
  width: 100%;
  height: auto;
}
.point_box3_area2_item_body {
  margin-left: 19px;
  width: calc(100% - 64px - 19px);
}
@media (min-width: 960px) {
  .point_box3_area2_item_body {
    width: auto;
    margin: 15px auto 0;
  }
}
.point_box3_area2_item_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3621428571;
  color: #000;
  text-align: center;
}
.point_box3_area2_item_text > span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.362;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .point_box3_area2_item_text > span {
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin: 0 auto;
  }
}
.point_box3_area2_item_text > span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background: #fcff6d;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.point_box3_area2_item_text > span span {
  font-size: 14px;
  line-height: 1.3621428571;
}
.point_box3_area2_item_link {
  color: var(--color-red);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding-right: 25px;
}
@media (min-width: 960px) {
  .point_box3_area2_item_link {
    border: 1px solid;
    height: 34px;
    width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-top: 7px;
  }
}
.point_box3_area2_item_link::after {
  position: absolute;
  content: url(../images/202401/icon/arrow_r.svg);
  right: 12px;
  top: 60%;
  transform: translateY(-50%);
}
.point_box3_area3 {
  background: #fff5f5;
  margin-top: 21px;
  padding: 17px 0;
}
@media (min-width: 960px) {
  .point_box3_area3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 0 27px;
    gap: 20px;
  }
}
.point_box3_area3 p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6666666667;
  width: 295px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .point_box3_area3 p {
    font-size: 16px;
    line-height: 1.625;
    width: 336px;
    margin: unset;
  }
}
.point_box3_area3 li {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.7;
  position: relative;
  padding-left: 0.7em;
  margin-left: 0.5em;
  width: 295px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .point_box3_area3 li {
    font-size: 14px;
    line-height: 1.8571428571;
    width: 376px;
  }
}
.point_box3_area3 li::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-red);
  left: 0;
  top: 7px;
}
.point_box3_area3 li span {
  color: var(--color-red);
}
.point_box3_area4 {
  margin: 20px auto 0;
  padding: 0 14px 0 20px;
}
@media (min-width: 960px) {
  .point_box3_area4 {
    margin: 27px auto 0;
  }
}
.point_box3_area4_lead {
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1.361875;
  display: flex;
  align-items: center;
}
@media (min-width: 960px) {
  .point_box3_area4_lead {
    max-width: 726.9565217391px;
    margin: 0 auto;
    font-size: 18px;
  }
  .point_box3_area4_lead + div {
    max-width: 843.4782608696px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
}
.point_box3_area4_lead::before, .point_box3_area4_lead::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #999999;
}
.point_box3_area4_lead::before {
  margin-right: 1rem;
}
.point_box3_area4_lead::after {
  margin-left: 1rem;
}
@media (min-width: 960px) {
  .point_box3_area4_list {
    display: flex;
    flex-wrap: wrap;
  }
}
.point_box3_area4_item {
  display: flex;
  align-items: center;
  margin: 16px auto 0;
  width: 314px;
}
@media (min-width: 960px) {
  .point_box3_area4_item {
    display: inline-flex;
    width: auto;
    margin: unset;
    width: calc(50% - 10px);
  }
}
.point_box3_area4_item + .point_box3_area4_item {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .point_box3_area4_item + .point_box3_area4_item {
    margin-top: unset;
  }
}
.point_box3_area4_item_thumb {
  width: 64px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .point_box3_area4_item_thumb {
    width: 120px;
    height: auto;
  }
}
.point_box3_area4_item_thumb img {
  width: 50%;
  height: auto;
}
.point_box3_area4_item_body {
  width: calc(100% - 64px);
}
@media (min-width: 960px) {
  .point_box3_area4_item_body {
    width: auto;
  }
}
.point_box3_area4_item_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3621428571;
  color: #000;
}
.point_box3_area4_item_text > span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.362;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .point_box3_area4_item_text > span {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.point_box3_area4_item_text > span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background: #fcff6d;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.point_box3_area4_item_text > span span {
  font-size: 14px;
  line-height: 1.3621428571;
}
.point_box3_area4_item_link {
  color: var(--color-red);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--color-red);
  border-radius: 50px;
  width: 210px;
  height: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  transition: all 0.4s ease;
}
@media (min-width: 960px) {
  .point_box3_area4_item_link {
    border: 1px solid;
    height: 34px;
    width: 230px;
    margin-top: 7px;
    padding-top: 1px;
  }
}
.point_box3_area4_item_link p {
  position: relative;
  padding-right: 13px;
}
@media (min-width: 960px) {
  .point_box3_area4_item_link p {
    padding-right: 15px;
  }
}
.point_box3_area4_item_link p::after {
  position: absolute;
  content: "";
  background-image: url(../images/202401/arrow_red_r.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  transition: all 0.4s ease;
}
@media (min-width: 960px) {
  .point_box3_area4_item_link p::after {
    width: 8px;
    height: 12px;
  }
}
.point_box3_area4_item_link:hover {
  background: var(--color-red);
  color: #fff;
}
.point_box3_area4_item_link:hover p::after {
  background-image: url(../images/202401/arrow_white_r.svg);
}
.point_box3_area5 {
  margin-top: 21px;
  padding: 27px 0 17px;
  position: relative;
}
.point_box3_area5::after {
  position: absolute;
  content: "";
  background: #fff5f5;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 97%;
  height: 5px;
  border-radius: 10px;
}
@media (min-width: 960px) {
  .point_box3_area5 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 0 27px;
    gap: 20px;
  }
}
.point_box3_area5 p {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-red);
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 960px) {
  .point_box3_area5 p {
    font-size: 26px;
    line-height: 1.2;
    width: 336px;
    margin: unset;
  }
}
.point_box3_area5 ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto 0;
}
@media (min-width: 960px) {
  .point_box3_area5 ul {
    margin: unset;
  }
}
.point_box3_area5 li {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  position: relative;
  padding-left: 0.7em;
  margin-left: 0.5em;
  width: 255px;
  margin: 0 auto;
  width: 190px;
}
@media (min-width: 960px) {
  .point_box3_area5 li {
    font-size: 16px;
    line-height: 1.8571428571;
    width: 260px;
    margin: unset;
  }
}
.point_box3_area5 li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 8px;
}
@media (min-width: 960px) {
  .point_box3_area5 li::before {
    top: 12px;
  }
}
.point_box3_area5 li span {
  color: var(--color-red);
}
.point_box4 {
  margin-top: 12px;
  border: unset;
}
@media (min-width: 960px) {
  .point_box4 {
    margin-top: 42px;
  }
}
.point_box4 img {
  width: 100%;
  height: auto;
}
.point_box5 {
  border: unset;
  margin-top: 29px;
  padding: 0 8px;
}
@media (min-width: 960px) {
  .point_box5 {
    margin-top: 42px;
    padding: unset;
  }
}
.point_box5_item {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
@media (min-width: 960px) {
  .point_box5_item {
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
  }
}
.point_box5_item + .point_box5_item {
  margin-top: 22px;
}
@media (min-width: 960px) {
  .point_box5_item + .point_box5_item {
    margin-top: 29px;
  }
}
@media (min-width: 960px) {
  .point_box5_item_body {
    width: 54%;
  }
}
.point_box5_item_head {
  margin-bottom: unset;
  height: 166px;
}
@media (min-width: 960px) {
  .point_box5_item_head {
    width: 50%;
    height: 100%;
  }
}
.point_box5_item_thumb {
  height: 100%;
}
.point_box5_item_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.point_box5_item_title {
  font-size: 16px;
  color: var(--color-red);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffeaea;
  padding: 4.5px 0;
}
@media (min-width: 960px) {
  .point_box5_item_title {
    font-size: 18px;
    height: 50px;
  }
}
.point_box5_item_list1 {
  padding: 6px 13px 13px;
}
@media (min-width: 960px) {
  .point_box5_item_list1 {
    max-width: 392px;
    margin: 10px auto;
  }
}
.point_box5_item_list2 {
  padding: 19px 10px 14px 11px;
}
@media (min-width: 960px) {
  .point_box5_item_list2 {
    max-width: 392px;
    margin: 0px auto;
  }
}
.point_box5_item_listitem {
  display: flex;
  align-items: center;
}
.point_box5_item_listitem + .point_box5_item_listitem {
  margin-top: -2px;
}
@media (min-width: 960px) {
  .point_box5_item_listitem + .point_box5_item_listitem {
    margin-top: 18px;
  }
}
.point_box5_item_listitem figure {
  width: 50px;
  margin-top: 2px;
  margin-left: 1px;
}
.point_box5_item_listitem figure img {
  width: 100%;
  height: auto;
}
.point_box5_item_listitem div {
  margin-left: 15px;
  width: calc(100% - 15px - 51px);
}
.point_box5_item_listitem div .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: unset;
}
@media (min-width: 960px) {
  .point_box5_item_listitem div .title {
    font-size: 17px;
  }
}
.point_box5_item_listitem div .text {
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.3616666667;
}
@media (min-width: 960px) {
  .point_box5_item_listitem div .text {
    font-size: 14px;
  }
}
.point_box5_item_list2item + .point_box5_item_list2item {
  margin-top: 10px;
}
@media (min-width: 960px) {
  .point_box5_item_list2item + .point_box5_item_list2item {
    margin-top: 30px;
  }
}
.point_box6 {
  margin-top: 42.8888888889px;
  border-radius: 11.1111111111px;
  padding-bottom: 19.2222222222px;
  margin-bottom: 41.4444444444px;
}
@media (min-width: 960px) {
  .point_box6 {
    margin-top: 91.5217391304px;
    border-radius: 21.7391304348px;
    padding-bottom: 22.6086956522px;
    margin-bottom: 103.5652173913px;
  }
}
.point_box6_title {
  color: #d00036;
  font-size: 14.2222222222px;
  font-weight: 700;
  background: #ffe8e8;
  border-radius: 55.5555555556px;
  height: 34.8888888889px;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -17.4444444444px auto 0;
  position: relative;
}
@media (min-width: 960px) {
  .point_box6_title {
    font-size: 25px;
    border-radius: 108.6956521739px;
    height: 54.347826087px;
    margin: -27.1739130435px auto 0;
    width: 563.0434782609px;
  }
}
.point_box6_title::after {
  position: absolute;
  content: "";
  background: #ffe8e8;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
  width: 23px;
  height: 21.4444444444px;
}
@media (min-width: 960px) {
  .point_box6_title::after {
    bottom: -31px;
    width: 46px;
    height: 40px;
  }
}
.point_box6_list {
  margin: 16.4444444444px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 960px) {
  .point_box6_list {
    margin: 39.0434782609px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -moz-column-gap: 90px;
         column-gap: 90px;
  }
}
.point_box6_item {
  font-size: 14.2222222222px;
  font-weight: 700;
  line-height: 1.953125;
  position: relative;
  padding-left: 24.4444444444px;
  margin-left: -24.4444444444px;
}
@media (min-width: 960px) {
  .point_box6_item {
    font-size: 21.7391304348px;
    line-height: 2.5;
    padding-left: 47.8260869565px;
    margin-left: unset;
  }
}
.point_box6_item::after {
  position: absolute;
  content: "";
  background-image: url(../images/202401/icon_check.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 4px;
  width: 18.5555555556px;
  height: 18.5555555556px;
}
@media (min-width: 960px) {
  .point_box6_item::after {
    top: 9px;
    width: 36.3043478261px;
    height: 36.3043478261px;
  }
}
@media (min-width: 960px) {
  .point_box7box {
    display: flex;
    -moz-column-gap: 30.4347826087px;
         column-gap: 30.4347826087px;
  }
}
.point_box7 {
  border-radius: 11.1111111111px;
}
@media (min-width: 960px) {
  .point_box7 {
    border-radius: 21.7391304348px;
    width: 50%;
  }
}
.point_box7_head {
  background: #ffe8e8;
  border-radius: 3px 3px 0 0;
  padding: 10.5555555556px 0 10px;
}
@media (min-width: 960px) {
  .point_box7_head {
    border-radius: 11px 11px 0 0;
    padding: 9.8888888889px 0 16.3043478261px;
  }
}
.point_box7_title_sm {
  font-size: 10.6666666667px;
  line-height: 1.7708333333;
  font-weight: 700;
  color: #e6003d;
  text-align: center;
}
@media (min-width: 960px) {
  .point_box7_title_sm {
    font-size: 20.8695652174px;
  }
}
.point_box7_title_lg {
  font-size: 16.6666666667px;
  line-height: 1.1333333333;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 960px) {
  .point_box7_title_lg {
    font-size: 32.6086956522px;
  }
}
.point_box7_body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 17.4444444444px;
       column-gap: 17.4444444444px;
  padding: 16.5555555556px 18px 17.4444444444px;
}
@media (min-width: 960px) {
  .point_box7_body {
    -moz-column-gap: 31.3043478261px;
         column-gap: 31.3043478261px;
    padding: 32.3913043478px 0 39.7826086957px 41.7391304348px;
    justify-content: center;
  }
}
.point_box7_thumb {
  width: 62.8888888889px;
}
@media (min-width: 960px) {
  .point_box7_thumb {
    width: 117.8260869565px;
  }
}
.point_box7_thumb img {
  width: 100%;
  height: auto;
}
.point_box7_item {
  font-size: 13px;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: 0px;
  padding-left: 22px;
  position: relative;
}
@media (min-width: 960px) {
  .point_box7_item {
    font-size: 16px;
    padding-left: 25px;
  }
}
.point_box7_item::after {
  position: absolute;
  content: "";
  background-image: url(../images/pro_listicon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
}
@media (min-width: 960px) {
  .point_box7_item::after {
    top: 2px;
    width: 20px;
    height: 20px;
  }
}
.point_box7_item span {
  font-weight: 600;
  position: relative;
}
.point_box7_item span::after {
  position: absolute;
  content: "";
  background: #fcff6d;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.4444444444px;
  z-index: -1;
}
@media (min-width: 960px) {
  .point_box7_item span::after {
    height: 4.7826086957px;
  }
}
.point_box7_item + .point_box7_item {
  margin-top: 1em;
}
.point_box8 {
  margin-top: 52px;
}
@media (max-width: 959px) {
  .point_box8 {
    margin-top: 11px;
  }
}
.point_box8_contents {
  display: flex;
  gap: 40px;
}
@media (max-width: 959px) {
  .point_box8_contents {
    flex-direction: column;
    gap: 17px;
  }
}
.point_box8_item {
  width: calc(50% - 20px);
}
@media (max-width: 959px) {
  .point_box8_item {
    width: 100%;
  }
}
.point_box8_thumb img {
  width: 100%;
  height: auto;
}
.point_box8_title {
  font-size: 25px;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
  margin-top: 19px;
  padding-left: 37px;
}
@media (max-width: 959px) {
  .point_box8_title {
    font-size: 18px;
    margin-top: 7px;
    padding-left: 34px;
  }
}
.point_box8_title svg {
  position: absolute;
  left: 11px;
  top: 7px;
}
@media (max-width: 959px) {
  .point_box8_title svg {
    left: 2px;
    top: 2px;
  }
}
.point_box8_text {
  margin: 5px 0 0px 37px;
}
@media (max-width: 959px) {
  .point_box8_text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin: 1px 0 0px 34px;
  }
}
.point_box8_small {
  font-size: 10px;
  display: block;
  margin-top: 20px;
}
@media (max-width: 959px) {
  .point_box8_small {
    margin-top: 5px;
    margin-left: 34px;
  }
}
.point-plan {
  padding: 72px min(16px, 8%) 52px;
}
@media (min-width: 960px) {
  .point-plan {
    padding: 100px min(16px, 8%);
  }
}
@media (min-width: 960px) {
  .point-plan_contents {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1115px;
    margin: 0 auto;
  }
}
.point-plan_title {
  font-size: 24px;
  line-height: 1.1666666667;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 960px) {
  .point-plan_title {
    font-size: 40px;
    line-height: 0.7;
  }
}
.point-plan_title2 {
  font-size: 24px;
  line-height: 1.4479166667;
  font-weight: 700;
  margin-left: 12px;
}
.point-plan_item {
  border-radius: 10px;
  margin-top: 40px;
  padding: 10px;
}
@media (min-width: 960px) {
  .point-plan_item {
    margin-top: 47px;
    width: 346px;
  }
}
.point-plan_item:first-of-type {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .point-plan_item:first-of-type {
    margin-top: 47px;
  }
}
.point-plan_item_head {
  display: flex;
  align-items: center;
}
.point-plan_thumb {
  width: 74px;
  height: 74px;
  border-radius: 50px;
}
.point-plan_thumb img {
  width: 100%;
  height: auto;
  border-radius: 50px;
}
.point-plan_body {
  border-radius: 9px;
  margin-top: 14px;
  padding: 18px;
}
.point-plan_listitem {
  font-size: 14px;
  line-height: 1.4478571429;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
}
.point-plan_listitem + .point-plan_listitem {
  margin-top: 4.5px;
}
.point-plan_listitem::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 4px;
  top: 8px;
}
.point-plan_close {
  display: none;
}
.point-plan_open {
  width: 155px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 19px;
  margin: 20px auto 0;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  line-height: 1;
  cursor: pointer;
}
.point-plan_open::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  right: 11px;
  top: 16px;
}
.point-plan_open::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 12px;
  right: 17px;
  top: 11px;
  transition: 0.3s;
}
.point-plan_open.active::after {
  rotate: 90deg;
}
.point-plan_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 243px;
  height: 46px;
  margin: 12px auto 0;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285714286;
  position: relative;
}
.point-plan_button::after {
  position: absolute;
  right: 15px;
  top: 13px;
}
.point-plan_item.koukou {
  border: 3px solid var(--color-koukou);
}
.point-plan_item.koukou .point-plan_title2 {
  color: var(--color-koukou);
}
.point-plan_item.koukou .point-plan_body {
  background: rgba(36, 155, 217, 0.1);
}
.point-plan_item.koukou .point-plan_open {
  color: var(--color-koukou);
}
.point-plan_item.koukou .point-plan_open::before, .point-plan_item.koukou .point-plan_open::after {
  background: var(--color-koukou);
}
.point-plan_item.koukou .point-plan_button {
  background: var(--color-koukou);
}
.point-plan_item.koukou .point-plan_button::after {
  content: url(../images/202401/point_plan_button1.svg);
}
.point-plan_item.chugaku {
  border: 3px solid var(--color-chugaku);
}
.point-plan_item.chugaku .point-plan_title2 {
  color: var(--color-chugaku);
}
.point-plan_item.chugaku .point-plan_body {
  background: rgba(59, 185, 125, 0.1);
}
.point-plan_item.chugaku .point-plan_open {
  color: var(--color-chugaku);
}
.point-plan_item.chugaku .point-plan_open::before, .point-plan_item.chugaku .point-plan_open::after {
  background: var(--color-chugaku);
}
.point-plan_item.chugaku .point-plan_button {
  background: var(--color-chugaku);
}
.point-plan_item.chugaku .point-plan_button::after {
  content: url(../images/202401/point_plan_button2.svg);
}
.point-plan_item.shogaku {
  border: 3px solid var(--color-shogaku);
}
.point-plan_item.shogaku .point-plan_title2 {
  color: var(--color-shogaku);
}
.point-plan_item.shogaku .point-plan_body {
  background: rgba(255, 146, 46, 0.12);
}
.point-plan_item.shogaku .point-plan_open {
  color: var(--color-shogaku);
}
.point-plan_item.shogaku .point-plan_open::before, .point-plan_item.shogaku .point-plan_open::after {
  background: var(--color-shogaku);
}
.point-plan_item.shogaku .point-plan_button {
  background: var(--color-shogaku);
}
.point-plan_item.shogaku .point-plan_button::after {
  content: url(../images/202401/point_plan_button3.svg);
}
.point_sp {
  display: block;
}
@media (min-width: 960px) {
  .point_sp {
    display: none;
  }
}
.point_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .point_sp--flex {
    display: none;
  }
}
.point_pc {
  display: none;
}
@media (min-width: 960px) {
  .point_pc {
    display: block;
  }
}
.point_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .point_pc--flex {
    display: flex;
  }
}

.plan {
  margin-bottom: 103px;
  letter-spacing: normal;
}
.plan_header {
  margin-top: 26px;
}
.plan_header_title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
.plan_header_cloud {
  width: 188px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 20px auto 0;
  font-size: 12px;
  text-align: center;
  font-weight: 700;
  padding-top: 5px;
}
@media (min-width: 960px) {
  .plan_header_cloud {
    width: 238.47px;
    height: 48px;
    font-size: 16px;
    margin: 60px auto 0;
  }
}
@media (min-width: 960px) {
  .plan_header_navbox {
    margin: 42px auto 0;
    max-width: 800px;
    width: 100%;
  }
}
.plan_header_nav {
  display: flex;
  flex-wrap: wrap;
  margin-left: -21px;
  margin-top: -7px;
}
@media (min-width: 960px) {
  .plan_header_nav {
    margin-top: -21px;
    margin-left: -60px;
  }
}
.plan_header_navitem {
  width: calc(50% - 21px);
  margin-left: 21px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  padding-bottom: 12px;
  border-bottom: 1px solid #888888;
  display: flex;
  align-items: flex-end;
  position: relative;
}
@media (min-width: 960px) {
  .plan_header_navitem {
    width: calc(50% - 60px);
    margin-left: 60px;
    font-size: 18px;
    text-align: center;
    justify-content: center;
    margin-top: 22px;
    padding-bottom: 15px;
  }
}
.plan_header_navitem::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .plan_header_navitem::after {
    right: 21px;
    top: 27%;
    transform: translateY(-50%);
  }
}
.plan_header_navitem-2 {
  display: block;
  padding-bottom: 4px;
}
.plan_header_navitem span {
  font-size: 10px;
  line-height: 1.48;
}
@media (min-width: 960px) {
  .plan_header_navitem span {
    font-size: 14px;
  }
}
.plan_header_listbox {
  padding: 26px 12px 16px;
  border-radius: 5px;
  margin-top: 28px;
}
@media (min-width: 960px) {
  .plan_header_listbox {
    max-width: 800px;
    margin: 42px auto 0;
    padding: 21px 12px 28px;
  }
}
.plan_header_listtitle {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4476923077;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-decoration: underline;
}
@media (min-width: 960px) {
  .plan_header_listtitle {
    font-size: 16px;
    line-height: 1.48;
  }
}
.plan_header_listflex {
  margin-top: 6px;
}
@media (min-width: 960px) {
  .plan_header_listflex {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 13px;
  }
}
.plan_header_listitem {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7142857143;
  padding-left: 22px;
  position: relative;
}
@media (min-width: 960px) {
  .plan_header_listitem {
    width: 300px;
  }
}
.plan_header_listitem::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 9px;
  top: 11px;
}
.plan_item {
  margin-top: 30px;
}
@media (min-width: 960px) {
  .plan_item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 1000px;
    margin: 54px auto 0;
    gap: 40px;
  }
}
@media (min-width: 960px) {
  .plan_item-2 {
    flex-direction: row;
  }
}
.plan_item + .plan_item {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .plan_item + .plan_item {
    margin: 48px auto 0;
  }
}
.plan_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
  position: relative;
  padding-top: 44px;
  margin-top: 80px;
}
@media (min-width: 960px) {
  .plan_title {
    font-size: 40px;
    line-height: 1.48;
    padding-top: 60px;
    margin-top: 100px;
  }
}
.plan_title::after {
  position: absolute;
  content: "";
  width: 264px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.plan_title2 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4761904762;
  position: relative;
  padding-left: 20px;
}
@media (min-width: 960px) {
  .plan_title2 {
    font-size: 32px;
    line-height: 1.48;
    padding-left: 30px;
    margin-top: 6px;
  }
}
.plan_title2::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  left: 0;
  bottom: 0;
}
@media (min-width: 960px) {
  .plan_title2::after {
    width: 10px;
  }
}
.plan_thumb {
  margin-top: 5px;
}
@media (min-width: 960px) {
  .plan_thumb {
    width: 400px;
    aspect-ratio: 5/3;
  }
}
.plan_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 960px) {
  .plan_textbox {
    width: 550px;
  }
}
.plan_text {
  font-size: 13px;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.48;
}
@media (min-width: 960px) {
  .plan_text {
    padding-left: 30px;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 28px;
  }
}
.plan_button1 {
  border: #ffeaea 1px solid;
  height: 53px;
  width: 305px;
  border-radius: 6px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .plan_button1 {
    margin: 20px auto 0;
  }
}
.plan_button1 p {
  width: calc(100% - 16px);
  height: 100%;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.48;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .plan_button1 p {
    width: calc(100% - 32px);
    padding-right: 20px;
  }
}
.plan_button1 p::after {
  position: absolute;
  content: url(../images/202401/icon/arrow_r2.svg);
  right: 0;
  top: 55%;
  transform: translateY(-50%);
}
.plan_button2 {
  font-size: 14px;
  font-weight: 700;
  margin: 20px auto 0;
  text-align: center;
  padding-right: 25px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 960px) {
  .plan_button2 {
    font-size: 16px;
    line-height: 1.48;
    width: 100%;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 20px auto 0;
  }
}
.plan_button2 p {
  position: relative;
  padding-right: 33px;
}
@media (min-width: 960px) {
  .plan_button2 p {
    padding-right: 10px;
  }
}
.plan_button2 p::after {
  position: absolute;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .plan_button2 p::after {
    right: -24px;
    top: 58%;
  }
}
.plan_buttons {
  margin: 20px auto 0;
  max-width: 752px;
}
@media (min-width: 960px) {
  .plan_buttons {
    margin: 50px auto 0;
  }
}
.plan_buttons_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 960px) {
  .plan_buttons_box {
    margin-top: -24px;
    margin-left: -36px;
  }
}
.plan_buttons_item {
  width: 100%;
  max-width: 358px;
  margin-top: 16px;
  border: 1px solid #ff922e;
  font-size: 16px;
  font-weight: 700;
  line-height: 26.06px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  border-radius: 50px;
}
@media (min-width: 960px) {
  .plan_buttons_item {
    border: 2px solid #ff922e;
    width: calc(50% - 36px);
    margin-left: 36px;
    margin-top: 24px;
    font-size: 18px;
    padding: 21px 0;
  }
}
.plan_buttons_item:hover {
  background: #ffeedf;
}
.plan_buttons_item p {
  position: relative;
  width: 100%;
  color: #ff922e;
}
.plan_buttons_item p::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow_orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
}
.plan_passed {
  border: #e9e0e0 2px solid;
  padding: 20px 16px 20px;
  margin-top: 30px;
}
@media (min-width: 960px) {
  .plan_passed {
    max-width: 1000px;
    margin: 73px auto 0;
    padding: 28px 16px 23px;
  }
}
.plan_passed_2 {
  height: 347px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 960px) {
  .plan_passed_2 {
    padding: 28px 16px 23px;
    height: auto;
  }
}
.plan_passed_2.active {
  height: auto;
}
.plan_passed_title {
  text-align: center;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.plan_passed_title .red {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.48;
  color: var(--color-red);
}
@media (min-width: 960px) {
  .plan_passed_title .red {
    font-size: 21.73px;
    line-height: 1.4799815923;
  }
}
.plan_passed_title .lg {
  display: block;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.48;
  color: #5e3535;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  margin: 5px auto 0;
}
@media (min-width: 960px) {
  .plan_passed_title .lg {
    font-size: 25.8px;
    padding: 0 35px;
    line-height: 1.4802325581;
  }
}
.plan_passed_title .lg::before, .plan_passed_title .lg::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .plan_passed_title .lg::before, .plan_passed_title .lg::after {
    top: 60%;
  }
}
.plan_passed_title .lg::before {
  content: url(../images/202401/plan_passed_l.svg);
  left: 0;
}
.plan_passed_title .lg::after {
  content: url(../images/202401/plan_passed_r.svg);
  right: 0;
}
.plan_passed_people {
  color: var(--color-red);
  font-weight: 700;
  font-size: 19px;
  text-align: center;
}
@media (min-width: 960px) {
  .plan_passed_people {
    font-size: 30px;
    margin-top: -14px;
  }
}
.plan_passed_people span {
  font-size: 51px;
}
@media (min-width: 960px) {
  .plan_passed_people span {
    font-size: 70px;
  }
}
.plan_passed_name {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.48;
  margin-top: 10px;
}
@media (min-width: 960px) {
  .plan_passed_name {
    max-width: 798px;
    margin: 4px auto 0;
  }
}
.plan_passed_sm {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.48;
  margin-top: 12px;
}
@media (min-width: 960px) {
  .plan_passed_sm {
    max-width: 798px;
    margin: 16px auto 0;
  }
}
.plan_passed_btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-red);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 31%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 128px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 18px;
}
@media (min-width: 960px) {
  .plan_passed_btn {
    display: none;
  }
}
.plan_passed_btn.active {
  display: none;
}
.plan.koukou .plan_header_title {
  color: var(--color-koukou);
}
.plan.koukou .plan_header_cloud {
  background-image: url(../images/202401/plan_cloud.png);
  color: var(--color-red);
}
.plan.koukou .plan_header_navitem::after {
  content: url(../images/202401/plan_nav_koukou.svg);
}
.plan.koukou .plan_header_listbox {
  background: #effaff;
}
.plan.koukou .plan_title::after {
  background: linear-gradient(90deg, rgb(36, 155, 217) 50%, rgb(183, 230, 255) 50%);
}
.plan.koukou .plan_title2 {
  color: var(--color-koukou);
}
.plan.koukou .plan_title2::after {
  background: var(--color-koukou);
}
.plan.koukou .plan_button2 {
  color: var(--color-koukou);
}
@media (min-width: 960px) {
  .plan.koukou .plan_button2 {
    background: #f8fdff;
  }
}
.plan.koukou .plan_button2 p::after {
  content: url(../images/202401/plan_nav_koukou.svg);
}
.plan.chugaku .plan_header_title {
  color: var(--color-chugaku);
}
.plan.chugaku .plan_header_cloud {
  background-image: url(../images/202401/plan_cloud.png);
  color: var(--color-red);
}
.plan.chugaku .plan_header_navitem::after {
  content: url(../images/202401/plan_nav_chugaku.svg);
}
.plan.chugaku .plan_header_listbox {
  background: #eaf8f2;
}
.plan.chugaku .plan_title::after {
  background: linear-gradient(90deg, rgb(59, 185, 125) 50%, rgb(146, 227, 189) 50%);
}
.plan.chugaku .plan_title2 {
  color: var(--color-chugaku);
}
.plan.chugaku .plan_title2::after {
  background: var(--color-chugaku);
}
.plan.chugaku .plan_button2 {
  color: var(--color-chugaku);
}
@media (min-width: 960px) {
  .plan.chugaku .plan_button2 {
    background: #f3fdf8;
  }
}
.plan.chugaku .plan_button2 p::after {
  content: url(../images/202401/plan_nav_chugaku.svg);
}
.plan.shogaku .plan_header_title {
  color: var(--color-shogaku);
}
.plan.shogaku .plan_header_cloud {
  background-image: url(../images/202401/plan_cloud.png);
  color: var(--color-red);
}
.plan.shogaku .plan_header_navitem::after {
  content: url(../images/202401/plan_nav_shogaku.svg);
}
.plan.shogaku .plan_header_listbox {
  background: #fff3e8;
}
.plan.shogaku .plan_title::after {
  background: linear-gradient(90deg, rgb(255, 146, 46) 50%, rgb(255, 196, 148) 50%);
}
.plan.shogaku .plan_title2 {
  color: var(--color-shogaku);
}
.plan.shogaku .plan_title2::after {
  background: var(--color-shogaku);
}
.plan.shogaku .plan_button2 {
  color: var(--color-shogaku);
}
@media (min-width: 960px) {
  .plan.shogaku .plan_button2 {
    background: #fff9f4;
  }
}
.plan.shogaku .plan_button2 p::after {
  content: url(../images/202401/plan_nav_shogaku.svg);
}
.plan .cta {
  padding: 34px 0 0;
}
.plan_sp {
  display: block;
}
@media (min-width: 960px) {
  .plan_sp {
    display: none;
  }
}
.plan_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .plan_sp--flex {
    display: none;
  }
}
.plan_pc {
  display: none;
}
@media (min-width: 960px) {
  .plan_pc {
    display: block;
  }
}
.plan_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .plan_pc--flex {
    display: flex;
  }
}

.structure {
  background: #f8f5e8;
  padding: 47px 19px 34px;
}
.structure_title {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.347826087;
  text-align: center;
}
.structure_item {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  height: 84px;
  margin-top: 50px;
}
.structure_item + .structure_item {
  margin-top: 13px;
}
.structure_thumb {
  margin: auto 0;
  width: 79px;
}
.structure_thumb img {
  width: 100%;
  height: auto;
}
.structure_body {
  padding: 0 11px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.structure_body h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6315789474;
  color: #000;
}
.structure_body p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1923076923;
  color: #000;
}

.detail {
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .detail .container {
    max-width: 1032px;
    margin: 0 auto;
    padding: 0 16px;
  }
}
@media (min-width: 960px) {
  .detail .detail_other.container {
    max-width: unset;
    padding: 40px 16px;
    width: 100vw;
    margin: 72px calc(50% - 50vw) 0;
  }
}
@media (min-width: 960px) {
  .detail .detail-head.container {
    max-width: unset;
    padding: 43px calc(50vw - 50%) 60px;
    margin: 0px calc(50% - 50vw) 0;
    width: 100vw;
  }
}
.detail-head {
  border-radius: 10px;
}
.detail-head_title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
@media (min-width: 960px) {
  .detail-head_title {
    font-size: 18px;
    line-height: 1.48;
  }
}
.detail-head_title span {
  color: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.48;
  display: block;
}
@media (min-width: 960px) {
  .detail-head_title span {
    font-size: 30px;
    line-height: 1.7;
  }
}
.detail-head_title2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
  color: var(--color-red);
}
.detail-head_title3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285714286;
  text-align: center;
}
.detail-head_title4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
@media (min-width: 960px) {
  .detail-head_title4 {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.detail-head_contents {
  background: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  margin-top: 8px;
}
@media (min-width: 960px) {
  .detail-head_contents {
    max-width: 999px;
    margin: 12px auto 0;
    padding: 30px 10px;
  }
}
.detail-head_contents2 {
  background: #fff;
  border-radius: 10px;
  padding: 20px 10px 37px 10px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .detail-head_contents2 {
    padding: 23px 10px 37px 10px;
    max-width: 999px;
    margin: 30px auto 0;
  }
}
.detail-head_nav > div + div {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .detail-head_nav {
    max-width: 802px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .detail-head_nav > div {
    max-width: 370px;
    width: 50%;
  }
  .detail-head_nav > div + div {
    margin-left: 62px;
    margin-top: unset;
  }
}
.detail-head_navitem {
  background: #fff5f5;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5714285714;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-top: 13px;
  padding: 11.5px 20px 11.5px 33px;
}
@media (min-width: 960px) {
  .detail-head_navitem {
    padding: 11.5px 20px 11.5px 51px;
  }
}
.detail-head_navitem + .detail-head_navitem {
  margin-top: 6px;
}
@media (min-width: 960px) {
  .detail-head_navitem + .detail-head_navitem {
    margin-top: 4px;
  }
}
.detail-head_navitem + .detail-head_title2 {
  margin-top: 20px;
}
.detail-head_navitem::before {
  position: absolute;
  content: url(../images/202401/Q.svg);
  left: 8px;
  top: 30%;
}
@media (min-width: 960px) {
  .detail-head_navitem::before {
    left: 21px;
  }
}
.detail-head_navitem::after {
  position: absolute;
  content: url(../images/202401/arrow_red.svg);
  right: 8px;
  top: 62%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .detail-head_navitem::after {
    right: 22px;
    top: 58%;
  }
}
.detail-head_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 16px auto 0;
}
@media (min-width: 960px) {
  .detail-head_list {
    margin: 14px auto 0;
    max-width: 605px;
    justify-content: space-between;
  }
}
.detail-head_listitem {
  display: flex;
  align-items: center;
  width: 137px;
}
@media (min-width: 960px) {
  .detail-head_listitem {
    width: unset;
  }
}
@media (min-width: 960px) {
  .detail-head_listitem figure {
    display: flex;
    align-items: center;
  }
}
.detail-head_listitem p {
  font-size: 8px;
  font-weight: 700;
  width: 86px;
  margin-left: 6px;
}
@media (min-width: 960px) {
  .detail-head_listitem p {
    font-size: 12px;
    line-height: 1.48;
    width: unset;
  }
}
.detail-head_listitem p span {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 960px) {
  .detail-head_listitem p span {
    font-size: 16px;
    line-height: 1.48;
  }
}
.detail-head_button {
  color: var(--color-red);
  border: 2px solid;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 700;
  margin: -27px auto 0;
  max-width: 260px;
  width: 100%;
  background: #fff;
}
@media (min-width: 960px) {
  .detail-head_button {
    margin: -24px auto 0;
  }
}
.detail-head_button p {
  position: relative;
  padding-left: 27px;
  padding-right: 17px;
}
.detail-head_button p::after {
  position: absolute;
  content: url(../images/202401/question-mark-circle.svg);
  left: 0;
  top: 64%;
  transform: translateY(-50%);
}
.detail-head_button p::before {
  position: absolute;
  content: url(../images/202401/arrow_red_r.svg);
  right: 0;
  top: 57%;
  transform: translateY(-50%);
}
.detail_sectitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.48;
  color: var(--color-red);
  text-align: center;
}
@media (min-width: 960px) {
  .detail_sectitle {
    font-size: 40px;
    line-height: 1.48;
  }
}
.detail_sectitle_1 {
  margin-top: 10px;
}
@media (min-width: 960px) {
  .detail_sectitle_1 {
    margin-top: 55px;
  }
}
.detail_sectitle_2 {
  margin-top: 84px;
}
@media (min-width: 960px) {
  .detail_sectitle_2 {
    margin-top: 100px;
  }
}
.detail_title {
  border-left: 8px solid #e6003d;
  border-right: 8px solid #e6003d;
  background: #ffeaea;
  text-align: left;
  padding-left: 22px;
  font-size: 20px;
  min-height: 60px;
  display: flex;
  align-items: center;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
  padding-left: 64px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 960px) {
  .detail_title {
    margin: unset;
    width: 100%;
    font-size: 26px;
    padding-top: 19px;
    padding-bottom: 18px;
    padding-left: 93px;
  }
}
.detail_title::before {
  position: absolute;
  content: url(../images/202401/Q2.svg);
  left: 24px;
  top: 18px;
}
@media (min-width: 960px) {
  .detail_title::before {
    content: "";
    background: url(../images/202401/Q2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 31px;
    height: 51px;
    left: 50px;
    top: 27px;
  }
}
.detail_q1 {
  margin-top: 29px;
}
@media (min-width: 960px) {
  .detail_q1 {
    margin-top: 39px;
  }
}
.detail_q2 {
  margin-top: 10px;
}
@media (min-width: 960px) {
  .detail_q2 {
    margin-top: 34px;
  }
}
.detail_q3 {
  margin-top: 60px;
}
@media (min-width: 960px) {
  .detail_q3 {
    margin-top: 73px;
  }
}
.detail_q3_thumb {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .detail_q3_thumb {
    margin-top: unset;
    max-width: 487px;
  }
}
.detail_q3_thumb img {
  width: 100%;
  height: auto;
}
.detail_q3_button {
  width: 288px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: 50px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 16px;
  margin: 3px auto 0;
}
@media (min-width: 960px) {
  .detail_q3_button {
    width: 288px;
    margin: 0 0 10px 18px;
  }
}
.detail_q3_button p {
  position: relative;
  padding: 0 30px;
}
.detail_q3_button p::before {
  position: absolute;
  content: url(../images/202401/detail_q3_icon.svg);
  left: 0;
  top: 0;
}
.detail_q3_button p::after {
  position: absolute;
  content: url(../images/202401/detail_q3_arrow.svg);
  right: 0;
  top: 0;
}
.detail_q3_listbox {
  border: 1px solid var(--color-red);
  border-radius: 10px;
  margin-top: 12px;
  padding: 14px 12px;
}
@media (min-width: 960px) {
  .detail_q3_listbox {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 19px 12px;
  }
  .detail_q3_listbox > div {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
}
.detail_q3_listbox p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3616666667;
}
@media (min-width: 960px) {
  .detail_q3_listbox p {
    text-align: center;
  }
}
@media (min-width: 960px) {
  .detail_q3_list {
    max-width: 300px;
    width: 50%;
  }
  .detail_q3_list + .detail_q3_list {
    margin-left: 60px;
  }
}
.detail_q3_listitem {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5714285714;
  padding-left: 20px;
  position: relative;
}
.detail_q3_listitem::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  left: 9px;
  top: 10px;
}
.detail_q4 {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .detail_item {
    margin-top: 10px;
  }
  .detail_item-1 {
    margin-top: 80px;
  }
  .detail_item-1 .detail_item_list {
    margin-top: 10px;
  }
  .detail_item-1 .detail_item_listitem {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 5px;
    padding-left: 24px;
  }
  .detail_item-2 {
    margin-top: 43px;
  }
  .detail_item-2 .detail_item_list {
    margin-top: 10px;
  }
  .detail_item-2 .detail_item_listitem {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 5px;
    padding-left: 24px;
  }
  .detail_item-2 .detail_item_title .lg2 {
    line-height: 1.9;
  }
  .detail_item-3 {
    margin-top: 43px;
  }
  .detail_item-3 .detail_item_list {
    margin-top: 10px;
  }
  .detail_item-3 .detail_item_listitem {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 5px;
    padding-left: 24px;
  }
  .detail_item-3 .detail_item_title .lg2 {
    line-height: 1.9;
  }
  .detail_item-4 {
    margin-top: 43px;
  }
  .detail_item-4 .detail_item_list {
    margin-top: 10px;
  }
  .detail_item-4 .detail_item_listitem {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 5px;
    padding-left: 24px;
  }
  .detail_item-4 .detail_item_title .lg2 {
    line-height: 1.9;
  }
  .detail_item-5 {
    margin-top: 43px;
  }
  .detail_item-5 .detail_item_list {
    margin-top: 10px;
  }
  .detail_item-5 .detail_item_listitem {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 5px;
    padding-left: 24px;
  }
  .detail_item-5 .detail_item_title .lg2 {
    line-height: 1.9;
  }
  .detail_item-6 {
    margin-top: 43px;
  }
  .detail_item-6 .detail_item_thumb {
    max-width: 417px;
  }
  .detail_item-6 .detail_item_body {
    margin-left: 22.74px;
  }
  .detail_item-6 .detail_item_list {
    margin-top: 10px;
  }
  .detail_item-6 .detail_item_listitem {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 5px;
    padding-left: 24px;
  }
  .detail_item-6 .detail_item_title .lg2 {
    line-height: 1.9;
  }
}
@media (min-width: 960px) {
  .detail_item_flex {
    display: flex;
  }
}
@media (min-width: 960px) {
  .detail_item_flex2 {
    display: flex;
    justify-content: center;
    align-items: end;
    max-width: 795px;
    margin: 39px auto 0;
  }
}
.detail_item_title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .detail_item_title {
    text-align: left;
    font-size: 22px;
    line-height: 1.3454545455;
    margin-top: unset;
  }
  .detail_item_title-1 {
    text-align: center;
    margin-top: 48px;
  }
}
.detail_item_title .red {
  color: var(--color-red);
}
.detail_item_title .lg {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.48;
}
@media (min-width: 960px) {
  .detail_item_title .lg {
    font-size: 37px;
    line-height: 2;
  }
}
.detail_item_title .lg2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.48;
}
@media (min-width: 960px) {
  .detail_item_title .lg2 {
    font-size: 37px;
    line-height: 1.48;
  }
}
.detail_item_title .lg3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.48;
}
@media (min-width: 960px) {
  .detail_item_title .lg3 {
    font-size: 30px;
    line-height: 1.6;
  }
}
.detail_item_list {
  margin-top: 6px;
}
@media (min-width: 960px) {
  .detail_item_list {
    max-width: 800px;
    margin: 28px auto 0;
  }
}
.detail_item_listitem {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857143;
  position: relative;
  padding-left: 21px;
}
@media (min-width: 960px) {
  .detail_item_listitem {
    font-size: 16px;
  }
}
.detail_item_listitem::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 10px;
  top: 10px;
}
.detail_item_listitem span {
  color: var(--color-red);
}
.detail_item_thumb {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .detail_item_thumb {
    max-width: 400px;
    margin-top: unset;
  }
}
.detail_item_thumb + .detail_item_title {
  margin-top: 10px;
}
.detail_item_thumb + .detail_item_title + .detail_item_list {
  margin-top: 13px;
}
.detail_item_thumb img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .detail_item_body {
    margin-left: 40px;
  }
}
.detail_box1 {
  border-radius: 5px;
  margin-top: 47px;
  border: #eeeeee 3px solid;
  border-radius: 5px;
}
@media (min-width: 960px) {
  .detail_box1 {
    display: flex;
    position: relative;
    margin-top: 41px;
  }
}
.detail_box1_head {
  background: #eeeeee;
  color: #434343;
  font-weight: 700;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  height: 24.71px;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
  padding: 0 10px 0 3px;
}
@media (min-width: 960px) {
  .detail_box1_head {
    position: absolute;
    left: 0;
    top: -0.5px;
    font-size: 18px;
    height: 32px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
    padding: 0 16px 0 6px;
  }
}
.detail_box1_mvbox {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}
@media (min-width: 960px) {
  .detail_box1_mvbox {
    width: 50%;
    align-items: center;
    padding: 10px 0px 17px 0px;
  }
}
.detail_box1_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3125;
  text-align: center;
  margin-top: 14px;
  color: #434343;
  margin-top: 13px;
}
@media (min-width: 960px) {
  .detail_box1_title {
    font-size: 22.47px;
    line-height: 1.2995104584;
    margin-top: 5px;
    margin-left: -3px;
  }
}
.detail_box1_title span {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .detail_box1_title span {
    font-size: 33.7px;
    line-height: 1.2997032641;
  }
}
.detail_box1_title span::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 100%;
  z-index: -1;
  background: #fcff6d;
  left: 0;
  bottom: 0;
}
.detail_box1_mv {
  width: 175px;
  margin-left: -3px;
}
@media (min-width: 960px) {
  .detail_box1_mv {
    margin-left: 33px;
  }
}
.detail_box1_mv img {
  width: 100%;
  height: auto;
}
.detail_box1_list {
  background: #eeeeee;
  padding: 16px 11.5px;
  margin-top: 30px;
}
@media (min-width: 960px) {
  .detail_box1_list {
    margin-top: unset;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 7px;
  }
}
.detail_box1_item {
  color: #434343;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 400;
  padding-left: 17px;
  position: relative;
}
@media (min-width: 960px) {
  .detail_box1_item {
    font-size: 16px;
    line-height: 2;
    width: 370px;
    margin-top: 10px;
    padding-left: 27px;
  }
}
.detail_box1_item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 4px;
  top: 8px;
}
@media (min-width: 960px) {
  .detail_box1_item::before {
    left: 12px;
    top: 14px;
    width: 4.5px;
    height: 4.5px;
  }
}
.detail_box2 {
  border-radius: 5px;
  margin-top: 30px;
  border: #ffeaea 3px solid;
  border-radius: 5px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .detail_box2 {
    display: flex;
    position: relative;
    margin-top: 30px;
  }
  .detail_box2 > div {
    width: 50%;
    padding: 45px 0px 25px;
  }
}
.detail_box2_head {
  background: #ffeaea;
  color: var(--color-red);
  font-weight: 700;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  height: 24.71px;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
  padding: 0 10px 0 3px;
}
@media (min-width: 960px) {
  .detail_box2_head {
    position: absolute;
    left: 0;
    top: -0.5px;
    font-size: 18px;
    height: 32px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
    padding: 0 16px 0 6px;
  }
}
.detail_box2_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3125;
  text-align: center;
  margin-top: 14px;
}
@media (min-width: 960px) {
  .detail_box2_title {
    font-size: 22.47px;
    line-height: 1.2995104584;
    margin-top: 5px;
    margin-left: -3px;
  }
}
.detail_box2_title > span {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .detail_box2_title > span {
    font-size: 33.7px;
    line-height: 1.5;
  }
}
.detail_box2_title > span::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 100%;
  z-index: -1;
  background: #fcff6d;
  left: 0;
  bottom: 0;
}
.detail_box2_mv {
  width: 296px;
  margin: -13px auto 0;
}
@media (min-width: 960px) {
  .detail_box2_mv {
    margin: 0 auto;
  }
}
.detail_box2_mv img {
  width: 100%;
  height: auto;
}
.detail_box2_list {
  background: #ffeaea;
  padding: 16px 11.5px;
  margin-top: 6px;
}
@media (min-width: 960px) {
  .detail_box2_list {
    margin-top: unset;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 11px;
  }
}
.detail_box2_item {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.48;
  padding-left: 17px;
  position: relative;
}
@media (min-width: 960px) {
  .detail_box2_item {
    font-size: 16px;
    line-height: 2;
    width: 370px;
    margin-top: 10px;
    padding-left: 27px;
  }
}
.detail_box2_item + .detail_box2_item {
  margin-top: 10px;
}
.detail_box2_item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 4px;
  top: 8px;
}
@media (min-width: 960px) {
  .detail_box2_item::before {
    left: 12px;
    top: 14px;
    width: 4.5px;
    height: 4.5px;
  }
}
.detail_box2_item span {
  color: var(--color-red);
}
.detail_pro {
  margin-top: 42px;
}
@media (min-width: 960px) {
  .detail_pro {
    margin-top: 82px;
  }
  .detail_pro > div {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 24px;
  }
}
.detail_pro_title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .detail_pro_title {
    font-size: 20px;
    line-height: 1.362;
  }
}
.detail_pro_title .lg {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3622222222;
}
@media (min-width: 960px) {
  .detail_pro_title .lg {
    font-size: 23px;
    line-height: 1.362173913;
  }
}
.detail_pro_title .yellow {
  color: #76673e;
}
@media (min-width: 960px) {
  .detail_pro_title .yellow {
    color: var(--color-red);
  }
}
.detail_pro_title2 {
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}
@media (min-width: 960px) {
  .detail_pro_title2 {
    text-align: left;
    font-size: 20px;
    max-width: 400px;
    margin: 0 40px 0 auto;
  }
}
.detail_pro_title3 {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 14px;
}
@media (min-width: 960px) {
  .detail_pro_title3 {
    font-size: 16px;
    margin: 24px 40px 0 auto;
    max-width: 400px;
  }
}
.detail_pro_thumb {
  margin-top: 18px;
}
@media (min-width: 960px) {
  .detail_pro_thumb {
    margin-top: unset;
    width: 450px;
  }
}
.detail_pro_thumb img {
  width: 100%;
  height: auto;
}
.detail_pro_body {
  background: #f8f5e8;
  padding: 18px 10.5px 20px;
  border-radius: 0 0 10px 10px;
  margin-top: -6px;
}
@media (min-width: 960px) {
  .detail_pro_body {
    background: #f9f9f9;
    width: calc(100% - 450px);
    border-radius: 10px 0 0px 10px;
    padding: 35px 10.5px 20px;
  }
}
.detail_pro_list {
  margin-top: 6px;
}
@media (min-width: 960px) {
  .detail_pro_list {
    margin: 12px 40px 0 auto;
    max-width: 400px;
  }
}
.detail_pro_listitem {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  padding-left: 19px;
  position: relative;
  margin-left: 5px;
}
@media (min-width: 960px) {
  .detail_pro_listitem {
    font-size: 16px;
    line-height: 1.48;
    margin-left: unset;
    padding-left: 16px;
  }
  .detail_pro_listitem + .detail_pro_listitem {
    margin-top: 5px;
  }
}
.detail_pro_listitem::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  left: 10px;
  top: 10px;
}
@media (min-width: 960px) {
  .detail_pro_listitem::before {
    left: 6px;
    top: 10px;
  }
}
.detail_pro_listitem span {
  color: #76673e;
  font-weight: 700;
}
@media (min-width: 960px) {
  .detail_pro_listitem span {
    color: var(--color-red);
  }
}
.detail_pro_button {
  margin-top: 9px;
  background: #76673e;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  width: 320px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
@media (min-width: 960px) {
  .detail_pro_button {
    background: var(--color-red);
    max-width: 400px;
    margin: 26px 80px 0 auto;
  }
}
.detail_pro_button p {
  position: relative;
  padding-right: 20px;
}
@media (min-width: 960px) {
  .detail_pro_button p {
    padding-right: 32px;
  }
}
.detail_pro_button p::after {
  position: absolute;
  content: url(../images/202401/pro_arrow.svg);
  right: 0;
  top: 2px;
}
@media (min-width: 960px) {
  .detail_pro_button p::after {
    right: 7px;
  }
}
.detail_cta {
  margin: 0 auto;
  width: 100vw;
}
.detail_other {
  padding: 35px 16px;
  margin-top: 74px;
}
.detail_other_title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285714286;
  text-align: center;
}
@media (min-width: 960px) {
  .detail_other_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1111111111;
  }
}
.detail_other_button {
  width: 288px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: 50px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 16px;
  margin: 15px auto 0;
  background: #fff;
}
@media (min-width: 960px) {
  .detail_other_button {
    margin: 18px auto 0;
    height: 60px;
    font-size: 18px;
    width: 370px;
  }
}
.detail_other_button + .detail_other_button {
  margin: 15px auto 0;
}
.detail_other_button p {
  position: relative;
  padding: 0 30px;
}
@media (min-width: 960px) {
  .detail_other_button p {
    margin-top: 3px;
  }
}
.detail_other_button p::before {
  position: absolute;
  content: url(../images/202401/detail_q3_icon.svg);
  left: 0;
  top: 0;
}
.detail_other_button p::after {
  position: absolute;
  content: url(../images/202401/detail_q3_arrow.svg);
  right: 0;
  top: 0;
}
.detail_other_button_2 p::before {
  content: url(../images/202401/question-mark-circle.svg);
}
.detail_sp {
  display: block;
}
@media (min-width: 960px) {
  .detail_sp {
    display: none;
  }
}
.detail_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .detail_sp--flex {
    display: none;
  }
}
.detail_pc {
  display: none;
}
@media (min-width: 960px) {
  .detail_pc {
    display: block;
  }
}
.detail_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .detail_pc--flex {
    display: flex;
  }
}
.detail_pc--inline {
  display: none;
}
@media (min-width: 960px) {
  .detail_pc--inline {
    display: inline-block;
  }
}

.pro {
  padding: 0 0;
}
@media (min-width: 960px) {
  .pro_header {
    background: #fcfcfc;
  }
}
.pro_header_contents {
  position: relative;
}
@media (min-width: 960px) {
  .pro_header_contents {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.pro_header_mv {
  width: 100%;
  height: 171px;
}
@media (min-width: 960px) {
  .pro_header_mv {
    height: 340px;
    max-width: 746px;
    margin-left: auto;
  }
}
.pro_header_mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pro_header_textbox {
  position: absolute;
  left: 16px;
  top: 56%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .pro_header_textbox {
    width: 500px;
    height: 200px;
    left: 0;
  }
}
.pro_header_title {
  background: var(--color-red);
  font-size: 24px;
  font-weight: 700;
  height: 40px;
  width: 243px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 0 10px 0 10px;
}
@media (min-width: 960px) {
  .pro_header_title {
    border-radius: 0 13.41px 0 13.41px;
    height: 53.64px;
    width: 320px;
    font-size: 32px;
    line-height: 1;
  }
}
.pro_header_text {
  color: #fff;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 700;
  text-align: left;
  margin-top: 6px;
  letter-spacing: normal;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}
@media (min-width: 960px) {
  .pro_header_text {
    color: #000;
    margin-top: 31px;
    font-size: 18px;
    line-height: 1.48;
    text-shadow: unset;
  }
}
.pro_header_lead {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  width: 100%;
  font-size: 18px;
  height: 56px;
  color: #fff;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .pro_header_lead {
    font-size: 22px;
  }
}
.pro_main {
  max-width: 1000px;
  margin: 0 auto;
}
.pro_main .cta {
  padding: 40px 0;
}
.pro_title {
  font-size: 20px;
  line-height: 1.437;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-top: 48px;
  letter-spacing: 0.28em;
}
@media (min-width: 960px) {
  .pro_title {
    font-size: 38px;
    line-height: 1.4371052632;
    margin-top: 80px;
    letter-spacing: 0.3em;
  }
}
.pro_title2 {
  border-left: 8px solid #e6003d;
  border-right: 8px solid #e6003d;
  background: #ffeaea;
  text-align: left;
  padding-left: 22px;
  font-size: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  width: 100vw;
  margin: 26px calc(50% - 50vw) 0;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .pro_title2 {
    font-size: 26px;
    height: 80px;
    width: 100%;
    margin: 39px auto 0;
    padding-left: 32px;
  }
}
.pro_title2_2 {
  margin-top: 60px;
}
.pro_title2_3 {
  margin-top: 46px;
}
@media (min-width: 960px) {
  .pro_title2_3 {
    margin-top: 87px;
  }
}
.pro_title3 {
  border-left: 6px solid #e6003d;
  border-bottom: 1px solid #e6003d;
  text-align: left;
  padding-left: 14px;
  font-size: 18px;
  font-weight: 700;
  height: 40px;
  display: flex;
  align-items: center;
  letter-spacing: normal;
  margin-top: 40px;
}
@media (min-width: 960px) {
  .pro_title3 {
    font-size: 22px;
    padding-left: 33px;
    height: 50px;
    width: 100%;
    margin: 51px auto 0;
  }
}
.pro_item1 {
  margin-top: 30px;
}
@media (min-width: 960px) {
  .pro_item1 {
    margin-top: 40px;
  }
}
.pro_item1_contents {
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .pro_item1_contents {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  .pro_item1_thumb {
    width: 42%;
  }
}
.pro_item1_thumb img {
  width: 100%;
  height: auto;
}
.pro_item1_list {
  margin-top: 11px;
}
@media (min-width: 960px) {
  .pro_item1_list {
    margin-left: 39px;
    margin-top: 20px;
  }
}
.pro_item1_listitem {
  font-size: 16px;
  line-height: 1.361875;
  font-weight: 500;
  position: relative;
  padding-left: 29px;
  margin-left: 10px;
  letter-spacing: normal;
}
.pro_item1_listitem::after {
  position: absolute;
  content: url(../images/202401/pro_listicon.svg);
  left: 0;
  top: 0;
}
@media (min-width: 960px) {
  .pro_item1_listitem {
    font-size: 18px;
    line-height: 1.3622222222;
  }
}
.pro_item1_listitem + .pro_item1_listitem {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .pro_item1_listitem + .pro_item1_listitem {
    margin-top: 15px;
  }
}
.pro_item1_listitem span {
  color: var(--color-red);
  font-weight: 700;
}
@media (min-width: 960px) {
  .pro_item2_contents {
    display: flex;
  }
}
.pro_item2_title {
  color: var(--color-red);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.48;
  text-align: center;
  margin-top: 25px;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .pro_item2_title {
    font-size: 30px;
    line-height: 1.48;
    text-align: left;
    margin-top: 30px;
  }
}
.pro_item2_title span {
  font-size: 16px;
  line-height: 1.48;
}
@media (min-width: 960px) {
  .pro_item2_title span {
    font-size: 20px;
    line-height: 1.48;
  }
}
.pro_item2_text {
  font-size: 14px;
  line-height: 1.3621428571;
  font-weight: 400;
  text-align: center;
  margin-top: 6px;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .pro_item2_text {
    font-size: 16px;
    line-height: 1.361875;
    text-align: left;
    margin-top: 18px;
  }
}
.pro_item2_box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #f9f9f9;
  padding: 26px 38px;
  margin-top: 28px;
}
@media (min-width: 960px) {
  .pro_item2_box .pro_item2_text {
    text-align: center;
    font-size: 14px;
    line-height: 1.3621428571;
    margin-top: unset;
    padding: 33px 10px;
  }
}
@media (min-width: 960px) {
  .pro_item2_body {
    width: 50%;
  }
}
.pro_item2_thumb {
  width: 96%;
  margin-top: 13px;
  margin-left: 11px;
}
@media (min-width: 960px) {
  .pro_item2_thumb {
    width: 47.5%;
    margin-top: 43px;
    margin-left: 15px;
  }
}
.pro_item2_thumb img {
  width: 100%;
  height: auto;
}
.pro_item3 {
  margin-top: 55px;
}
@media (min-width: 960px) {
  .pro_item3 {
    margin-top: 51px;
  }
}
.pro_item3_thumb {
  width: 91%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .pro_item3_thumb {
    width: 601px;
  }
}
.pro_item3_thumb img {
  width: 100%;
  height: auto;
}
.pro_item3_title {
  color: var(--color-red);
  font-size: 23px;
  line-height: 2;
  font-weight: 700;
  display: block;
  text-align: center;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .pro_item3_title {
    font-size: 30px;
    line-height: 1.48;
  }
}
.pro_item3_title span {
  color: #000;
  font-size: 16px;
  line-height: 1.48;
  display: block;
}
@media (min-width: 960px) {
  .pro_item3_title span {
    font-size: 20px;
    line-height: 1.48;
  }
}
.pro_item3_list {
  margin-top: 6px;
}
@media (min-width: 960px) {
  .pro_item3_list {
    margin: 18px auto 0;
    max-width: 800px;
  }
}
.pro_item3_listitem {
  font-size: 14px;
  line-height: 1.7142857143;
  list-style: disc;
  margin-left: 1.6em;
}
@media (min-width: 960px) {
  .pro_item3_listitem {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: normal;
  }
}
.pro_item3_body {
  margin-top: 20px;
}
@media (min-width: 960px) {
  .pro_item3_body {
    margin-top: 41px;
  }
}
.pro_achievements {
  margin-top: 15px;
}
@media (min-width: 960px) {
  .pro_achievements {
    margin-top: 20px;
  }
}
.pro_achievements_title {
  font-size: 24px;
  line-height: 1.48;
  font-weight: 700;
  color: var(--color-red);
  text-align: center;
}
@media (min-width: 960px) {
  .pro_achievements_title {
    font-size: 30px;
    line-height: 1.48;
  }
}
.pro_achievements_title2 {
  font-size: 20px;
  color: var(--color-red);
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  padding: 0 60px;
}
@media (min-width: 960px) {
  .pro_achievements_title2 {
    padding: 0 78px;
    font-size: 40px;
    padding: 0 50px;
  }
}
.pro_achievements_title2::before, .pro_achievements_title2::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
  height: 67px;
}
@media (min-width: 960px) {
  .pro_achievements_title2::before, .pro_achievements_title2::after {
    width: 78px;
    height: 105px;
  }
}
.pro_achievements_title2::before {
  background-image: url(../images/202401/pro_title_l.svg);
  left: 0;
}
.pro_achievements_title2::after {
  background-image: url(../images/202401/pro_title_r.svg);
  right: 0;
}
.pro_achievements_contents {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 17px 1px 24px;
  overflow-x: auto;
}
@media (min-width: 960px) {
  .pro_achievements_contents {
    border: 2px solid rgba(230, 0, 61, 0.5);
    border-radius: 10px;
    padding: 0px 100px 50px 100px;
    display: block;
    overflow-x: unset;
    margin-top: 16px;
  }
}
.pro_achievements_box {
  border: 2px solid rgba(230, 0, 61, 0.5);
  border-radius: 10px;
  padding: 35px 1.5em 12px;
  width: 300px;
}
@media (min-width: 960px) {
  .pro_achievements_box {
    border: unset;
    padding-top: 50px;
    width: auto;
  }
}
.pro_achievements_text {
  font-size: 13px;
  text-align: center;
  width: 250px;
  margin-top: 30px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .pro_achievements_text {
    font-size: 16px;
    margin-top: 2em;
    width: auto;
  }
}
.pro_achievements_small {
  font-size: 10px;
  display: block;
  text-align: right;
  margin-top: 18px;
}
@media (min-width: 960px) {
  .pro_achievements_small {
    font-size: 12px;
  }
}
.pro_experiences {
  margin-top: 50px;
}
@media (min-width: 960px) {
  .pro_experiences {
    margin-top: 100px;
  }
}
.pro_experiences_title {
  font-size: 24px;
  line-height: 1.48;
  font-weight: 700;
  color: var(--color-red);
  text-align: center;
}
@media (min-width: 960px) {
  .pro_experiences_title {
    font-size: 30px;
    line-height: 1.48;
  }
}
.pro_experiences_lead {
  font-size: 16px;
  line-height: 1.776;
  font-weight: 700;
  color: var(--color-red);
  text-align: center;
}
@media (min-width: 960px) {
  .pro_experiences_lead {
    font-size: 24px;
    line-height: 1.85;
  }
}
.pro_experiences_list {
  border: 3px solid rgb(242, 242, 242);
  border-radius: 10px;
  margin-top: 10px;
  padding: 18px 20px;
}
@media (min-width: 960px) {
  .pro_experiences_list {
    margin-top: 19px;
    padding: 36px 20px;
  }
}
.pro_experiences_item {
  display: flex;
  align-items: center;
}
@media (min-width: 960px) {
  .pro_experiences_item {
    max-width: 800px;
    margin: 0 auto;
  }
}
.pro_experiences_item + .pro_experiences_item {
  border-top: 3px solid rgb(242, 242, 242);
  margin-top: 20px;
  padding-top: 20px;
}
.pro_experiences_thumb {
  width: 72px;
  height: 72px;
}
@media (min-width: 960px) {
  .pro_experiences_thumb {
    width: 100px;
    height: 100px;
  }
}
.pro_experiences_thumb img {
  width: 100%;
  height: auto;
}
.pro_experiences_text {
  font-size: 14px;
  margin-left: 10px;
  width: calc(100% - 72px - 10px);
  line-height: 1.5;
}
@media (min-width: 960px) {
  .pro_experiences_text {
    font-size: 16px;
    margin-left: 30px;
    width: calc(100% - 100px - 30px);
  }
}
.pro_experiences_small {
  display: block;
  text-align: right;
}
.pro_introduction {
  margin-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 960px) {
  .pro_introduction {
    padding-bottom: 80px;
  }
}
.pro_introduction_title {
  font-size: 24px;
  line-height: 1.48;
  font-weight: 700;
  color: var(--color-red);
  text-align: center;
  letter-spacing: normal;
}
@media (min-width: 960px) {
  .pro_introduction_title {
    font-size: 30px;
    line-height: 1.48;
  }
}
.pro_introduction_lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 15px;
  letter-spacing: normal;
}
.pro_introduction_small {
  display: block;
}
@media (min-width: 960px) {
  .pro_introduction_small {
    text-align: right;
  }
}
.pro_introduction .c-tab {
  margin-top: 40px;
}
.pro_introduction .c-tab__head {
  position: relative;
}
.pro_introduction .c-tab__btn-items {
  position: relative;
  display: flex;
  margin: 0;
  padding-bottom: 3px;
  list-style: none;
}
.pro_introduction .c-tab__btn-items._fit > .c-tab__btn-item {
  flex: 1 1 0%;
}
.pro_introduction .c-tab__btn-items._scroll {
  overflow-x: scroll;
}
.pro_introduction .c-tab__btn-items._scroll > .c-tab__btn-item {
  flex-shrink: 0;
}
.pro_introduction .c-tab__btn-items._multi {
  flex-wrap: wrap;
}
.pro_introduction .c-tab__btn-item {
  padding: 0;
}
.pro_introduction .c-tab__btn-item,
.pro_introduction .c-tab__btn-item button {
  position: relative;
  display: flex;
  width: 12.5%;
}
.pro_introduction .c-tab__btn-item button {
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 1rem;
  overflow: visible;
  color: #333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: 0.3s;
}
.pro_introduction .c-tab__btn-item button:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  background: #e6e6e6;
  content: "";
}
.pro_introduction .c-tab._type2 .c-tab__btn-item button {
  background: #f1f1f1;
}
.pro_introduction .c-tab._type2 .c-tab__btn-item button:before {
  display: none;
}
.pro_introduction .c-tab._pro .c-tab__btn-item button.is-selected {
  color: var(--color-red);
}
.pro_introduction .c-tab__btn-item button.is-selected:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  background: var(--color-red);
  content: "";
}
.pro_introduction .c-tab__contents {
  margin-top: 4rem;
}
.pro_introduction .c-tab__content {
  display: none;
}
.pro_introduction .c-tab__content[aria-hidden=false] {
  display: block;
}
.pro_introduction .c-tab__btn-item button:hover {
  text-decoration: none;
  background: #e6e6e6;
}
.pro_introduction .l-row > .l-col._s3 {
  width: 25%;
}
.pro_introduction .p-teachersList._bg {
  padding: 15px;
  background: #f8f8f8;
  border: 1px solid #e6e6e6;
  position: relative;
  height: 100%;
}
.pro_introduction .p-teachersList__image {
  text-align: center;
  width: 95px;
  height: 95px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.pro_introduction .p-teachersList__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.pro_introduction .p-teachersList__name {
  font-size: 18px;
}
.pro_introduction .p-teachersList._pro .p-teachersList__resultTitle {
  font-size: 16px;
  color: var(--color-red);
}
.pro_introduction .p-teachersList__resultText {
  font-size: 16px;
  line-height: 1.4;
}
.pro_introduction .pro-percentage {
  margin: 20px auto;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}
.pro_introduction .percentage {
  width: 100%;
  max-width: 500px;
}
.pro_introduction .p-teachersList__pro {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 2px 10px 3px;
  color: #fff;
  font-size: 1.1rem;
  background: var(--color-red);
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 1;
  height: 27px;
  padding-top: 3px;
}
.pro_introduction .l-row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.75rem;
  align-items: stretch;
}
.pro_introduction .l-row.m\:_gap-x10 > .l-col {
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 2rem;
  color: inherit;
}
.pro_introduction .l-row.m\:_gap-x10 > a.l-col {
  transition: all 0.4s ease;
}
.pro_introduction .l-row.m\:_gap-x10 > a.l-col:hover {
  opacity: 0.8;
}
.pro_introduction .l-row.m\:_gap-x10 > a.l-col .p-teachersList {
  display: flex;
  flex-direction: column;
}
.pro_introduction .l-row.m\:_gap-x10 > a.l-col .p-teachersList__body {
  flex-grow: 1;
}
.pro_introduction .p-teachersList__image._round img {
  border-radius: 1000px;
}
@media (max-width: 767px) {
  .pro_introduction .p-scroll-sp {
    padding-bottom: 1rem;
    padding-left: 5%;
    overflow-x: scroll;
  }
  .pro_introduction .s\:u-w-auto {
    width: auto !important;
  }
  .pro_introduction .l-row.s\:_singleline {
    flex-wrap: nowrap;
  }
  .pro_introduction .p-teachersList__outer._sp-scroll .p-teachersList {
    width: 23rem;
  }
  .pro_introduction .s\:u-content-inner-full {
    margin-right: calc((100vw - 100%) / 2 * -1);
    margin-left: calc((100vw - 100%) / 2 * -1);
  }
  .pro_introduction .c-tab__btn-items._sp-full {
    margin-right: calc((100vw - 100%) / 2 * -1);
    margin-left: calc((100vw - 100%) / 2 * -1);
    padding: 0 5vw;
  }
  .pro_introduction .c-tab__btn-items.s\:_scroll {
    overflow-x: scroll;
  }
  .pro_introduction .c-tab__btn-item button {
    padding: 0.5rem;
    font-size: 1.4rem;
  }
  .pro_introduction .c-tab__btn-items.s\:_scroll > .c-tab__btn-item button {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .pro_introduction .c-tab__btn-items.s\:_scroll > .c-tab__btn-item {
    flex-shrink: 0;
  }
  .pro_introduction .c-tab__btn-item,
  .pro_introduction .c-tab__btn-item button {
    width: auto;
  }
  .pro_introduction .p-scroll-sp__inner {
    padding: 10px 0;
  }
}
.pro_detail {
  padding: 30px 0px 60px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .pro_detail {
    padding: 60px 20px 120px;
    max-width: 1040px;
  }
}
.pro_detail_title {
  text-align: center;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.48;
  font-weight: 700;
}
@media (min-width: 960px) {
  .pro_detail_title {
    font-size: 30px;
  }
}
.pro_detail_lead {
  text-align: center;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (min-width: 960px) {
  .pro_detail_lead {
    margin-top: 20px;
  }
}
.pro_detail_lead span {
  position: relative;
}
.pro_detail_lead span::after {
  position: absolute;
  content: "※";
  width: 0.7em;
  height: 0.7em;
  font-size: 0.7em;
  right: 0;
  top: -1em;
}
.pro_detail_lead::after {
  position: absolute;
  content: "※講習会を受講している教師数（2024年3月31日時点。）";
  font-size: 0.7em;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.5em;
  width: 100%;
}
.pro_detail_subject {
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
  padding: 8px;
}
@media (min-width: 960px) {
  .pro_detail_subject {
    margin-top: 60px;
    font-size: 24px;
    padding: 13px;
  }
}
.pro_detail_contents {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .pro_detail_contents {
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-top: 40px;
  }
}
.pro_detail_contents_body {
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .pro_detail_contents_body {
    width: calc(100% - 300px - 40px);
    margin-top: unset;
  }
}
.pro_detail_contents_head {
  width: 100%;
}
@media (min-width: 960px) {
  .pro_detail_contents_head {
    width: 300px;
  }
}
.pro_detail_contents_title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}
@media (min-width: 960px) {
  .pro_detail_contents_title {
    font-size: 30px;
    margin-bottom: 1em;
  }
}
.pro_detail_contents_text {
  margin-top: 1em;
  font-size: 14px;
}
@media (min-width: 960px) {
  .pro_detail_contents_text {
    font-size: 16px;
    line-height: 1.6;
  }
}
.pro_detail_contents_list {
  margin-top: 1em;
  margin-left: 1em;
}
.pro_detail_contents_list li {
  list-style: disc;
  font-size: 14px;
}
@media (min-width: 960px) {
  .pro_detail_contents_list li {
    font-size: 16px;
    line-height: 1.6;
  }
}
.pro_detail_contents_thumb {
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .pro_detail_contents_thumb {
    width: 100%;
  }
}
.pro_detail_contents_thumb img {
  width: 100%;
  height: auto;
}
.pro_detail_contents_name {
  font-family: "Noto Serif JP", serif;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  margin-top: 13px;
  line-height: 1.6;
  font-size: 22px;
}
@media (min-width: 960px) {
  .pro_detail_contents_name {
    font-size: 26px;
  }
}
.pro_detail_contents_name2 {
  text-align: center;
  line-height: 1.6;
  font-size: 18px;
}
@media (min-width: 960px) {
  .pro_detail_contents_name2 {
    font-size: 20px;
  }
}
.pro_detail_contents_school {
  padding: 7px 15px;
  background: #ffeaea;
  font-weight: 500;
  margin-top: 11px;
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 960px) {
  .pro_detail_contents_school {
    padding: 14px 30px;
  }
}
.pro_detail_contents_school span {
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 1em;
  display: inline-block;
}
.pro_detail_link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border: 2px solid;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  border-radius: 50px;
  width: 256px;
  height: 42px;
  transition: all 0.4s ease;
}
.pro_detail_link p {
  font-weight: 700;
  font-size: 16px;
  line-height: 42px;
  position: relative;
}
.pro_detail_link p::after {
  position: absolute;
  content: "";
  background-image: url(../images/202401/chevron-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 960px) {
  .pro_detail_link {
    margin: 80px auto 0;
  }
}
.pro_detail_link:hover {
  opacity: 0.8;
}
.pro_detail_link2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border: 2px solid;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
  border-radius: 50px;
  max-width: 256px;
  width: 100%;
  padding: 10px 24px;
  transition: all 0.4s ease;
  position: relative;
}
.pro_detail_link2::after {
  position: absolute;
  content: "";
  background-image: url(../images/202401/chevron-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pro_detail_link2 p {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  width: 100%;
  text-align: center;
}
@media (min-width: 960px) {
  .pro_detail_link2 {
    margin: 10px auto 0;
  }
}
.pro_detail_link2:hover {
  opacity: 0.8;
}
.pro_sp {
  display: block;
}
@media (min-width: 960px) {
  .pro_sp {
    display: none;
  }
}
.pro_sp--flex {
  display: flex;
}
@media (min-width: 960px) {
  .pro_sp--flex {
    display: none;
  }
}
.pro_pc {
  display: none;
}
@media (min-width: 960px) {
  .pro_pc {
    display: block;
  }
}
.pro_pc--flex {
  display: none;
}
@media (min-width: 960px) {
  .pro_pc--flex {
    display: flex;
  }
}

.sapix {
  max-width: 1000px;
  margin: 0 auto;
}
.sapix-about {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 73px calc(50vw - 50%) 100px;
  background: #f9f9f9;
}
@media (max-width: 750px) {
  .sapix-about {
    padding: 34px calc(50vw - 50%) 50px;
  }
}
.sapix-about_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4666666667;
  text-align: center;
}
@media (max-width: 750px) {
  .sapix-about_title {
    font-size: 17px;
    line-height: 1.48;
  }
}
.sapix-about_box_title {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4782608696;
  background: var(--color-red);
  color: #fff;
  max-width: 362px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px 8px;
  border-radius: 5px;
  margin: 26px auto 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (max-width: 750px) {
  .sapix-about_box_title {
    font-size: 18px;
    padding: 6px 5px 6px;
    max-width: 280px;
    margin: 22px auto 0;
  }
}
.sapix-about_box_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 62px 10px 50px;
  margin-top: -32px;
}
@media (max-width: 750px) {
  .sapix-about_box_text {
    font-size: 14px;
    line-height: 2;
    text-align: left;
    padding: 50px 10px 26px;
  }
}
.sapix-about_cloud {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.48;
  color: var(--color-red);
  text-align: center;
  max-width: 268px;
  width: 100%;
  height: 58px;
  border-radius: 5px;
  margin: 70px auto 0;
  padding-top: 8px;
  background-image: url(../images/202401/plan_cloud.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 750px) {
  .sapix-about_cloud {
    font-size: 12px;
    line-height: 1.48;
    max-width: 188px;
    margin: 40px auto 0;
  }
}
.sapix-about_nav {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-top: -20px;
}
@media (max-width: 750px) {
  .sapix-about_nav {
    margin-left: unset;
    margin-top: -2px;
  }
}
.sapix-about_navitem {
  width: calc(33.3333333333% - 20px);
  margin-left: 20px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .sapix-about_navitem {
    width: 100%;
    flex-direction: row;
    margin-top: unset;
    margin-left: unset;
  }
}
.sapix-about_navitem_thumb {
  aspect-ratio: 80/49;
}
@media (max-width: 750px) {
  .sapix-about_navitem_thumb {
    width: 100px;
  }
}
.sapix-about_navitem_thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.sapix-about_navitem_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
  border-bottom: #888888 solid 1px;
  color: #000;
  padding: 0 20px;
}
@media (max-width: 750px) {
  .sapix-about_navitem_title {
    width: calc(100% - 100px);
    font-size: 14px;
    line-height: 1.48;
    padding: unset;
    text-align: left;
  }
}
.sapix-about_navitem_title span {
  padding: 15px 35px;
  position: relative;
  display: block;
}
@media (max-width: 750px) {
  .sapix-about_navitem_title span {
    padding: 20px 35px 20px 16px;
  }
}
.sapix-about_navitem_title span::after {
  position: absolute;
  content: "";
  background-image: url(../images/sapix/icon_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.sapix-about_reco {
  background: #fff;
  margin-top: 60px;
  padding: 40px 10px 39px;
}
@media (max-width: 750px) {
  .sapix-about_reco {
    margin-top: 50px;
    padding: 28px 16px 26px;
  }
}
.sapix-about_reco_title {
  text-align: center;
}
.sapix-about_reco_title--sm {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
  display: block;
}
@media (max-width: 750px) {
  .sapix-about_reco_title--sm {
    font-size: 14px;
    line-height: 1.48;
  }
}
.sapix-about_reco_title--lg {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.48;
  display: block;
  margin-top: 6px;
}
@media (max-width: 750px) {
  .sapix-about_reco_title--lg {
    font-size: 20px;
    line-height: 1.48;
    margin-top: 3px;
  }
}
.sapix-about_reco_list {
  margin: 32px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 21px;
}
@media (max-width: 750px) {
  .sapix-about_reco_list {
    margin: 26px auto 0;
    padding-left: unset;
  }
}
.sapix-about_reco_listitem {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.48;
  position: relative;
  padding-left: 39px;
}
@media (max-width: 750px) {
  .sapix-about_reco_listitem {
    font-size: 14px;
    line-height: 1.48;
    padding-left: 30px;
  }
}
.sapix-about_reco_listitem + .sapix-about_reco_listitem {
  margin-top: 22px;
}
@media (max-width: 750px) {
  .sapix-about_reco_listitem + .sapix-about_reco_listitem {
    margin-top: 18px;
  }
}
.sapix-about_reco_listitem::after {
  position: absolute;
  content: "";
  background-image: url(../images/sapix/icon_check.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 30px;
  height: 25px;
}
@media (max-width: 750px) {
  .sapix-about_reco_listitem::after {
    width: 21px;
    height: 21px;
  }
}
.sapix-about_reco_listitem span {
  color: var(--color-red);
  font-weight: 700;
}
.sapix_section {
  padding: 80px 0;
}
@media (max-width: 750px) {
  .sapix_section {
    padding: 28px 0 40px;
  }
}
.sapix_section_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
}
@media (max-width: 750px) {
  .sapix_section_nav {
    gap: unset;
    -moz-column-gap: 12px;
         column-gap: 12px;
    justify-content: flex-start;
  }
}
.sapix_section_nav_item {
  width: 190px;
}
@media (max-width: 750px) {
  .sapix_section_nav_item:nth-of-type(odd) {
    width: 53%;
  }
  .sapix_section_nav_item:nth-of-type(even) {
    width: 43%;
  }
}
.sapix_section_nav_item a {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
  border-bottom: #888888 1px solid;
  position: relative;
  display: block;
  padding-bottom: 35px;
}
@media (max-width: 750px) {
  .sapix_section_nav_item a {
    text-align: left;
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.48;
  }
}
.sapix_section_nav_item a::after {
  position: absolute;
  content: "";
  background-image: url(../images/sapix/icon_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
}
@media (max-width: 750px) {
  .sapix_section_nav_item a::after {
    bottom: 17%;
    transform: translateY(-50%);
    left: unset;
    right: 0;
  }
}
.sapix_section_nav_item.active a {
  color: var(--color-red);
}
.sapix_item_title {
  margin-top: 60px;
}
@media (max-width: 750px) {
  .sapix_item_title {
    margin-top: 50px;
  }
}
.sapix_item_title_sm {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  display: block;
}
@media (max-width: 750px) {
  .sapix_item_title_sm {
    font-size: 14px;
    line-height: 1.3;
  }
}
.sapix_item_title_lg {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  display: block;
  color: var(--color-red);
  margin-top: 5px;
}
@media (max-width: 750px) {
  .sapix_item_title_lg {
    font-size: 24px;
    line-height: 1.3;
  }
}
.sapix_item_contents {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 60px;
}
@media (max-width: 750px) {
  .sapix_item_contents {
    flex-direction: column;
    -moz-column-gap: unset;
         column-gap: unset;
    row-gap: 11px;
    margin-top: 12px;
  }
}
.sapix_item_contents_head {
  width: 50%;
}
@media (max-width: 750px) {
  .sapix_item_contents_head {
    width: 100%;
  }
}
.sapix_item_contents_head img {
  width: 100%;
  height: auto;
}
.sapix_item_contents_body {
  width: 50%;
}
@media (max-width: 750px) {
  .sapix_item_contents_body {
    width: 100%;
  }
}
.sapix_item_contents_text {
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .sapix_item_contents_text {
    font-size: 14px;
    line-height: 1.6;
  }
}
.sapix_item_contents_text.bold {
  font-weight: 700;
}
.sapix_item_contents_text + .sapix_item_contents_text {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .sapix_item_contents_text + .sapix_item_contents_text {
    margin-top: 21px;
  }
}
.sapix_point {
  border: #ffeaea 4px solid;
  border-radius: 10px;
  margin-top: 115px;
  padding: 0px 10px 75px;
}
@media (max-width: 750px) {
  .sapix_point {
    margin-top: 70px;
    padding: 0px 10px 25px;
  }
}
.sapix_point_title {
  background: #fff;
  padding: 0 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: -44px auto 0;
}
@media (max-width: 750px) {
  .sapix_point_title {
    padding: 0 10px;
    margin: -23px auto 0;
  }
}
.sapix_point_title_sm {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: block;
}
@media (max-width: 750px) {
  .sapix_point_title_sm {
    font-size: 14px;
  }
}
.sapix_point_title_lg {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: block;
}
@media (max-width: 750px) {
  .sapix_point_title_lg {
    font-size: 20px;
  }
}
.sapix_point_title_lg span {
  font-size: 40px;
  color: var(--color-red);
}
@media (max-width: 750px) {
  .sapix_point_title_lg span {
    font-size: 28px;
  }
}
.sapix_point_list {
  max-width: 800px;
  margin: 0 auto;
}
.sapix_point_item {
  margin-top: 64px;
}
@media (max-width: 750px) {
  .sapix_point_item {
    margin-top: 28px;
  }
}
.sapix_point_item + .sapix_point_item {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .sapix_point_item + .sapix_point_item {
    margin-top: 27px;
  }
}
.sapix_point_item_title {
  display: flex;
  align-items: center;
  background: var(--color-red);
}
.sapix_point_item_title_sm {
  background: var(--color-red);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 100%;
}
@media (max-width: 750px) {
  .sapix_point_item_title_sm {
    width: 50px;
    font-size: 22px;
  }
}
.sapix_point_item_title_lg {
  font-size: 20px;
  line-height: 1.6;
  background: #fff5f5;
  width: calc(100% - 70px);
  display: flex;
  align-items: center;
  padding: 19px 20px;
}
@media (max-width: 750px) {
  .sapix_point_item_title_lg {
    font-size: 16px;
    line-height: 1.4933333333;
    width: calc(100% - 50px);
    padding: 7px 10px;
  }
}
.sapix_point_item_text {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .sapix_point_item_text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 13px;
  }
}
.sapix_point_item_text + .sapix_point_item_text {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .sapix_point_item_text + .sapix_point_item_text {
    margin-top: 20px;
  }
}
.sapix .hidden {
  display: block;
}
@media (max-width: 750px) {
  .sapix .hidden {
    display: none;
  }
}

.online {
  font-family: "Noto Sans JP", sans-serif;
}
.online_inner {
  max-width: 740px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .online_inner {
    padding: 0 16px;
  }
}
.online_inner2 {
  max-width: 840px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .online_inner2 {
    padding: 0 16px;
  }
}
.online_title {
  background-color: #FFEAEA;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 8px #E6003D solid;
  border-right: 8px #E6003D solid;
  padding: 18px 20px 20px;
}
@media (max-width: 767px) {
  .online_title {
    font-size: 20px;
    line-height: 130%;
    text-align: left;
    justify-content: flex-start;
    padding: 17px 20px 18px;
  }
}
.online_lead {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .online_lead {
    font-size: 14px;
    margin-top: 30px;
  }
}
.online_lead.-center {
  text-align: center;
}
@media (max-width: 767px) {
  .online_lead.-center {
    text-align: left;
  }
}
.online-header {
  padding: 24px 0;
}
@media (max-width: 970px) {
  .online-header {
    padding: 12px 0;
  }
}
.online-header_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-right: 237px;
  padding-left: 10px;
}
@media (max-width: 970px) {
  .online-header_inner {
    padding-right: 90px;
  }
}
.online-header_head {
  display: flex;
  gap: 25px;
}
@media (max-width: 970px) {
  .online-header_head {
    gap: 7px;
  }
}
.online-header .header_logo {
  width: 327px;
}
@media (max-width: 970px) {
  .online-header .header_logo {
    width: 100px;
  }
}
.online-header .header_logo img {
  width: 100%;
  height: auto;
}
.online-header_lead {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-top: 5px;
}
@media (max-width: 970px) {
  .online-header_lead {
    font-size: 10px;
    letter-spacing: -0.02em;
    padding-top: 1px;
  }
}
.online-header_link {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 970px) {
  .online-header_link {
    gap: 3px;
  }
}
.online-header_link a, .online-header_link span {
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 970px) {
  .online-header_link a, .online-header_link span {
    font-size: 9px;
  }
}
.online-header_link span {
  background-color: #242424;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media (max-width: 970px) {
  .online-header_link span {
    width: 18px;
    height: 18px;
  }
}
.online-header_link a {
  color: #242424;
}
.online-header_button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 8px 8px;
  background-color: #E6003D;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 217px;
  height: 120px;
  position: absolute;
  right: 0;
  top: -25px;
}
.online-header_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  height: 100%;
}
@media (max-width: 970px) {
  .online-header_button {
    border-radius: 0 0 4px 4px;
    width: 82px;
    height: 53px;
    font-size: 12px;
    line-height: 1.2;
    top: -12px;
  }
}
.online-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}
@media (max-width: 767px) {
  .online-cta {
    padding: 40px 26px;
  }
}
.online-cta_button {
  max-width: 620px;
  width: 100%;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .online-cta_button {
    font-size: 16px;
    height: 52px;
  }
}
.online-cta_button::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .online-cta_button::after {
    width: 18px;
    height: 18px;
  }
}
.online-cta_button::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 10px;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .online-cta_button::before {
    right: 16px;
    top: 51%;
  }
}
.online-cta_button.-color1 {
  background-color: #4CC3C1;
}
.online-cta_button.-color1::before {
  background-color: #4CC3C1;
}
.online-cta_button.-color2 {
  background-color: #E6003D;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .online-cta_button.-color2 {
    margin-top: 15px;
  }
}
.online-cta_button.-color2::before {
  background-color: #E6003D;
}
.online-cta_button:hover {
  opacity: 0.7;
}
.online-cta_small {
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #939292;
  display: block;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .online-cta_small {
    font-size: 10px;
    margin-top: 14px;
  }
}
.online-kv img {
  width: 100%;
  height: auto;
}
.online-about {
  margin-bottom: -10px;
}
.online-about_text {
  font-size: 17px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .online-about_text {
    font-size: 14px;
    line-height: 120%;
    margin-top: 24px;
  }
}
.online-about_text sup {
  font-size: 8px;
  letter-spacing: 0.01em;
  display: contents;
}
.online-about_bg {
  background-color: #FFF5F5;
  padding: 20px;
  margin-top: 26px;
}
@media (max-width: 767px) {
  .online-about_bg {
    padding: 16px 10px;
  }
}
.online-about_bg strong {
  color: #E6003D;
  font-size: 34px;
  line-height: 120%;
  font-weight: 900;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .online-about_bg strong {
    font-size: 24px;
  }
}
.online-about_bg strong sup {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -0.06em;
  display: contents;
}
.online-about_bg p {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 767px) {
  .online-about_bg p {
    font-size: 14px;
    margin-top: 5px;
  }
}
.online-about_small {
  margin-top: 20px;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #939292;
  display: block;
}
@media (max-width: 767px) {
  .online-about_small {
    font-size: 10px;
    margin-top: 18px;
    line-height: 120%;
  }
}
.online-service {
  background-color: #F5F5F5;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .online-service {
    margin-top: -11px;
    padding-bottom: 42px;
  }
}
.online-service_list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 767px) {
  .online-service_list {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
}
.online-service_item {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: calc(50% - 7.5px);
  min-height: 150px;
}
@media (max-width: 767px) {
  .online-service_item {
    width: 100%;
    min-height: 90px;
  }
}
.online-service_item:nth-of-type(1) svg {
  margin: 0 0 0 -60px;
}
@media (max-width: 767px) {
  .online-service_item:nth-of-type(1) svg {
    margin: 4px 0 0 -42px;
    width: 60px;
  }
}
.online-service_item:nth-of-type(2) svg {
  margin: 0 0 0 -20px;
}
@media (max-width: 767px) {
  .online-service_item:nth-of-type(2) svg {
    margin: 0px 0 0 -2px;
    width: 60px;
  }
}
.online-service_item:nth-of-type(3) svg {
  margin: 0 0 0 -40px;
}
@media (max-width: 767px) {
  .online-service_item:nth-of-type(3) svg {
    margin: 4px 0 0 -42px;
    width: 60px;
  }
}
.online-service_item:nth-of-type(5) {
  width: 100%;
}
@media (max-width: 767px) {
  .online-service_item:nth-of-type(5) svg {
    margin: 4px 0 0 36px;
    width: 100px;
  }
}
.online-service_item figure {
  width: 80px;
}
@media (max-width: 767px) {
  .online-service_item figure {
    width: 60px;
    margin: 13px 0 0 -20px;
  }
}
.online-service_item figure img {
  width: 100%;
  height: auto;
}
.online-service_item h3 {
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .online-service_item h3 {
    font-size: 20px;
  }
}
.online-our {
  padding: 0 0 60px;
  background-image: url(../images/online/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .online-our {
    background-image: url(../images/online/bg-sp.webp);
    padding: 0 0 25px;
  }
}
.online-our_box {
  background-color: #fff;
  padding: 60px 40px 40px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .online-our_box {
    margin-top: 38px;
    padding: 25px 15px 22px;
  }
}
.online-our_box h3 {
  font-size: 60px;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(135deg, #c49103 23%, #daaa1c 49%, #c49103 75%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
@media (max-width: 767px) {
  .online-our_box h3 {
    font-size: 25px;
  }
}
.online-our_box h3 img {
  width: 100%;
  height: auto;
}
.online-our_box h3 sup {
  font-size: 8px;
  letter-spacing: 0.01em;
  display: contents;
}
.online-our_box strong {
  display: block;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: center;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .online-our_box strong {
    font-size: 20px;
    line-height: 100%;
    margin-top: 15px;
  }
}
.online-our_box strong sup {
  font-size: 8px;
  letter-spacing: 0.01em;
  display: contents;
}
.online-our_box p {
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 767px) {
  .online-our_box p {
    font-size: 12px;
    line-height: 120%;
  }
}
.online-our_box p.-text1 {
  margin-top: 9px;
}
.online-our_box p.-text2 {
  margin-top: 3px;
}
@media (max-width: 767px) {
  .online-our_box p.-text2 {
    margin-top: 8px;
  }
}
.online-our small {
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-top: 20px;
  display: block;
}
@media (max-width: 767px) {
  .online-our small {
    font-size: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .online-step .online_lead, .online-step .online-step_list {
    padding: 0 10px;
  }
}
.online-step_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .online-step_list {
    gap: 15px;
    margin-top: 20px;
  }
}
.online-step_item {
  border: #E6003D 1px solid;
  border-radius: 10px;
  padding: 40px 40px 33px;
}
@media (max-width: 767px) {
  .online-step_item {
    padding: 20px 14px 18px;
  }
}
.online-step_inner {
  max-width: 540px;
  margin: 0 auto;
}
.online-step_title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
  color: #E6003D;
}
@media (max-width: 767px) {
  .online-step_title {
    font-size: 16px;
    letter-spacing: 0;
    gap: 5px;
  }
}
.online-step_title span {
  background-color: #E6003D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: 62px;
  height: 31px;
}
@media (max-width: 767px) {
  .online-step_title span {
    width: 43px;
    height: 20px;
    font-size: 10px;
  }
}
.online-step_text {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-top: 9px;
}
@media (max-width: 767px) {
  .online-step_text {
    font-size: 14px;
    line-height: 130%;
    margin-top: 5px;
  }
}
.online-step_bg {
  background-color: #FFEAEA;
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.01em;
  margin: 10px 0 7px;
}
@media (max-width: 767px) {
  .online-step_bg {
    padding: 10px 8px;
  }
}
.online-step_bg span {
  text-decoration: underline;
}
.online-step_bg.-type2 {
  padding: 10px 30px;
}
@media (max-width: 767px) {
  .online-step_bg.-type2 {
    padding: 10px 9px;
  }
}
.online-find {
  background-color: #F5F5F5;
  padding: 0 0 60px;
}
@media (max-width: 767px) {
  .online-find {
    padding: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .online-find .online_lead {
    padding: 0 10px;
    font-size: 16px;
    line-height: 150%;
  }
}
.online-find_list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .online-find_list {
    margin-top: 30px;
    padding: 0 10px;
  }
}
.online-find_item {
  border: #E6003D 1px solid;
  background-color: #fff;
  border-radius: 10px;
}
.online-find_item.-item2 {
  margin: 50px 0 0 0;
}
@media (max-width: 767px) {
  .online-find_item.-item2 {
    margin: 40px 10px 0;
  }
}
.online-find_item.-item2 .online-find_inner {
  padding: 30px 40px 32px;
}
@media (max-width: 767px) {
  .online-find_item.-item2 .online-find_inner {
    padding: 18px 23px 26px;
  }
}
.online-find_item.-item2 .online-find_title {
  margin: -6px 0 11px;
}
@media (max-width: 767px) {
  .online-find_item.-item2 .online-find_title {
    margin: unset;
  }
}
@media (max-width: 767px) {
  .online-find_item.-item2 .online-find_inner figure img {
    aspect-ratio: unset;
  }
}
.online-find_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 40px 40px 32px;
}
@media (max-width: 767px) {
  .online-find_inner {
    flex-direction: column;
    padding: 25px 22px 25px;
    gap: 0;
  }
}
.online-find_inner figure {
  width: 37%;
}
@media (max-width: 767px) {
  .online-find_inner figure {
    width: 100%;
    margin-top: 18px;
  }
}
.online-find_inner figure img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .online-find_inner figure img {
    aspect-ratio: 275/138;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.online-find_inner div {
  width: 59.5%;
}
@media (max-width: 767px) {
  .online-find_inner div {
    width: 100%;
  }
}
.online-find_fultitle {
  width: 100%;
  background-color: #E6003D;
  color: #fff;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}
.online-find_title {
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #E6003D;
  margin: -10px 0 8px;
}
@media (max-width: 767px) {
  .online-find_title {
    margin: unset;
  }
}
.online-find_text {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .online-find_text {
    margin-top: 15px;
  }
}
.online-plan {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .online-plan .online_inner {
    padding: 0 25px;
  }
}
.online-plan_box {
  background-color: #F9F9F9;
  border: #CCCCCC 1px solid;
  border-radius: 10px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .online-plan_box {
    margin-top: 40px;
  }
}
.online-plan_box h3 {
  background-color: #E6003D;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  padding: 13px 0 15px;
}
@media (max-width: 767px) {
  .online-plan_box h3 {
    font-size: 16px;
    padding: 6px 0 10px;
  }
}
.online-plan_box p {
  margin: 18px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .online-plan_box p {
    font-size: 14px;
    margin: 21px auto 0;
  }
}
.online-plan_boxinner {
  max-width: 660px;
  margin: 29px auto 0;
  padding: 0 20px 25px;
}
@media (max-width: 767px) {
  .online-plan_boxinner {
    margin: 23px auto 0;
  }
}
.online-plan_plus {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.online-plan_plus::after {
  position: absolute;
  content: "";
  background-image: url("../images/online/plus.webp");
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 23px;
}
.online-plan_plus div {
  background-color: #fff;
  border: #E6003D 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E6003D;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: calc(50% - 6px);
  padding: 14px 0;
}
@media (max-width: 767px) {
  .online-plan_plus div {
    font-size: 16px;
  }
}
.online-plan_section {
  padding: 30px 20px;
}
@media (max-width: 767px) {
  .online-plan_section {
    padding: 20px 0px;
  }
}
.online-plan_section + .online-plan_section {
  border-top: #CCCCCC solid 1px;
}
.online-plan_section h3 {
  color: #E6003D;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .online-plan_section h3 {
    font-size: 24px;
  }
}
.online-plan_section strong.-en {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 14px;
  display: block;
}
@media (max-width: 767px) {
  .online-plan_section strong.-en {
    font-size: 24px;
    margin-top: 8px;
  }
}
.online-plan_section strong.-en span {
  font-size: 12px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .online-plan_section strong.-en span {
    font-size: 10px;
  }
}
.online-plan_section strong.-en span.-block {
  display: block;
}
.online-plan_section strong.-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.01em;
  margin: 13px 0 10px;
  display: block;
}
@media (max-width: 767px) {
  .online-plan_section strong.-text {
    font-size: 20px;
    letter-spacing: 0;
    margin: 9px 0 6px;
  }
}
.online-plan_section p {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .online-plan_section p {
    font-size: 12px;
    margin-top: unset;
  }
}
.online-support {
  background-color: #E6003D;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .online-support {
    padding: 40px 0;
  }
  .online-support .online_inner {
    padding: 0 25px;
  }
}
.online-support_title {
  font-size: 34px;
  line-height: 120%;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .online-support_title {
    font-size: 24px;
  }
}
.online-support_list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .online-support_list {
    margin-top: 30px;
  }
}
.online-support_item {
  background-color: #fff;
  border-left: 13px solid #242424;
  display: flex;
  gap: 15px;
  padding: 32px 20px 24px 30px;
}
@media (max-width: 767px) {
  .online-support_item {
    border-left: 10px solid #242424;
    padding: 19px 10px 21px 12px;
  }
}
.online-support_item h3 {
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .online-support_item h3 {
    font-size: 16px;
  }
}
.online-support_item p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 122%;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .online-support_item p {
    font-size: 12px;
  }
}
.online-support_item figure {
  width: 65px;
}
@media (max-width: 767px) {
  .online-support_item figure {
    width: 50px;
  }
}
.online-support_item figure img {
  width: 100%;
  height: auto;
}
.online-support_item div {
  width: calc(100% - 65px - 15px);
}
@media (max-width: 767px) {
  .online-support_item div {
    width: calc(100% - 50px - 13px);
  }
}
.online .faq {
  padding: 44px 20px 68px;
}
@media (max-width: 767px) {
  .online .faq {
    padding: 38px 20px 38px;
  }
}
.online .faq .faq_item + .faq_item {
  margin-top: 19px;
  padding-top: 21px;
  border-top: 2px solid var(--color-border);
}
@media (max-width: 767px) {
  .online .faq .faq_item + .faq_item {
    padding-top: 3px;
    margin-top: 0;
  }
}
.online .faq .section_title {
  font-size: 34px;
}
@media (max-width: 767px) {
  .online .faq .section_title {
    font-size: 24px;
  }
}
.online .faq .faq_q::before, .online .faq .faq_a::before {
  font-size: 24px;
  top: 11px;
}
.online .faq .faq_a::before {
  top: 0;
}
.online .faq .faq_q, .online .faq .faq_a {
  font-size: 18px;
  padding-left: 34px;
}
@media (max-width: 767px) {
  .online .faq .faq_q, .online .faq .faq_a {
    font-size: 16px;
  }
}
.online .faq_list {
  max-width: 1000px;
  margin: 0 auto;
}
.online-footer {
  padding-top: 20px;
}
.online .pc_only {
  display: block;
}
@media (max-width: 767px) {
  .online .pc_only {
    display: none;
  }
}
.online .sp_only {
  display: none;
}
@media (max-width: 767px) {
  .online .sp_only {
    display: block;
  }
}
.online.-ja .online-about {
  margin-bottom: -3px;
}
@media (max-width: 767px) {
  .online.-ja .online-about {
    margin-bottom: -10px;
  }
}
.online.-ja .online-about_text {
  font-size: 16px;
  margin-top: 35px;
  line-height: 160%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .online.-ja .online-about_text {
    font-size: 12px;
    margin-top: 23px;
    gap: 17px;
  }
}
.online.-ja .online-about_bg {
  margin-top: 37px;
}
@media (max-width: 767px) {
  .online.-ja .online-about_bg {
    margin-top: 32px;
    padding: 16px 7px;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-about_bg p {
    font-size: 12px;
    margin-top: 1px;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-about_small {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-service_item h3 {
    font-size: 18px;
  }
}
.online.-ja .online-service_item:nth-of-type(1) svg {
  margin: 0 -10px 0 -20px;
}
@media (max-width: 767px) {
  .online.-ja .online-service_item:nth-of-type(1) svg {
    margin: 0 0px 0 -11px;
  }
}
.online.-ja .online-service_item:nth-of-type(2) svg {
  margin: 0px -7px 0 0px;
}
@media (max-width: 767px) {
  .online.-ja .online-service_item:nth-of-type(2) svg {
    margin: 0 0px 0 7px;
  }
}
.online.-ja .online-service_item:nth-of-type(3) svg {
  margin: 0 -10px 0 -44px;
}
@media (max-width: 767px) {
  .online.-ja .online-service_item:nth-of-type(3) svg {
    margin: 0 0px 0 -31px;
  }
}
.online.-ja .online-service_item figure {
  width: 75px;
  margin: 5px -10px 0 -50px;
}
@media (max-width: 767px) {
  .online.-ja .online-service_item figure {
    margin: 11px 0px 0 -46px;
    width: 61px;
  }
}
.online.-ja .online-our_box h3 {
  max-width: 620px;
  margin: 0 auto -6px;
}
@media (max-width: 767px) {
  .online.-ja .online-our_box h3 {
    margin: 10px auto -6px;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-find_title {
    font-size: 22px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-plan_box h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-plan_box p {
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-plan_section strong.-text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-support_item {
    padding: 19px 20px 21px 12px;
  }
}
@media (max-width: 767px) {
  .online.-ja .online-support_item p {
    font-weight: 700;
  }
}
.online.-ja .online-step_bg span {
  font-weight: 700;
  text-decoration: unset;
}

.teachers {
  background-color: #FFF5F5;
  padding-top: 83px;
  padding-bottom: 146px;
}
.teachers.-futoukou {
  margin: 0 calc(50% - 50vw) -40px;
  padding: 83px calc(50vw - 50%) 146px;
  width: 100vw;
  background-color: #EEF6FD;
}
.teachers.-futoukou .teachers-box {
  background-color: #F9F9F9;
}
.teachers.-abroad {
  background-color: #EEF6FD;
  margin-top: 66px;
}
.teachers.-abroad .teachers-box {
  background-color: #F9F9F9;
}
@media (max-width: 767px) {
  .teachers {
    padding-top: 43px;
    padding-bottom: 88px;
  }
  .teachers.-futoukou {
    margin: 18px calc(50% - 50vw) 12px;
    padding: 42px calc(50vw - 50%) 88px;
    width: 100vw;
  }
  .teachers.-abroad {
    margin-top: 50px;
    margin-bottom: -20px;
  }
  .teachers.-eiken {
    margin-top: 70px;
  }
}
.teachers_cloud {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFA72;
  background-color: #04B7F1;
  padding: 10px 23px 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.teachers_cloud::after {
  position: absolute;
  content: "";
  background-color: #04B7F1;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  width: 19px;
  height: 10px;
}
.teachers_title {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .teachers_title {
    font-size: 24px;
  }
}
.teachers_sliderwrap {
  position: relative;
}
.teachers_sliderwrap .swiper-button-next, .teachers_sliderwrap .swiper-button-prev, .teachers_sliderwrap .swiper-button-next, .teachers_sliderwrap .swiper-rtl .swiper-button-prev {
  width: 55px;
  height: 55px;
  top: 47.5%;
}
@media (max-width: 767px) {
  .teachers_sliderwrap .swiper-button-next, .teachers_sliderwrap .swiper-button-prev, .teachers_sliderwrap .swiper-button-next, .teachers_sliderwrap .swiper-rtl .swiper-button-prev {
    display: none;
  }
}
.teachers_sliderwrap .swiper-button-next, .teachers_sliderwrap .swiper-rtl .swiper-button-prev {
  right: -48px;
}
.teachers_sliderwrap .swiper-button-prev, .teachers_sliderwrap .swiper-rtl .swiper-button-next {
  left: -48px;
}
.teachers_sliderwrap .swiper-button-prev:after, .teachers_sliderwrap .swiper-rtl .swiper-button-next:after, .teachers_sliderwrap .swiper-button-next:after, .teachers_sliderwrap .swiper-rtl .swiper-button-prev:after {
  content: none;
}
.teachers_sliderwrap .swiper-horizontal > .swiper-scrollbar, .teachers_sliderwrap .swiper-scrollbar.swiper-scrollbar-horizontal {
  background-color: #FFFFFF;
  width: 100%;
  height: 7px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .teachers_sliderwrap .swiper-horizontal > .swiper-scrollbar, .teachers_sliderwrap .swiper-scrollbar.swiper-scrollbar-horizontal {
    display: none;
  }
}
.teachers_sliderwrap .swiper-scrollbar-drag {
  background-color: #999999;
  border-radius: 0;
}
.teachers_sliderwrap svg {
  fill: none;
}
.teachers_small {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #999999;
  position: absolute;
  left: 0;
  bottom: -68px;
}
@media (max-width: 767px) {
  .teachers_small {
    bottom: -40px;
  }
}
.teachers_slider {
  margin-top: 37px;
}
@media (max-width: 767px) {
  .teachers_slider {
    margin-top: 20px;
  }
  .teachers_slider.swiper {
    overflow-x: scroll;
    scroll-behavior: auto;
    margin-right: calc(50% - 50vw);
  }
  .teachers_slider::-webkit-scrollbar {
    height: 7px;
  }
  .teachers_slider::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .teachers_slider::-webkit-scrollbar-thumb {
    background: #999999;
    width: 72px;
  }
  .teachers_slider::-webkit-scrollbar-thumb:hover {
    background: #999999;
  }
}
.teachers_slider .swiper-wrapper {
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .teachers_slider .swiper-wrapper {
    gap: 9px;
    padding-bottom: 34px;
  }
}
.teachers_item {
  background-color: #fff;
  box-shadow: 2px 4px 9px 0px rgba(163, 163, 163, 0.2);
  padding: 30px 14px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .teachers_item {
    padding: 20px 14px;
  }
}
.teachers_item.swiper-slide {
  height: auto;
}
@media (max-width: 767px) {
  .teachers_item.swiper-slide {
    width: 95%;
  }
}
.teachers_item.-cloud {
  position: relative;
  padding-top: 80px;
}
.teachers_item.-cloud .teachers-archive_small {
  margin-top: 0;
}
.teachers_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.teachers_cat li {
  border-radius: 3px;
  background-color: #E6003D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 7.5px 8px;
  line-height: 1;
}
.teachers-head {
  display: flex;
  gap: 9px;
  margin-top: 23px;
}
@media (max-width: 767px) {
  .teachers-head {
    margin-top: 16px;
  }
}
.teachers-head_img {
  width: 75px;
}
.teachers-head_img img {
  width: 100%;
  height: auto;
}
.teachers-head_body {
  width: calc(100% - 75px - 9px);
}
.teachers-head_prof {
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: block;
}
@media (max-width: 767px) {
  .teachers-head_prof {
    letter-spacing: 0.03em;
    margin-top: -4px;
  }
}
.teachers-head_name {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 13px;
}
.teachers-head_name span {
  font-size: 14px;
  letter-spacing: 0.02em;
}
.teachers-archive_title {
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-bottom: #999999 1px solid;
  margin-top: 14px;
}
@media (max-width: 767px) {
  .teachers-archive_title {
    margin-top: 11px;
  }
}
.teachers-archive_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 7px;
  margin-top: 11px;
}
.teachers-archive_list dt {
  border-radius: 3px;
  background-color: #FFEAEA;
  color: #E42356;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 26px;
  line-height: 1;
}
.teachers-archive_list dd {
  margin-left: unset;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.04em;
  width: calc(100% - 73px - 7px);
  display: flex;
  align-items: center;
}
.teachers-archive_small {
  font-size: 10px;
  margin-top: 20px;
  display: block;
}
@media (max-width: 767px) {
  .teachers-archive_small {
    margin-top: 16px;
  }
}
.teachers-box {
  margin-top: 17px;
  background-color: #EEF6FD;
  padding: 12px;
}
@media (max-width: 767px) {
  .teachers-box {
    margin-top: 12px;
  }
}
.teachers-box_title {
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
  border-bottom: #999999 1px solid;
  padding-bottom: 2px;
}
.teachers-box_text {
  margin-top: 7px;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .teachers-box_text {
    margin-top: 13px;
  }
}
.teachers .sp_only {
  display: none;
}
@media (max-width: 767px) {
  .teachers .sp_only {
    display: block;
  }
}
.teachers .pc_only {
  display: block;
}
@media (max-width: 767px) {
  .teachers .pc_only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
