/*
  LP style
*/
/* var */
:root {
  /* color */
  --color-text: #494E48;
  --color-text-key: #367E78;
  --color-key: #6FAE9A;
  --color-key-light: #EFF4EE;
  --color-key-light2: #FAFBED;
  --transition-base: all .1s ease;
  --text-shadow-base: 0 3px 7px rgba(0, 0, 0, .35);
  --font-size-9: 0.5625rem;
  --font-size-10: 0.625rem;
  --font-size-11: 0.6875rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.8125rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --font-size-17: 1.0625rem;
  --font-size-18: 1.125rem;
  --font-size-19: 1.1875rem;
  --font-size-20: 1.25rem;
  --font-size-21: 1.3125rem;
  --font-size-22: 1.375rem;
  --font-size-23: 1.4375rem;
  --font-size-24: 1.5rem;
  --font-size-25: 1.5625rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.6875rem;
  --font-size-28: 1.75rem;
  --font-size-29: 1.8125rem;
  --font-size-30: 1.875rem;
  --font-size-31: 1.9375rem;
  --font-size-32: 2rem;
  --font-size-33: 2.0625rem;
  --font-size-34: 2.125rem;
  --font-size-35: 2.1875rem;
  --font-size-36: 2.25rem;
  --font-size-37: 2.3125rem;
  --font-size-38: 2.375rem;
  --font-size-39: 2.4375rem;
  --font-size-40: 2.5rem;
  --font-size-41: 2.5625rem;
  --font-size-42: 2.625rem;
  --font-size-43: 2.6875rem;
  --font-size-44: 2.75rem;
  --font-size-45: 2.8125rem;
  --font-size-46: 2.875rem;
  --font-size-47: 2.9375rem;
  --font-size-48: 3rem;
  --font-size-49: 3.0625rem;
  --font-size-50: 3.125rem;
  --font-size-51: 3.1875rem;
  --font-size-52: 3.25rem;
  --font-size-53: 3.3125rem;
  --font-size-54: 3.375rem;
  --font-size-55: 3.4375rem;
  --font-size-56: 3.5rem;
  --font-size-57: 3.5625rem;
  --font-size-58: 3.625rem;
  --font-size-59: 3.6875rem;
  --font-size-60: 3.75rem;
}

/* utility */
@media screen and (min-width: 1024px) {
  .u-show-sp {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-hide-sp {
    display: none !important;
  }
}

/* contents */
body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

.l-wrapper {
  background-color: #FFF;
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-16);
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
}

.c-inner {
  margin: 0 auto;
  max-width: 1308px;
  padding: 0 24px;
}
@media screen and (max-width: 1023px) {
  .c-inner {
    max-width: 600px;
    padding: 0 10px;
  }
}

a {
  text-decoration: none;
  transition: var(--transition-base);
}

em {
  font-style: normal;
}

img {
  max-width: 100%;
}

button {
  font-family: "Inter", sans-serif;
}

