@charset "UTF-8";


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}
body {
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}
a {
  text-decoration: none;
}
ul,ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.visible_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .visible_pc {
    display: none;
  }
  .visible_sp {
    display: block;
  }
}

/* --------------------
  UTILITY
-------------------- */
:root {
  --orange: #FF792E;
  --blue: #122189;
}
.l-inner {
  max-width: 800px;
  padding: 0 6.4%;
  margin: 0 auto;
}
.l-section {
  padding: 50px 0;
  position: relative;
}
.l-section:nth-of-type(odd) {
  background: #D5DAF9;
}
.l-section:nth-of-type(even) {
  background: #FFF;
}
.l-section h2 {
  text-align: center;
  margin: 0 0 40px;
}
.l-section h2 img {
  width: auto;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 64px 0;
  }
  .l-inner {
    padding: 0;
  }
}


/* --------------------
  component
-------------------- */
.c-cta__list:has(*:not(:only-child)) {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}
.c-cta__button {
  width: 327px;
  margin-left: auto;
  margin-right: auto;
}
.c-cta__button a {
  width: 100%;
  height: 67px;
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border: 3px solid #FFF;
  border-radius: 50px;
  position: relative;
  transition: 0.2s;
}
.c-cta__button a::before,
.c-cta__button a::after {
  display: block;
  content: "";
  position: absolute;
  transition: 0.2s;
}
.c-cta__button a::before {
  width: 22px;
  height: 22px;
  background: #FFF;
  border-radius: 50%;
  right: 20px;
  top: 35%;
}
.c-cta__button a::after {
  width: 8px;
  height: 12px;
  background-color: var(--orange);
  clip-path: polygon(8px 50%, 0% 0%, 0% 12px);
  right: 26px;
  top: 43%;
}
.c-cta__lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 6px;
}
.c-cta__note {
  color: #555;
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
  margin-top: 6px;
}
.c-note li {
  color: #555;
  font-size: 12px;
  text-indent: -8px;
  margin-left: 12px;
}
.c-note li:before {
  display: inline-block;
  content: "※";
  margin-right: 4px;
}
.c-right {
  color: #555;
  font-size: 12px !important;
  text-align: right;
  margin: 4px 0 0 !important;
}
.c-accordion dt {
  cursor: pointer;
}
.c-link--modal {
    padding-left: 2px;
    margin-right: 0.5rem;
    color: var(--blue);
    text-decoration: underline;
    cursor: pointer;
}
.c-link--modal::after {
    background-image: url(../img/icon_link_modal.webp);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    bottom: -2px;
}
@media (hover: hover) {
  .c-cta__button a:hover {
    color: var(--orange);
    background: #FFF;
    border-color: var(--orange);
    transition: 0.2s;
  }
  .c-cta__button a:hover::before,
  .c-cta__button a:hover::after {
    transition: 0.2s;
  }
  .c-cta__button a:hover::before {
    background: var(--orange);
  }
  .c-cta__button a:hover::after {
    background-color: #FFF;
  }
}
@media screen and (min-width: 768px) {
  .c-cta__button {
    width: 500px;
  }
  .c-cta__note {
    font-size: 14px;
  }
}
/* =====================
  c-modal
===================== */
.c-modal {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 1010;
  position: fixed;
  top: 0;
  left: 0;
}
.c-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.c-modal__close {
  cursor: pointer;
}
.c-modal--normal .c-modal__bg {
  background-color: rgba(0,0,0,0.4);
}
.c-modal--new-normal .c-modal__bg {
  background-color: rgba(0,0,0,0.4);
}
.c-modal--new-normal__wrap {
  width: 90%;
  max-height: 80vh;
  max-width: 820px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.c-modal--new-normal__box {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  border-radius: 20px;
  background: #fff;
  padding: 40px 0;
  overflow: auto;
}
.c-modal--new-normal__inner {
  width: 90%;
  margin: 0 auto;
}
.c-modal--new-normal .c-modal__close {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: -45px;
  z-index: 1010;
}
.c-modal--new-normal__open {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-modal__button:hover {
    opacity: 0.8;
    transition: 0.3s;
  }
}
@media screen and (max-width:767.9px) {
  .c-modal--new-normal__box {
    max-height: calc(90vh - 55px);
  }
}

/* --------------------
  header
-------------------- */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-bottom-right-radius: 25px;
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 5;
}
header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 143px;
  height: auto;
}
header h1 img {
  vertical-align: unset;
}
@media screen and (min-width: 768px) {
  header h1 {
    width: 213px;
  }
}


/* fv */
.p-fv {
  padding-top: 88px;
  padding-bottom: 32px;
  background: var(--blue);
}
.p-fv picture {
  display: block;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.p-fv .c-cta__list {
  margin-top: -3.5rem;
  margin-bottom: 24px;
}
.p-fv .c-cta__lead {
  color: #FFF;
}
.p-fv__note {
  text-align: left;
  width: 90%;
  margin: 0 auto;
}
.p-fv__note .c-note li,
.p-fv__note p {
  color: #FFF;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-fv {
    padding-top: calc(88px + 2rem);
  }
  .p-fv picture {
    width: 78.33%;
  }
  .p-fv picture > img {
    width: 100%;
  }
  .p-fv .c-cta__button {
    width: 370px;
  }
  .p-fv .c-cta__list {
    flex-direction: row;
    align-items: flex-end;
    margin-top: -4rem;
  }
  .p-fv__note .c-note li,
  .p-fv__note p {
    font-size: 14px;
  }
  .p-fv__note {
    width: fit-content;
  }
}
@media print {
  .p-fv picture {
    display: block;
    margin: 0 auto;
  }
}

/* reason */
.p-reason {
  display: flex;
  flex-wrap: wrap;
  row-gap: 32px;
  margin-bottom: 16px;
}
.p-reason__item {
  width: 100%;
}
.p-reason__item dt {
  color: var(--blue);
  font-size: 24px;
  text-align: center;
  line-height: 1.33;
  font-weight: 600;
  padding: 8px 0;
  margin-bottom: 16px;
  background: #FFF;
  border-radius: 8px;
}
.p-reason__item dt span.-s {
  font-size: 16px;
}
.p-reason__item dt span.come {
  font-size: 14px;
  vertical-align: super;
}
.p-reason__item dt span.-s span.come {
  font-size: 10px;
}
.p-reason__item dd p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* plan */
.p-plan {
  max-width: 375px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  margin: 57px auto 0;
  padding: 40px 16px 32px;
  background: var(--blue);
  border-radius: 20px;
  position: relative;
}
.p-plan h3 {
  width: 100%;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
}
.p-plan h3 .main {
  color: #FFF;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-plan h3 .main span {
  font-size: 36px;
}
.p-plan h3 .sub {
  display: block;
  width: 257px;
  color: #0096DC;
  font-size: 15px;
  line-height: 1.8;
  padding: 4px 0;
  background: #FFF;
  border-radius: 20px;
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: auto;
}
.p-plan h3 .sub::after {
  display: block;
  content: "";
  width: 33px;
  height: 17px;
  background-color: #ffffff;
  clip-path: polygon(50% 17px, 0% 0%, 33px 0%);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.p-plan__box {
  width: 100%;
  padding: 24px 16px;
  background: #FFF;
  border-radius: 8px;
}
.p-plan__box dt {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
}
.p-plan__box dt .tag {
  display: block;
  width: fit-content;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  padding: 2px 14px;
  margin: 0 auto 4px;
  background: #0096DC;
  border-radius: 6px;
}
.p-plan__box dd {
  text-align: center;
}
.p-plan__box dd figcaption {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-plan {
    max-width: 800px;
    padding: 32px 24px;
    justify-content: space-between;
  }
  .p-plan h3 .sub {
    width: 317px;
    font-size: 19px;
  }
  .p-plan__box {
    max-width: 240px;
  }
  .p-plan__box:nth-of-type(2) dt .tag {
    width: 208px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* about */
.p-about {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 25px;
}
.p-about__img {
  width: 295px;
}
.p-about figure {
  display: block;
  margin: 0 auto 6px;
}
.p-about__box {
  width: 100%;
  max-width: 450px;
  padding: 24px 16px;
  background: #D5DAF966;
  border-radius: 10px;
}
.p-about__box dt {
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 16px;
}
.p-about__box dd picture {
  display: block;
  text-align: center;
  margin-bottom: 16px;
  background: #FFF;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-about {
    align-items: center;
    column-gap: 22px;
  }
  .p-about__img {
    width: 311px;
  }
  .p-about figure {
    width: 311px;
  }
  .p-about__box {
    width: 442px;
  }
  .p-about__box dd picture {
    width: 248px;
    margin: 0 auto 16px;
  }
  .p-about__box .c-note {
    padding-left: 10px;
  }
  .p-about__box .c-note li {
    font-size: 14px;
  }
}

/* merit */
.p-merit {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.p-merit__box {
  margin-bottom: 32px;
}
.p-merit__box > dt:first-of-type {
  color: #FFF;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  background: var(--blue);
  border-radius: 10px 10px 0 0;
}
.p-merit__box > dt:first-of-type > span {
  display: inline-block;
  margin-top: -5px;
}
.p-merit__box > dt:not(:first-of-type) {
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding-top: 16px;
  background: #FFF;
}
.p-merit__box > dd {
  padding: 16px 24px 24px;
  background: #FFF;
  border-radius: 0 0 10px 10px;
}
.p-merit__box > dd figure {
  text-align: center;
  margin-bottom: 16px;
  background: #F4F4F4;
  border-radius: 16px;
}
.p-merit__list {
  border: 2px solid var(--orange);
  border-radius: 14px;
}
.p-merit__list > dt {
  color: var(--orange);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.66;
  text-align: center;
  padding: 8px 0;
  position: relative;
}
.p-merit__list > dt > span {
  display: block;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-merit__list > dt > span > span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.p-merit__list > dt > span > span::before,
.p-merit__list > dt > span > span::after {
  display: block;
  content: "";
  width: 8px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-merit__list > dt > span > span::after {
  transform: rotate(90deg);
  transition: 0.2s;
}
.p-merit__list.is-open > dt > span > span::after {
  transform: rotate(180deg);
  transition: 0.2s;
}
.p-merit__list > dd {
  display: none;
  padding: 8px 16px 24px;
}
.p-merit__list > dd > * {
  margin-bottom: 12px;
}
.p-merit__list > dd > *:has( + .c-cta__list) {
  margin-bottom: 20px;
}
.p-merit__list > dd > *:last-child {
  margin-bottom: 0;
}
#merit .c-cta__button a {
  font-size: 20px;
}
#merit .c-cta__lead {
  font-size: 16px;
  letter-spacing: 0.05em;
}
#merit .p-merit__list .c-cta__button {
  width: 100%;
  max-width: 327px;
}
#merit .p-merit__list .c-cta__button a {
  font-size: 15px;
  padding-right: 7px;
}
#merit .p-merit__list .c-cta__button a::before {
  right: 10px;
}
#merit .p-merit__list .c-cta__button a::after {
  right: 16px;
}
#merit .p-merit__list .c-cta__lead {
  color: var(--orange);
  font-size: 14px;
}
@media print {
  .p-merit__list > dd {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__box > dd {
    padding: 16px 56px 24px;
  }
  .p-merit__list > dt {
    font-size: 22px;
  }
  .p-merit__list > dd {
    padding: 8px 32px 24px;
  }
  #merit .c-cta__button a {
    font-size: 24px;
  }
  #merit .c-cta__lead {
    font-size: 18px;
  }
  #merit .p-merit__list .c-cta__button {
    width: 100%;
    max-width: 472px;
  }
  #merit .p-merit__list .c-cta__button a {
    font-size: 24px;
    padding-right: 10px;
  }
  #merit .p-merit__list .c-cta__button a::before {
    right: 20px;
  }
  #merit .p-merit__list .c-cta__button a::after {
    right: 26px;
  }
  #merit .p-merit__list .c-cta__lead {
    color: var(--orange);
    font-size: 18px;
  }
}

