@charset "UTF-8";*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{-webkit-animation-duration:.01ms !important;animation-duration:.01ms !important;-webkit-animation-iteration-count:1 !important;animation-iteration-count:1 !important;-webkit-transition-duration:.01ms !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

.color-red {
  color: #ff0000;
}
@font-face {
  font-weight: 300;
  font-family: "Noto Sans JP";
  src: url("./NotoSansJP-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-weight: 400;
  font-family: "Noto Sans JP";
  src: url("./NotoSansJP-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-weight: 600;
  font-family: "Noto Sans JP";
  src: url("./NotoSansJP-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-weight: 700;
  font-family: "Noto Sans JP";
  src: url("./NotoSansJP-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-weight: 900;
  font-family: "Noto Sans JP";
  src: url("./NotoSansJP-Black.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-weight: 700;
  font-family: "Roboto";
  src: url("./Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #ffffff;
  font-size: 14px;
  line-height: 28px;
  font-family: "Noto Sans JP", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  margin-inline: auto;
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
ul, ol {
  margin: 0;
  padding-left: 0;
}
li {
  list-style: none;
}
.pc-none {
  display: none;
}
@media screen and (max-width: 1199px) {
  .pc-none {
    display: block;
  }
}
.sp-none {
  display: block;
}
@media screen and (max-width: 1199px) {
  .sp-none {
    display: none;
  }
}
.pc-flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 1199px) {
  .pc-flex {
    display: block;
  }
}
.text-center {
  text-align: center;
}
.mt-8 {
  margin-top: 8px;
}
.section {
  padding: 96px 0;
}
@media screen and (max-width: 1199px) {
  .section {
    padding: 64px 0;
  }
}
.section_inner {
  max-width: 850px;
  padding: 0 24px;
  margin-inline: auto;
}
.section_inner_wide {
  max-width: 1150px;
  padding: 0 24px;
  margin-inline: auto;
}
.section_title {
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .section_title {
    font-size: 24px;
    line-height: 36px;
  }
}
/*header
---------------------------------------------------------- */
header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  min-width: 1000px;
  height: 80px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  content: "";
}
.header_block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  width: 1000px;
  margin: 0 auto;
  -ms-flex-pack: space-between;
}
.header_block .head_logo {
  display: -webkit-box;
  display: flex;
  width: 150px;
  margin-right: 50px;
}
.header_block .head_logo img {
  width: 150px;
  height: auto;
}
.header_block .head_menu ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.header_block .head_menu li {
  margin: 0 0 0 30px;
  padding: 0;
  line-height: 1.6;
}
.header_block .head_menu li:first-child {
  margin: 0;
}
.header_block .head_menu li:before {
  display: none;
}
.header_block .head_menu li a {
  display: inline-block;
  position: relative;
  padding: 4px 0;
  overflow: hidden;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}
.header_block .head_menu li a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-100%, 0%, 0);
          transform: translate3d(-100%, 0%, 0);
  width: 100%;
  height: 2px;
  content: "";
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1), -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
}
.header_block .head_menu li.current a:before, .header_block .head_menu li a:hover:before {
  -webkit-transform: translate3d(0, 0%, 0);
          transform: translate3d(0, 0%, 0);
}
.header_box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  header {
    min-width: 100%;
    height: 60px;
  }
  .header_block {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  .header_box {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
  }
  .header_block .head_logo {
    -webkit-box-pack: start;
            justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
  .header_block .head_logo img {
    width: auto;
  }
  .head_subnav, .head_menu {
    display: none;
  }
}
.courses {
  display: -webkit-box;
  display: flex;
  text-align: center;
  gap: 8px;
}
.courses_item {
  -webkit-box-flex: 1;
          flex: 1;
  border: 1px solid;
  border-radius: 8px;
  background-color: #ffffff;
}
@media screen and (max-width: 1199px) {
  .courses_item:first-child .course_content p {
    line-height: 2;
  }
}
.course_name {
  padding: 18px 24px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .course_name {
    padding: 10px 16px;
    font-size: 20px;
  }
}
.course_name span {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 1199px) {
  .course_name span {
    font-size: 12px;
  }
}
.course_content {
  padding: 24px 24px 16px;
}
@media screen and (max-width: 1199px) {
  .course_content {
    padding: 8px 8px 12px;
    font-size: 20px;
  }
}
.course_content p {
  display: grid;
  height: 60px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  place-items: center;
}
@media screen and (max-width: 1199px) {
  .course_content p {
    height: 90px;
    font-size: 12px;
    line-height: 1.5;
  }
}
.course_content hr {
  margin: 14px 0;
  border: none;
  border-top: 1px dashed;
}
@media screen and (max-width: 1199px) {
  .course_content hr {
    margin: 6px 0;
  }
}
.course_number {
  margin-top: 20px;
  font-weight: 700;
  font-size: 32px;
}
@media screen and (max-width: 1199px) {
  .course_number {
    font-size: 24px;
  }
}
.course_number span {
  font-size: 64px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.course_number .course_percent {
  font-size: 28px;
}
.course_note {
  display: block;
  font-size: 11px;
}
@media screen and (max-width: 1199px) {
  .course_note {
    margin-top: -6px;
  }
}
.reserve_btn {
  display: block;
  width: 100%;
  padding: 14px 44px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .reserve_btn {
    font-size: 15px;
  }
}
.fv_img {
  width: 100%;
  padding-top: 80px;
  background: url("./fv_bg.webp") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .fv_img {
    padding-top: 60px;
  }
}
.lead {
  padding-top: 70px;
  background: -webkit-linear-gradient(top, #f5f3f0 60%, #fafafa 100%);
  background: linear-gradient(to bottom, #f5f3f0 60%, #fafafa 100%);
  background-color: #f5f3f0;
  text-align: center;
}
.lead .section_inner {
  max-width: 832px;
  padding: 0 16px;
}
@media screen and (max-width: 1199px) {
  .lead .section_inner {
    padding: 0 12px;
  }
}
.lead_text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 1px;
}
@media screen and (max-width: 1199px) {
  .lead_text {
    padding: 0 12px;
    font-size: 18px;
    line-height: 2;
    text-align: left;
  }
}
.lead_courses {
  margin-top: 52px;
  padding: 24px;
  border-radius: 8px;
  background-color: #ffffff;
}
@media screen and (max-width: 1199px) {
  .lead_courses {
    margin-top: 36px;
    padding: 24px 12px;
  }
}
.lead_courses_name {
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 1199px) {
  .lead_courses_name {
    font-size: 20px;
  }
}
.lead_courses_name-sub {
  margin-top: 4px;
  margin-bottom: 24px;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .lead_courses_name-sub {
    margin-bottom: 18px;
    font-size: 15px;
  }
}
.lead_link {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 24px;
  font-size: 16px;
  text-decoration: underline;
  gap: 8px;
}
@media screen and (max-width: 1199px) {
  .lead_link {
    margin-top: 18px;
    font-size: 15px;
  }
}
.lead_link::after {
  display: block;
  align-self: center;
  width: 12px;
  height: 12px;
  background: url("./icon_click.svg") no-repeat center;
  content: "";
}
.point {
  background-color: #fafafa;
}
.point .section_title {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
}
.point_problem {
  margin-top: 54px;
}
@media screen and (max-width: 1199px) {
  .point_problem {
    max-width: 400px;
    margin-top: 42px;
    margin-inline: auto;
  }
}
.point_list_wrapper {
  margin-top: 64px;
}
@media screen and (max-width: 1199px) {
  .point_list_wrapper {
    margin-top: 48px;
  }
}
.point_problem_img {
  margin-top: 64px;
}
@media screen and (max-width: 1199px) {
  .point_problem_img {
    margin-top: 48px;
  }
}
.point_problem_text {
  margin-top: 18px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .point_problem_text {
    font-size: 20px;
    line-height: 1.6;
  }
}
.point_list {
  margin-top: 54px;
}
@media screen and (max-width: 1199px) {
  .point_list {
    margin-top: 38px;
  }
}
.point_list > * + * {
  margin-top: 36px;
}
@media screen and (max-width: 1199px) {
  .point_list > * + * {
    margin-top: 24px;
  }
}
.point_list_item {
  position: relative;
  padding: 30px 24px 24px;
  border: 1px solid;
  border-radius: 8px;
  background-color: #ffffff;
}
.point_list_number {
  position: absolute;
  top: -18px;
  left: 18px;
  padding: 4px 12px;
  border-radius: 50px;
  background-color: #fee45f;
  font-weight: 700;
  font-size: 15px;
}
.point_list_name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
}
.point_list_text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.point_list_line {
  margin: 24px 0;
  border: none;
  border-top: 1px dashed;
}
.point_list_note {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.point_list_note-text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.point_list_notion {
  margin-top: 24px;
  color: #6f757d;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.product {
  background-color: #f5f3f0;
}
.product_title_emphasis {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .product_title_emphasis {
    font-size: 15px;
  }
}
.product .section_title {
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .product .section_title {
    margin-top: 12px;
    font-size: 32px;
    line-height: 1.4;
  }
}
.product_course-note {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
.product_content {
  border: 1px solid;
  border-radius: 8px;
  background-color: #ffffff;
}
.product_content-name {
  padding: 24px 24px 12px;
  border-bottom: 1px solid;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .product_content-name {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.product_content-text {
  padding: 12px 24px 24px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .product_content-text {
    padding: 12px;
    font-size: 13px;
    line-height: 1.84;
  }
}
.product_content-text-note {
  margin-top: -20px;
  padding: 0 24px 24px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .product_content-text-note {
    padding: 12px;
    font-size: 13px;
    line-height: 1.84;
  }
}
.product_list_wrapper {
  margin-top: 24px;
  padding: 20px 24px 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (max-width: 1199px) {
  .product_list_wrapper {
    padding: 20px 12px 0;
  }
}
.product_list_title {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.product_list_title::after {
  display: block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 24px;
  height: 24px;
  background: url("./icon_chevron.svg") no-repeat center;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product_list > * + * {
  margin-top: 5px;
}
.product_list {
  display: none;
  padding-bottom: 24px;
}
@media screen and (max-width: 1199px) {
  .product_list {
    padding-bottom: 20px;
  }
}
.product_list_wrapper.is-open .product_list {
  display: block;
}
.product_list_wrapper.is-open .product_list_title::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.flow {
  background-color: #ffffff;
}
.flow .section_title {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
}
.flow_list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 60px;
  gap: 48px;
}
@media screen and (max-width: 1199px) {
  .flow_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-top: 42px;
    padding-bottom: 36px;
    border-bottom: 1px solid;
    border-left: 1px solid;
    gap: 36px;
  }
}
.flow_list_item {
  -webkit-box-flex: 1;
          flex: 1;
  align-self: start;
}
@media screen and (max-width: 1199px) {
  .flow_list_item {
    padding-left: 24px;
  }
}
.flow_list_number {
  padding: 6px 14px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .flow_list_number {
    margin-left: -24px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 15px;
  }
}
.flow_list_name {
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .flow_list_name {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.6;
  }
}
.flow_list_text {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-block: 20px;
}
@media screen and (max-width: 1199px) {
  .flow_list_text {
    font-size: 15px;
    line-height: 1.6;
    margin-block: 8px;
  }
}
.flow_list_item:last-child .flow_list_text {
  margin-bottom: 0;
}
.contact .section_title {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  font-size: 28px;
}
@media screen and (max-width: 1199px) {
  .contact .section_title {
    font-size: 24px;
  }
}
.contact_title_img {
  margin-top: 64px;
}
@media screen and (max-width: 1199px) {
  .contact_title_img {
    max-width: 400px;
    margin-top: 24px;
    margin-inline: auto;
  }
}
.contact_reserve {
  max-width: 800px;
  margin-top: 64px;
  padding: 48px;
  border: 1px solid;
  border-radius: 8px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 1199px) {
  .contact_reserve {
    margin-top: 24px;
    padding: 24px;
  }
}
.contact_reserve_text {
  margin-bottom: 24px;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .contact_reserve_text {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
  }
}
.contact_note {
  max-width: 800px;
  margin-top: 64px;
  margin-inline: auto;
}
@media screen and (max-width: 1199px) {
  .contact_note {
    margin-top: 46px;
  }
}
.contact_note > * + * {
  margin-top: 24px;
}
.contact_note_name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 1199px) {
  .contact_note_name {
    font-size: 15px;
  }
}
.contact_note_list {
  list-style: none;
  margin-top: 12px;
}
@media screen and (max-width: 1199px) {
  .contact_note_list {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.84;
  }
}
.contact_note_text {
  position: relative;
  padding-left: 1.2em;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .contact_note_text {
    line-height: 1.84;
  }
}
.contact_note_text::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  font-size: 0.7em;
  content: "•";
}
.disc-none.contact_note_text {
  padding-left: 0;
}
.disc-none.contact_note_text::before {
  display: none;
}
.contact_phone {
  margin-top: 64px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .contact_phone {
    margin-top: 42px;
  }
}
.contact_phone_title {
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 1199px) {
  .contact_phone_title {
    font-size: 20px;
  }
}
.contact_phone_content {
  margin-top: 24px;
  padding: 20px 24px 26px;
  border: 1px solid;
  border-radius: 8px;
}
@media screen and (max-width: 1199px) {
  .contact_phone_content {
    padding-bottom: 20px;
  }
}
.contact_phone_name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .contact_phone_name {
    font-size: 15px;
    line-height: 1.2;
  }
}
.contact_phone_number {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 14px;
  font-size: 24px;
  line-height: 1;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  gap: 8px;
}
@media screen and (max-width: 1199px) {
  .contact_phone_number {
    margin-top: 26px;
  }
}
.contact_phone_number::before {
  display: block;
  width: 34px;
  height: 20px;
  background: url("./icon_phone.svg") no-repeat center/contain;
  content: "";
}
.contact_phone_note {
  margin-top: 10px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .contact_phone_note {
    font-size: 13px;
  }
}
.contact_date {
  margin-top: 20px;
  text-align: right;
}
@media screen and (max-width: 1199px) {
  .contact_date {
    font-size: 13px;
  }
}
.sp_btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: fixed;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 91px;
}
@media screen and (max-width: 1199px) {
  .sp_btn {
    height: 56px;
  }
}
.sp_btn .reserve_btn {
  display: block;
  width: 100%;
  max-width: 516px;
  padding: 18px 44px;
  border-radius: 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .sp_btn .reserve_btn {
    font-size: 16px;
  }
}
footer {
  min-width: 1000px;
  color: #333333;
}
.ft_block01 {
  background: #eeeeee;
}
.ft_box01, .ft_box02 {
  width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}
.fnav li ul li a:hover {
  padding-left: 10px;
}
.fnav li ul li a:hover:before {
  -webkit-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
  -webkit-transition: -webkit-transform 0.2s 0.05s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: -webkit-transform 0.2s 0.05s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: transform 0.2s 0.05s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: transform 0.2s 0.05s cubic-bezier(0.18, 0.06, 0.23, 1), -webkit-transform 0.2s 0.05s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.flnav li a:hover {
  text-decoration: underline;
}
.fsubnav .btn_area li:hover {
  opacity: 0.6;
}
.subnav {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.fsubnav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: -30px;
}
.fsubnav nav li {
  margin: 0 0 0 30px;
  padding-left: 0;
  line-height: 1.6;
}
.fsubnav nav li a {
  display: inline-block;
  position: relative;
  padding: 4px 0;
  overflow: hidden;
  font-size: 16px;
  text-decoration: none;
}
.fsubnav nav li a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-100%, 0%, 0);
          transform: translate3d(-100%, 0%, 0);
  width: 100%;
  height: 2px;
  background: #00a7db;
  content: "";
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1), -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
}
.fsubnav .btn_area {
  margin-top: 0;
  text-align: center;
}
.btn_area ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
.fsubnav ul {
  margin-left: -30px;
}
.fsubnav .btn_area li {
  display: table;
  position: relative;
  width: 250px;
  min-height: 60px;
  margin: 0 0 0 30px !important;
  padding: 0;
  border-radius: 6px;
  background: #00a7db;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fsubnav .btn_area li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.fsubnav .btn_area li a {
  min-height: 60px;
  padding: 10px 15px;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  vertical-align: middle;
}
.fnav {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
.fnav nav:nth-child(1), .fnav nav:nth-child(2), .fnav nav:nth-child(3) {
  width: 260px;
}
.fnav li {
  margin: 0;
  padding-left: 0;
  line-height: 1.4;
}
.fsubnav li .toggle_ttl, .fnav li .toggle_ttl {
  font-weight: bold;
  pointer-events: none;
}
.fnav li span {
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
  overflow: hidden;
  font-size: 16px;
}
.fnav li span:before {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-100%, 0%, 0);
          transform: translate3d(-100%, 0%, 0);
  width: 100%;
  height: 2px;
  background: #00a7db;
  content: "";
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
  transition: transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1), -webkit-transform 0.5s cubic-bezier(0.46, 0.1, 0.29, 1);
}
@media screen and (min-width: 1201px) {
  .fsubnav li .toggle_txt, .fnav li .toggle_txt {
    display: block !important;
  }
}
.fnav li ul li:first-child {
  margin-top: 0;
}
.fnav li ul li {
  margin-top: 10px;
  padding-left: 0;
}
.fnav li {
  margin: 0;
  padding-left: 0;
  line-height: 1.4;
}
.fnav li ul li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fnav li ul li a:before {
  position: absolute;
  top: 45%;
  left: 0;
  -webkit-transform: translate3d(-110%, 0, 0);
          transform: translate3d(-110%, 0, 0);
  width: 6px;
  height: 2px;
  content: "";
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: transform 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: transform 0.3s cubic-bezier(0.18, 0.06, 0.23, 1), -webkit-transform 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.flnav ul:last-child {
  margin: -3px 0 0;
}
.flnav ul {
  margin: -3px 0 3px;
}
.flnav li {
  display: inline-block;
  margin: 3px 0 0;
  padding: 0;
  line-height: 1.4;
}
.flnav li a {
  position: relative;
  font-size: 12px;
  text-decoration: none;
  pointer-events: auto;
}
.flnav ul li:not(:last-child):after {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 5px;
  background: #333333;
  vertical-align: middle;
  content: "";
}
.flnav li {
  display: inline-block;
  margin: 3px 0 0;
  padding: 0;
  line-height: 1.4;
}
.fsubnav {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.fnav li ul {
  margin-top: 15px;
}
.ft_box02 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding: 20px 0;
}
.ft_box01, .ft_box02 {
  width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}
.ft_copy p {
  color: #333333;
  font-size: 10px;
  line-height: 1.4;
}
.ft_box02 .ffg_logo img {
  width: 257px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  footer {
    min-width: 100%;
  }
  .ft_box01, .ft_box02 {
    width: 100%;
    padding: 0;
  }
  .fsubnav, .fsubnav ul, .fnav {
    display: block;
    margin-bottom: 0;
  }
  .fsubnav, .fsubnav ul, .fnav {
    display: block;
    margin-bottom: 0;
  }
  .fsubnav li:first-child a {
    border-top: 1px solid #cccccc;
  }
  .fsubnav nav li a, .fnav li a {
    display: block;
    padding: 20px 10% 20px 3%;
    border-bottom: 1px solid #cccccc;
    background: url(src/assets/images/retirement/icon_footer-chevron.png) 94% center no-repeat;
    background-size: 10px auto;
    font-size: 16px;
  }
  .btn_area {
    margin-top: 25px;
  }
  .fsubnav, .fsubnav ul, .fnav {
    display: block;
    margin-bottom: 0;
  }
  .btn_area li:first-child {
    margin: 0 auto !important;
  }
  .fsubnav li:first-child a {
    border-top: 1px solid #cccccc;
  }
  .fsubnav, .fsubnav ul, .fnav {
    display: block;
    margin-bottom: 0;
  }
  .fsubnav li .toggle_ttl, .fnav li .toggle_ttl {
    position: relative;
    padding: 20px 10% 20px 3%;
    border-bottom: 1px solid #cccccc;
    background-size: 10px auto;
    font-weight: normal;
    cursor: pointer;
    pointer-events: all;
  }
  .fnav li .toggle_ttl::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 10px;
    height: 20px;
    margin-top: -5px;
    background: url(src/assets/images/retirement/icon_footer-chevron.png) 94% center/contain no-repeat;
    content: "";
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .fnav li .toggle_ttl.close::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .fsubnav li .toggle_ttl span, .fnav li .toggle_ttl span {
    display: inline-block;
    padding: 0;
    border-bottom: none;
    background: none;
  }
  .fsubnav li .toggle_txt, .fnav li .toggle_txt {
    display: none;
  }
  .fnav li ul, .fnav li ul li {
    margin-top: 0;
  }
  .fnav li ul, .fnav li ul li {
    margin-top: 0;
  }
  .fnav li ul li a {
    display: block;
    padding: 15px 10% 15px 3%;
    border-bottom: 1px solid #cccccc;
    background: url(src/assets/images/retirement/icon_footer-chevron.png) 94% center no-repeat;
    background-size: 8px auto;
    font-size: 14px;
  }
  .fnav nav {
    width: 100% !important;
  }
  .flnav {
    padding: 15px 10px;
  }
  .flnav li {
    display: inline;
  }
  .ft_box02 {
    display: block;
    padding: 25px 3% 20px;
    text-align: center;
  }
  .ft_copy {
    font-size: 11px;
  }
  .ft_box02 .ffg_logo, .ft_copy .copy {
    margin-top: 30px;
  }
  .fsubnav .btn_area {
    display: none;
  }
  .flnav li {
    display: inline;
  }
  .fnav li ul li a:hover {
    padding-left: 3%;
  }
  .fnav li ul li a:before {
    display: none;
  }
}body {
  color: #31374d;
}

.header_block .head_menu li a:before {
  background-color: #e77f00;
}

.reserve_btn {
  background-color: #31374d;
}

.point_list_item {
  border-color: #31374d;
}

.point_list_name {
  color: #e77f00;
}

.point_list_note {
  color: #e77f00;
}

.course_content hr, .point_list_line {
  border-color: #31374d;
}

.courses_item {
  border-color: #e77f00;
}

.course_name {
  background-color: #e77f00;
}

.course_number {
  color: #e77f00;
}

.lead_courses_name {
  color: #e77f00;
}

.product_content {
  border-color: #31374d;
}

.product_content-name {
  border-color: rgba(49, 55, 77, 0.1490196078);
}

.product_content-text-note {
  color: rgba(49, 55, 77, 0.7019607843);
}

.product_title_emphasis {
  color: #e77f00;
}

@media screen and (max-width: 1199px) {
  .flow_list {
    border-color: #e77f00;
  }
}

.flow_list_number {
  background-color: #e77f00;
}

.flow_list_name {
  color: #e77f00;
}

.contact_reserve {
  border-color: #31374d;
}

.contact_phone_content {
  border-color: rgba(49, 55, 77, 0.1490196078);
}

.contact_phone_number {
  color: #db6d0d;
}

.fsubnav .btn_area li {
  background-color: #e77f00;
}

.fnav li ul li a:before {
  background-color: #e77f00;
}