@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/*********************************
 *
 * COMMON
 *
 *********************************/
body {
  color: #212121;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: min(1.375vw, 21px);
  font-weight: 500; }
  @media screen and (max-width: 750px) {
    body {
      max-width: 750px;
      font-size: min(3vw, 16px);
      -webkit-text-size-adjust: 100%; }
      body .pc {
        display: none !important; } }
  @media screen and (min-width: 751px) {
    body a {
      transition: 0.3s; }
      body a:hover {
        opacity: 0.8; }
    body .sp {
      display: none !important; } }
  body a {
    text-decoration: none; }
  body img {
    width: 100%;
    height: auto; }

/* font */
.red {
  color: #E40012; }

.blue {
  color: #002F7B; }

.yellow {
  color: #FDD22B; }

strong {
  font-weight: 900; }

.fs22 {
  font-size: min(1.5125vw, 22px); }
  @media screen and (max-width: 750px) {
    .fs22 {
      font-size: min(3.1vw, 17px); } }

.fs25 {
  font-size: min(1.8vw, 25px); }
  @media screen and (max-width: 750px) {
    .fs25 {
      font-size: min(3.75vw, 20px); } }

.fs28 {
  font-size: min(1.925vw, 28px); }
  @media screen and (max-width: 750px) {
    .fs28 {
      font-size: min(3.75vw, 20px); } }

.fs30 {
  font-size: min(2.1vw, 30px); }
  @media screen and (max-width: 750px) {
    .fs30 {
      font-size: min(4.6vw, 20px); } }

.fs32 {
  font-size: min(2.2vw, 32px); }
  @media screen and (max-width: 750px) {
    .fs32 {
      font-size: min(4.8vw, 20px); } }

.fs36 {
  font-size: min(2.4vw, 36px); }
  @media screen and (max-width: 750px) {
    .fs36 {
      font-size: min(4.2vw, 24px); } }

.fs40 {
  font-size: min(2.75vw, 40px); }
  @media screen and (max-width: 750px) {
    .fs40 {
      font-size: min(4.6vw, 20px); } }

.fs42 {
  font-size: min(2.8vw, 42px); }
  @media screen and (max-width: 750px) {
    .fs42 {
      font-size: min(4.7vw, 21px); } }

.fs50 {
  font-size: min(3.4vw, 50px); }
  @media screen and (max-width: 750px) {
    .fs50 {
      font-size: min(5.2vw, 24px); } }

.fs55 {
  font-size: min(3.75vw, 55px); }
  @media screen and (max-width: 750px) {
    .fs55 {
      font-size: min(7.1vw, 26px); } }

.fs60 {
  font-size: min(4.1vw, 60px); }
  @media screen and (max-width: 750px) {
    .fs60 {
      font-size: min(9vw, 38px); } }

.fs70 {
  font-size: min(4.8vw, 70px); }
  @media screen and (max-width: 750px) {
    .fs70 {
      font-size: min(9.4vw, 40px); } }

/*
.fs16 {
  font-size: min(1.1vw, 16px);
  @include media(mb) {
    font-size: min(3vw, 16px);
  }
}
.fs18 {
  font-size: min(1.2vw, 18px);
  @include media(mb) {
    font-size: min(2.7vw, 13px);
  }
}
.fs20 {
  font-size: min(1.375vw, 20px);
  @include media(mb) {
    font-size: min(3.1vw, 17px);
  }
}
.fs22 {
  font-size: min(1.5125vw, 22px);
  @include media(mb) {
    font-size: min(3.1vw, 17px);
  }
}
.fs60 {
  font-size: min(4.1vw, 60px);
  @include media(mb) {
    font-size: min(9vw, 38px);
  }
}
.fs80 {
  font-size: min(5.2vw, 80px);
  @include media(mb) {
    font-size: min(8.1vw, 42px);
  }
}
.fs125 {
  font-size: min(8.5vw, 125px);
  @include media(mb) {
    font-size: min(18vw, 70px);
  }
}
.fs200 {
  font-size: min(13.5vw, 200px);
  @include media(mb) {
    font-size: min(28vw, 120px);
  }
}*/
p.l_1em {
  padding: 0 0 0 1em;
  text-indent: -1em;
  line-height: 1.7; }

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.fadeUpTrigger {
  opacity: 0; }

/*********************************
 *
 * HEADER
 *
 *********************************/
header {
  background-color: #fff; }
  header .h_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 76%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 1em 0; }
    @media screen and (max-width: 750px) {
      header .h_inner {
        width: calc(100% - 30px); } }
  header .h_logo {
    width: 25.2%;
    max-width: 304px; }
    @media screen and (max-width: 750px) {
      header .h_logo {
        width: 32.6%; } }
  header .h_btn {
    width: 25%;
    margin-right: 7%;
    text-align: right; }
    @media screen and (max-width: 750px) {
      header .h_btn {
        width: 50%;
        margin-right: 5px; } }
    header .h_btn a {
      padding: 0.2em 1em 0.4em 1em;
      background-color: #333;
      border-radius: 2em;
      box-shadow: 0.1em 0.1em 0 rgba(0, 0, 0, 0.2);
      color: #fff; }

/*********************************
 *
 * MAIN
 *
 *********************************/
main h2 {
  position: relative;
  margin: 0 auto;
  width: 75%;
  max-width: 1200px;
  padding: 0.2em 0 0.35em 0;
  background-color: #002f7b;
  border-radius: 0.2em;
  color: #fff;
  font-size: 230%;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center; }
  @media screen and (max-width: 750px) {
    main h2 {
      border-radius: 0.3em; } }
  main h2::before {
    position: absolute;
    display: block;
    content: "";
    width: 0.5em;
    height: calc(tan(60deg) * 0.6em / 2);
    left: calc(50% - 0.25em);
    bottom: -0.4em;
    background-color: #002f7b;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: +1; }
main p {
  padding-top: 1em;
  line-height: 2; }
  @media screen and (max-width: 750px) {
    main p {
      padding-top: 1.5em; } }
main .contact_btn {
  overflow: hidden;
  padding: 3rem 0;
  background-color: #000; }
  @media screen and (max-width: 750px) {
    main .contact_btn {
      padding: 2.4em 0; } }
  main .contact_btn a {
    position: relative;
    display: block;
    width: 40%;
    max-width: 636px;
    margin: 0 auto;
    padding: 0.5em 1em 0.6em 0;
    background: linear-gradient(to right, #00307b 0%, #0071ba 100%);
    border-radius: 3em;
    color: #fff;
    line-height: 1;
    text-align: center; }
    @media screen and (max-width: 750px) {
      main .contact_btn a {
        width: 79%; } }
    main .contact_btn a::after {
      position: absolute;
      display: block;
      content: "";
      width: 1.1em;
      height: 1.1em;
      top: calc(50% - 0.55em);
      right: 1em;
      background: url("../images/arw_blue.svg") no-repeat;
      background-size: 100% auto; }

/*********************************
 * mv
 *********************************/
#mv {
  background: url("../images/mv_bg01.jpg") center top no-repeat, url("../images/mv_bg02.jpg") left top repeat-x;
  background-size: auto 100%; }
  @media screen and (max-width: 750px) {
    #mv {
      background: none; } }
  #mv .mv_inner {
    position: relative;
    width: 80%;
    max-width: 1280px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #mv .mv_inner {
        width: 100%; } }
    #mv .mv_inner p {
      position: absolute;
      top: 70%;
      left: 7%;
      padding: 0;
      font-weight: 700;
      line-height: 1.7; }
      @media screen and (max-width: 750px) {
        #mv .mv_inner p {
          width: 90%;
          top: 53%;
          left: 5%;
          font-size: min(3.2vw, 13px);
          letter-spacing: -0.06em; } }

/*********************************
 * customer
 *********************************/
#customer {
  overflow: hidden;
  padding: 6.5em 0 5em 0;
  background: url("../images/customer_bg.jpg") center center no-repeat;
  background-size: cover; }
  @media screen and (max-width: 750px) {
    #customer {
      padding: 3.5em 0 4em 0; } }
  #customer .customer_inner {
    width: 75%;
    max-width: 1200px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #customer .customer_inner {
        width: 86%; } }
  #customer p.atn {
    margin-top: -0.5em;
    padding: 0;
    text-align: center;
    line-height: 1; }
    @media screen and (max-width: 750px) {
      #customer p.atn {
        font-size: min(3.4vw, 18px); } }
  #customer p.note {
    margin-top: 1rem;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 800;
    text-shadow: #fff 1px 0 10px, #fff 1px 0 10px, #fff 1px 0 10px;
    line-height: 1.5; }
    @media screen and (max-width: 750px) {
      #customer p.note {
        margin-top: 0;
        font-size: min(4vw, 20px);
        line-height: 1.8; } }

/*********************************
 * assignment
 *********************************/
#assignment {
  overflow: hidden;
  padding: 10em 0 0 0; }
  @media screen and (max-width: 750px) {
    #assignment {
      padding: 5em 0 0 0; } }
  #assignment h2 {
    width: 50%; }
    @media screen and (max-width: 750px) {
      #assignment h2 {
        width: 75%; } }
  #assignment h3 {
    padding: 0.25em 0 0.35em 0;
    background: #fff;
    border: 2px solid #002f7b;
    border-radius: 0.5em;
    color: #002f7b;
    font-weight: 700;
    line-height: 1.2;
    text-align: center; }
    @media screen and (max-width: 750px) {
      #assignment h3 {
        padding: 0.4em 0 0.6em 0;
        border-radius: 0.3em;
        line-height: 1.4; } }
  #assignment .assignment_bg {
    margin: 4rem 0 0 0;
    padding: 5.5rem 0 5rem 0;
    background-color: #e4e4e4; }
    @media screen and (max-width: 750px) {
      #assignment .assignment_bg {
        margin: 2.5em 0 0 0;
        padding: 4em 0 4.5em 0; } }
  #assignment .assignment_inner {
    width: 75%;
    max-width: 1200px;
    margin: 0 auto; }
  #assignment ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto; }
    #assignment ul li {
      overflow: hidden;
      width: 31.25%;
      margin: 2.5rem 0 0 0;
      padding: 0 0 1.5rem 0;
      background-color: #fff;
      border-radius: 0.9rem;
      text-align: center; }
      @media screen and (max-width: 750px) {
        #assignment ul li {
          width: 100%;
          margin: 1.8rem 0 0 0;
          border-radius: 0.6rem; } }
  #assignment dl dt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8em; }
    @media screen and (max-width: 750px) {
      #assignment dl dt {
        font-size: min(4.6vw, 20px);
        line-height: 1.4; } }
    #assignment dl dt::before {
      position: absolute;
      display: block;
      content: "";
      width: 80%;
      height: 1px;
      background: #426bad;
      bottom: 0;
      left: 10%; }
    #assignment dl dt p {
      padding: 0;
      line-height: 1.4; }
    #assignment dl dt span {
      display: block;
      margin-top: 0.35rem;
      font-weight: 700;
      line-height: 1.2; }
      @media screen and (max-width: 750px) {
        #assignment dl dt span {
          font-size: min(5.2vw, 24px); } }
  #assignment dl dd {
    padding: 1.2rem 0 0 0; }
    @media screen and (max-width: 750px) {
      #assignment dl dd {
        padding: 1rem 0 0 0; } }
  #assignment p.note {
    padding-top: 2rem;
    font-weight: 800;
    line-height: 1.4;
    text-align: center; }
    @media screen and (max-width: 750px) {
      #assignment p.note {
        font-size: min(4.2vw, 24px);
        line-height: 1.5; } }

/*********************************
 * point
 *********************************/
#point {
  overflow: hidden;
  padding: 9em 0 0 0; }
  @media screen and (max-width: 750px) {
    #point {
      padding: 5em 0 0 0; } }
  #point .point_bg {
    margin-top: 4rem;
    padding: 5em 0 6em 0;
    background: #f5f2e9; }
    @media screen and (max-width: 750px) {
      #point .point_bg {
        margin-top: 2rem;
        padding: 4.5em 0; } }
  #point .point_inner {
    width: 75%;
    max-width: 1200px;
    margin: 0 auto; }
  @media screen and (max-width: 750px) {
    #point h2 {
      width: 90%;
      padding: 0.2em 0 0.4em 0;
      line-height: 1.2; } }
  #point h3 {
    padding: 0.25em 0 0.35em 0;
    background: #fff;
    border: 2px solid #002f7b;
    border-radius: 0.5em;
    color: #002f7b;
    font-weight: 700;
    line-height: 1.2;
    text-align: center; }
    @media screen and (max-width: 750px) {
      #point h3 {
        padding: 0.4em 0 0.6em 0;
        border-radius: 0.3em;
        line-height: 1.4; } }
  #point ul.point_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto; }
    #point ul.point_list li {
      overflow: hidden;
      width: 31.25%;
      margin: 2.5rem 0 0 0;
      background-color: #fff;
      border-radius: 0.9rem;
      text-align: center; }
      @media screen and (max-width: 750px) {
        #point ul.point_list li {
          width: 100%;
          margin: 2rem 0 0 0;
          border-radius: 0.7rem; } }
    #point ul.point_list dl dt {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.55em 0;
      background: linear-gradient(to bottom, #0071ba 18%, #00337f 80%);
      color: #fff;
      line-height: 1.3; }
      @media screen and (max-width: 750px) {
        #point ul.point_list dl dt {
          padding: 0.6em 0;
          font-size: min(5.4vw, 24px); } }
    #point ul.point_list dl dd {
      padding: 2rem 0 1.2rem 0; }
      @media screen and (max-width: 750px) {
        #point ul.point_list dl dd {
          padding: 3rem 0 1rem 0; } }
      #point ul.point_list dl dd .ttl {
        padding: 0;
        font-weight: 800;
        line-height: 1.4; }
        @media screen and (max-width: 750px) {
          #point ul.point_list dl dd .ttl {
            font-size: min(3.2vw, 20px);
            letter-spacing: -0.05em; } }
      #point ul.point_list dl dd .note {
        padding: 0.5em 0 0 0;
        font-weight: 600;
        line-height: 1.4; }
        @media screen and (max-width: 750px) {
          #point ul.point_list dl dd .note {
            font-size: min(2.75vw, 15px);
            letter-spacing: -0.05em; } }
  #point .point_box {
    width: 79%;
    margin: 5rem auto 0 auto; }
    @media screen and (max-width: 750px) {
      #point .point_box {
        width: 100%;
        margin: 3.5rem auto 0 auto; } }
    #point .point_box dl {
      background: #fff; }
      #point .point_box dl dt {
        position: relative;
        display: flex;
        align-items: center;
        background: linear-gradient(to right, #0071ba 13%, #00337f 100%);
        color: #fff; }
        #point .point_box dl dt .icn {
          position: absolute;
          width: 15%;
          max-width: 134px;
          top: 0;
          left: 0;
          transform: translate(-45%, -50%); }
          @media screen and (max-width: 750px) {
            #point .point_box dl dt .icn {
              width: 22%;
              transform: translate(-40%, -65%); } }
        #point .point_box dl dt .num {
          width: 13%;
          height: 100%;
          padding: 0 0.5em 0 0;
          background: #333;
          font-family: "Outfit", sans-serif;
          line-height: 1.6;
          text-align: right; }
          @media screen and (max-width: 750px) {
            #point .point_box dl dt .num {
              width: 15%;
              padding: 0;
              font-size: min(9vw, 38px);
              text-align: center; } }
        #point .point_box dl dt .ttl {
          width: 87%;
          padding: 0 0 0 1em; }
          @media screen and (max-width: 750px) {
            #point .point_box dl dt .ttl {
              width: 85%;
              padding: 0 0 0 0.6em;
              font-size: min(4.6vw, 20px);
              line-height: 1.2; } }
      #point .point_box dl dd {
        padding: 1.2rem 1.5rem;
        font-weight: 600;
        line-height: 1.4; }
        @media screen and (max-width: 750px) {
          #point .point_box dl dd {
            padding: 1rem;
            font-size: min(3.2vw, 17px); } }
    #point .point_box .img {
      margin-top: 1.5rem; }
      @media screen and (max-width: 750px) {
        #point .point_box .img {
          margin-top: 1.2rem; } }
  #point ul.point_list + .point_box {
    margin: 8rem auto 0 auto; }
    @media screen and (max-width: 750px) {
      #point ul.point_list + .point_box {
        margin: 5rem auto 0 auto; } }
  #point ul.img_list1 {
    width: 100%;
    margin: 0 auto; }
    #point ul.img_list1 li {
      margin: 1.8rem 0 0 0; }
  #point ul.img_list2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding-top: 3rem; }
    @media screen and (max-width: 750px) {
      #point ul.img_list2 {
        justify-content: space-between;
        width: 86%;
        padding-top: 1.3rem; } }
    #point ul.img_list2 li {
      width: 22.7%;
      margin: 1.5rem calc(9.2% / 3) 0 0; }
      @media screen and (max-width: 750px) {
        #point ul.img_list2 li {
          width: 48%;
          margin: 0.7rem 0 0 0; } }
      #point ul.img_list2 li:nth-child(4n) {
        margin-right: 0; }

/*********************************
 * features
 *********************************/
#features {
  padding: 10em 0 0 0;
  background-color: #fff; }
  @media screen and (max-width: 750px) {
    #features {
      padding: 5.5em 0 0 0; } }
  #features .features_bg {
    position: relative;
    padding: 5.5em 0 5.5em 0;
    background-color: #efefef; }
    @media screen and (min-width: 751px) {
      #features .features_bg {
        clip-path: polygon(0 0, 100% 8em, 100% 100%, 0 100%); } }
    @media screen and (max-width: 750px) {
      #features .features_bg {
        margin: 1.5em 0 0 0;
        padding: 0 0 4em 0; }
        #features .features_bg::before {
          position: absolute;
          display: block;
          content: "";
          width: 100%;
          height: 4rem;
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
          background: #fff; } }
  #features h2 {
    position: relative;
    width: 55%;
    max-width: 886px;
    margin: 0 auto;
    padding: 0 0 1.8rem 0;
    background: none;
    border-bottom: 0.06em solid #033991;
    border-radius: 0;
    color: #212121;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-align: center; }
    @media screen and (max-width: 750px) {
      #features h2 {
        width: 82%;
        padding: 0 0 0.8rem 0; } }
    #features h2::before, #features h2::after {
      position: absolute;
      display: block;
      content: "";
      width: 0.5em;
      height: calc(tan(60deg) * 0.35em / 2);
      left: calc(50% - 0.25em);
      clip-path: polygon(0 0, 100% 0, 50% 100%); }
      @media screen and (max-width: 750px) {
        #features h2::before, #features h2::after {
          width: 0.5em;
          height: calc(tan(60deg) * 0.3em / 2); } }
    #features h2::before {
      bottom: -0.28em;
      background-color: #fff;
      z-index: +1; }
      @media screen and (max-width: 750px) {
        #features h2::before {
          bottom: -0.23em; } }
    #features h2::after {
      bottom: -0.36em;
      background-color: #033991; }
      @media screen and (max-width: 750px) {
        #features h2::after {
          bottom: -0.3em; } }
  #features .features_inner {
    width: 55%;
    max-width: 886px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #features .features_inner {
        position: relative;
        width: 82%;
        z-index: +1; } }
  @media screen and (max-width: 750px) {
    #features ul {
      flex-wrap: wrap;
      margin: 0;
      padding: 0.5em 0 0 0; } }
  #features ul li {
    margin: 3.5rem 0 0 0;
    background-color: #fff;
    text-align: center; }
    @media screen and (max-width: 750px) {
      #features ul li {
        width: 100%;
        margin: 2.8rem 0 0 0; } }
  #features dl {
    margin-top: auto; }
    #features dl dt {
      position: relative;
      display: flex;
      align-items: center;
      background: linear-gradient(to bottom, #033991 0%, #033991 50%, #000d52 50%, #000d52 100%);
      color: #fff;
      line-height: 1.2; }
      #features dl dt p {
        padding: 0; }
      #features dl dt .num {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 5rem;
        height: 5.2rem;
        top: -0.7rem;
        left: 0.8rem;
        background: #fff;
        border: 4px solid #033991;
        color: #212121;
        font-weight: 800;
        line-height: 1; }
        @media screen and (max-width: 750px) {
          #features dl dt .num {
            width: 3.5rem;
            height: 4rem;
            left: 0.5rem;
            border: 3px solid #033991; } }
        #features dl dt .num span {
          display: block; }
        #features dl dt .num .fs50 {
          font-family: "Outfit", sans-serif;
          font-weight: 500; }
          @media screen and (max-width: 750px) {
            #features dl dt .num .fs50 {
              font-size: min(9vw, 38px); } }
      #features dl dt .ttl {
        padding-left: 6.8rem; }
        @media screen and (max-width: 750px) {
          #features dl dt .ttl {
            display: flex;
            align-items: center;
            height: 3.2em;
            padding: 0 0 0 4.5rem;
            font-size: min(4.7vw, 21px);
            line-height: 1.3;
            text-align: left; } }
    #features dl dd {
      display: flex;
      justify-content: space-between;
      padding: 1em;
      text-align: left; }
      @media screen and (max-width: 750px) {
        #features dl dd {
          display: block;
          padding: 1.5em; } }
      #features dl dd .img {
        width: 35%; }
        @media screen and (max-width: 750px) {
          #features dl dd .img {
            width: 100%;
            margin-top: 1rem; } }
      #features dl dd p {
        width: 62%;
        padding: 0.5em 0 0 0;
        line-height: 1.4; }
        @media screen and (max-width: 750px) {
          #features dl dd p {
            width: 100%;
            padding: 0;
            font-size: min(3.4vw, 17px); } }

/*********************************
 * more
 *********************************/
#more {
  overflow: hidden;
  padding: 7em 0 5.5em 0;
  background: linear-gradient(to bottom, #002f7b 0%, #0071ba 100%);
  text-align: center; }
  @media screen and (max-width: 750px) {
    #more {
      padding: 4em 0 5em 0; } }
  #more h2 {
    padding: 0;
    background: none;
    font-weight: 500; }
    #more h2::before {
      display: none; }
    #more h2 span {
      position: relative; }
      #more h2 span::before {
        position: absolute;
        display: block;
        content: "";
        width: 0.8em;
        height: 0.8em;
        top: -0.25em;
        left: -0.8em;
        background: url("../images/more_icn.svg") center top no-repeat;
        background-size: 100% auto; }
  #more .more_box {
    width: 75%;
    max-width: 1200px;
    margin: 2.5rem auto 0 auto;
    padding: 2rem;
    background: #fff;
    border: 5px solid #0096df;
    box-shadow: 5px 5px 0.2em rgba(0, 0, 0, 0.5); }
    @media screen and (max-width: 750px) {
      #more .more_box {
        width: 82%;
        margin: 2rem auto 0 auto;
        padding: 1.2rem 1rem;
        border: 2px solid #0096df;
        box-shadow: 3px 3px 0.2em rgba(0, 0, 0, 0.3); } }
    #more .more_box p {
      padding: 0;
      font-weight: 600;
      line-height: 1.5; }
      @media screen and (max-width: 750px) {
        #more .more_box p {
          font-size: min(4.1vw, 20px); } }
    #more .more_box .img {
      margin-top: 2.5rem; }
      @media screen and (max-width: 750px) {
        #more .more_box .img {
          margin-top: 1.5rem; } }
  #more .dl_btn {
    margin-top: 4rem; }
    @media screen and (max-width: 750px) {
      #more .dl_btn {
        margin-top: 1rem; } }
    #more .dl_btn a {
      position: relative;
      display: block;
      width: 58%;
      max-width: 536px;
      margin: 0 auto;
      padding: 0.6em 1em 0.7em 0;
      background: linear-gradient(to right, #eaae17 0%, #eaae17 100%);
      border-radius: 3em;
      color: #fff;
      line-height: 1;
      text-align: center; }
      @media screen and (max-width: 750px) {
        #more .dl_btn a {
          width: 70%;
          font-size: min(4.2vw, 20px); } }
      #more .dl_btn a::after {
        position: absolute;
        display: block;
        content: "";
        width: 1.1em;
        height: 1.1em;
        top: calc(50% - 0.55em);
        right: 1em;
        background: url("../images/arw_yellow.svg") no-repeat;
        background-size: 100% auto; }

/*********************************
 * flow
 *********************************/
#flow {
  overflow: hidden;
  padding: 11em 0 9em 0; }
  @media screen and (max-width: 750px) {
    #flow {
      padding: 3.8em 0 4.5em 0; } }
  #flow h2 {
    position: relative;
    width: 37%;
    max-width: 590px;
    margin: 0 auto;
    padding: 0 0 1.8rem 0;
    background: none;
    border-bottom: 0.06em solid #033991;
    border-radius: 0;
    color: #212121;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-align: center; }
    @media screen and (max-width: 750px) {
      #flow h2 {
        width: 60%;
        padding: 0 0 0.8rem 0;
        border-bottom: 0.04em solid #033991; } }
    #flow h2::before, #flow h2::after {
      position: absolute;
      display: block;
      content: "";
      width: 0.5em;
      height: calc(tan(60deg) * 0.35em / 2);
      left: calc(50% - 0.25em);
      clip-path: polygon(0 0, 100% 0, 50% 100%); }
      @media screen and (max-width: 750px) {
        #flow h2::before, #flow h2::after {
          width: 0.5em;
          height: calc(tan(60deg) * 0.3em / 2); } }
    #flow h2::before {
      bottom: -0.28em;
      background-color: #fff;
      z-index: +1; }
      @media screen and (max-width: 750px) {
        #flow h2::before {
          bottom: -0.23em; } }
    #flow h2::after {
      bottom: -0.36em;
      background-color: #033991; }
      @media screen and (max-width: 750px) {
        #flow h2::after {
          bottom: -0.3em; } }
  #flow .flow_inner {
    width: 60%;
    max-width: 948px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      #flow .flow_inner {
        width: 82%; } }
  #flow dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.6em 0 0 0; }
    @media screen and (max-width: 750px) {
      #flow dl {
        margin: 0.8em 0 0 0; } }
    #flow dl dt {
      width: 16.2%;
      max-width: 151px; }
    #flow dl dd {
      width: 80%; }
      #flow dl dd .num {
        padding: 0;
        font-family: "Outfit", sans-serif;
        line-height: 1; }
      #flow dl dd .ttl {
        padding: 0.05em 0 0 0;
        font-weight: 600;
        line-height: 1.2; }
        @media screen and (max-width: 750px) {
          #flow dl dd .ttl {
            font-size: min(3.75vw, 20px); } }
      #flow dl dd .note {
        padding: 0.5em 0 0 0;
        font-size: min(1.65vw, 26px);
        line-height: 1.4; }
        @media screen and (max-width: 750px) {
          #flow dl dd .note {
            font-size: min(2.7vw, 18px); } }
  #flow .flow_inner > dl:first-child {
    margin-top: 5em; }
    @media screen and (max-width: 750px) {
      #flow .flow_inner > dl:first-child {
        margin-top: 2.5em; } }
  #flow .arw {
    position: relative;
    height: 1.4em;
    margin: 2em 0 0 0;
    line-height: 1; }
    @media screen and (max-width: 750px) {
      #flow .arw {
        width: 16.2%;
        max-width: 151px;
        margin: 1.5em 0 0 0; } }
    #flow .arw::after {
      position: absolute;
      display: block;
      content: "";
      width: 2em;
      height: calc(tan(60deg) * 1.4em / 2);
      top: 0;
      left: calc(8% - 1em);
      background: #b1b1b1;
      clip-path: polygon(0 0, 100% 0, 50% 100%); }
      @media screen and (max-width: 750px) {
        #flow .arw::after {
          width: 1.4em;
          height: calc(tan(60deg) * 0.9em / 2);
          left: calc(50% - 0.7em); } }

/*********************************
 * contact
 *********************************/
#contact {
  overflow: hidden;
  padding: 4em 0;
  background: #033991; }
  @media screen and (max-width: 750px) {
    #contact {
      padding: 3.5em 0 4.2em 0; } }
  #contact .contact_inner {
    position: relative;
    display: flex;
    width: 75%;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff; }
    @media screen and (max-width: 750px) {
      #contact .contact_inner {
        display: block;
        width: 82%;
        text-align: center; } }
    #contact .contact_inner .box {
      width: 53%; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner .box {
          width: 100%; } }
    #contact .contact_inner .ttl {
      padding: 0;
      font-weight: 800;
      line-height: 1.2; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner .ttl {
          font-weight: 700; } }
    #contact .contact_inner .note {
      padding: 1.2em 0 0 0;
      line-height: 1.4; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner .note {
          padding: 1em 0 0 0;
          font-size: min(3vw, 18px);
          line-height: 1.5; } }
    #contact .contact_inner .img {
      width: 45%; }
      @media screen and (max-width: 750px) {
        #contact .contact_inner .img {
          width: 100%;
          margin: 2em 0 0 0; } }
      #contact .contact_inner .img img {
        width: 100%; }
        @media screen and (min-width: 751px) {
          #contact .contact_inner .img img {
            height: 100%;
            object-fit: cover; } }

/*********************************
 * fix_nav
 *********************************/
#fix_nav {
  display: none; }
  @media screen and (max-width: 750px) {
    #fix_nav {
      position: sticky;
      display: block !important;
      width: 100%;
      bottom: 0;
      left: 0;
      box-shadow: 0 -3px 4px rgba(0, 0, 0, 0.3); }
      #fix_nav ul {
        display: flex;
        justify-content: space-between;
        font-size: min(4vw, 24px); }
        #fix_nav ul a {
          display: block;
          padding: 0.8em 0;
          background-color: #750003;
          color: #fff;
          text-align: center; }
        #fix_nav ul li {
          width: 50%; }
          #fix_nav ul li:nth-child(1) a {
            background-color: #222; } }
