@charset "UTF-8";
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ローディング*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.loadingBar {
  width: 0;
  height: 2px;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.2s linear 0s;
  z-index: 300001; }

#loadbg {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999999; }
  @media print {
    #loadbg {
      display: none; } }

#loadbg-logo {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/logo.svg);
  background-size: 800px auto;
  background-repeat: no-repeat;
  background-position: center; }
  @media screen and (max-width: 768px) {
    #loadbg-logo {
      background-size: 70% auto; } }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: カラー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ボタン */
.btn_box .btn_lead_text {
  margin: 5px auto;
  text-align: center;
  font-size: 20px;
  font-weight: bold; }
  @media screen and (max-width: 768px) {
    .btn_box .btn_lead_text {
      font-size: 4vw; } }
.btn_box .btn {
  background: #fff;
  border-radius: 50px;
  border: 2px solid #D01518;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #D01518;
  max-width: 385px;
  width: 90%;
  height: 80px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  overflow: hidden;
  margin: auto; }
  @media screen and (max-width: 768px) {
    .btn_box .btn {
      font-size: 3.8vw;
      height: auto;
      padding: 4vw 2vw; } }
  .btn_box .btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 120%;
    height: 100%;
    background-color: #D01518;
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: skewX(-30deg) scale(0, 1);
    -moz-transform: skewX(-30deg) scale(0, 1);
    -ms-transform: skewX(-30deg) scale(0, 1);
    transform: skewX(-30deg) scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -moz-transition: transform 0.3s, -moz-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s; }
  .btn_box .btn:hover {
    color: #fff; }
    .btn_box .btn:hover:after {
      -webkit-transform-origin: left top;
      -moz-transform-origin: left top;
      -ms-transform-origin: left top;
      transform-origin: left top;
      -webkit-transform: skewX(-30deg) scale(1, 1);
      -moz-transform: skewX(-30deg) scale(1, 1);
      -ms-transform: skewX(-30deg) scale(1, 1);
      transform: skewX(-30deg) scale(1, 1); }

a.c_btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d70d18;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #d70d18;
  width: 260px;
  height: 50px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  border-radius: 5px; }
  a.c_btn::after {
    content: '';
    position: absolute;
    background: url(../images/btn_arrow.svg) no-repeat;
    display: inline-block;
    -moz-background-size: contain;
    background-size: contain;
    width: 9px;
    height: 13px;
    right: 18px; }
  a.c_btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 120%;
    height: 100%;
    background: #d70d18;
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: skewX(-30deg) scale(0, 1);
    -moz-transform: skewX(-30deg) scale(0, 1);
    -ms-transform: skewX(-30deg) scale(0, 1);
    transform: skewX(-30deg) scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -moz-transition: transform 0.3s, -moz-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s; }
  a.c_btn:hover {
    color: #ffffff; }
    a.c_btn:hover:after {
      background: url(../images/index/btn_arrow_w.svg) no-repeat; }
    a.c_btn:hover:before {
      -webkit-transform-origin: left top;
      -moz-transform-origin: left top;
      -ms-transform-origin: left top;
      transform-origin: left top;
      -webkit-transform: skewX(-30deg) scale(1, 1);
      -moz-transform: skewX(-30deg) scale(1, 1);
      -ms-transform: skewX(-30deg) scale(1, 1);
      transform: skewX(-30deg) scale(1, 1); }
  a.c_btn.back_btn {
    width: 360px; }
    a.c_btn.back_btn:after {
      top: 0;
      bottom: 0;
      margin: auto;
      right: 18px; }
    @media screen and (max-width: 768px) {
      a.c_btn.back_btn {
        width: 280px; }
        a.c_btn.back_btn:after {
          right: inherit;
          left: 18px;
          transform: rotate(-180deg); } }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: PC/SP共通 */
.mincho {
  font-family: '游明朝体', 'Yu Mincho', YuMincho, 'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif; }

.Roboto {
  font-family: 'Roboto', sans-serif; }

sub {
  bottom: 0;
  font-size: 0.5em; }

.container {
  max-width: 1000px;
  width: 90%;
  margin: auto;
  padding: 80px 0; }
  @media screen and (max-width: 768px) {
    .container {
      padding: 14vw 0; } }

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }

body {
  margin: 0; }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: PC */
@media screen and (min-width: 769px), print {
  .nosp {
    display: block; }

  .nopc {
    display: none; }

  html {
    font-size: 10px; }

  #contents {
    width: 100%; }
    #contents b {
      color: #000; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: パンくず */
  .breadcrumb {
    max-width: 1140px;
    margin: auto;
    padding: 10px 0;
    width: 90%;
    font-size: 1.2rem; }
    .breadcrumb span + span {
      margin-left: 3px; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: メインビジュアル */
  .mainVisual img {
    width: 100%;
    vertical-align: middle; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: コンテンツリスト */
  #sumstock {
    color: #444;
    line-height: 1.8;
    font-weight: lighter;
    /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
    /*index: アンカー */ }
    #sumstock * {
      box-sizing: border-box; }
    #sumstock img {
      width: 100%;
      height: auto;
      vertical-align: middle; }
    #sumstock .section-title {
      font-size: 34px;
      font-weight: bold;
      text-align: center;
      line-height: 1.4;
      margin: 30px auto; }
      #sumstock .section-title span {
        color: #D01518; }
      #sumstock .section-title:after {
        content: '';
        display: block;
        width: 100%;
        height: 6px;
        background-image: url(../images/hr.svg);
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 10px; }
    #sumstock .text {
      font-size: 18px; }
    #sumstock #anchor {
      max-width: 950px;
      width: 95%;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: center;
      margin: 60px auto; }
      #sumstock #anchor a {
        width: 33%;
        color: #333;
        font-size: 20px;
        font-weight: bold;
        display: block;
        text-decoration: none;
        text-align: center;
        line-height: 2;
        padding: 1em;
        border-right: 1px solid #333;
        position: relative;
        overflow: hidden; }
        #sumstock #anchor a:first-child {
          border-left: 1px solid #333; }
        #sumstock #anchor a:after {
          content: '';
          background-color: #D01518;
          display: block;
          max-width: 190px;
          height: 4px;
          width: 80%;
          margin: 10px auto 0; }
        #sumstock #anchor a:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          z-index: -1;
          width: 120%;
          height: 100%;
          background: #d70d18;
          -webkit-transform-origin: right top;
          -moz-transform-origin: right top;
          -ms-transform-origin: right top;
          transform-origin: right top;
          -webkit-transform: skewX(-30deg) scale(0, 1);
          -moz-transform: skewX(-30deg) scale(0, 1);
          -ms-transform: skewX(-30deg) scale(0, 1);
          transform: skewX(-30deg) scale(0, 1);
          -webkit-transition: -webkit-transform 0.3s;
          transition: -webkit-transform 0.3s;
          -moz-transition: transform 0.3s, -moz-transform 0.3s;
          transition: transform 0.3s;
          transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s; }
        #sumstock #anchor a:hover {
          color: #ffffff; }
          #sumstock #anchor a:hover:after {
            background-color: #fff; }
          #sumstock #anchor a:hover:before {
            -webkit-transform-origin: left top;
            -moz-transform-origin: left top;
            -ms-transform-origin: left top;
            transform-origin: left top;
            -webkit-transform: skewX(-30deg) scale(1, 1);
            -moz-transform: skewX(-30deg) scale(1, 1);
            -ms-transform: skewX(-30deg) scale(1, 1);
            transform: skewX(-30deg) scale(1, 1); }
    #sumstock .sec1 {
      background-image: url(../images/bg1.svg);
      background-size: 32px 32px;
      background-position: center;
      text-align: center; }
      #sumstock .sec1 .box {
        background-color: #fff;
        padding: 20px;
        margin-bottom: 30px; }
      #sumstock .sec1 .section-title {
        margin: 0 0 10px; }
      #sumstock .sec1 .sub_title {
        font-size: 30px; }
        #sumstock .sec1 .sub_title span {
          color: #D01518; }
      #sumstock .sec1 h5 {
        font-size: 18px;
        font-weight: bold;
        margin: 2em 0 1em; }
      #sumstock .sec1 .image {
        margin: 0; }
      #sumstock .sec1 .flex {
        justify-content: space-between; }
        #sumstock .sec1 .flex .box {
          width: calc(100% / 2 - 15px); }
          #sumstock .sec1 .flex .box:first-child .title {
            background-color: #485b76; }
          #sumstock .sec1 .flex .box:first-child .note {
            text-align: center; }
        #sumstock .sec1 .flex .title {
          background-color: #D01518;
          color: #fff;
          font-size: 24px;
          font-weight: bold;
          line-height: 2;
          margin: 0 0 15px; }
        #sumstock .sec1 .flex .text {
          text-align: left; }
      #sumstock .sec1 .list_title {
        text-align: left;
        background-image: url(../images/icon-01.svg);
        background-size: 23px 23px;
        background-position: 0 center;
        background-repeat: no-repeat;
        padding-left: 28px;
        margin-bottom: 10px; }
      #sumstock .sec1 .list {
        list-style: none;
        margin: 0 0 5px;
        padding: 0 0 5px;
        text-align: left;
        background-image: url(../images/bg_boder.png);
        background-position: 0 0;
        background-size: 100% 36px; }
        #sumstock .sec1 .list li {
          display: inline-block;
          list-style: none;
          font-size: 12px;
          font-weight: bold;
          line-height: 35px;
          padding: 0 1em;
          position: relative; }
          #sumstock .sec1 .list li:before {
            background-color: #D01518;
            background-position: 0 center;
            background-repeat: no-repeat;
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            vertical-align: middle;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto; }
      #sumstock .sec1 .note {
        display: block;
        font-size: 11px;
        font-weight: lighter;
        text-align: left; }
        #sumstock .sec1 .note a {
          color: #333;
          text-decoration: underline; }
    #sumstock .sec2 {
      background-image: url(../images/bg2.svg);
      background-size: 32px 32px;
      background-position: center;
      text-align: center; }
      #sumstock .sec2 .box {
        background-color: #fff;
        padding: 20px;
        margin-bottom: 30px; }
      #sumstock .sec2 .box2 {
        background-color: #fbfaf5;
        padding: 20px;
        text-align: left;
        max-width: 900px;
        margin: 80px auto 30px; }
        #sumstock .sec2 .box2 + .box2 .sub_title {
          background-color: #D01518; }
        #sumstock .sec2 .box2 + .box2 .list .text-box .title {
          color: #D01518;
          background-image: url(../images/bg_title2.png); }
      #sumstock .sec2 ul, #sumstock .sec2 li {
        list-style: none;
        margin: 0;
        padding: 0; }
      #sumstock .sec2 .sub_title {
        background-color: #485b76;
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        max-width: 580px;
        margin: 30px auto 50px;
        text-align: center; }
      #sumstock .sec2 .list {
        max-width: 750px;
        margin: auto; }
        #sumstock .sec2 .list li {
          background-color: #fff;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          padding: 30px;
          margin-bottom: 40px; }
        #sumstock .sec2 .list .image {
          width: 50%; }
        #sumstock .sec2 .list .text-box {
          width: 50%;
          padding-left: 30px; }
          #sumstock .sec2 .list .text-box .title {
            color: #485b76;
            font-size: 34px;
            margin: 0;
            display: inline-block;
            background-image: url(../images/bg_title1.png);
            background-position: bottom;
            background-size: contain;
            background-repeat: no-repeat; }
          #sumstock .sec2 .list .text-box h4 {
            font-size: 26px;
            font-weight: bold;
            line-height: 1.2;
            margin: 20px auto; }
          #sumstock .sec2 .list .text-box .text {
            font-size: 16px;
            margin-bottom: 0; }
        #sumstock .sec2 .list a {
          color: #0071b6;
          text-decoration: underline; }
    #sumstock .sec3 {
      background-image: url(../images/bg1.svg);
      background-size: 32px 32px;
      background-position: center;
      text-align: center; }
      #sumstock .sec3 .box {
        background-color: #fff;
        padding: 20px;
        margin-bottom: 30px; }
      #sumstock .sec3 .lead {
        color: #485b76;
        font-size: 34px;
        margin-top: 60px; }
      #sumstock .sec3 .list {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; }
        #sumstock .sec3 .list .box {
          width: calc(50% - 25px);
          margin: 60px 0 0;
          padding: 0;
          border: 4px solid #485b76;
          border-radius: 20px;
          overflow: hidden; }
          #sumstock .sec3 .list .box:first-child {
            width: 100%; }
          #sumstock .sec3 .list .box:nth-child(6) .sub {
            line-height: 62px; }
        #sumstock .sec3 .list .title {
          background-color: #485b76;
          color: #fff;
          font-size: 30px;
          font-weight: bold;
          margin: 0; }
        #sumstock .sec3 .list .sub {
          font-size: 24px;
          font-weight: bold;
          color: #485b76;
          line-height: 1.4;
          width: 90%;
          margin: 20px auto; }
          #sumstock .sec3 .list .sub:after {
            content: '';
            width: 70%;
            height: 6px;
            display: block;
            background-image: url(../images/hr.svg);
            background-size: cover;
            margin: auto; }
        #sumstock .sec3 .list .image {
          width: 90%;
          margin: 20px auto; }
        #sumstock .sec3 .list .text {
          font-size: 15px;
          text-align: left;
          width: 90%;
          margin: 20px auto; }
        #sumstock .sec3 .list .flex {
          align-items: flex-start;
          width: 95%;
          margin: auto; }
          #sumstock .sec3 .list .flex .image {
            margin: 30px auto;
            width: 50%; }
          #sumstock .sec3 .list .flex .image_title {
            font-size: 18px;
            margin: auto; }
          #sumstock .sec3 .list .flex .text {
            width: 50%;
            padding-left: 20px;
            margin: 30px auto; }
    #sumstock .sec4 {
      text-align: center;
      background-image: url(../images/16.jpg);
      background-size: cover;
      background-position: center; }
      #sumstock .sec4 .lead {
        font-size: 30px;
        font-weight: bold;
        line-height: 1.6;
        margin: 0; }
      #sumstock .sec4 .logo {
        width: 235px;
        height: 63px;
        margin: 50px auto; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: バナーエリア */
  .bnr_area {
    margin-top: 0; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: アニメーション */
  .anm {
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease; }
    .anm.show {
      opacity: 1;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      transform: none; } }
  @media print {
    .anm {
      opacity: 1; } }

@media screen and (min-width: 769px), print {
  .anm_view {
    opacity: 1;
    -webkit-animation: view_anm_slide_reset 1s;
    -moz-animation: view_anm_slide_reset 1s;
    animation: view_anm_slide_reset 1s; }
    .anm_view.show {
      -webkit-animation: view_anm_slide 1s;
      -moz-animation: view_anm_slide 1s;
      animation: view_anm_slide 1s;
      -webkit-animation-fill-mode: forwards;
      -moz-animation-fill-mode: forwards;
      animation-fill-mode: forwards;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 300ms;
      -moz-transition-duration: 300ms;
      transition-duration: 300ms;
      -webkit-transition-delay: 0s;
      -moz-transition-delay: 0s;
      transition-delay: 0s;
      -webkit-transition-timing-function: ease;
      -moz-transition-timing-function: ease;
      transition-timing-function: ease; }

  .anm_lr {
    -webkit-transform: translate(-100px, 0);
    -moz-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    transform: translate(-100px, 0); }

  .anm_rl {
    -webkit-transform: translate(100px, 0);
    -moz-transform: translate(100px, 0);
    -ms-transform: translate(100px, 0);
    transform: translate(100px, 0); }

  .anm_up {
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    transform: translate(0, 100px); }

  .anm_up_out {
    -webkit-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%); }

  .anm_down {
    -webkit-transform: translate(0, -100px);
    -moz-transform: translate(0, -100px);
    -ms-transform: translate(0, -100px);
    transform: translate(0, -100px); }

  .anm_scaleUp {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5); }

  .anm_scaleDown {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5); }

  .anm_rotateL {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }

  .anm_rotateR {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg); }

  .anm_height {
    height: 151px; } }
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: SP */
@media screen and (max-width: 768px) {
  * {
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .nosp {
    display: none; }

  .nopc {
    display: block; }

  #container header {
    top: 0; }
  #container #contents {
    padding-top: 9.375vw; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: SP メインビジュアル */
  .mainVisual {
    margin: 0; }
    .mainVisual img {
      width: 100%;
      height: auto;
      vertical-align: middle; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: SP コンテンツリスト */
  #sumstock {
    color: #444;
    line-height: 1.8;
    font-weight: lighter;
    /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
    /*index: アンカー */ }
    #sumstock * {
      box-sizing: border-box; }
    #sumstock img {
      width: 100%;
      height: auto;
      vertical-align: middle; }
    #sumstock .section-title {
      font-size: 5vw;
      font-weight: bold;
      text-align: center;
      line-height: 1.4;
      margin: 30px auto; }
      #sumstock .section-title span {
        color: #D01518; }
      #sumstock .section-title:after {
        content: '';
        display: block;
        width: 100%;
        height: 6px;
        background-image: url(../images/hr.svg);
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 10px; }
    #sumstock .text {
      font-size: 3.8vw; }
    #sumstock #anchor {
      max-width: 950px;
      width: 95%;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: center;
      margin: 5vw auto;
      flex-wrap: wrap; }
      #sumstock #anchor a {
        width: 33.333%;
        color: #333;
        font-size: 3vw;
        font-weight: bold;
        display: block;
        text-decoration: none;
        text-align: center;
        line-height: 1.6;
        padding: 2vw;
        border-right: 1px solid #333;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center; }
        #sumstock #anchor a:first-child {
          border-left: 1px solid #333; }
        #sumstock #anchor a:after {
          content: '';
          background-color: #D01518;
          display: block;
          max-width: 190px;
          height: 2px;
          width: 80%;
          margin: 5px auto 0; }
    #sumstock .sec1 {
      background-image: url(../images/bg1.svg);
      background-size: 26px;
      background-position: center;
      text-align: center; }
      #sumstock .sec1 .box {
        background-color: #fff;
        padding: 4vw;
        margin-bottom: 5vw; }
      #sumstock .sec1 .section-title {
        margin: 3vw 0; }
      #sumstock .sec1 .sub_title {
        font-size: 5vw;
        margin: 5vw 0; }
        #sumstock .sec1 .sub_title span {
          color: #D01518; }
      #sumstock .sec1 .text {
        text-align: left;
        margin: 4vw 0; }
      #sumstock .sec1 h5 {
        font-size: 3.8vw;
        font-weight: bold;
        margin: 4vw 0 2vw; }
      #sumstock .sec1 .image {
        margin: 0; }
      #sumstock .sec1 .flex {
        display: block; }
        #sumstock .sec1 .flex .box {
          width: 100%; }
          #sumstock .sec1 .flex .box:first-child .title {
            background-color: #485b76; }
          #sumstock .sec1 .flex .box:first-child .note {
            text-align: left; }
        #sumstock .sec1 .flex .title {
          background-color: #D01518;
          color: #fff;
          font-size: 5vw;
          font-weight: bold;
          line-height: 2;
          margin: 3vw 0; }
        #sumstock .sec1 .flex .text {
          text-align: left; }
      #sumstock .sec1 .list_title {
        text-align: left;
        background-image: url(../images/icon-01.svg);
        background-size: 18px 18px;
        background-position: 0 center;
        background-repeat: no-repeat;
        padding-left: 25px;
        margin-bottom: 3vw; }
      #sumstock .sec1 .list {
        list-style: none;
        margin: 0 0 5px;
        padding: 0 0 5px;
        text-align: left;
        background-image: url(../images/bg_boder.png);
        background-position: 0 0;
        background-size: 100% 30px; }
        #sumstock .sec1 .list li {
          display: inline-block;
          list-style: none;
          font-size: 11px;
          font-weight: bold;
          line-height: 30px;
          padding: 0 1em;
          position: relative; }
          #sumstock .sec1 .list li:before {
            background-color: #D01518;
            background-position: 0 center;
            background-repeat: no-repeat;
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            vertical-align: middle;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto; }
      #sumstock .sec1 .note {
        display: block;
        font-size: 10px;
        font-weight: lighter;
        text-align: left; }
        #sumstock .sec1 .note a {
          color: #333;
          text-decoration: underline; }
    #sumstock .sec2 {
      background-image: url(../images/bg2.svg);
      background-size: 26px;
      background-position: center;
      text-align: center; }
      #sumstock .sec2 .text {
        text-align: left; }
      #sumstock .sec2 .box {
        background-color: #fff;
        padding: 4vw;
        margin-bottom: 5vw; }
      #sumstock .sec2 .box2 {
        background-color: #fbfaf5;
        padding: 20px;
        text-align: left;
        max-width: 900px;
        margin: 6vw auto; }
        #sumstock .sec2 .box2 + .box2 .sub_title {
          background-color: #D01518; }
        #sumstock .sec2 .box2 + .box2 .list .text-box .title {
          color: #D01518;
          background-image: url(../images/bg_title2.png); }
      #sumstock .sec2 ul, #sumstock .sec2 li {
        list-style: none;
        margin: 0;
        padding: 0; }
      #sumstock .sec2 .sub_title {
        background-color: #485b76;
        color: #fff;
        font-size: 4vw;
        font-weight: bold;
        max-width: 580px;
        margin: 3vw auto 5vw;
        text-align: center;
        line-height: 2.5; }
      #sumstock .sec2 .list {
        max-width: 750px;
        margin: auto; }
        #sumstock .sec2 .list li {
          background-color: #fff;
          display: block;
          padding: 4vw;
          margin-bottom: 6vw; }
        #sumstock .sec2 .list .image {
          width: 100%; }
        #sumstock .sec2 .list .text-box {
          width: 100%;
          padding-left: 0;
          text-align: center; }
          #sumstock .sec2 .list .text-box .title {
            color: #485b76;
            font-size: 5vw;
            margin: 5vw 0 0;
            display: inline-block;
            background-image: url(../images/bg_title1.png);
            background-position: bottom;
            background-size: contain;
            background-repeat: no-repeat; }
          #sumstock .sec2 .list .text-box h4 {
            font-size: 4.5vw;
            font-weight: bold;
            line-height: 1.6;
            margin: 3vw auto; }
          #sumstock .sec2 .list .text-box .text {
            font-size: 4vw;
            text-align: left;
            margin-bottom: 0; }
        #sumstock .sec2 .list a {
          color: #0071b6;
          text-decoration: underline; }
    #sumstock .sec3 {
      background-image: url(../images/bg1.svg);
      background-size: 26px;
      background-position: center;
      text-align: center; }
      #sumstock .sec3 .box {
        background-color: #fff;
        padding: 4vw;
        margin-bottom: 4vw; }
      #sumstock .sec3 .lead {
        color: #485b76;
        font-size: 5vw;
        margin: 8vw 0;
        line-height: 1.4; }
      #sumstock .sec3 .text {
        text-align: left; }
      #sumstock .sec3 .list {
        display: block; }
        #sumstock .sec3 .list .box {
          width: 100%;
          margin: 8vw 0 0;
          padding: 0;
          border: 2px solid #485b76;
          border-radius: 10px;
          overflow: hidden; }
          #sumstock .sec3 .list .box:first-child {
            width: 100%; }
        #sumstock .sec3 .list .title {
          background-color: #485b76;
          color: #fff;
          font-size: 5vw;
          line-height: 2.5;
          font-weight: bold;
          margin: 0; }
        #sumstock .sec3 .list .sub {
          font-size: 4.5vw;
          font-weight: bold;
          color: #485b76;
          line-height: 1.4;
          width: 90%;
          margin: 5vw auto; }
          #sumstock .sec3 .list .sub:after {
            content: '';
            width: 70%;
            height: 3px;
            display: block;
            background-image: url(../images/hr.svg);
            background-size: cover;
            margin: auto; }
        #sumstock .sec3 .list .image {
          width: 90%;
          margin: 4vw auto; }
        #sumstock .sec3 .list .text {
          font-size: 4vw;
          text-align: left;
          width: 90%;
          margin: 4vw auto; }
        #sumstock .sec3 .list .flex {
          padding: 0 4vw;
          display: block; }
          #sumstock .sec3 .list .flex .image {
            margin: 4vw auto;
            width: 100%; }
          #sumstock .sec3 .list .flex .image_title {
            font-size: 4vw;
            margin: auto; }
          #sumstock .sec3 .list .flex .text {
            width: 100%;
            padding-left: 0;
            margin: 4vw auto; }
          #sumstock .sec3 .list .flex .note {
            font-size: 10px;
            text-align: left;
            display: block; }
    #sumstock .sec4 {
      text-align: center;
      background-image: url(../images/16.jpg);
      background-size: cover;
      background-position: center; }
      #sumstock .sec4 .lead {
        font-size: 4.5vw;
        font-weight: bold;
        line-height: 1.8;
        margin: 0; }
      #sumstock .sec4 .logo {
        width: 65%;
        max-width: 235px;
        margin: 6vw auto; }
      #sumstock .sec4 .btn_box.flex {
        display: block; }
      #sumstock .sec4 .btn_box .btn {
        margin: 6vw auto; } }

/*# sourceMappingURL=style.css.map */
