@charset "UTF-8";
/* ------------------------- Reset ------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  font-weight: 300;
  color: #000;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

.Mincho-font {
  font-family: "ヒラギノ明朝 ProN W3", "YuMincho", Georgia, "游明朝体", "游明朝", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "ヒラギノ明朝 Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.font-serif {
  font-family: "Noto Serif JP", serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  display: block;
}

div {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a, a i {
  text-decoration: none;
  outline: none;
  color: #000;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}

a img {
  display: block;
  outline: none;
}

a:hover img {
  opacity: 1;
}

img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  outline: none;
}

a:focus, a:active, input, textarea, button {
  outline: none;
}

a:hover, a:hover img {
  opacity: 0.6;
}

.text-indent {
  text-indent: 3em;
}

.text-input, input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
}

/* Chrome、Safari */
.text-input, input[type=number]::-webkit-outer-spin-button,
.text-input, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox、IE */
.text-input, input[type=number] {
  -moz-appearance: textfield;
}

/* Chrome、Safari */
.text-input, input[type=text] {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox、IE */
.text-input, input[type=text] {
  -moz-appearance: textfield;
}

.a-color-blue {
  color: #3BB4FF;
}

.a-decoration-show {
  text-decoration: underline;
}

.show320 {
  display: none;
}
@media screen and (max-width : 320px) {
  .show320 {
    display: block;
  }
}

.show768 {
  display: none;
}
@media screen and (max-width: 768px) {
  .show768 {
    display: block;
  }
}

.show760 {
  display: none;
}
@media screen and (max-width: 760px) {
  .show760 {
    display: block;
  }
}

.show1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
  .show1200 {
    display: block;
  }
}

.hide760 {
  display: block;
}
@media screen and (max-width: 760px) {
  .hide760 {
    display: none;
  }
}

.hide992 {
  display: block;
}
@media screen and (max-width: 992px) {
  .hide992 {
    display: none;
  }
}

.show1000 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .show1000 {
    display: block;
  }
}

.hide1000 {
  display: block;
}
@media screen and (max-width: 1000px) {
  .hide1000 {
    display: none;
  }
}

.hide1200 {
  display: block;
}
@media screen and (max-width: 1200px) {
  .hide1200 {
    display: none;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.margin-center {
  margin-right: auto;
  margin-left: auto;
}

.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.underline {
  text-decoration: underline;
}

.warp {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 760px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 760px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 760px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 760px) {
  .mt60 {
    margin-top: 30px !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}
@media screen and (max-width: 760px) {
  .mt70 {
    margin-top: 40px !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}
@media screen and (max-width: 760px) {
  .mt80 {
    margin-top: 40px !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}
@media screen and (max-width: 760px) {
  .mt100 {
    margin-top: 40px !important;
  }
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}
@media screen and (max-width: 760px) {
  .mt120 {
    margin-top: 80px !important;
  }
}

.mt130 {
  margin-top: 130px !important;
}
@media screen and (max-width: 760px) {
  .mt130 {
    margin-top: 60px !important;
  }
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 760px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 760px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 760px) {
  .mb100 {
    margin-bottom: 60px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 760px) {
  .mb120 {
    margin-bottom: 80px !important;
  }
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb240 {
  margin-bottom: 240px !important;
}
@media screen and (max-width: 760px) {
  .mb240 {
    margin-bottom: 80px !important;
  }
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mar50 {
  margin: 50px 0;
}

.mar75 {
  margin: 75px 0;
}
@media screen and (max-width: 760px) {
  .mar75 {
    margin: 35px 0;
  }
}

.mar100 {
  margin: 100px 0;
}

.mar120 {
  margin: 120px 0;
}

.mar150 {
  margin: 150px 0;
}

.mar5075 {
  margin: 50px 0 75px 0;
}

.mar50100 {
  margin: 50px 0 100px 0;
}

.mar50125 {
  margin: 50px 0 125px 0;
}

.mar80100 {
  margin: 80px 0 100px 0;
}

.mar100125 {
  margin: 100px 0 125px 0;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}
@media screen and (max-width: 760px) {
  .pt60 {
    padding-top: 40px !important;
  }
}

.pt100 {
  padding-top: 100px !important;
}
@media screen and (max-width: 760px) {
  .pt100 {
    padding-top: 50px !important;
  }
}

.pt120 {
  padding-top: 120px !important;
}
@media screen and (max-width: 760px) {
  .pt120 {
    padding-top: 60px !important;
  }
}

.pt130 {
  padding-top: 130px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}
@media screen and (max-width: 760px) {
  .pb120 {
    padding-bottom: 60px !important;
  }
}

.pb180 {
  padding-bottom: 180px !important;
}
@media screen and (max-width: 760px) {
  .pb180 {
    padding-bottom: 60px !important;
  }
}

.pb200 {
  padding-bottom: 200px !important;
}
@media screen and (max-width: 760px) {
  .pb200 {
    padding-bottom: 100px !important;
  }
}

.pb240 {
  padding-bottom: 240px !important;
}
@media screen and (max-width: 760px) {
  .pb240 {
    padding-bottom: 128px !important;
  }
}

.pb130 {
  padding-bottom: 130px !important;
}

.pad40 {
  padding: 40px 0;
}

.pad50 {
  padding: 50px 0;
}

.pad60 {
  padding: 60px 0;
}

.pad75 {
  padding: 75px 0;
}

.pad100 {
  padding: 100px 0;
}

.pad120 {
  padding: 120px 0;
}
@media screen and (max-width: 760px) {
  .pad120 {
    padding: 60px 0 !important;
  }
}

.pad240 {
  padding: 240px 0;
}
@media screen and (max-width: 760px) {
  .pad240 {
    padding: 100px 0 !important;
  }
}

.pad150 {
  padding: 150px 0;
}

.pad5075 {
  padding: 50px 0 75px 0;
}

.pad50100 {
  padding: 50px 0 100px 0;
}

.pad50125 {
  padding: 50px 0 125px 0;
}

.pad60100 {
  padding: 60px 0 100px 0;
}

.pad80100 {
  padding: 80px 0 100px 0;
}

.pad100125 {
  padding: 100px 0 125px 0;
}

.pad120 {
  padding: 120px 0;
}

.pad160180 {
  padding: 160px 0 180px 0;
}
@media screen and (max-width: 760px) {
  .pad160180 {
    padding: 80px 0 100px 0;
  }
}

.pad7550 {
  padding: 75px 0 50px 0;
}

.pad-right-115 {
  padding-right: 115px;
}

.fw-100-thin {
  font-weight: 100 !important;
}

.fw-300-light {
  font-weight: 300 !important;
}

.fw-400-regular {
  font-weight: 400 !important;
}

.fw-500-medium {
  font-weight: 500 !important;
}

.fw-600-bold {
  font-weight: 600 !important;
}

.fw-700-bold {
  font-weight: 700 !important;
}

.fw-900-black {
  font-weight: 900 !important;
}

.fs-10-px {
  font-size: 1rem !important;
}

.fs-13-px {
  font-size: 1.3rem !important;
}

.fs-16-px {
  font-size: 1.6rem !important;
}

.fs-18-px {
  font-size: 1.8rem;
}

.fs-20-px {
  font-size: 2rem;
}
@media screen and (max-width: 760px) {
  .fs-20-px {
    font-size: 1.8rem;
  }
}

.fs-22-px {
  font-size: 2.2rem;
}
@media screen and (max-width: 760px) {
  .fs-22-px {
    font-size: 2rem;
  }
}

.fs-24-px {
  font-size: 2.4rem;
}
@media screen and (max-width: 760px) {
  .fs-24-px {
    font-size: 2rem;
  }
}

.fs-28-px {
  font-size: 2.8rem;
}
@media screen and (max-width: 760px) {
  .fs-28-px {
    font-size: 2.4rem;
  }
}

.fs-30-px {
  font-size: 3rem;
}

.fs-32-px {
  font-size: 3.2rem;
  line-height: 35px;
}
@media screen and (max-width: 760px) {
  .fs-32-px {
    font-size: 2.8rem;
  }
}

.line-height-18 {
  line-height: 1.8;
}

.txt-right {
  text-align: right;
}

.link-sp {
  pointer-events: none !important;
}
@media screen and (max-width: 768px) {
  .link-sp {
    pointer-events: visible !important;
  }
}

.content-720 {
  width: 92%;
  max-width: 720px;
  margin: 0 auto;
}

.content-880 {
  width: 92%;
  max-width: 880px;
  margin: 0 auto;
}

.content-900 {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
}

.content-940 {
  width: 92%;
  max-width: 940px;
  margin: 0 auto;
}

.content-960 {
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
}

.content-1020 {
  width: 92%;
  max-width: 1020px;
  margin: 0 auto;
}

.content-1088 {
  width: 92%;
  max-width: 1088px;
  margin: 0 auto;
}

.content-1120 {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

.content-1170 {
  width: 92%;
  max-width: 1170px;
  margin: 0 auto;
}

.content-1200 {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-1200-full-right {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .content-1200-full-right {
    margin: inherit;
    margin-left: auto;
    width: 96%;
  }
}

.content-1230 {
  width: 92%;
  max-width: 1230px;
  margin: 0 auto;
}

.content-1300 {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
}

.content-1345 {
  width: 92%;
  max-width: 1345px;
  margin: 0 auto;
}

.content-1366 {
  width: 92%;
  max-width: 1366px;
  margin: 0 auto;
}

.content-1400 {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.content-1440 {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
}

.content-1440-full-width {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.content-1440-full-right {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .content-1440-full-right {
    margin: inherit;
    margin-left: auto;
    width: 96%;
  }
}
@media screen and (max-width: 760px) {
  .content-1440-full-right {
    margin: 0 auto;
    margin-left: auto;
    width: 96%;
  }
}
@media screen and (max-width : 420px) {
  .content-1440-full-right {
    width: 92%;
  }
}

.content-1440-full-left {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .content-1440-full-left {
    margin: inherit;
    margin-right: auto;
    width: 92%;
  }
}
@media screen and (max-width: 760px) {
  .content-1440-full-left {
    margin: 0 auto;
    margin-left: auto;
    width: 96%;
  }
}
@media screen and (max-width : 420px) {
  .content-1440-full-left {
    width: 92%;
  }
}

.relative {
  position: relative;
}

.color-blue {
  color: #0068b0;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000 !important;
}

.color-red {
  color: #de2b1e;
}

.color-grey {
  color: #989898;
}

.color-0098D8 {
  color: #0098D8;
}

.bg-red {
  background-color: #C40101;
}

.bg-blue {
  background-color: #0B46B7;
}

.bg-grey-dark {
  background-color: #343434;
}

.bg-grey-light {
  background-color: #EEEEEE;
}

.bg-white {
  background-color: #fff;
}

.bg-grey-DD {
  background-color: #DDD;
}

.bg-grey-D1 {
  background-color: #D1D1D1;
}

.bg-grey-E6 {
  background-color: #E6E6E6;
}

.bg-grey-EA {
  background-color: #EAEAEA;
}

.bg-grey-EB {
  background-color: #EBEBEB;
}

.bg-grey-E8 {
  background-color: #E8E8E8;
}

.bg-grey-36 {
  background-color: #363636 !important;
}

.bg-grey-f6 {
  background-color: #F6F6F6;
}

.bg-grey-f6f5f2 {
  background-color: #f6f5f2;
}

.bg-grey-f7 {
  background-color: #F7F7F7;
}

.bg-grey-f8 {
  background-color: #F8F8F8;
}

.bg-bea870 {
  background-color: #bea870;
}

.bg-a8a9a8 {
  background-color: #a8a9a8;
}

.bg-997a5c {
  background-color: #997a5c;
}

.bg-dedede {
  background-color: #dedede;
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
}

.btn-right {
  margin-left: auto;
}

.btn:hover {
  opacity: 0.6;
}

.btn-size-14 {
  font-size: 1.4rem;
}

.btn-height-50 {
  height: 50px;
}

.btn-height-54 {
  height: 54px;
}

.btn-height-60 {
  height: 60px;
}

.btn-height-80 {
  height: 80px;
}
@media screen and (max-width: 760px) {
  .btn-height-80 {
    height: 60px;
  }
}

.btn-height-140 {
  height: 140px;
}

.btn-width-114 {
  max-width: 114px;
  width: 100%;
}

.btn-width-157 {
  max-width: 157px;
  width: 100%;
}

.btn-width-160 {
  max-width: 160px;
  width: 100%;
}

.btn-width-240 {
  max-width: 240px;
  width: 100%;
}

.btn-width-307 {
  max-width: 307px;
  width: 100%;
}

.btn-width-320 {
  max-width: 320px;
  width: 100%;
}

.btn-width-335 {
  max-width: 335px;
  width: 100%;
}

.btn-width-389 {
  max-width: 389px;
  width: 100%;
}

.btn-width-400 {
  max-width: 400px;
  width: 100%;
}

.btn-width-520 {
  max-width: 520px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .btn-width-520 {
    max-width: 320px;
  }
}

.btn-white {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  margin-left: auto;
  margin-right: auto;
  background: url("/assets/images/common/arrow-link.svg") #fff;
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
  background-size: 28px auto;
  border-radius: 50px;
}

.btn-white-back {
  border: 1px solid #000;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  background: url("/assets/images/common/arrow-back-black.svg") #fff;
  background-repeat: no-repeat;
  background-position: left 1em top 50%;
  background-size: 5px auto;
}

.btn-white-blue {
  border: 1px solid #0B46B7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #0B46B7;
  background: url("/assets/images/common/line-btn-blue02.svg") #fff;
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 16px auto;
}
@media screen and (max-width: 760px) {
  .btn-white-blue {
    background-size: 24px auto;
    background-position: right -10px top 50%;
  }
}

.btn-contact-blue {
  border: 1px solid #0B46B7;
  background-color: #0B46B7 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  background-position: left 1em top 50%;
  background-size: 5px auto;
  color: #fff;
}
.btn-contact-blue .icon-mail {
  background-position: left top 9px;
}

.btn-entry-white {
  border: 1px solid #fff;
  background-color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  background-position: left 1em top 50%;
  background-size: 5px auto;
  color: #0B46B7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(/assets/images/common/line-btn-blue.svg);
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 20px auto;
}
.btn-entry-white .h-txt-entry {
  font-weight: bold;
  font-size: 4rem;
  line-height: 40px;
}
.btn-entry-white .icon-mail {
  background-position: left top 9px;
}

.btn-more {
  border: 1px solid #0B46B7;
  background-color: #0B46B7 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  background-position: left 1em top 50%;
  background-size: 5px auto;
  color: #fff;
  font-family: initial;
  background: url("/assets/images/common/line-btn.svg") #0B46B7;
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 16px auto;
}
@media screen and (max-width: 760px) {
  .btn-more {
    background-size: 24px auto;
    background-position: right -10px top 50%;
  }
}

.btn-blue {
  border: 1px solid #0B46B7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  background: url("/assets/images/common/line-btn.svg") #0B46B7;
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 16px auto;
}
@media screen and (max-width: 760px) {
  .btn-blue {
    background-size: 24px auto;
    background-position: right -10px top 50%;
  }
}

.row-btn {
  width: 100%;
}

.btn-border-white {
  border: 1px solid #fff;
}

.gototop {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 69px;
  cursor: pointer;
}

.txt-title h1 {
  font-size: 2.4rem;
  font-weight: bold;
}

.list-col5 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -6%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -3%;
}
@media screen and (max-width: 760px) {
  .list-col5 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-col5 ul li {
  width: 21.99%;
  margin-left: 3%;
  margin-top: 6%;
}
@media screen and (max-width: 760px) {
  .list-col5 ul li {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.list-col5 ul li img {
  width: 100%;
}
.list-col5 ul li a {
  display: block;
  height: 100%;
}
.list-col5 ul li a .title-list {
  margin: 20px 0;
}
.list-col5 ul li a .img-list img {
  width: 100%;
}
.list-col5 ul li a:hover {
  opacity: 1;
}
.list-col5 ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.list-col5 ul li a .cover {
  overflow: hidden;
}
.list-col5 ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-col4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -6%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -3%;
}
@media screen and (max-width: 760px) {
  .list-col4 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-col4 ul li {
  width: 21.99%;
  margin-left: 3%;
  margin-top: 6%;
}
@media screen and (max-width: 760px) {
  .list-col4 ul li {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.list-col4 ul li img {
  width: 100%;
}
.list-col4 ul li a {
  display: block;
  height: 100%;
}
.list-col4 ul li a .title-list {
  margin: 20px 0;
}
.list-col4 ul li a .img-list img {
  width: 100%;
}
.list-col4 ul li a:hover {
  opacity: 1;
}
.list-col4 ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.list-col4 ul li a .cover {
  overflow: hidden;
}
.list-col4 ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-col3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -3%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -3%;
}
@media screen and (max-width: 760px) {
  .list-col3 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-col3 ul li {
  width: 30.33%;
  margin-left: 3%;
  margin-top: 3%;
}
@media screen and (max-width: 760px) {
  .list-col3 ul li {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.list-col3 ul li img {
  width: 100%;
}
.list-col3 ul li a {
  display: block;
  height: 100%;
}
.list-col3 ul li a .title-list {
  margin: 20px 0;
}
.list-col3 ul li a .img-list img {
  width: 100%;
}
.list-col3 ul li a:hover {
  opacity: 1;
}
.list-col3 ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.list-col3 ul li a .cover {
  overflow: hidden;
}
.list-col3 ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-col2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .list-col2 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-col2 ul li {
  width: 48.7%;
  margin-top: 30px;
}
@media screen and (max-width: 760px) {
  .list-col2 ul li {
    margin-top: 4.4%;
    width: 100% !important;
  }
}
.list-col2 ul li img {
  width: 100%;
}
.list-col2 ul li a {
  display: block;
  height: 100%;
}
.list-col2 ul li a .img-list img {
  width: 100%;
}
.list-col2 ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.list-col2 ul li a .cover {
  overflow: hidden;
}
.list-col2 ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.col3-center ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -3%;
}
@media screen and (max-width: 760px) {
  .col3-center ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
  }
}
.col3-center ul li {
  width: 30%;
  margin-left: 1.367%;
  margin-right: 1.367%;
  margin-top: 3%;
}
.col3-center ul li img {
  width: 100%;
}
.col3-center ul li a {
  display: block;
  height: 100%;
}
.col3-center ul li a .img-list img {
  width: 100%;
}
.col3-center ul li a:hover {
  opacity: 1;
}
.col3-center ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.col3-center ul li a .cover {
  overflow: hidden;
}
.col3-center ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.box-slide {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 760px) {
  .banner img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 200px;
  }
}

.banner-right {
  padding-left: 8.3%;
}
@media screen and (max-width: 1440px) {
  .banner-right {
    padding-left: 0;
  }
}

.breadcump {
  padding-left: 8.3%;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 1440px) {
  .breadcump {
    padding-left: 0;
  }
}
.breadcump ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcump ul li {
  font-size: 1.3rem;
}
.breadcump ul li + li {
  margin-left: 4px;
}

.title-center {
  text-align: center;
}
@media screen and (max-width: 760px) {
  .title-center {
    text-align: left;
  }
  .title-center br {
    display: none;
  }
}

.subtitle-center {
  text-align: center;
}
@media screen and (max-width: 760px) {
  .subtitle-center {
    text-align: left;
  }
  .subtitle-center br {
    display: none;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 10;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

#wrapper {
  padding-top: 140.5px;
}
@media screen and (max-width: 760px) {
  #wrapper {
    padding-top: 149.5px;
  }
}

.header-top {
  background-color: #3A3A3A;
  padding: 10px 0;
}
.header-top .row-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-top .row-header .row-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-top .row-header .row-lang a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px;
  color: #fff;
  -webkit-filter: inherit;
          filter: inherit;
}
@media screen and (max-width: 760px) {
  .header-top .row-header .row-lang a {
    margin: 0 8px;
    font-size: 1.3rem;
    color: #000;
  }
}
.header-top .row-header .row-lang a .icon {
  width: 24px;
}
.header-top .row-header .row-lang a .txt-lang {
  margin-left: 10px;
  font-weight: 300;
}
@media screen and (max-width: 760px) {
  .header-top .row-header .row-lang a .txt-lang {
    margin-left: 5px;
  }
}
.header-top .row-header .row-lang a.active {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  pointer-events: none;
}

.header-bottom {
  position: relative;
  background-color: #fff;
}
.header-bottom:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 7;
  width: 40%;
  height: 100%;
  background-color: #C40E0E;
}
@media screen and (max-width: 760px) {
  .header-bottom:after {
    width: 20%;
  }
}
.header-bottom .row-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
.header-bottom .row-header .logo-drsum {
  min-width: 186px;
}
@media screen and (max-width: 760px) {
  .header-bottom .row-header .logo-drsum {
    min-width: inherit;
    width: 135px;
  }
}
.header-bottom .row-header .row-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 8;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .header-bottom .row-header .row-menu .menu {
    display: none;
  }
}
.header-bottom .row-header .row-menu .menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-bottom .row-header .row-menu .menu > ul > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 30px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .header-bottom .row-header .row-menu .menu > ul > li a {
    padding: 30px 12px;
  }
}
@media screen and (max-width: 768px) {
  .header-bottom .row-header .row-menu .menu > ul > li a {
    font-size: 1.4rem;
  }
}
.header-bottom .row-header .row-menu .btn-contact {
  background-color: #C40E0E;
}
.header-bottom .row-header .row-menu .btn-contact a {
  background-color: #C40E0E;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .header-bottom .row-header .row-menu .btn-contact a {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 760px) {
  .header-bottom .row-header .row-menu .btn-contact a {
    padding: 20px 10px;
    position: relative;
    left: 10px;
  }
}
.header-bottom .row-header .row-menu .btn-contact a .icon {
  width: 33px;
  margin-right: 10px;
}
@media screen and (max-width: 760px) {
  .header-bottom .row-header .row-menu .btn-contact a .icon {
    width: 25px;
    margin-right: 5px;
  }
}

.header-burger {
  display: none;
  height: 60px;
  position: relative;
}
.header-burger a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  background-color: #0B46B7;
}
@media screen and (max-width: 760px) {
  .header-burger a {
    margin: 0 !important;
  }
}
@media screen and (max-width: 760px) {
  .header-burger {
    display: block;
  }
}

.nav-icon {
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 1px;
  width: 30px;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 15px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 18px;
}

.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 28px;
}

.nav-icon span:nth-child(4) {
  top: 38px;
}

.nav-icon.open span:nth-child(1) {
  top: 28px;
  width: 0%;
  left: 50%;
}

.nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.gnav {
  display: none;
}

.show-menu .gnav .row-btn {
  margin-top: 80px;
}
@media screen and (max-width: 760px) {
  .show-menu .gnav {
    width: 100%;
    height: 100%;
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    visibility: hidden;
    margin-top: 60px;
    background-color: #fff;
    margin-top: 150px;
  }
  .show-menu .gnav .menu ul li {
    text-align: center;
  }
  .show-menu .gnav .menu ul li a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2.4rem;
  }
  .show-menu .gnav .menu ul li + li {
    margin-top: 40px;
  }
}

@media screen and (max-width: 760px) {
  .show-menu .gnav {
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
  }
}

@media screen and (max-width: 760px) {
  .show-menu .gnav .sp_container {
    position: relative;
    padding: 80px 0 2em;
    height: 100vh;
  }
}

@media screen and (max-width: 760px) {
  .show-menu .gnav .sp_container::after {
    content: "";
    height: 100%;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 0;
    -webkit-transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@media screen and (max-width: 760px) {
  .show-menu .sp_container::after {
    right: 0;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    background-color: #fff;
  }
}

@media screen and (max-width: 760px) {
  .show-menu .gnav_container {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    height: auto;
    opacity: 0;
    position: relative;
    padding: 1.5em 0;
    z-index: 9998;
    background-color: #fff;
    padding-bottom: 200px;
  }
}

@media screen and (max-width: 760px) {
  .show-menu .gnav_container {
    opacity: 1;
    -webkit-transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
    transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
  }
}

#footer {
  background-color: #3A3A3A;
}
#footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 760px) {
  #footer .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 20px;
  }
}
#footer .footer a {
  color: #fff;
}
#footer .footer-left {
  width: 50%;
}
@media screen and (max-width: 760px) {
  #footer .footer-left {
    width: 100%;
  }
}
#footer .footer-right {
  width: 50%;
}
@media screen and (max-width: 760px) {
  #footer .footer-right {
    width: 100%;
  }
}
#footer .sub-logo {
  color: #fff;
}
#footer .txt-contact {
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 760px) {
  #footer .txt-contact {
    font-size: 1.4rem;
  }
}
#footer .icon-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .icon-social ul li + li {
  margin-left: 25px;
}
#footer .txt-contact-en p {
  color: #fff;
}
@media screen and (max-width: 760px) {
  #footer .txt-contact-en p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 760px) {
  .logo-footer {
    width: 140px;
  }
}

#coppy-right {
  background-color: #2F2F2F;
  padding: 40px 0;
}
@media screen and (max-width: 760px) {
  #coppy-right {
    padding: 20px 0;
  }
}
#coppy-right .coppy-right {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 760px) {
  #coppy-right .coppy-right {
    font-size: 1rem;
  }
}

#mv {
  background: url("/assets/images/top/mv01.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 625px;
}
@media screen and (max-width: 760px) {
  #mv {
    height: 500px;
  }
}
#mv .mv {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mv .mv h1 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 760px) {
  #mv .mv h1 {
    font-size: 2.2rem;
  }
}
#mv .sub-txt-mv {
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  #mv .sub-txt-mv {
    margin-top: 20px !important;
  }
}

#flow .flow .title-flow {
  text-align: center;
}
#flow .flow .title-flow h2 {
  font-size: 3.6rem;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  #flow .flow .title-flow h2 {
    font-size: 2.2rem;
  }
}
#flow .flow .arrow-down-title img {
  margin-left: auto;
  margin-right: auto;
}
#flow .flow .box-flow {
  border: 5px solid #000;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 760px) {
  #flow .flow .box-flow {
    padding: 40px 10px;
  }
}
#flow .flow .box-flow .list-title-flow {
  min-width: 165px;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .list-title-flow {
    min-width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .list-title-flow > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#flow .flow .box-flow .list-title-flow > ul li {
  border: 3px solid #C30D12;
  border-radius: 5px;
  max-width: 165px;
  width: 100%;
  text-align: center;
  padding: 7px 5px;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .list-title-flow > ul li {
    max-width: 300px;
  }
}
#flow .flow .box-flow .list-title-flow > ul li .title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1.5px solid #000;
  line-height: 25px;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  #flow .flow .box-flow .list-title-flow > ul li .title {
    font-size: 1.3rem;
  }
}
#flow .flow .box-flow .list-title-flow > ul li:nth-child(even) {
  margin: 18.2% 0;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .list-title-flow > ul li:nth-child(even) {
    margin: 0 20px;
  }
}
#flow .flow .box-flow .detail-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 79.47%;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .detail-flow {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
}
#flow .flow .box-flow .detail-flow .list-detail-flow {
  max-width: 451px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .detail-flow .list-detail-flow {
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .detail-flow .list-detail-flow > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#flow .flow .box-flow .detail-flow .list-detail-flow > ul li {
  border: 3px solid #000;
  border-radius: 5px;
  text-align: center;
  padding: 5px;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .detail-flow .list-detail-flow > ul li {
    width: 300px;
  }
}
@media screen and (max-width: 760px) {
  #flow .flow .box-flow .detail-flow .list-detail-flow > ul li {
    font-size: 1.3rem;
  }
}
#flow .flow .box-flow .detail-flow .list-detail-flow > ul li:nth-child(even) {
  margin: 7.2% 0;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .detail-flow .list-detail-flow > ul li:nth-child(even) {
    margin: 0 20px;
  }
}
#flow .flow .box-flow .detail-flow .image-flow {
  max-width: 380px;
  margin-left: -10px;
}
@media screen and (max-width: 1000px) {
  #flow .flow .box-flow .detail-flow .image-flow {
    margin-top: -10px;
    margin-left: 0px;
    max-width: 450px;
  }
}
#flow .flow .box-flow .detail-flow .image-flow img {
  widows: 100%;
}
#flow #intersect-flow {
  margin: 35px 0;
  position: relative;
  z-index: 0;
}
#flow #intersect-flow .intersect-flow {
  background-color: #000;
  max-width: 815px;
  height: 70px;
  padding: 5px 0;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#flow #intersect-flow .img-arrow-down {
  position: absolute;
  top: 72%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

#about-sir {
  background: url("/assets/images/top/system-business.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 760px) {
  #about-sir {
    height: 500px;
  }
}
#about-sir .about-sir .txt-about-sir {
  text-align: center;
  font-size: 3rem;
}
#about-sir .about-sir .txt-about-sir p {
  font-weight: 400;
}
@media screen and (max-width: 760px) {
  #about-sir .about-sir .txt-about-sir {
    font-size: 2rem;
  }
}
#about-sir .about-sir .img-about-sir-drsum {
  max-width: 456px;
}
#about-sir .about-sir .logo-about-sir-drsum img {
  margin-left: auto;
  margin-right: auto;
}
#about-sir .about-sir .img-about-sir-drsum {
  margin-left: auto;
  margin-right: auto;
}

#meaning {
  background: url("/assets/images/top/bg-video.png"), url("/assets/images/top/bg-video.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top 40px left, bottom 40px left;
  background-size: auto, auto;
}
#meaning .meaning .meaning-title h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  #meaning .meaning .meaning-title h2 {
    font-size: 2.2rem;
  }
}
#meaning .meaning .arrow-down-meaning img {
  margin-right: auto;
  margin-left: auto;
}
#meaning .meaning .section-meaning .box-meaning {
  border: 3px solid #000;
  border-radius: 10px;
  padding: 30px;
  background-color: #fff;
}
#meaning .meaning .section-meaning .box-meaning + .box-meaning {
  margin-top: 40px;
}
#meaning .meaning .box-meaning-title {
  text-align: center;
}
#meaning .meaning .box-meaning-title h3 {
  font-size: 2.8rem;
  color: #BC0C1E;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  #meaning .meaning .box-meaning-title h3 {
    font-size: 2rem;
  }
}
#meaning .meaning .box-meaning-title .meaning-sub {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 760px) {
  #meaning .meaning .box-meaning-title .meaning-sub {
    font-size: 1.6rem;
    text-align: left;
  }
  #meaning .meaning .box-meaning-title .meaning-sub br {
    display: none;
  }
}
#meaning .meaning .list-col3 li .videoWrapper {
  position: relative;
  padding-bottom: 69.25%;
  height: 0;
}
@media screen and (max-width: 760px) {
  #meaning .meaning .list-col3 li .videoWrapper {
    padding-bottom: 56.25%; /* 16:9 */
  }
}
#meaning .meaning .list-col3 li .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#meaning .meaning .list-col3 li .videoWrapper video {
  width: 100%;
  height: auto;
  min-height: 235px;
  max-height: 235px;
  background-color: #000;
}
@media screen and (max-width: 992px) {
  #meaning .meaning .list-col3 li .videoWrapper video {
    min-height: 145px;
    max-height: 145px;
  }
}
@media screen and (max-width: 760px) {
  #meaning .meaning .list-col3 li .videoWrapper video {
    min-height: inherit;
    max-height: inherit;
    padding-bottom: 0;
  }
}
#meaning .meaning iframe {
  width: 100%;
  height: 270px;
}
#meaning .meaning .link-video-out {
  text-align: right;
  margin-top: 5px;
}
#meaning .meaning .link-video-out a {
  text-decoration: underline;
}

#article .article .article-title h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  #article .article .article-title h2 {
    font-size: 2.2rem;
  }
}
#article .article .box-article {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: -2px 4px 19px 5px rgba(0, 0, 0, 0.07);
  box-shadow: -2px 4px 19px 5px rgba(0, 0, 0, 0.07);
  padding: 30px;
}

#case-study .case-study .case-study-title h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  #case-study .case-study .case-study-title h2 {
    font-size: 2.2rem;
  }
}
#case-study .case-study .section-case-study .section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 760px) {
  #case-study .case-study .section-case-study .section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#case-study .case-study .section-case-study .section .image {
  width: 39.145%;
}
@media screen and (max-width: 760px) {
  #case-study .case-study .section-case-study .section .image {
    width: 100%;
  }
}
#case-study .case-study .section-case-study .section .txt {
  width: 61%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 760px) {
  #case-study .case-study .section-case-study .section .txt {
    width: 100%;
  }
}
#case-study .case-study .section-case-study .section .txt-title-section h3 {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  #case-study .case-study .section-case-study .section .txt-title-section h3 {
    font-size: 2rem;
  }
}
#case-study .case-study .section-case-study .section .txt-link-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#case-study .case-study .section-case-study .section .txt-link-section .icon-link {
  margin-left: 15px;
}
#case-study .case-study .section-case-study .section + .section {
  margin-top: 60px;
}

#pathner .pathner .pathner-title h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  #pathner .pathner .pathner-title h2 {
    font-size: 2.2rem;
  }
}
#pathner .pathner .list-col5 ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 760px) {
  #pathner .pathner .list-col5 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#pathner .pathner .list-col5 ul li {
  width: auto;
}
@media screen and (max-width: 760px) {
  #pathner .pathner .list-col5 ul li {
    padding: 0 10px;
  }
}

#contact-row .contact-row .contact-row-title h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 760px) {
  #contact-row .contact-row .contact-row-title h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 760px) {
  #contact-row .contact-row .btn {
    line-height: 1.5;
    font-size: 1.4rem;
  }
}

.page-en #flow .flow .box-flow .list-title-flow > ul li {
  font-size: 1.2rem;
}
@media screen and (max-width: 760px) {
  .page-en #flow #intersect-flow .intersect-flow {
    line-height: 1.2;
  }
}

.page-th #flow .flow .box-flow .list-title-flow > ul li {
  font-size: 1.2rem;
}
@media screen and (max-width: 760px) {
  .page-th #flow #intersect-flow .intersect-flow {
    line-height: 1.2;
  }
}

.agency-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .agency-list ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .agency-list ul li {
    padding: 15px;
  }
}

.content-1000 {
  width: 94%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.box-white {
  padding: 60px 45px 100px 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
}

.txthead.center {
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.txthead {
  font-size: 3rem;
  line-height: 5rem;
  font-weight: 600;
  margin-bottom: 45px;
}

.txthead.center + .txtsub {
  text-align: center;
}

.txthead + .txtsub {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-top: -35px;
  margin-bottom: 45px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-row-border {
  padding: 25px 40px 25px 0;
  border-top: 1px solid #ebebeb;
}

.form-topic {
  min-width: 190px;
}

.form-topic p {
  font-weight: 500;
  padding-top: 8px;
  text-align: right;
}

.form-field {
  width: 100%;
  padding-left: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.w50 {
  width: 48%;
}

.w100 {
  width: 100%;
}

.textbox {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: 1px;
  padding: 8px 14px;
  border: 1px solid #d1d1d1;
  background-color: #f9f9f9;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
}

textarea.textbox {
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: 1px;
  height: 180px;
  resize: none;
}

.form-row-text p.topic {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-row-text p {
  line-height: 3rem;
}

.form-agree {
  margin-top: 80px;
  text-align: center;
}

.agree-bg {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 46px;
  background-color: #3a3a3a;
  border-radius: 5px;
}

.chkbox-btn {
  display: block;
  position: relative;
  padding-left: 27px;
  margin-top: 0px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.6rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.agree-bg .chkbox-btn {
  color: #fff;
}

.form-agree {
  margin-top: 80px;
  text-align: center;
}

.chkbox-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.chkbox {
  position: absolute;
  top: 7px;
  left: 0;
  border: 1px solid #d1d1d1;
  height: 18px;
  width: 18px;
  background-color: none;
  background: #fff;
  border-radius: 3px;
}

.chkbox-btn input:checked ~ .chkbox:after {
  display: block;
}

.chkbox-btn .chkbox:after {
  top: 0px;
  left: 5px;
  width: 4px;
  height: 11px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.chkbox:after {
  content: "";
  position: absolute;
  display: none;
}

.btn-margin-top {
  margin-top: 35px;
}

.btn-300 {
  width: 300px;
}

.btn-arrow-right-light {
  background-image: url(/assets/images/common/header-btn-arrow.png);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 8px;
}

.btn-blue-drak {
  color: #fff;
  background-color: #043362;
}

.btn-fr-contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 60px;
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 0 30px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
.btn-fr-contact:hover {
  opacity: 0.8;
}

p.remark {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.contact-thanks-text {
  margin-bottom: 45px;
  text-align: center;
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
}

.btn-margin-top {
  margin-top: 35px;
}

.btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-flex > div {
  margin: 0 10px;
}

p.remark {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.msg-error {
  color: #d6464f;
}

/* Contact */
.contact-step {
  margin-bottom: 45px;
}

.contact-step ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-step ul li {
  width: 33.33%;
  padding: 11px 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 800;
  color: #fff;
  background-color: #d5d5d5;
  position: relative;
  font-weight: normal;
}

.contact-step ul li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  z-index: 8;
  width: 18px;
  height: 50px;
  background-image: url(/assets/images/common/step-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.contact-step ul li.red {
  background-color: #b20810;
}

.contact-step ul li.red::after {
  background-image: url("/assets/images/common/step-arrow-red.png");
}

.contact-step ul li.gray {
  background-color: #bebebe;
}

.contact-step ul li.gray::after {
  background-image: url("/assets/images/common/step-arrow-gray.png");
}

.contact-step ul li:last-child::after {
  display: none !important;
}

#mv-inner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1440px;
  background-color: #d6d6d6;
}
#mv-inner h1 {
  font-size: 3.6rem;
  line-height: 4.6rem;
  font-weight: 600;
}

.mv-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 220px;
}

.show834 {
  display: none;
}

@media screen and (max-width: 768px) {
  .show834 {
    display: block;
  }
}
@media screen and (max-width: 760px) {
  .box-white {
    padding: 40px 15px !important;
  }
  .txthead {
    font-size: 2.2rem;
    line-height: 3.4rem;
    margin-bottom: 25px;
  }
  .txthead + .txtsub {
    font-size: 1.6rem;
    margin-top: -15px;
    margin-bottom: 25px;
  }
  .form-row-border {
    display: block;
    padding: 25px 0;
  }
  .form-field {
    margin-top: 5px;
    padding-left: 0;
  }
  .form-topic p {
    padding-top: 0;
    text-align: left;
  }
  .form-agree {
    margin-top: 25px;
  }
  .btn-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .btn-flex > div {
    margin: 0;
  }
  .btn-flex > div + div {
    margin-top: 10px;
  }
  .contact-step {
    margin-bottom: 35px;
  }
  .contact-step ul li {
    width: 100%;
    height: auto;
    padding: 5px 0;
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .contact-step ul li::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -16px;
    z-index: 8;
    width: 18px;
    height: 50px;
    background-image: url(/assets/images/common/step-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
  }
  .mv-inner {
    height: 180px;
  }
  #mv-inner h1 {
    font-size: 2.8rem;
    line-height: 3.5rem;
  }
}
.title-txt {
  margin-top: 25px;
  margin-bottom: 20px;
}
.title-txt h1 {
  font-size: 3.6rem;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .title-txt h1 {
    font-size: 2.4rem;
  }
}

.case-page .detail-txt p {
  line-height: 2.2;
}
.case-page #flow .flow .box-flow .detail-flow .list-detail-flow > ul li {
  padding: 7px 7px;
  font-size: 1.3rem;
}
.case-page #flow .flow .box-flow .detail-flow {
  width: 81%;
}
@media screen and (max-width: 1000px) {
  .case-page #flow .flow .box-flow .detail-flow {
    width: 100%;
  }
}
.case-page #flow .flow .box-flow .list-title-flow {
  min-width: 120px;
}
@media screen and (max-width: 1000px) {
  .case-page #flow .flow .box-flow .list-title-flow {
    min-width: 100%;
  }
}
.case-page #flow .flow .box-flow .list-title-flow > ul li {
  padding: 7px 5px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .case-page #flow .flow .box-flow .list-title-flow > ul li {
    max-width: 100px;
  }
}
.case-page #flow .flow .box-flow .list-title-flow > ul li:nth-child(even) {
  margin: 18.2% 0;
}
@media screen and (max-width: 1000px) {
  .case-page #flow .flow .box-flow .list-title-flow > ul li:nth-child(even) {
    margin: 0 20px;
  }
}
.case-page #flow .flow .box-flow .detail-flow .image-flow {
  max-width: 330px;
  margin-left: -10px;
}
@media screen and (max-width: 1000px) {
  .case-page #flow .flow .box-flow .detail-flow .image-flow {
    margin-left: 0px;
    max-width: 290px;
  }
}
.case-page #flow .flow .box-flow .detail-flow .list-detail-flow {
  max-width: 335px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .case-page .link-target {
    font-size: 1.4rem;
  }
}

.list-flow .section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.list-flow .section p {
  line-height: 2.2;
}
.list-flow .section + .section {
  margin-top: 40px;
}

.list-row-detail > ul {
  margin-left: 30px;
}
.list-row-detail > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list-row-detail > ul li span:first-child {
  margin-right: 10px;
}

.header-page-content {
  margin-top: 40px;
  margin-bottom: 40px;
}
.header-page-content h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .header-page-content h1 {
    font-size: 2rem;
  }
}

.banner-dx img {
  margin: 0 auto;
}

.page-en #flow .flow .box-flow .detail-flow {
  width: 73%;
}
@media screen and (max-width: 1000px) {
  .page-en #flow .flow .box-flow .detail-flow {
    width: 100%;
  }
}
.page-en #flow .flow .box-flow .list-title-flow > ul li {
  font-size: 1.3rem;
}
.page-en #flow .flow .box-flow .list-title-flow > ul li:nth-child(even) {
  margin: 10.2% 0;
}
@media screen and (max-width: 1000px) {
  .page-en #flow .flow .box-flow .list-title-flow > ul li:nth-child(even) {
    margin: 0 20px;
  }
}
.page-en #flow .flow .box-flow .list-title-flow > ul li {
  border: 3px solid #C30D12;
  border-radius: 5px;
  max-width: 180px;
}
.page-en #flow .flow .box-flow .list-title-flow {
  min-width: 180px;
}

.page-th #flow .flow .box-flow .detail-flow {
  width: 73%;
}
@media screen and (max-width: 1000px) {
  .page-th #flow .flow .box-flow .detail-flow {
    width: 100%;
  }
}
.page-th #flow .flow .box-flow .list-title-flow > ul li {
  font-size: 1.3rem;
}
.page-th #flow .flow .box-flow .list-title-flow > ul li:nth-child(even) {
  margin: 10.2% 0;
}
@media screen and (max-width: 1000px) {
  .page-th #flow .flow .box-flow .list-title-flow > ul li:nth-child(even) {
    margin: 0 20px;
  }
}
.page-th #flow .flow .box-flow .list-title-flow > ul li {
  border: 3px solid #C30D12;
  border-radius: 5px;
  max-width: 180px;
}
.page-th #flow .flow .box-flow .list-title-flow {
  min-width: 180px;
}