.l-header {
  background-color: rgba(255, 255, 255, 0.7);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.l-header .c-header-inner {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  height: 65px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1308px;
  padding: 0 24px;
  width: 100%;
}
.l-header .c-header-inner h1 {
  margin: 0;
  width: 90px;
}
.l-header .c-header-inner h1 a:hover {
  opacity: 0.6;
}
.l-header .c-header-inner p {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .l-header .c-header-inner {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
  .l-header .c-header-inner p {
    line-height: 1.2;
  }
  .l-header .c-header-inner p span {
    display: block;
  }
}

.c-btn-wrap {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.c-btn {
  align-items: center;
  background-color: #F46D41;
  border: 5px solid #FFF;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  color: #FFF;
  display: flex;
  font-size: var(--font-size-28);
  font-weight: 700;
  gap: 15px;
  height: 80px;
  justify-content: center;
  max-width: 550px;
  text-shadow: var(--text-shadow-base);
  width: 100%;
}
.c-btn i {
  position: relative;
  top: 2px;
}
.c-btn i img {
  display: block;
}
.c-btn:hover {
  opacity: 0.8;
  scale: 1.03;
}

@media screen and (max-width: 1023px) {
  .c-btn-wrap {
    padding: 15px 0;
  }
  .c-btn {
    font-size: var(--font-size-18);
    height: 62px;
    width: 95%;
  }
}
.c-hero {
  background: url(../img/hero-bg.png) no-repeat center top;
  background-size: cover;
  height: 802px;
  padding-top: 109px;
  text-align: center;
}
.c-hero .c-hero-body .c-hero-budge {
  margin: 0 0 -20px;
}
.c-hero .c-hero-body h2 {
  margin: 0 0 -20px;
}
.c-hero .c-hero-body .c-hero-lead {
  font-size: var(--font-size-20);
  font-weight: 700;
  margin: 0;
}
.c-hero .c-hero-body .c-hero-info-list {
  align-items: center;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .c-hero {
    height: 700px;
    padding-top: 89px;
  }
  .c-hero .c-hero-body .c-hero-budge {
    margin: 0 0 -20px;
  }
  .c-hero .c-hero-body h2 {
    margin: 0 0 -30px;
  }
  .c-hero .c-hero-body h2 img {
    max-width: 500px;
    width: 100%;
  }
  .c-hero .c-hero-body .c-hero-lead {
    font-size: var(--font-size-16);
    line-height: 1.8;
  }
}

.c-lead {
  padding: 50px 0 0;
}
.c-lead .c-lead-heading {
  border-top: 3px solid var(--color-key);
}
.c-lead .c-lead-heading em {
  background-color: #FFF;
  color: var(--color-text-key);
  display: block;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  margin: -0.8em auto 0;
  padding: 0 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-lead .c-lead-heading em strong {
  font-size: var(--font-size-48);
}
.c-lead .c-lead-heading span {
  display: block;
  font-size: var(--font-size-42);
  font-weight: 900;
  margin: 20px 0 0;
  text-align: center;
}
.c-lead .c-lead-body {
  align-items: center;
  display: flex;
  gap: 3%;
  padding: 70px 0;
}
.c-lead .c-lead-body .c-lead-graph {
  width: 42.25%;
}
.c-lead .c-lead-body .c-lead-point {
  border: 3px solid var(--color-key);
  border-radius: 10px;
  padding: 0 16px 30px;
  width: 54.75%;
}
.c-lead .c-lead-body .c-lead-point h3 {
  background-color: var(--color-key);
  border-radius: 29px;
  color: #FFF;
  font-size: var(--font-size-27);
  font-weight: 700;
  height: 57px;
  line-height: 57px;
  margin: -29px auto 0;
  text-align: center;
  text-shadow: var(--text-shadow-base);
  width: 443px;
}
.c-lead .c-lead-body .c-lead-point ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.c-lead .c-lead-body .c-lead-point ul li {
  font-size: var(--font-size-20);
  line-height: 1.6;
  padding-left: 32px;
  position: relative;
}
.c-lead .c-lead-body .c-lead-point ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.c-lead .c-lead-body .c-lead-point ul li:before {
  background: url(../img/icon-check.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  height: 23px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 27px;
}
.c-lead .c-lead-body .c-lead-point ul li span {
  border-bottom: 2px dotted var(--color-key);
  font-size: var(--font-size-24);
}
.c-lead .c-lead-body .c-lead-point ul li strong {
  color: #F46D41;
  font-weight: 900;
}
.c-lead .c-lead-body .c-lead-point ul li em {
  background-color: var(--color-key-light2);
  font-weight: 900;
}
.c-lead .c-lead-bottom {
  position: relative;
}
.c-lead .c-lead-bottom:before {
  background-color: #FFF;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  height: 33px;
  left: 50%;
  position: absolute;
  top: 0;
  translate: -50% 0;
  width: 133px;
  z-index: 1;
}
.c-lead .c-lead-bottom .c-heading-block:before {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-lead {
    padding: 32px 0 0;
  }
  .c-lead .c-lead-heading {
    border-top: none;
  }
  .c-lead .c-lead-heading em {
    font-size: var(--font-size-18);
    margin: -0.8em auto 0;
  }
  .c-lead .c-lead-heading em strong {
    font-size: var(--font-size-24);
  }
  .c-lead .c-lead-heading span {
    font-size: var(--font-size-22);
    margin: 10px 0 0;
  }
  .c-lead .c-lead-body {
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
  }
  .c-lead .c-lead-body .c-lead-graph {
    width: 100%;
  }
  .c-lead .c-lead-body .c-lead-point {
    padding: 0 16px 30px;
    width: 100%;
  }
  .c-lead .c-lead-body .c-lead-point h3 {
    font-size: var(--font-size-16);
    height: 32px;
    line-height: 32px;
    margin: -16px auto 0;
    width: 242px;
  }
  .c-lead .c-lead-body .c-lead-point ul {
    margin: 20px 0 0;
  }
  .c-lead .c-lead-body .c-lead-point ul li {
    font-size: var(--font-size-14);
    padding-left: 20px;
  }
  .c-lead .c-lead-body .c-lead-point ul li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .c-lead .c-lead-body .c-lead-point ul li:before {
    height: 11px;
    top: 7px;
    width: 15px;
  }
  .c-lead .c-lead-body .c-lead-point ul li span {
    font-size: var(--font-size-16);
  }
  .c-lead .c-lead-bottom:before {
    height: 13px;
    translate: -50% -1px;
    width: 53px;
  }
}

.c-heading-block {
  align-items: center;
  background-color: var(--color-key);
  color: #FFF;
  display: flex;
  height: 196px;
  justify-content: center;
  position: relative;
  text-align: center;
}
.c-heading-block:before {
  background-color: var(--color-key);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  height: 33px;
  left: 50%;
  position: absolute;
  top: 100%;
  translate: -50% 0;
  width: 133px;
}
.c-heading-block p {
  font-size: var(--font-size-36);
  font-weight: 700;
  margin: 0;
  text-shadow: var(--text-shadow-base);
}
.c-heading-block p em {
  font-size: var(--font-size-48);
  font-weight: 900;
}
.c-heading-block h2 {
  font-size: var(--font-size-48);
  font-weight: 700;
  margin: 0;
  text-shadow: var(--text-shadow-base);
}
.c-heading-block h2 span {
  font-size: var(--font-size-30);
}
.c-heading-block h2 em {
  font-size: var(--font-size-48);
  font-weight: 900;
}
.c-heading-block .c-heading-block-sub {
  color: #909090;
  font-size: var(--font-size-18);
  margin-top: 10px;
  position: absolute;
  right: 40px;
  text-shadow: none;
  top: 100%;
}
@media screen and (max-width: 1023px) {
  .c-heading-block {
    height: auto;
    padding: 20px 10px;
  }
  .c-heading-block:before {
    height: 13px;
    translate: -50% -1px;
    width: 53px;
  }
  .c-heading-block p {
    font-size: var(--font-size-18);
  }
  .c-heading-block p em {
    font-size: var(--font-size-24);
  }
  .c-heading-block h2 {
    font-size: var(--font-size-24);
  }
  .c-heading-block h2 span {
    font-size: var(--font-size-15);
  }
  .c-heading-block h2 em {
    font-size: var(--font-size-26);
  }
  .c-heading-block .c-heading-block-sub {
    font-size: var(--font-size-13);
    margin-top: 10px;
    right: 20px;
  }
}

.c-contents {
  padding: 50px 0 80px;
}
.c-contents.-bg {
  background-color: var(--color-key-light);
}
.c-contents.-bg2 {
  background-color: var(--color-key-light2);
}
@media screen and (max-width: 1023px) {
  .c-contents {
    padding: 25px 0 40px;
  }
}

.c-c1 .c-c1-heading {
  line-height: 1.8;
  margin: 0 0 40px;
  text-align: center;
}
.c-c1 .c-c1-heading span {
  font-size: var(--font-size-36);
  font-weight: 700;
  display: block;
}
.c-c1 .c-c1-heading span.-en {
  color: #F3A23A;
  font-size: var(--font-size-14);
  font-weight: 400;
}
.c-c1 .c-c1-heading span em {
  font-size: var(--font-size-42);
}
.c-c1 .c-c1-heading span strong {
  background-color: #FFF;
  border: 1px solid var(--color-text);
  color: var(--color-text-key);
  font-size: var(--font-size-42);
  margin-left: 10px;
  padding: 4px 24px 4px 0;
}
.c-c1 .c-c1-lead {
  font-size: var(--font-size-24);
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}
.c-c1 .c-c1-point {
  display: flex;
  gap: 2.75%;
  padding: 90px 0;
}
.c-c1 .c-c1-point .c-c1-point-item {
  background-color: #FFF;
  border: 3px solid var(--color-key);
  border-radius: 10px;
  box-shadow: 0 9px 10px rgba(0, 0, 0, 0.07);
  padding: 0 20px 20px;
  text-align: center;
  width: 31.5%;
}
.c-c1 .c-c1-point .c-c1-point-item .c-c1-point-item-header i {
  align-items: center;
  background-color: var(--color-key);
  border: 4px solid #FFF;
  border-radius: 47px;
  display: flex;
  height: 94px;
  justify-content: center;
  margin: -47px auto 0;
  width: 94px;
}
.c-c1 .c-c1-point .c-c1-point-item .c-c1-point-item-header i img {
  width: 50px;
}
.c-c1 .c-c1-point .c-c1-point-item .c-c1-point-item-header h3 {
  color: var(--color-text-key);
  font-size: var(--font-size-30);
  font-weight: 700;
  margin: 5px 0 20px;
}
.c-c1 .c-c1-point .c-c1-point-item p {
  font-size: var(--font-size-24);
  margin: 0;
}
.c-c1 .c-c1-table {
  margin: 0 auto;
  max-width: 1100px;
}
.c-c1 .c-c1-table img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-c1 .c-c1-heading {
    margin: 0 0 20px;
  }
  .c-c1 .c-c1-heading span {
    font-size: var(--font-size-18);
  }
  .c-c1 .c-c1-heading span.-en {
    font-size: var(--font-size-12);
  }
  .c-c1 .c-c1-heading span em {
    font-size: var(--font-size-21);
  }
  .c-c1 .c-c1-heading span strong {
    font-size: var(--font-size-21);
    margin-left: 5px;
    padding: 4px 12px 4px 0;
  }
  .c-c1 .c-c1-lead {
    font-size: var(--font-size-14);
  }
  .c-c1 .c-c1-point {
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
  }
  .c-c1 .c-c1-point .c-c1-point-item {
    padding: 10px;
    text-align: left;
    width: 100%;
  }
  .c-c1 .c-c1-point .c-c1-point-item .c-c1-point-item-header {
    align-items: center;
    display: flex;
  }
  .c-c1 .c-c1-point .c-c1-point-item .c-c1-point-item-header i {
    border: 2px solid #FFF;
    height: 54px;
    margin: 0;
    position: relative;
    width: 54px;
  }
  .c-c1 .c-c1-point .c-c1-point-item .c-c1-point-item-header i img {
    width: 30px;
  }
  .c-c1 .c-c1-point .c-c1-point-item .c-c1-point-item-header h3 {
    font-size: var(--font-size-24);
    margin: 0;
    padding-left: 15px;
    width: calc(100% - 54px);
  }
  .c-c1 .c-c1-point .c-c1-point-item p {
    font-size: var(--font-size-20);
  }
  .c-c1 .c-c1-table {
    max-width: 600px;
  }
}

.c-c2 .c-c2-heading {
  color: var(--color-text-key);
  font-size: var(--font-size-42);
  font-weight: 900;
  margin: 0 0 40px;
  text-align: center;
}
.c-c2 .c-c2-heading .-pop {
  background-color: var(--color-key);
  border-radius: 10px;
  color: #FFF;
  display: block;
  font-size: var(--font-size-30);
  font-weight: 700;
  height: 75px;
  line-height: 75px;
  margin: 0 auto 40px;
  padding: 0 32px;
  position: relative;
  text-shadow: var(--text-shadow-base);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-c2 .c-c2-heading .-pop:before {
  background-color: var(--color-key);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
  height: 39px;
  left: 32px;
  position: absolute;
  top: 100%;
  translate: 0 -2px;
  width: 25px;
}
.c-c2 .c-c2-heading2 {
  margin: 0 0 10px;
  text-align: center;
}
.c-c2 .c-c2-heading2 span {
  background: url(../img/c2-heading-line.svg) no-repeat center bottom;
  background-size: contain;
  display: block;
  font-size: var(--font-size-30);
  font-weight: 700;
  margin: 0 auto;
  padding-bottom: 25px;
  width: 320px;
}
.c-c2 .c-c2-lead {
  font-size: var(--font-size-24);
  line-height: 1.8;
  margin: 0;
  text-align: center;
}
.c-c2 .c-c2-program {
  margin-top: 90px;
}
.c-c2 .c-c2-program h4 {
  border-top: 3px solid var(--color-key);
  margin: 0 0 60px;
}
.c-c2 .c-c2-program h4 span {
  background-color: #FFF;
  color: var(--color-text-key);
  display: block;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  margin: -0.5em auto 0;
  padding: 0 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-c2 .c-c2-program .c-c2-program-list {
  display: flex;
  gap: 2.9%;
}
.c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item {
  background-color: #FFF;
  border: 3px solid var(--color-key);
  border-radius: 10px;
  box-shadow: 2px 2px 32px rgba(0, 0, 0, 0.1);
  padding: 10px 16px 16px;
  width: 31.4%;
}
.c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item .c-c2-program-icon {
  align-items: center;
  display: flex;
  height: 140px;
  justify-content: center;
  text-align: center;
}
.c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item h5 {
  background-color: #565C63;
  border-radius: 30px;
  color: #FFF;
  font-size: var(--font-size-20);
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  margin: 10px auto;
  text-align: center;
  width: 90%;
}
.c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item h6 {
  font-size: var(--font-size-24);
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}
.c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item p {
  font-size: var(--font-size-20);
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .c-c2 .c-c2-heading {
    font-size: var(--font-size-21);
    margin: 0 0 20px;
  }
  .c-c2 .c-c2-heading .-pop {
    font-size: var(--font-size-18);
    height: 30px;
    line-height: 30px;
    margin: 0 auto 25px;
    padding: 0 15px;
  }
  .c-c2 .c-c2-heading .-pop:before {
    height: 19px;
    left: 16px;
    width: 13px;
  }
  .c-c2 .c-c2-heading2 {
    margin: 0 0 5px;
  }
  .c-c2 .c-c2-heading2 span {
    font-size: var(--font-size-20);
    padding-bottom: 15px;
    width: 200px;
  }
  .c-c2 .c-c2-lead {
    font-size: var(--font-size-17);
    text-align: left;
  }
  .c-c2 .c-c2-program {
    margin-top: 50px;
  }
  .c-c2 .c-c2-program h4 {
    margin: 0 0 30px;
  }
  .c-c2 .c-c2-program h4 span {
    font-size: var(--font-size-22);
    margin-top: -1em;
    text-align: center;
  }
  .c-c2 .c-c2-program .c-c2-program-list {
    flex-wrap: wrap;
    gap: 15px;
  }
  .c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item {
    padding: 0 10px 16px;
    position: relative;
    width: 100%;
  }
  .c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item .c-c2-program-icon {
    height: auto;
    left: 10px;
    position: absolute;
    top: 15px;
    width: 64px;
  }
  .c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item h5 {
    font-size: var(--font-size-16);
    height: 26px;
    line-height: 26px;
    margin: -13px auto;
    width: 228px;
  }
  .c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item h6 {
    font-size: var(--font-size-20);
    margin: 15px 0 15px 80px;
    text-align: left;
  }
  .c-c2 .c-c2-program .c-c2-program-list .c-c2-program-item p {
    font-size: var(--font-size-17);
  }
}

.c-c3 .c-c3-header {
  display: flex;
  justify-content: space-between;
}
.c-c3 .c-c3-header .c-c3-header-text {
  width: 56%;
}
.c-c3 .c-c3-header .c-c3-header-text h2 {
  font-size: var(--font-size-36);
  margin: 40px 0 30px;
}
.c-c3 .c-c3-header .c-c3-header-text h2 .-pop {
  background-color: var(--color-text-key);
  border-radius: 10px;
  color: #FFF;
  display: block;
  font-size: var(--font-size-48);
  font-weight: 700;
  height: 85px;
  line-height: 85px;
  margin: 0 0 40px;
  padding: 0 40px;
  position: relative;
  text-shadow: var(--text-shadow-base);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1199px) {
  .c-c3 .c-c3-header .c-c3-header-text h2 .-pop {
    font-size: var(--font-size-30);
  }
}
.c-c3 .c-c3-header .c-c3-header-text h2 .-pop em {
  font-size: 133%;
}
.c-c3 .c-c3-header .c-c3-header-text h2 .-pop:before {
  background-color: var(--color-text-key);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
  height: 39px;
  left: 40px;
  position: absolute;
  top: 100%;
  translate: 0 -2px;
  width: 25px;
}
.c-c3 .c-c3-header .c-c3-header-text p {
  font-size: var(--font-size-24);
  line-height: 1.8;
  margin: 0;
}
.c-c3 .c-c3-header .c-c3-header-graph {
  width: 40%;
}
.c-c3 .c-c3-reason {
  background-color: #FFF;
  border: 3px solid var(--color-key);
  border-radius: 10px;
  margin: 60px auto 0;
  max-width: 1100px;
  padding: 0 50px 40px;
}
.c-c3 .c-c3-reason h3 {
  background-color: var(--color-key);
  border-radius: 30px;
  color: #FFF;
  font-size: var(--font-size-30);
  height: 60px;
  line-height: 60px;
  margin: -30px auto 0;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-c3 .c-c3-reason ul {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
.c-c3 .c-c3-reason ul li {
  font-size: var(--font-size-24);
  padding-left: 45px;
  position: relative;
}
.c-c3 .c-c3-reason ul li:not(:last-of-type) {
  margin-bottom: 30px;
}
.c-c3 .c-c3-reason ul li:before {
  background: url(../img/icon-square-check.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  height: 32px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 37px;
}
.c-c3 .c-c3-reason ul li span {
  border-bottom: 2px dotted var(--color-text-key);
}
@media screen and (max-width: 1023px) {
  .c-c3 .c-c3-header {
    flex-wrap: wrap;
    gap: 15px;
  }
  .c-c3 .c-c3-header .c-c3-header-text {
    width: 100%;
  }
  .c-c3 .c-c3-header .c-c3-header-text h2 {
    font-size: var(--font-size-24);
    margin: 20px 0 15px;
  }
  .c-c3 .c-c3-header .c-c3-header-text h2 .-pop {
    font-size: var(--font-size-24);
    height: 58px;
    line-height: 58px;
    margin: 0 0 24px;
    padding: 0 20px;
  }
  .c-c3 .c-c3-header .c-c3-header-text h2 .-pop:before {
    height: 19px;
    left: 20px;
    width: 13px;
  }
  .c-c3 .c-c3-header .c-c3-header-text p {
    font-size: var(--font-size-17);
  }
  .c-c3 .c-c3-header .c-c3-header-graph {
    width: 100%;
  }
  .c-c3 .c-c3-reason {
    padding: 0 20px 20px;
  }
  .c-c3 .c-c3-reason h3 {
    font-size: var(--font-size-18);
    height: 40px;
    line-height: 40px;
    margin: -20px auto 0;
    padding: 0 20px;
  }
  .c-c3 .c-c3-reason ul {
    margin: 30px 0 0;
  }
  .c-c3 .c-c3-reason ul li {
    font-size: var(--font-size-17);
    padding-left: 30px;
  }
  .c-c3 .c-c3-reason ul li:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .c-c3 .c-c3-reason ul li:before {
    height: 21px;
    top: 3px;
    width: 23px;
  }
  .c-c3 .c-c3-reason ul li span {
    display: block;
  }
}

.c-c4 .c4-lead {
  font-size: var(--font-size-30);
  text-align: center;
}
.c-c4 .c4-lead em {
  background-color: var(--color-key-light);
  font-weight: 700;
}
.c-c4 .c-c4-imgs {
  display: flex;
}
.c-c4 .c-c4-imgs .c-c4-imgs-item {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .c-c4 .c4-lead {
    font-size: var(--font-size-18);
  }
  .c-c4 .c-c4-imgs {
    flex-wrap: wrap;
    gap: 0;
  }
  .c-c4 .c-c4-imgs .c-c4-imgs-item {
    width: 100%;
  }
}

.c-c5 .c-c5-heading-pop {
  border: 3px solid var(--color-text-key);
  border-radius: 10px;
  color: var(--color-text-key);
  font-size: var(--font-size-30);
  font-weight: 700;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 50px;
  max-width: 624px;
  text-align: center;
  width: 100%;
}
.c-c5 .c-c5-heading-pop em {
  font-size: var(--font-size-32);
}
.c-c5 .c-c5-heading {
  border-top: 3px solid var(--color-text-key);
  margin: 0 0 40px;
}
.c-c5 .c-c5-heading span {
  background-color: var(--color-key-light);
  display: block;
  font-size: var(--font-size-42);
  font-weight: 700;
  line-height: 1;
  margin: -0.5em auto 0;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-c5 .c-c5-heading span em {
  color: var(--color-text-key);
}
.c-c5 .c-c5-point {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.c-c5 .c-c5-point .c-c5-point-item {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 2px 2px 32px rgba(0, 0, 0, 0.1);
  width: 31.6%;
}
.c-c5 .c-c5-point .c-c5-point-item h3 {
  align-items: center;
  background-color: var(--color-key-light2);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  font-size: var(--font-size-24);
  font-weight: 400;
  height: 100px;
  justify-content: center;
  margin: 0;
  text-align: center;
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top {
  align-items: center;
  border-bottom: 2px dashed #899DA5;
  display: flex;
  height: 134px;
  justify-content: center;
  padding: 20px;
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top div {
  width: 100%;
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top h4 {
  font-size: var(--font-size-30);
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top h4 strong {
  color: var(--color-text-key);
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top h4 em {
  font-size: var(--font-size-40);
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top .c-c5-point-attention {
  background-color: #FDD9CB;
  border-radius: 25px;
  color: #F25C24;
  font-size: var(--font-size-26);
  font-weight: 700;
  height: 50px;
  left: -40px;
  line-height: 50px;
  margin: 10px 0 0;
  position: relative;
  text-align: center;
  width: calc(100% + 80px);
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top .c-c5-point-attention em {
  font-size: var(--font-size-37);
  font-weight: 900;
}
@media screen and (max-width: 1199px) {
  .c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top .c-c5-point-attention {
    font-size: var(--font-size-20);
  }
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-bottom {
  padding: 20px;
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-bottom p {
  font-size: var(--font-size-24);
  line-height: 1.8;
  margin: 0;
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-bottom ul {
  margin: 0;
}
.c-c5 .c-c5-point .c-c5-point-item .c-c5-point-bottom ul li {
  font-size: var(--font-size-24);
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .c-c5 .c-c5-heading-pop {
    font-size: var(--font-size-16);
    height: 52px;
    line-height: 52px;
    margin: 0 auto 30px;
    max-width: 300px;
  }
  .c-c5 .c-c5-heading-pop em {
    font-size: var(--font-size-24);
  }
  .c-c5 .c-c5-heading {
    border-top: none;
    margin: 0 0 10px;
    text-align: center;
  }
  .c-c5 .c-c5-heading span {
    font-size: var(--font-size-24);
    line-height: 1.4;
  }
  .c-c5 .c-c5-point {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
  .c-c5 .c-c5-point .c-c5-point-item {
    width: 100%;
  }
  .c-c5 .c-c5-point .c-c5-point-item h3 {
    font-size: var(--font-size-18);
    height: auto;
    padding: 15px;
  }
  .c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top {
    height: auto;
    padding: 20px;
  }
  .c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top h4 {
    font-size: var(--font-size-24);
  }
  .c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top h4 em {
    font-size: var(--font-size-28);
  }
  .c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top .c-c5-point-attention {
    font-size: var(--font-size-18);
    height: 36px;
    left: 0;
    line-height: 36px;
    margin: 10px 0 0;
    width: 100%;
  }
  .c-c5 .c-c5-point .c-c5-point-item .c-c5-point-top .c-c5-point-attention em {
    font-size: var(--font-size-24);
  }
  .c-c5 .c-c5-point .c-c5-point-item .c-c5-point-bottom p {
    font-size: var(--font-size-18);
  }
  .c-c5 .c-c5-point .c-c5-point-item .c-c5-point-bottom ul li {
    font-size: var(--font-size-18);
  }
  .c-c5 .c5-graph {
    margin-top: 20px;
  }
}

.c-c6-team {
  background-color: var(--color-key-light2);
  padding: 35px;
}
.c-c6-team h2 {
  font-size: var(--font-size-42);
  margin: 0 0 30px;
  text-align: center;
}
.c-c6-team h2 .-pop {
  background-color: var(--color-key);
  border-radius: 26px;
  color: #FFF;
  display: block;
  font-size: var(--font-size-36);
  height: 52px;
  line-height: 52px;
  margin: 0 auto;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-c6-team .c-c6-team-list {
  display: flex;
  justify-content: space-between;
}
.c-c6-team .c-c6-team-list .c-c6-team-item {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 2px 2px 32px rgba(0, 0, 0, 0.1);
  width: 31.6%;
}
.c-c6-team .c-c6-team-list .c-c6-team-item h3 {
  align-items: center;
  background-color: #E9F5E6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: var(--color-text-key);
  display: flex;
  font-size: var(--font-size-30);
  font-weight: 700;
  height: 100px;
  justify-content: center;
  margin: 0;
  text-align: center;
}
.c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-top {
  align-items: center;
  border-bottom: 2px dashed #899DA5;
  display: flex;
  height: 134px;
  justify-content: center;
  padding: 20px;
}
.c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-top div {
  width: 100%;
}
.c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-top h4 {
  font-size: var(--font-size-30);
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-top h4 strong {
  color: var(--color-text-key);
}
.c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-top h4 em {
  font-size: var(--font-size-40);
}
.c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-bottom {
  padding: 20px;
}
.c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-bottom p {
  font-size: var(--font-size-30);
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
.c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-bottom p strong {
  color: var(--color-text-key);
  font-size: var(--font-size-36);
  font-weight: 900;
}
@media screen and (max-width: 1023px) {
  .c-c6-team {
    padding: 20px 10px;
  }
  .c-c6-team h2 {
    font-size: var(--font-size-24);
    margin: 0 0 20px;
  }
  .c-c6-team h2 .-pop {
    font-size: var(--font-size-18);
    height: 40px;
    line-height: 40px;
  }
  .c-c6-team .c-c6-team-list {
    flex-wrap: wrap;
    gap: 15px;
  }
  .c-c6-team .c-c6-team-list .c-c6-team-item {
    width: 100%;
  }
  .c-c6-team .c-c6-team-list .c-c6-team-item h3 {
    font-size: var(--font-size-20);
    height: auto;
    padding: 15px;
  }
  .c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-top {
    height: 134px;
    height: auto;
    padding: 15px;
  }
  .c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-top h4 {
    font-size: var(--font-size-18);
  }
  .c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-top h4 em {
    font-size: var(--font-size-22);
  }
  .c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-bottom {
    padding: 15px;
  }
  .c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-bottom p {
    font-size: var(--font-size-18);
  }
  .c-c6-team .c-c6-team-list .c-c6-team-item .c-c6-team-bottom p strong {
    font-size: var(--font-size-22);
  }
}

.c-c6-contents {
  display: flex;
  gap: 2%;
  justify-content: center;
  margin-top: 80px;
}
.c-c6-contents .c-c6-contents-item {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 2px 2px 32px rgba(0, 0, 0, 0.1);
  max-width: 582px;
  overflow: hidden;
  width: 49%;
}
.c-c6-contents .c-c6-contents-item h3 {
  background-color: var(--color-key-light2);
  font-size: var(--font-size-30);
  height: 80px;
  line-height: 80px;
  margin: 0;
  text-align: center;
}
.c-c6-contents .c-c6-contents-item .c-c6-contents-body {
  padding: 30px;
}
.c-c6-contents .c-c6-contents-item .c-c6-contents-body p {
  font-size: var(--font-size-24);
  font-weight: 700;
  margin: 0;
}
.c-c6-contents .c-c6-staff-list .c-c6-staff-item {
  align-items: center;
  display: flex;
  gap: 48px;
  margin-bottom: 25px;
}
.c-c6-contents .c-c6-staff-list .c-c6-staff-item .c-c6-staff-icon {
  border: 2px solid var(--color-key);
  border-radius: 65px;
  height: 130px;
  overflow: hidden;
  position: relative;
  width: 130px;
}
.c-c6-contents .c-c6-staff-list .c-c6-staff-item .c-c6-staff-icon img {
  bottom: 0;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  translate: -50% 0;
}
.c-c6-contents .c-c6-staff-list .c-c6-staff-item div {
  font-size: var(--font-size-30);
  font-weight: 700;
  width: calc(100% - 178px);
}
@media screen and (max-width: 1199px) {
  .c-c6-contents .c-c6-staff-list .c-c6-staff-item div {
    font-size: var(--font-size-20);
  }
}
.c-c6-contents .c-c6-timeline .c-c6-timeline-item {
  align-items: center;
  display: flex;
  font-size: var(--font-size-30);
  font-weight: 700;
  padding: 40px 0;
  position: relative;
  width: 100%;
}
.c-c6-contents .c-c6-timeline .c-c6-timeline-item:not(:last-of-type):after {
  background-color: #E9F5E6;
  content: "";
  height: 100%;
  left: 16px;
  position: absolute;
  top: 50%;
  width: 8px;
}
.c-c6-contents .c-c6-timeline .c-c6-timeline-item:before {
  background-color: var(--color-key);
  border-radius: 15px;
  content: "";
  height: 30px;
  left: 5px;
  position: relative;
  width: 30px;
  z-index: 1;
}
.c-c6-contents .c-c6-timeline .c-c6-timeline-item .c-c6-timeline-time {
  color: var(--color-key);
  display: block;
  line-height: 1.2;
  padding: 0 30px;
  width: 170px;
}
.c-c6-contents .c-c6-timeline .c-c6-timeline-item .c-c6-timeline-text {
  width: calc(100% - 200px);
}
.c-c6-contents .c-c6-timeline .c-c6-timeline-rest {
  background-color: #E9F5E6;
  border-radius: 30px;
  color: var(--color-text-key);
  font-size: var(--font-size-30);
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  position: relative;
  text-align: center;
}
.c-c6-contents .c-c6-timeline .c-c6-timeline-rest:after {
  background-color: #E9F5E6;
  content: "";
  height: 200%;
  left: 16px;
  position: absolute;
  top: 50%;
  width: 8px;
}
@media screen and (max-width: 1199px) {
  .c-c6-contents .c-c6-timeline .c-c6-timeline-item {
    font-size: var(--font-size-22);
  }
  .c-c6-contents .c-c6-timeline .c-c6-timeline-rest {
    font-size: var(--font-size-22);
  }
}
@media screen and (max-width: 1023px) {
  .c-c6-contents {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
  }
  .c-c6-contents .c-c6-contents-item {
    width: 100%;
  }
  .c-c6-contents .c-c6-contents-item h3 {
    font-size: var(--font-size-20);
    height: 60px;
    line-height: 60px;
  }
  .c-c6-contents .c-c6-contents-item .c-c6-contents-body {
    padding: 20px 10px;
  }
  .c-c6-contents .c-c6-contents-item .c-c6-contents-body p {
    font-size: var(--font-size-18);
  }
  .c-c6-contents .c-c6-staff-list .c-c6-staff-item {
    gap: 20px;
    margin-bottom: 15px;
  }
  .c-c6-contents .c-c6-staff-list .c-c6-staff-item .c-c6-staff-icon {
    height: 88px;
    width: 88px;
  }
  .c-c6-contents .c-c6-staff-list .c-c6-staff-item .c-c6-staff-icon img {
    height: 90%;
  }
  .c-c6-contents .c-c6-staff-list .c-c6-staff-item div {
    font-size: var(--font-size-20);
    width: calc(100% - 108px);
  }
  .c-c6-contents .c-c6-timeline .c-c6-timeline-item {
    font-size: var(--font-size-20);
    padding: 20px 0;
  }
  .c-c6-contents .c-c6-timeline .c-c6-timeline-item:not(:last-of-type):after {
    left: 13px;
    width: 6px;
  }
  .c-c6-contents .c-c6-timeline .c-c6-timeline-item:before {
    height: 22px;
    left: 5px;
    width: 22px;
  }
  .c-c6-contents .c-c6-timeline .c-c6-timeline-item .c-c6-timeline-time {
    padding: 0 20px;
    width: 140px;
  }
  .c-c6-contents .c-c6-timeline .c-c6-timeline-item .c-c6-timeline-text {
    width: calc(100% - 167px);
  }
  .c-c6-contents .c-c6-timeline .c-c6-timeline-rest {
    font-size: var(--font-size-20);
    height: 44px;
    line-height: 44px;
  }
  .c-c6-contents .c-c6-timeline .c-c6-timeline-rest:after {
    left: 13px;
    width: 6px;
  }
}

.c-c7 .c-c7-header {
  display: flex;
  justify-content: space-between;
}
.c-c7 .c-c7-header .c-c7-header-sns {
  width: 42.4%;
}
.c-c7 .c-c7-header .c-c7-header-sns .c-c7-sns-insta {
  height: auto;
  margin-bottom: 30px;
}
.c-c7 .c-c7-header .c-c7-header-body {
  width: 54%;
}
.c-c7 .c-c7-header .c-c7-header-body h2 {
  font-size: var(--font-size-30);
  margin: 0;
}
.c-c7 .c-c7-header .c-c7-header-body h2 span {
  display: block;
  margin-bottom: 2em;
}
.c-c7 .c-c7-header .c-c7-header-body p {
  font-size: var(--font-size-24);
  font-weight: 700;
  margin-top: 2em;
}
.c-c7 .c-c7-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
  justify-content: center;
  margin-top: 60px;
}
.c-c7 .c-c7-body .c-c7-body-item {
  background-color: #FFF;
  border: 1px solid #909090;
  border-radius: 10px;
  max-width: 550px;
  padding: 20px;
  width: 49%;
}
.c-c7 .c-c7-body .c-c7-body-item h3 {
  border-bottom: 3px solid var(--color-key);
  color: var(--color-text-key);
  font-size: var(--font-size-28);
  margin: 0 0 10px;
  padding-bottom: 10px;
}
.c-c7 .c-c7-body .c-c7-body-item p {
  font-size: var(--font-size-22);
}
.c-c7 .c-c7-body .c-c7-body-item p em {
  background-color: var(--color-key-light2);
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .c-c7 .c-c7-header {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .c-c7 .c-c7-header .c-c7-header-sns {
    width: 100%;
  }
  .c-c7 .c-c7-header .c-c7-header-body {
    width: 100%;
  }
  .c-c7 .c-c7-header .c-c7-header-body h2 {
    font-size: var(--font-size-20);
  }
  .c-c7 .c-c7-header .c-c7-header-body h2 span {
    margin-bottom: 1em;
  }
  .c-c7 .c-c7-header .c-c7-header-body p {
    font-size: var(--font-size-16);
    margin-top: 1em;
  }
  .c-c7 .c-c7-body {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }
  .c-c7 .c-c7-body .c-c7-body-item {
    padding: 15px;
    width: 100%;
  }
  .c-c7 .c-c7-body .c-c7-body-item h3 {
    font-size: var(--font-size-18);
    text-align: center;
  }
  .c-c7 .c-c7-body .c-c7-body-item p {
    font-size: var(--font-size-16);
  }
}

.c-c8 .c-c8-point {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.c-c8 .c-c8-point .c-c8-point-item {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 2px 2px 32px rgba(0, 0, 0, 0.1);
  width: 31.6%;
}
.c-c8 .c-c8-point .c-c8-point-item h3 {
  align-items: center;
  background-color: #E9F5E6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: var(--color-text-key);
  display: flex;
  font-size: var(--font-size-30);
  font-weight: 700;
  height: 100px;
  justify-content: center;
  margin: 0;
  text-align: center;
}
.c-c8 .c-c8-point .c-c8-point-item .c-c8-point-top {
  align-items: center;
  border-bottom: 2px dashed #899DA5;
  display: flex;
  height: 134px;
  justify-content: center;
  padding: 20px;
}
.c-c8 .c-c8-point .c-c8-point-item .c-c8-point-top div {
  width: 100%;
}
.c-c8 .c-c8-point .c-c8-point-item .c-c8-point-top p {
  font-size: var(--font-size-30);
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
.c-c8 .c-c8-point .c-c8-point-item .c-c8-point-bottom {
  padding: 20px;
}
.c-c8 .c-c8-point .c-c8-point-item .c-c8-point-bottom p {
  font-size: var(--font-size-30);
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .c-c8 .c-c8-point .c-c8-point-item h3 {
    font-size: var(--font-size-24);
  }
  .c-c8 .c-c8-point .c-c8-point-item .c-c8-point-top p {
    font-size: var(--font-size-24);
  }
  .c-c8 .c-c8-point .c-c8-point-item .c-c8-point-bottom p {
    font-size: var(--font-size-24);
  }
}
.c-c8 .c-c8-heading {
  border-top: 3px solid var(--color-text-key);
  margin: 100px 0 30px;
}
.c-c8 .c-c8-heading span {
  background-color: #FFF;
  color: var(--color-text-key);
  display: block;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  margin: -0.5em auto 0;
  padding: 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-c8 .c-c8-flow {
  display: flex;
  gap: 10px;
  margin-top: 60px;
}
.c-c8 .c-c8-flow .c-c8-flow-item {
  border: 2px solid var(--color-text-key);
  border-radius: 10px;
  flex: 1;
  padding: 0 20px 20px;
}
.c-c8 .c-c8-flow .c-c8-flow-item .c-c8-flow-num {
  background-color: #FFF;
  display: block;
  margin: -25px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-c8 .c-c8-flow .c-c8-flow-item h4 {
  align-items: center;
  color: var(--color-text-key);
  display: flex;
  height: 3em;
  justify-content: center;
  text-align: center;
}
.c-c8 .c-c8-flow .c-c8-flow-item h4 span {
  font-size: var(--font-size-26);
}
.c-c8 .c-c8-flow .c-c8-flow-item p {
  font-size: var(--font-size-22);
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .c-c8 .c-c8-flow .c-c8-flow-item h4 span {
    font-size: var(--font-size-20);
  }
  .c-c8 .c-c8-flow .c-c8-flow-item p {
    font-size: var(--font-size-18);
  }
}
.c-c8 .c-c8-attention {
  color: #909090;
  font-size: var(--font-size-18);
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .c-c8 .c-c8-point {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
  }
  .c-c8 .c-c8-point .c-c8-point-item {
    width: 100%;
  }
  .c-c8 .c-c8-point .c-c8-point-item h3 {
    font-size: var(--font-size-18);
    height: auto;
    padding: 15px;
  }
  .c-c8 .c-c8-point .c-c8-point-item .c-c8-point-top {
    height: auto;
    padding: 15px;
  }
  .c-c8 .c-c8-point .c-c8-point-item .c-c8-point-top p {
    font-size: var(--font-size-20);
  }
  .c-c8 .c-c8-point .c-c8-point-item .c-c8-point-bottom {
    padding: 15px;
  }
  .c-c8 .c-c8-point .c-c8-point-item .c-c8-point-bottom p {
    font-size: var(--font-size-20);
  }
  .c-c8 .c-c8-heading {
    margin: 60px 0 30px;
  }
  .c-c8 .c-c8-heading span {
    font-size: var(--font-size-24);
    padding: 0 20px;
  }
  .c-c8 .c-c8-flow {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
  .c-c8 .c-c8-flow .c-c8-flow-item {
    flex: none;
    padding: 20px 30px;
    position: relative;
    width: 90%;
  }
  .c-c8 .c-c8-flow .c-c8-flow-item .c-c8-flow-num {
    left: -1em;
    margin: 0;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
  }
  .c-c8 .c-c8-flow .c-c8-flow-item h4 {
    height: auto;
    margin: 0 0 10px;
  }
  .c-c8 .c-c8-flow .c-c8-flow-item h4 span {
    font-size: var(--font-size-24);
  }
  .c-c8 .c-c8-flow .c-c8-flow-item h4 br {
    display: none;
  }
  .c-c8 .c-c8-flow .c-c8-flow-item p {
    font-size: var(--font-size-20);
  }
  .c-c8 .c-c8-attention {
    font-size: var(--font-size-12);
  }
}

.c-c9 .c-c9-lead {
  font-size: var(--font-size-30);
  text-align: center;
}
.c-c9 .c-c9-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.c-c9 .c-c9-contents .c-c9-graph {
  width: 41.25%;
}
.c-c9 .c-c9-contents .c-c9-voice {
  width: 57%;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item {
  margin-bottom: 40px;
  padding: 0 0 60px 80px;
  position: relative;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-icon {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 98px;
  z-index: 1;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-icon span {
  background-color: #eee;
  border-radius: 14px;
  bottom: -15px;
  display: block;
  font-size: var(--font-size-18);
  font-weight: 700;
  height: 28px;
  left: 50%;
  line-height: 28px;
  position: absolute;
  text-align: center;
  translate: -50% 0;
  width: 135px;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-body {
  border: 3px solid #EEE;
  border-radius: 10px;
  padding: 20px 10px;
  position: relative;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-body:before {
  background-color: #EEE;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
  height: 35px;
  left: 50px;
  position: absolute;
  top: 100%;
  width: 17px;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-body p {
  font-size: var(--font-size-20);
  margin: 0;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-body ul {
  margin: 0;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-body ul li {
  font-size: var(--font-size-20);
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(1) .c-c9-voice-icon span {
  background-color: #E9F5E6;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(1) .c-c9-voice-body {
  border-color: #E9F5E6;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(1) .c-c9-voice-body:before {
  background-color: #E9F5E6;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(2) {
  padding: 0 80px 60px 0;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(2) .c-c9-voice-icon {
  left: auto;
  right: 0;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(2) .c-c9-voice-icon span {
  background-color: #B3CBEF;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(2) .c-c9-voice-body {
  border-color: #B3CBEF;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(2) .c-c9-voice-body:before {
  background-color: #B3CBEF;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  left: auto;
  right: 50px;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(3) .c-c9-voice-icon span {
  background-color: #FDD9CB;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(3) .c-c9-voice-body {
  border-color: #FDD9CB;
}
.c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(3) .c-c9-voice-body:before {
  background-color: #FDD9CB;
}
@media screen and (max-width: 1023px) {
  .c-c9 .c-c9-lead {
    font-size: var(--font-size-18);
  }
  .c-c9 .c-c9-contents {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
  .c-c9 .c-c9-contents .c-c9-graph {
    width: 100%;
  }
  .c-c9 .c-c9-contents .c-c9-voice {
    width: 100%;
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item {
    margin-bottom: 20px;
    padding: 0 10px;
    position: relative;
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-icon {
    bottom: auto;
    left: 0;
    top: 0;
    width: auto;
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-icon img {
    display: none;
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-icon span {
    border-radius: 0;
    left: 10px;
    line-height: 28px;
    padding: 0 5px;
    translate: 0;
    white-space: nowrap;
    width: auto;
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-body:before {
    display: none;
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-body p {
    font-size: var(--font-size-18);
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item .c-c9-voice-body ul li {
    font-size: var(--font-size-18);
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(2) {
    padding: 0 10px;
  }
  .c-c9 .c-c9-contents .c-c9-voice .c-c9-voice-item:nth-of-type(2) .c-c9-voice-icon {
    left: 0;
    right: auto;
  }
}

.c-faq .c-faq-heading {
  font-size: var(--font-size-36);
  margin: 0 0 30px;
  text-align: center;
}
.c-faq .c-faq-heading .-en {
  color: #F3A23A;
  display: block;
  font-size: var(--font-size-14);
  font-weight: 400;
  margin-bottom: 10px;
}
.c-faq .c-faq-list .c-faq-item {
  background-color: #FFF;
  border-radius: 10px;
  margin-bottom: 10px;
}
.c-faq .c-faq-list .c-faq-item i:not(.c-faq-q-arrow) {
  background-color: var(--color-key);
  border-radius: 20px;
  color: #FFF;
  display: block;
  font-size: var(--font-size-32);
  font-style: normal;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
.c-faq .c-faq-list .c-faq-item .c-faq-q {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 10px 30px;
  position: relative;
  text-align: left;
  width: 100%;
}
.c-faq .c-faq-list .c-faq-item .c-faq-q span {
  font-size: var(--font-size-24);
  font-weight: 700;
  padding-left: 15px;
  width: calc(100% - 40px);
}
.c-faq .c-faq-list .c-faq-item .c-faq-q .c-faq-q-arrow {
  background: url(../img/icon-chervon-up.png) no-repeat 0 0;
  background-size: contain;
  height: 13px;
  position: absolute;
  right: 30px;
  scale: 1 -1;
  top: 25px;
  transition: var(--transition-base);
  width: 26px;
}
.c-faq .c-faq-list .c-faq-item .c-faq-q.is-open .c-faq-q-arrow {
  scale: 1 1;
}
.c-faq .c-faq-list .c-faq-item .c-faq-a {
  display: none;
}
.c-faq .c-faq-list .c-faq-item .c-faq-a .c-faq-a-inner {
  display: flex;
  padding: 10px 30px;
  position: relative;
  text-align: left;
  width: 100%;
}
.c-faq .c-faq-list .c-faq-item .c-faq-a .c-faq-a-inner span {
  font-size: var(--font-size-20);
  line-height: 1.6;
  padding-left: 15px;
  width: calc(100% - 40px);
}
@media screen and (max-width: 1023px) {
  .c-faq .c-faq-heading {
    font-size: var(--font-size-24);
    margin: 0 0 20px;
  }
  .c-faq .c-faq-list .c-faq-item .c-faq-q {
    align-items: center;
    padding: 10px 20px;
  }
  .c-faq .c-faq-list .c-faq-item .c-faq-q span {
    font-size: var(--font-size-18);
    padding-right: 30px;
  }
  .c-faq .c-faq-list .c-faq-item .c-faq-a .c-faq-a-inner {
    padding: 10px 20px;
  }
  .c-faq .c-faq-list .c-faq-item .c-faq-a .c-faq-a-inner span {
    font-size: var(--font-size-16);
  }
}

.c-cta {
  background-color: var(--color-key);
  padding: 95px 0;
}
.c-cta .c-cta-contents {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
  max-width: 1100px;
  padding: 50px;
  text-align: center;
  width: 100%;
}
.c-cta .c-cta-contents h2 {
  color: var(--color-text-key);
  font-size: var(--font-size-36);
  margin: 0 0 20px;
}
.c-cta .c-cta-contents p {
  font-size: var(--font-size-24);
  margin: 0 0 30px;
}
@media screen and (max-width: 1023px) {
  .c-cta {
    padding: 40px 0;
  }
  .c-cta .c-cta-contents {
    padding: 20px;
  }
  .c-cta .c-cta-contents h2 {
    font-size: var(--font-size-20);
  }
  .c-cta .c-cta-contents p {
    font-size: var(--font-size-16);
    margin: 0 0 20px;
  }
}

.l-footer {
  background-color: #367E78;
  padding: 30px 0 120px;
  position: relative;
}
.l-footer .c-copyright {
  color: #FFF;
  font-size: var(--font-size-16);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .l-footer {
    padding: 25px 0 100px;
  }
  .l-footer .c-copyright {
    font-size: var(--font-size-14);
  }
}

.c-fixed-btn {
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: var(--transition-base);
  width: 100%;
  z-index: 99;
}
.c-fixed-btn .c-btn-wrap {
  padding: 10px 0;
}
.c-fixed-btn.is-active {
  opacity: 1;
  pointer-events: visible;
}

.c-movie {
  background-color: var(--color-key-light2);
  padding: 40px 0;
}

.c-movie-list {
  display: flex;
  gap: 4%;
  justify-content: center;
}
.c-movie-list .c-movie-item {
  max-width: 600px;
  width: 48%;
}
.c-movie-list .c-movie-item h2 {
  color: var(--color-text);
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
  padding-left: 32px;
  position: relative;
}
.c-movie-list .c-movie-item h2:before {
  background-color: var(--color-text);
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 16px;
}

.c-movie-wrapper {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  width: 100%;
}
.c-movie-wrapper .c-movie-inner {
  padding-top: 56.25%;
  position: relative;
}
.c-movie-wrapper .c-movie-inner iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .c-movie {
    padding: 14% 0 24px;
  }
  .c-movie-list {
    flex-wrap: wrap;
    gap: 24px;
  }
  .c-movie-list .c-movie-item {
    max-width: 100%;
    width: 100%;
  }
  .c-movie-list .c-movie-item h2 {
    font-size: var(--font-size-20);
  }
}
.c-footer-link {
  color: #FFF;
  font-size: var(--font-size-16);
  font-weight: 700;
  position: absolute;
  right: 24px;
  text-decoration: underline;
  top: 30px;
}
.c-footer-link:hover {
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */