:root {
  --main-blue: #023299;
  --light-blue: #ECF0F8;
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Quicksand:wght@600&display=swap');
/*
  微软雅黑
  font-family: 'Microsoft YaHei', sans-serif;
 */
body {
  font-family: 'Microsoft YaHei','Noto Sans JP', 'sans-serif';
  font-size: 16px;
  line-height: 2;
}
/* font-family: 'Quicksand', sans-serif; */
main figure {
  margin: 0;
}
/* ----------------------------------
  components
---------------------------------- */
.inner {
  margin: 0 auto;
  max-width: 1168px;
  padding: 0 24px;
}
.tit--02 {
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.6667;
  text-align: center;
}
@media (min-width: 835px) {
  .tit--02 {
    font-size: 36px;
  }
}
.tit--03 {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: #D3D3D3 1px solid;
  font-size: 17px;
  line-height: 1.8823529412;
  font-weight: 600;
}
@media (min-width: 835px) {
  .tit--03 {
    font-size: 28px;
  }
}
.tit--04 {
  color: var(--main-blue);
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 835px) {
  .tit--04 {
    font-size: 20px;
  }
}
.button {
  display: grid;
  place-items: center;
  padding: 12px 24px;
  border-radius: 9999px;
  background-color: var(--main-blue);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
  font-weight: 600;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
}
.button:hover {
  background-color: #4C6EB6;
}
.list-note {
  position: relative;
  padding-left: 1em;
  list-style: none;
  line-height: 1.7142857143;
}
.list-note__icon {
  position: absolute;
  left: 0;
  top: 0;
}
/* ----------------------------------
  header
---------------------------------- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
header .inner {
  padding: 26px 24px;
}
header .logo {
  width: 221px;
}
@media (min-width: 835px) {
  header {
  }
  header .inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  header .logo {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  header .inner {
    max-width: 1440px;
    padding: 48px 100px;
  }
}
/* ----------------------------------
  footer
---------------------------------- */
footer {
  padding: 30px 0 100px;
  background: var(--main-blue);
  color: #fff;
}
.footer-nav {
  display: flex;
  padding: 0;
}
.footer-nav li {
  list-style: none;
  padding-right: 24px;
  border-right: 1px solid #fff;
  margin-right: 24px;
  line-height: 18px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
@media (hover:hover){
  .footer-nav a:hover {
    text-decoration: underline;
  }
}
footer small {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 600;
}
footer .copy {
  font-family: Verdana, "Droid Sans", 游黑体, "Yu Gothic", YuGothic, "冬青黑体", "Hiragino Kaku Gothic Pro", 明瞭体, Meiryo, Osaka, "微软哥特体‌", "MS PGothic", sans-serif;
}
@media (min-width: 835px) {
  footer {
    padding: 52px 0;
  }
  footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer small {
    display: block;
    margin-top: 0;
    font-size: 12px;
  }
}
@media (min-width: 835px) and (max-width: 1280px) {
  footer .inner {
    padding-right: 80px;
  }
}

/* ----------------------------------
  pagetop
---------------------------------- */
.pagetop {
  z-index: 999;
  opacity: 0;
  width: 40px;
  height: 40px;
  background: none;
  padding: 0;
  border: 0;
  outline: 0;
  position: fixed;
  right: 24px;
  bottom: 24px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  transition: 0.3s opacity ease-in-out;
}
.pagetop:hover {
  opacity: 0.8;
}
.pagetop-is-show .pagetop {
  opacity: 1;
}
@media (min-width: 835px) {
  .pagetop {
    width: 48px;
    height: 48px;
    bottom: 40px;
  }
  .pagetop img {
    width: 48px;
    height: 48px;
  }
}
/* ----------------------------------
  aside
---------------------------------- */
.float-button {
  z-index: 999;
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 18px;
  max-width: 307px;
  width: 100%;
  height: 50px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid #fff;
  background-color: var(--main-blue);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}
@media (max-width: 420px){
  .pagetop-is-show .float-button {
    width: calc(100% - 94px);
    left: -24px;
  }
}
@media (min-width: 421px){
  .pagetop-is-show .float-button {
    margin: 0 auto;
  }
}
@media (min-width: 835px) {
  .pagetop-is-show .float-button,
  .float-button {
    bottom: 50%;
    left: auto;
    right: 0;
    border-radius: 16px 0 0 16px;
    border-right: none;
    height: 300px;
    width: 70px;
    font-size: 20px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 600;
    letter-spacing: 0.1em;
    transform: translateY(50%);
  }
}
@media (hover:hover) {
  .float-button:hover {
    background-color: #4C6EB6;
  }
}
/* ----------------------------------
  kv
---------------------------------- */
.kv {
  overflow: hidden;
  padding-top: 101px;
  padding-bottom: 256px;
  background: var(--main-blue);
  color: #fff;
}
.kv-copy {

}
.kv-copy--small {
  font-size: 21px;
  font-weight: 600;
}
.kv-copy--bg {
  margin-bottom: 13px;
  display: inline-block;
  background: #fff;
  color: var(--main-blue);
  border-radius: 4px;
  padding: 8px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.kv-copy--normal {
  margin-top: 13px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}
.kv-img {
  margin-bottom: 40px;
  position: relative;
  right: -11.8.6666667vw;
  width: 118.66666667vw;
  max-width: 852px;
}
.kv-text {

}
@media (min-width: 664px) {
  .kv {
  }
  .kv-copy {
    margin-bottom: 60px;
  }
  .kv-copy--small {
  }
  .kv-copy--bg {

  }
  .kv-copy--normal {
  }
  .kv-img {
    margin: 0 auto 40px;
    position: relative;
    right: auto;
    width: 70%;
    max-width: 580px;
  }
  .kv-text {

  }
}
@media (min-width: 1200px) {
  .kv {
    padding-top: 0;
    padding-bottom: 183px;
  }
  .kv .inner {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0 7.1vw;
    width: 100%;
    max-width: 1440px;
    min-height: 762px;
  }
  .kv-box {
  }
  .kv-copy {
    margin-bottom: 60px;
  }
  .kv-copy--small {
    font-size: 30px;
  }
  .kv-copy--normal {
    font-size: 45px;
  }
  .kv-img {
    margin: 0;
    position: absolute;
    right: -14.8vw;
    top: 250px;
    width: 60.8vw;
    max-width: none;
  }
  .kv-text {

  }
}
@media (min-width: 1400px) {
  .kv {
  }
  .kv .inner {
    padding: 0 100px;
  }
  .kv-box {
  }
  .kv-copy {
  }
  .kv-copy--small {
  }
  .kv-copy--normal {
  }
  .kv-img {
    right: -208px;
    top: 83px;
    width: 852px;
  }
  .kv-text {

  }
}

/* ----------------------------------
  lead
---------------------------------- */
.lead {
  margin-top: -151px;
  padding-bottom: 84px;
  position: relative;
  z-index: 2;
}
.lead-box {
  border-radius: 16px;
  padding: 40px 24px 48px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
.lead-copy {
  margin-bottom: 36px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5416666667;
  text-align: center;
}
.lead-list {
  margin-bottom: 32px;
  padding-left: 0;
}
.lead-list li {
  padding-left: 1em;
  text-indent: -1em;
  list-style: none;
  font-weight: 500;
}
.lead-list li::before {
  content: '・';
}
.lead .list-note {
  margin-bottom: 32px;
  font-size: 14px;
}
.lead .button {
  margin: 0 auto;
  max-width: 280px;
  height: 64px;
  font-weight: 600;
}
@media (min-width: 835px) {
  .lead-box {
    padding: 48px 100px;
  }
  .lead-copy {
    font-size: 28px;
  }
  .lead .button {
    max-width: 400px;
    height: 80px;
    font-size: 18px;
  }
}
/* ----------------------------------
  attention
---------------------------------- */
.attention {
  padding-bottom: 80px;
}
.attention-title {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.85;
  font-weight: 600;
  text-align: center;
}
.attention-text {
  font-weight: 500;
}
@media (min-width: 835px) {
  .attention .inner {
    display: flex;
    align-items: center;
    padding: 0 64px
  }
  .attention-title {
    margin-bottom: 0;
    flex-shrink: 0;

  }
  .attention-text {
    font-weight: 500;
    padding-left: 64px;
    margin-left: 64px;
    border-left: 1px solid #E3E3E3;
  }
}
/* ----------------------------------
  point
---------------------------------- */
.point {
  padding-top: 60px;
  padding-bottom: 80px;
  background: var(--main-blue);
}
.point .tit--01 {
  margin-bottom: 56px;
  padding: 32px 0 18px;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  color: #fff;
  background:url(/sites/default/files/image/news/service/20231016/news-service-20231002_tit_point.svg) no-repeat center center / 271px 80px;
}
.point-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.point-card {
  border-radius: 32px;
  padding: 30px 28px;
  background: #fff;
}
.point-card__number {
  margin-bottom: 24px;
}
.point-card__number img {
  margin: 0 auto;
  width: auto;
  height: 36px;
}
.point-card__title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.375;
  text-align: center;
  font-weight: 600;
}
.point-card__figure {
  margin: 0 0 30px;
}
.point-card__figure img {
  margin: 0 auto;
}
.point-card__button {
  position: relative;
  margin: 0 auto;
  max-width: 186px;
  width: 100%;
  height: 45px;
  border: none;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background-color: var(--main-blue);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
  padding-left: 24px;
  font-weight: 600;
}
.point-card__button span {
  display: flex;
  align-items: center;
}
.point-card__button span::after {
  content: "";
  margin-left: 16px;
  display: inline-block;
  width: 15px;
  height: 8px;
  background: url(/sites/default/files/image/news/service/20231016/news-service-20231002_chevron.svg)

}
@media (hover: hover) {
  .point-card__button:hover {
    opacity: 0.8;
  }
}
@media (min-width: 835px) {
  .point .tit--01 {
    margin-bottom: 40px;
    padding: 47px 0 40px;
    font-size: 48px;
    background-size: contain;
  }
  .point-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr) ;
    gap: 35px;
  }
  .point-card {
    display: flex;
    flex-direction: column;
  }
  .point-card__number {
    margin-top: 16px;
    margin-bottom: 40px;
  }
  .point-card__title {
    margin-bottom: 32px;
  }
  .point-card__figure {
    margin-top: auto;
    margin-bottom: 32px;
  }

  .point-card__button {
    max-width: 200px;
  }
}
/* ----------------------------------
  point-section
---------------------------------- */
.point-outer {
  padding: 104px 0 80px;
}
.point-outer section {
  padding-top: 44px;
}
.point-outer section + section {
  margin-top: 60px;
}
.point-section {
  position: relative;
  border-radius: 32px;
  padding: 60px 24px 40px;
  background: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
}
.point-number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
}
.point-number img {
  width: auto;
  height: 46px;
  margin: 0 auto;
}
.point-section p {
  margin-bottom: 32px;
}
.point-section .list-note {
  margin-bottom: 0;
  font-size: 14px;
}
/* ----------------------------------
  point01
---------------------------------- */
.point01 .tit--04 {
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 695px) {
  .point01-table .pc {
    display: none;
  }
  .point01-table__figure {
    display: block;
    overflow-x: scroll;
  }
  .point01-table__figure img {
    width: 590px;
    max-width: 590px;
  }
}
@media (min-width: 696px) {
  .point01-table .sp {
    display: none;
  }
}
@media (min-width: 835px) {
  .point-outer {
    padding: 104px 0 80px;
    gap: 105px;
  }
  .point-outer section {
    padding-top: 35px;
  }
  .point-section {
    padding: 80px 90px 62px;
  }
  .point-number {
    top: -35px;
    left: 50%;
    width: 70px;
    height: 70px;
  }
  .point-number img {
    height: 70px;
  }
}
/* ----------------------------------
  point02
---------------------------------- */
.point02 .tit--04 {
  margin-bottom: 20px;
}
.point02-row {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
.point-section .relative {
  padding: 0 14px;
}
.point02 .point-section .relative {
  padding-top: 49px;
  padding-bottom: 24px;
}
@media (min-width: 835px) {
  .point02-row {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 120px;
  }
  .point02-row .col {
    display: flex;
    flex-direction: column;
  }
  .point02-row .col figure {
    margin-top: auto;
    margin-bottom: 0;
  }
  .point02 .point-section .relative {
    padding: 46px 118px 35px;
    border-radius: 8px;
  }
}
/* ----------------------------------
  point03
---------------------------------- */
.point03 .point-section .relative {
  padding-top: 90px;
  padding-bottom: 0;
}
@media (min-width: 835px) {
  .point03 .point-section .relative {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .point03-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
    overflow: hidden;
  }
}
.bg--before {
  background: linear-gradient(#FBFBFB 0%, #F2F2F2 100%);
}
.bg--before .relative-icon {
  border: 2px solid #E3E3E3;
  color: #000;
}
.bg--after {
  background: linear-gradient(#EDF3FA 0%, #D7E5F9 100%);
}
.bg--after .relative-icon {
  background: #023299;
  color: #fff;
}
.relative-icon {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-content: center;
  width: 108px;
  height: 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
}
@media (min-width: 835px) {
  .relative-icon {
    left: 20px;
    top: 20px;
    width: 115px;
    height: 41px;
    font-size: 14px;
  }
}
/* ----------------------------------
  message
---------------------------------- */
.message {
  padding-top: 60px;
  padding-bottom: 84px;
}
.message p {
  font-size: 16px;
  line-height: 2.25;
  font-weight: 500;
  text-align: center;
}
.message p + p {
  margin-top: 2em;
}
.message .button {
  margin: 60px auto 0;
  max-width: 280px;
  height: 64px;
}
@media (min-width: 835px) {
  .message {
    padding-bottom: 140px;
  }
  .message .button {
    margin: 64px auto 0;
    max-width: 400px;
    height: 80px;
    font-size: 18px;
  }
}
/* ----------------------------------
  utility
---------------------------------- */
.relative {
  position: relative;
}
.bg-blue {
  background: var(--main-blue);
}
.bg-lightblue {
  background: var(--light-blue);
}
.color-blue {
  color: var(--main-blue);
}
.pl--30 {
  padding-left: 30px;
}
@media (max-width: 834px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 835px) {
  .is-sp {
    display: none;
  }
}