/* gooddeal */
#gooddeal h2 {
  margin-bottom: 32px;
}
.p-gooddeal__wrap {
  padding-top: 50px;
}
.p-gooddeal__item {
  width: 290px;
  text-align: center;
  padding: 60px 20px 24px;
  background: var(--blue);
  border-radius: 16px;
  position: relative;
}
.p-gooddeal__name {
  margin-bottom: 20px;
}
.p-gooddeal__name span {
  display: block;
  width: 100px;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  margin: auto;
}
.p-gooddeal__name p {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.p-gooddeal__body {
  padding: 16px;
  background: #FFF;
  border-radius: 10px;
}
.p-gooddeal__term {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 4px;
  margin-bottom: 34px;
  position: relative;
}
.p-gooddeal__term::after {
  display: block;
  content: "";
  width: 20px;
  height: 9px;
  background-color: #0095DA;
  clip-path: polygon(50% 9px, 0% 0%, 20px 0%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  margin: auto;
}
.p-gooddeal__term li {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  background: #F1F1F1;
  border-radius: 6px;
}
.p-gooddeal__result {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.p-gooddeal__result > div {
  width: 100%;
}
.p-gooddeal__result dt {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.p-gooddeal__result dd {
  color: #0095DA;
  font-size: 16px;
  font-weight: 600;
}
.p-gooddeal__result dd span.num {
  font-size: 32px;
}
.p-gooddeal__result dd span > span {
  font-size: 22px;
}
.p-gooddeal__result > div:nth-of-type(2) dd {
  color: var(--orange);
}
.p-gooddeal .swiper-button-wrap {
  display: block;
  width: 100%;
  max-width: 375px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-gooddeal .swiper-button-next:after,
.p-gooddeal .swiper-button-prev:after {
  display: none;
}
.p-gooddeal .swiper-button-next,
.p-gooddeal .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: url(../img/icon_slide_arrow.webp) center/contain no-repeat;
}
.p-gooddeal .swiper-button-next {
  right: 16px;
}
.p-gooddeal .swiper-button-prev {
  transform: scale(-1,1);
  left: 16px;
}
.p-gooddeal .swiper-button-next.swiper-button-disabled,
.p-gooddeal .swiper-button-prev.swiper-button-disabled {
  background-image: url(../img/icon_slide_arrow_unactive.webp);
  opacity: 1;
}
.p-gooddeal__outer {
  position: relative;
  margin-bottom: 32px;
}
#gooddeal .swiper-horizontal>.swiper-pagination-bullets,
#gooddeal .swiper-pagination-bullets.swiper-pagination-horizontal,
#gooddeal .swiper-pagination-custom,
#gooddeal .swiper-pagination-fraction {
  margin-top: 16px;
  position: static;
}
#gooddeal .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #D5DAF9;
  opacity: 1;
}
#gooddeal .swiper-pagination-bullet-active {
  background: var(--blue);
}
#gooddeal .c-cta__button a {
  font-size: 18px;
  letter-spacing: 0;
  padding-right: 16px;
}
#gooddeal .c-cta__button a::before {
  right: 16px;
}
#gooddeal .c-cta__button a::after {
  right: 22px;
}
#gooddeal .c-cta__lead {
  font-weight: normal;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  #gooddeal .c-cta__button a {
    font-size: 24px;
  }
  .p-gooddeal__item:not(.swiper-slide-active) {
    opacity: 0.3;
  }
  #gooddeal .swiper-pagination {
    display: none;
  } 
}
@media print {
  .p-gooddeal .swiper-button-wrap {
    display: none;
  }
}


/* application */
#application {
  padding-bottom: 80px;
}
.p-application {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  position: relative;
}
.p-application::before {
  display: block;
  content: "";
  width: 109px;
  height: 526px;
  background: url(../img/bg_arrow.webp) center/contain no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  margin: auto;
}
.p-application__item {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}
.p-application__item .num {
  width: 15%;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-application__item .num img {
  width: auto;
  height: 28px;
}
.p-application__cont {
  flex-grow: 1;
  padding: 20px 0 20px 16px;
  background: #FFF;
  border-radius: 0 8px 8px 0;
}
.p-application__cont p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}
.p-application__cont p:not(:only-child) {
  margin-bottom: 12px;
}
.p-application__item .c-cta__button {
  width: 200px;
  margin-left: 0;
}
.p-application__item .c-cta__button a {
  height: 46px;
  font-size: 16px;
  padding-right: 10px;
}
.p-application__item .c-cta__button a::before {
  width: 18px;
  height: 18px;
  right: 10px;
}
.p-application__item .c-cta__button a::after {
  width: 7px;
  height: 10px;
  clip-path: polygon(7px 50%, 0% 0%, 0% 10px);
  right: 15px;
}
@media screen and (min-width: 768px) {
  .p-application__cont {
    padding-left: 32px;
    display: flex;
    align-items: center;
    column-gap: 62px;
  }
  .p-application__item .num {
    width: 52px;
  }
  .p-application__cont p {
    font-size: 22px;
  }
  .p-application__cont p:not(:only-child) {
    margin-bottom: 0;
  }
  .p-application__item .c-cta__button {
    width: 270px;
  }
  .p-application__item .c-cta__button a {
    height: 55px;
    font-size: 20px;
  }
  .p-application__item .c-cta__button a::before {
    width: 20px;
    height: 20px;
    right: 16px;
    top: 32%;
  }
  .p-application__item .c-cta__button a::after {
    width: 8px;
    height: 12px;
    clip-path: polygon(8px 50%, 0% 0%, 0% 12px);
    right: 20px;
    top: 40%;
  }
}


/* questions */
.p-questions {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.p-questions__item {
  width: 100%;
  padding: 24px 16px;
  background: #D5DAF966;
  border-radius: 10px;
}
.p-questions__item > dt {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.47;
  padding-right: 26px;
  position: relative;
}
.p-questions__item > dt > span {
  display: block;
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-questions__item > dt > span > span {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
.p-questions__item > dt > span > span::before,
.p-questions__item > dt > span > span::after {
  display: block;
  content: "";
  width: 8px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-questions__item > dt > span > span::after {
  transform: rotate(90deg);
  transition: 0.2s;
}
.p-questions__item.is-open > dt > span > span::after {
  transform: rotate(180deg);
  transition: 0.2s;
}
.p-questions__item dd {
  display: none;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #D5DAF9;
}
.p-questions__item dd p {
  font-size: 16px;
  line-height: 1.5;
}
.p-questions__item dd p:not(:last-child) {
  margin-bottom: 12px;
}
.p-questions__item dd a {
  text-decoration: underline;
}
@media print {
  .p-questions__item dd {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-questions__item {
    padding-left: 32px;
    padding-right: 32px;
  }
}


/* contact */
.p-contact {
  padding: 40px 0;
  background: var(--blue);
}
.p-contact h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin-bottom: 18px;
}
.p-contact h2 > span {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.p-contact h2 > span img {
  vertical-align: top;
}
.p-contact__tel {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  background: #FFF;
  border-radius: 8px;
  margin-bottom: 18px;
}
.p-contact__info {
  color: #FFF;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 18px;
}
.p-contact .c-note {
  width: fit-content;
  margin: 0 auto;
}
.p-contact .c-note li {
  color: #FFF;
}

.p-attention {
  padding: 40px 0;
  background: #D5DAF9;
}
.p-attention h2 {
  text-align: center;
  margin-bottom: 32px;
}
.p-attention ul {
  list-style: disc;
  margin-left: 6.4%;
}
.p-attention ul li {
  font-size: 16px;
  line-height: 1.5;
}
.p-attention ul li:not(:last-of-type) {
  margin-bottom: 12px;
}



/* =====================
  l-copyright
===================== */
.l-copyright {
  display: flex;
  justify-content: space-between;
  padding-bottom: 76px;
  position: relative;
}
.l-copyright:before,.l-copyright:after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
}
.l-copyright:before {
  width: 66px;
  height: 57px;
  background: url(/assets/images/bg-onek01.svg) center/contain no-repeat;
  left: 0;
}
.l-copyright:after {
  width: 132px;
  height: 52px;
  background: url(/assets/images/bg-onek02.svg) center/contain no-repeat;
  right: 0;
}
.l-copyright__wrap {
  max-width: 1100px;
  padding: 0 3.125%;
  margin: 37px auto 0;
}
.l-copyright__img {
  display: flex;
  align-items: center;
}
.l-copyright__logo {
  width: 227px;
  margin-right: 24px;
}
.l-copyright__sns {
  display: flex;
}
.l-copyright__sns-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-copyright__sns-item:nth-of-type(3) {
  flex-basis: 32px;
}
.l-copyright__sns-item:not(:last-of-type) {
  margin-right: 15px;
}
.l-copyright__sns-item img {
  width: 100%;
}
.l-copyright__text {
  font-size: 12px;
  text-align: right;
}
.l-copyright__text span {
  display: block;
}
.l-copyright__text-bottom {
  margin-top: 15px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .l-copyright {
    flex-direction: column;
    padding-bottom: 63px;
  }
  .l-copyright:before {
    width: 50px;
    height: 43px;
    left: 27px;
  }
  .l-copyright:after {
    width: 100px;
    height: 40px;
    right: 27px;
  }
  .l-copyright__wrap {
    width: 100%;
  }
  .l-copyright__img {
    flex-direction: column;
  }
  .l-copyright__logo {
    width: 190px;
    margin-right: 0;
    margin-bottom: 22px;
  }
  .l-copyright__sns {
    margin-bottom: 24px;
  }
  .l-copyright__sns-item {
    width: 32px;
    height: 32px;
  }
  .l-copyright__text {
    font-size: 10px;
    text-align: center;
    line-height: 1.5;
  }
  .l-copyright__text span {
    margin-top: 6px;
  }
}

.p-tw--hikisagego > col:nth-of-type(1){
  width: 13%;
}
.p-tw--hikisagego > col:nth-of-type(2){
  width: 22%;
}
.p-tw--hikisagego > col:nth-of-type(3){
  width: 17%;
}
  .p-tw--hikisagego > col:nth-of-type(4){
  width: 18%;
}
  .p-tw--hikisagego > col:nth-of-type(5){
  width: 16%;
}
  .p-tw--hikisagego > col:nth-of-type(6){
  width: auto;
}
.c-table--scroll.p-table--hikisage td{
  padding:20px 15px;
}
@media screen and (max-width: 767.9px) {
  .c-table--scroll.p-table--hikisage td{
    padding: 12px 15px;
  }
  .p-tw--hikisagego > col:nth-of-type(2) {
    width: 18%;
  }
}
/*********************

  c-table

**********************/
.c-table,.c-table--th{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 16px;
  margin-bottom: 40px;
}
.c-table--fixed thead th:first-child,
.c-table--fixed tbody th {
  position: sticky;
  left: 0;
}
.c-table--fixed thead th:not(:first-child),
.c-table--fixed tbody td {
  z-index: -1;
}
.c-table td,
.c-table--th td,
.c-table th,
.c-table--th th{
  border: 1px solid #DDDDDD;
  padding: 20px;
  border-collapse: collapse;
}
@-moz-document url-prefix() {
  .c-table td,
  .c-table--th td,
  .c-table th,
  .c-table--th th{
    background-clip: padding-box; /* firefox対策 */
  }
}
.c-table thead th {
  background-color: var(--lt-beige);
  font-weight: 700;
}
.c-table--th thead th {
  background-color: #F2F2F2;
  font-weight: 700;
}
.c-table tbody th,
.c-table--th tbody th {
  text-align: left;
}
.c-table .c-table--blank {
  background-color: #FFFFFF;
  border-top: none;
  border-left: none;
  border: none;
}
.c-table tbody th {
  background-color: #F2F2F2;
  font-weight: 700;
}
.c-table--scroll {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}
.c-table--scroll > .c-table,
.c-table--scroll > .c-table--th{
  min-width: 700px;
}
.c-table__more-wrap {
  margin-bottom: 40px;
}
.c-table__more-item {
  position: relative;
  overflow: hidden;
  height: 330px;
}
.c-table__more-item:before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 188px;
  background: linear-gradient(to bottom, rgb(255, 255, 255,0) 0%, rgb(255, 255, 255,1) 100%);
  content: "";
  z-index: 1000;
}
.is-open .c-table__more-item:before {
  display: none;
}
.c-table__more-btn p{
  width: 224px;
  display: block;
  font-size: 16px;
  text-align: center;
  padding: 12px 0;
  margin: 0 auto;
  background: #FFF;
  border: 1px solid #DDDDDD;
  border-radius: 40px;
  position: relative;
  cursor: pointer;
  transition: all .5s;
}
.c-table__more-btn p:after{
  background-image: url(../images/icon_arrow_down.svg);
  background-repeat: no-repeat;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
}
.c-table__more-wrap.is-open .c-table__more-btn p:after {
  transform: rotate(180deg);
}
.c-table__more-btn p:before{
  right: 26px;
}
.c-table__wrap{
  display: flex;
}
.c-table__wrap table{
  max-width: 48%;
}
.c-table__arrow01{
  text-align: center;
  padding-bottom: 20px;
}
.c-table__arrow02{
  padding: 40px 20px;
}
.c-table.c-table__unique {
  max-width: 243px;
}
.c-table.c-table__unique thead th {
  background: #F2F2F2;
}
@media print {
  .c-table--scroll > .c-table,
  .c-table--scroll > .c-table--th {
    zoom: 0.5;
    min-width: auto;
  }
  .c-table--scroll > .c-table tr,
  .c-table--scroll > .c-table--th tr {
    page-break-inside: avoid;
  }
}
@media screen and (max-width:767.9px) {
  .c-table td,
  .c-table--th td,
  .c-table th,
  .c-table--th th{
    padding: 12px 16px;
    border-collapse: collapse;
    font-size: 14px;
  }
  .c-table--sp01 thead tr th{
    width: 100%;
    background-color: var(--lt-beige);
    border-bottom:none;
  }
  .c-table--sp02 tbody th,
  .c-table--sp02 tbody td{
    width: 100%;
    display: block;
    border-bottom:none;
  }
  .c-table__wrap .c-table.c-table--sp02 th,
  .c-table__wrap .c-table.c-table--sp02 td{
    border-bottom:none;
  }
  .c-table__wrap .c-table:last-child{
    border-bottom: 1px solid #DDDDDD;
  }
  .c-table--sp02 tbody tr:last-child{
    border-bottom: 1px solid #DDDDDD;
  }
  .c-table__wrap .c-table.c-table--sp02 tr:not(:last-child) td[rowspan] {
    border-bottom: 1px solid #DDDDDD;
  }
  .c-table--scroll{
    overflow-x: scroll;
    padding-bottom: 10px;
    width: 100%;
    margin-bottom: 10px;
  }
  .c-table__wrap.c-table__unique-wrap {
    flex-direction: column;
  }
  .c-table.c-table__unique {
    width: 100%;
    max-width: 100%;
  }
  .c-table.c-table__unique:first-of-type {
    margin-bottom: 0;
  }
  .c-table__unique-wrap .c-table__arrow02 {
    text-align: center;
    padding: 0 0 20px 0;
  }
  .c-table__arrow01 img,
  .c-table__arrow02 img{
    width: 68px;
  }
  tr.u-fb-sp > *:first-of-type {
    border-right: none;
  }
}
.u-fc--ncb-orange {
  color: #F07800 !important;
}
.u-bg--lt-orange {
  background-color: #FFEFD3 !important;
}
.u-align--right {
  text-align: right;
}
.u-align--center {
  text-align: center;
}
.u-fs-all--24 {
  font-size: 24px;
}
.u-fs-all--18 {
  font-size: 18px;
}
.u-fw-all--bold {
  font-weight: 700;
}
.c-text {
  font-size: 16px;
  margin-bottom: 30px;
}
.u-fs-pc--23 {
  font-size: 23px;
}
.u-mb-all--0 {
  margin-bottom: 0;
}
@media screen and (max-width:767.9px) {
  .u-fs-sp--14 {
    font-size: 14px;
  }
  .u-fs-sp--20 {
    font-size: 20px;
  }
  .u-mb-sp--20 {
    margin-bottom: 20px;
  }
}