@charset "UTF-8";
/*-------------------
 common
-------------------*/
.lp_html {
  --color--main: #140a9a;
  --color--hover: #6057d9;
  --color--white: #FFFFFF;
  --color--black: #000000;
}
.lp_html section {
  margin: 5vw 0;
}
.lp_html article {
  margin: 3vw 0;
}
.lp_html img {
  max-width: 100%;
}
.lp_html .text-right {
  text-align: right;
}
.lp_html .text-left {
  text-align: left;
}
.lp_html .text-center {
  text-align: center;
}
.lp_html .mb20 {
  margin-bottom: 20px;
}
.lp_html .mb30 {
  margin-bottom: 30px;
}

/*-------------------
 flex
-------------------*/
.lp_html {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.lp_html .flex-wrapper.half,
.lp_html .flex-wrapper.one-third,
.lp_html .flex-wrapper.quarter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lp_html .flex-wrapper.three:after {
  display: block;
  content: "";
  width: 32%;
}
.lp_html .flex-wrapper.four:after {
  display: block;
  content: "";
  width: 24%;
}
.lp_html .flex-wrapper .flex-one {
  width: 100%;
}
.lp_html .flex-wrapper.half .flex-one {
  width: 48%;
}
.lp_html .flex-wrapper.one-third .flex-one {
  width: 32%;
}
.lp_html .flex-wrapper.quarter .flex-one {
  width: 48%;
}
.lp_html .flex-wrapper.quarter .flex-three {
  width: 48%;
}

@media (min-width: 768px) {
  .lp_html .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .lp_html .flex-wrapper.aligncenter {
    align-items: center;
  }
  .lp_html .flex-wrapper.reverse {
    flex-direction: row-reverse;
  }
  .lp_html .flex-wrapper.two .flex-one {
    width: 48%;
  }
  .lp_html .flex-wrapper.three .flex-one {
    width: 32%;
  }
  .lp_html .flex-wrapper.three .flex-two {
    width: 64%;
  }
  .lp_html .flex-wrapper.four .flex-two {
    width: 48%;
  }
  .lp_html .flex-wrapper.four .flex-one {
    width: 24%;
  }
  .lp_html .flex-wrapper.four .flex-three {
    width: 72%;
  }
  .lp_html .flex-wrapper.five .flex-one {
    width: 18%;
  }
  .lp_html .flex-wrapper.six .flex-one {
    width: 15%;
  }
  .lp_html .flex-wrapper.quarter .flex-one {
    width: 24%;
  }
  .lp_html .flex-wrapper.quarter .flex-three {
    width: 72%;
  }
}
/*-------------------
 H
-------------------*/
.lp_html h2 {
  font-size: clamp(3em, 6vw, 6em);
  line-height: 1.4;
  color: var(--color--main);
  margin-bottom: 10px;
}
.lp_html h2.jp {
  font-size: clamp(2em, 3.5vw, 3.5em);
}
.lp_html h2.jp span {
  font-size: 0.6em;
}
.lp_html h3 {
  font-size: clamp(1.5em, 2.2vw, 2.2em);
  line-height: 1.4;
  margin-bottom: 10px;
}
.lp_html h3.underline {
  position: relative;
  margin-bottom: 1em;
}
.lp_html h3.underline span {
  position: relative;
  display: inline-block;
  padding: 2px 10px 2px 0;
  background: var(--color--white);
  z-index: 1;
}
.lp_html h3.underline::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color--black);
}
.lp_html h4 {
  font-size: clamp(1.3em, 1.8vw, 1.8em);
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--color--main);
}
.lp_html p {
  font-size: clamp(1.1em, 1.6vw, 1.6em);
  line-height: 1.8;
}
.lp_html dl ul {
  font-size: clamp(1.1em, 1.6vw, 1.6em);
  line-height: 1.8;
}

/*-------------------
 button
-------------------*/
.lp_html .buttonArea {
  display: flex;
  margin: 3em 0;
}
.lp_html .button {
  background: var(--color--main);
  border: 2px solid var(--color--main);
  color: var(--color--white);
  font-size: clamp(1.2em, 1.5vw, 1.5em);
  text-decoration: none;
  padding: 10px 30px;
  margin: 0 10px 0 0;
}
.lp_html .button.reverse {
  background: var(--color--white);
  border: 2px solid var(--color--main);
  color: var(--color--main);
}
.lp_html .arrowLink {
  background: url(../img/button_bg.png) no-repeat left center;
  background-size: 70px;
  padding: 40px 10px;
  position: relative;
  display: inline-block;
  font-size: clamp(1.1em, 1.7vw, 1.7em);
  text-decoration: none;
  margin: 20px 70px 20px 0;
  color: var(--color--black);
  transition: all linear 0.2s;
}
.lp_html .arrowLink:hover {
  background-size: 80px;
}
.lp_html .arrowLink:hover::before {
  right: -80px;
}
.lp_html .arrowLink:hover::after {
  right: -80px;
}
.lp_html .arrowLink::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -70px;
  width: 60px;
  height: 1px;
  background-color: var(--color--black);
  transition: all ease 0.2s;
}
.lp_html .arrowLink::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -70px;
  width: 16px;
  height: 1px;
  background-color: var(--color--black);
  transform: rotate(30deg);
  transform-origin: top right;
  transition: all ease 0.2s;
}
.lp_html a.regist_button {
  border: 2px solid var(--color--main);
  padding: 15px;
  border-radius: 5px;
  margin: 30px 10px 10px 0;
}
.lp_html a.regist_button img {
  width: 160px;
}

/*-------------------
 box
-------------------*/
.lp_html .box {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color--main);
  padding: 40px 20px;
  margin: 20px 0;
}
.lp_html .boxlink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------
 hero
-------------------*/
.lp_html section#hero .flex-wrapper {
  align-items: center;
}
.lp_html section#hero .flex-wrapper h2 {
  position: relative;
  margin-left: -20%;
  z-index: 2;
}

@media (max-width: 767px) {
  .lp_html section#hero .flex-wrapper h2 {
    margin-left: auto;
  }
}
/*-------------------
 sec_information
-------------------*/
.lp_html section#sec_information .flex-wrapper .flex-one {
  font-size: clamp(1.1em, 1.6vw, 1.6em);
  line-height: 1.8;
}
.lp_html section#sec_information .flex-wrapper .flex-one.box {
  transition: all ease 0.3s;
}
.lp_html section#sec_information .flex-wrapper .flex-one.box::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 3px;
  right: 3px;
  border-bottom: 40px solid var(--color--main);
  border-left: 40px solid transparent;
  transition: all ease 0.2s;
}
.lp_html section#sec_information .flex-wrapper .flex-one.box:hover {
  border-color: var(--color--hover);
}
.lp_html section#sec_information .flex-wrapper .flex-one.box:hover::after {
  border-bottom: 40px solid var(--color--hover);
}

@media (max-width: 767px) {
  .lp_html section#sec_information .flex-wrapper h2 {
    margin-left: auto;
  }
}
/*-------------------
 video
-------------------*/
.lp_html .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.lp_html .video video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*---------------------
 Accordion
-----------------------*/
.lp_html .accordion {
  position: relative;
  border-top: 4px solid var(--color--main);
  border-left: 4px solid var(--color--main);
  border-right: 4px solid var(--color--main);
}
.lp_html .accordion:last-child {
  border-bottom: 3px solid var(--color--main);
}
.lp_html .accordion summary {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px;
  cursor: pointer;
  color: var(--color--main);
  font-size: clamp(1.2em, 1.6vw, 1.6em);
  font-weight: 700;
  display: flex;
  border-bottom: 1px solid var(--color--main);
}
.lp_html .accordion summary::-webkit-details-marker {
  display: none;
}
.lp_html .accordion summary::after {
  position: absolute;
  display: block;
  content: "＋";
  color: var(--color--main);
  top: 15px;
  right: 15px;
  width: 20px;
}
.lp_html .accordion[open] summary::after {
  content: "ー";
}
.lp_html .accordion p {
  opacity: 0;
  margin: 0;
  padding: 1em;
  transition: transform 0.5s, opacity 0.5s;
}
.lp_html .accordion ul {
  font-size: 16px;
  opacity: 0;
  margin: 0;
  padding: 1em;
  line-height: 1.7;
  transition: transform 0.5s, opacity 0.5s;
}
.lp_html .accordion[open] p {
  transform: none;
  opacity: 1;
}
.lp_html .accordion[open] ul {
  transform: none;
  opacity: 1;
}
.lp_html .acMenu {
  background: #FFF;
  border-top: 4px solid var(--color--main);
  border-left: 4px solid var(--color--main);
  border-right: 4px solid var(--color--main);
}
.lp_html .acMenu dt {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px;
  cursor: pointer;
  color: var(--color--main);
  border-bottom: 4px solid var(--color--main);
  font-size: clamp(1.2em, 1.6vw, 1.6em);
  font-weight: 700;
  display: flex;
}
.lp_html .acMenu dt .q {
  width: 20px;
}
.lp_html .acMenu dt::after {
  position: absolute;
  display: block;
  content: "＋";
  color: var(--color--main);
  top: 15px;
  right: 15px;
  width: 20px;
}
.lp_html .acMenu dt.active::after {
  content: "ー";
}
.lp_html .acMenu dd {
  margin: 0;
  width: 100%;
  padding: 20px;
  display: none;
  border-bottom: 4px solid var(--color--main);
}
@media screen and (max-width: 767px) {
  .lp_html .acMenu dd {
    padding: 10px;
  }
}

.lp_html .tableline {
  padding: 1em 0 0.5em 0;
  border-bottom: 1px solid #AAA;
}
.lp_html .tableline ul {
  font-size: 20px;
  margin: 0;
  padding: 1em;
  line-height: 1.7;
  list-style: disc;
}
.lp_html .banner {
  text-align: center;
  margin: 4em auto;
}
.lp_html .video_wrapper {
  width: 100%;
  margin: 20px 0;
  aspect-ratio: 16/9;
}
.lp_html .video_wrapper iframe {
  width: 100%;
  height: 100%;
}
.lp_html .footer_nav {
  position: fixed;
  bottom: 10px;
  right: 40px;
  background: var(--color--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
  display: flex;
}
.lp_html .footer_nav a {
  display: block;
  margin: 0 5px;
  background: var(--color--white);
}

/*-------------------
 sec_interview
-------------------*/
.lp_html section#sec_interview .flex-wrapper {
  align-items: center;
}

/*-------------------
topics
-------------------*/
.cp_NewsList {
  max-width: 1440px;
  margin: 0 auto 50px;
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_inr {
    padding: 0;
    padding-right: 53px;
    padding-left: 53px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px), print and (min-width: 768px) {
  .cp_NewsList .newsList_inr {
    padding-left: calc(53px + 47 * (100vw - 769px) / 671);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px), print and (min-width: 1440px) {
  .cp_NewsList .newsList_inr {
    padding-left: 100px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px), print and (min-width: 768px) {
  .cp_NewsList .newsList_inr {
    padding-right: calc(53px + 47 * (100vw - 769px) / 671);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px), print and (min-width: 1440px) {
  .cp_NewsList .newsList_inr {
    padding-right: 100px;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_inr {
    width: 100%;
    padding: 0 8vw;
  }
}
.cp_NewsList .newsList_h3 {
  font-weight: normal;
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_h3 {
    margin-bottom: 25px;
    font-size: 3.2rem;
    letter-spacing: normal;
    line-height: 1.22;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_h3 {
    margin-bottom: 10px;
    font-size: 2.2rem;
    letter-spacing: normal;
    line-height: 1.3;
  }
}
.cp_NewsList .newsList_dl > div {
  display: flex;
  border-bottom: 1px solid #a5abaf;
}

.cp_NewsList .newsList_dl > div:last-child {
  border: none;
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_dl > div {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_dl > div {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
.cp_NewsList .newsList_dt-inr {
  color: #140a9a;
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_dt-inr {
    margin-right: 22px;
    font-size: 1.8rem;
    letter-spacing: normal;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_dt-inr {
    margin-right: 12px;
    font-size: 1.4rem;
    letter-spacing: 1.43px;
    line-height: 2.04;
  }
}
.cp_NewsList .newsList_tag {
  display: flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  color: #fff;
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_tag {
    width: 125px;
    margin-right: 22px;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_tag {
    min-width: 130px;
    height: 24px;
    margin-top: 2px;
    background-color: #140a9a;
  }
}
@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_tag-inr {
    font-size: 1.5rem;
    letter-spacing: normal;
    line-height: 1;
    background: #140a9a;
    text-align: center;
    margin-top: 2px;
    padding: 7px 2px 9px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_tag-inr {
    font-size: 1.3rem;
    letter-spacing: normal;
    line-height: 1;
    text-align: center;
    padding: 5px 3px;
  }
}
@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_dd {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_dd {
    width: 100%;
  }
}
.cp_NewsList .newsList_dd-inr {
  position: relative;
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_dd-inr {
    font-size: 1.9rem;
    letter-spacing: 0.08px;
    line-height: normal;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_dd-inr {
    margin-top: 10px;
    font-feature-settings: "palt";
    font-size: 1.4rem;
    letter-spacing: 1.43px;
    line-height: normal;
  }
}
.cp_NewsList .newsList_dd-inr > a {
  display: inline-block;
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_dd-inr > a {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_dd-inr > a {
    padding-right: 30px;
  }
}
.cp_NewsList .newsList_dd-inr > a.new::after {
  display: inline-block;
  color: #c00;
  vertical-align: middle;
  content: "New";
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_dd-inr > a.new::after {
    margin-top: -2px;
    margin-left: 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_dd-inr > a.new::after {
    margin-top: -3px;
    margin-left: 8px;
    font-size: 12px;
  }
}
.cp_NewsList .newsList_dd-inr::before {
  position: absolute;
  top: calc(50% - 3px);
  right: 0px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 2px solid #ffc82f;
  border-right: 2px solid #ffc82f;
  content: "";
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_dd-inr::before {
    right: 15px;
  }
}
.cp_NewsList .newsList_more {
  width: 100%;
  height: 60px;
  background-color: #f6f6f6;
}

@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_more {
    height: 40px;
  }
}
.cp_NewsList .newsList_more > a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #000;
  font-weight: normal;
}

@media screen and (min-width: 768px), print {
  .cp_NewsList .newsList_more > a {
    font-size: 1.9rem;
    letter-spacing: normal;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_more > a {
    font-size: 1.4rem;
    letter-spacing: normal;
    line-height: 1.8;
  }
}
.cp_NewsList .newsList_more > a::before {
  position: absolute;
  top: calc(50% - 10px);
  right: 27px;
  width: 12px;
  height: 12px;
  transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .cp_NewsList .newsList_more > a::before {
    top: calc(50% - 8px);
    right: 16px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .cp_NewsList.cp_BusinessList .newsList_tag {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .cp_NewsList.cp_BusinessList .newsList_tag {
    width: 140px;
  }
  .cp_NewsList.cp_BusinessList .newsList_tag-inr {
    padding: 6px 3px;
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */