/*
Theme Name: Mullion - i-bond
*/
/*-------------------------
  RESET
-------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', 'Helvetica Neue','Helvetica','Arial', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo";
  font-size: 16px;
  line-height: 1.4;
  color: #1A1A1A;
  background-color: #FFF;
  overflow-x: hidden;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25ch;
  text-decoration: none;
  color: #1A1A1A;
}

a:hover,
a:focus {
  text-decoration-style: dashed;
  text-decoration: underline;
  color: #8D8D8D;
}

a:active {
  text-decoration: none;
}

ol, ul, li {
  list-style: none;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/*-------------------------
  COMMON
-------------------------*/
#wrapper {
  padding: 90px 0 0;
}

.inner {
  width: 1500px;
  margin: 0 auto;
}

.btn-primary a {
  width: 240px;
  height: 56px;
  background-color: #00348A;
  color: #FFF;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  line-height: 56px;
  display: inline-block;
  position: relative;
  border-radius: 60px;
  transition: 0.4s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
.btn-primary a:hover {
  text-decoration: none;
  background-color: #5B8EE2;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.16);
}
.btn-primary a:after {
  content: "";
  background: url(../images/arrow-wh.svg) no-repeat center right/contain;
  position: absolute;
  top: 50%;
  right: 24px;
  margin: -4px 0 0;
  width: 14px;
  height: 8px;
}

.btn-secondary a {
  width: 240px;
  height: 56px;
  background-color: #FFC632;
  color: #00348A;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  line-height: 56px;
  display: inline-block;
  position: relative;
  border-radius: 60px;
  transition: 0.4s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
.btn-secondary a:hover {
  text-decoration: none;
  background-color: #FFD771;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.16);
}
.btn-secondary a:after {
  content: "";
  background: url(../images/arrow-bl.svg) no-repeat center right/contain;
  position: absolute;
  top: 50%;
  right: 24px;
  margin: -4px 0 0;
  width: 14px;
  height: 8px;
}

.btn-white a {
  width: 240px;
  height: 56px;
  background-color: #FFF;
  color: #00348A;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  line-height: 56px;
  display: inline-block;
  position: relative;
  border-radius: 60px;
  transition: 0.4s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
.btn-white a span {
  transition: 0.4s ease;
}
.btn-white a:hover {
  text-decoration: none;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.16);
}
.btn-white a:hover span {
  color: #5B8EE2;
  opacity: .8;
}
.btn-white a:hover:after {
  opacity: .4;
}
.btn-white a:after {
  content: "";
  background: url(../images/arrow-bl.svg) no-repeat center right/contain;
  position: absolute;
  top: 50%;
  right: 24px;
  margin: -4px 0 0;
  width: 14px;
  height: 8px;
  transition: 0.4s ease;
}

/*-------------------------
  HEADER
-------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 10000;
  width: 100%;
  height: 90px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
header h1 a {
  display: block;
}
header h1 a img {
  vertical-align: bottom;
  height: 60px;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul li {
  margin: 0 0 0 32px;
}
header nav ul li a {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
}
header nav ul li a span {
  display: inline-block;
  position: relative;
}
header nav ul li a span:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 50%;
  background-color: #00348A;
  transition: 0.4s ease;
}
header nav ul li a:hover {
  text-decoration: none;
  color: #1A1A1A;
}
header nav ul li a:hover span:before {
  width: 100%;
  left: 0;
}
header nav .header-menu-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 20px;
}
header nav .header-menu-btn .btn {
  margin: 0 0 0 12px;
}
header .sp-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 14px;
  z-index: 10001;
  width: 60px;
  height: 60px;
}
header .menu-trigger span {
  position: absolute;
  left: 12px;
  width: 36px;
  height: 3px;
  background-color: #00348A;
  transition: 0.4s ease;
}
header .menu-trigger span:nth-of-type(1) {
  top: 22px;
}
header .menu-trigger span:nth-of-type(2) {
  top: 30px;
}
header .menu-trigger span:nth-of-type(3) {
  top: 38px;
}
header .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
header .menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
  opacity: 0;
}
header .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}
header .menu-trigger small {
  font-size: 13px;
  color: #00348A;
  font-weight: 700;
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  text-align: center;
}

/*-------------------------
  FOOTER
-------------------------*/
footer .footer-btn {
  background-color: #3171CA;
}
footer .footer-btn .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-btn .head {
  width: 50%;
}
footer .footer-btn .head h2 {
  text-align: left;
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
}
footer .footer-btn .body {
  width: 50%;
}
footer .footer-btn .body ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-btn .body ul li {
  width: 50%;
  padding: 24px 0 60px;
  text-align: center;
}
footer .footer-btn .body ul li:first-child {
  background-color: #FFC632;
}
footer .footer-btn .body ul li p {
  margin: 0 0 4px;
}
footer .footer-btn .body ul li p img {
  height: 25px;
}
footer .footer-link {
  padding: 108px 0;
}
footer .footer-link .row {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer-link .logo {
  width: 30%;
  text-align: left;
}
footer .footer-link .logo img {
  height: 72px;
}
footer .footer-link .links {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 0 10% 0 0;
}
footer .footer-link .links ul li {
  font-size: 14px;
  margin: 0 0 16px;
}
footer .footer-link .links ul li.h {
  font-size: 18px;
  font-weight: 700;
}
footer .footer-link .links ul li.h a {
  color: #00348A;
}
footer .footer-menu {
  background-color: #3171CA;
  color: #FFF;
  padding: 24px 0;
  font-size: 16px;
}
footer .footer-menu a {
  color: #FFF;
}
footer .footer-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-menu ul li {
  padding: 0 24px;
  border-right: solid #FFF 1px;
  line-height: 1;
}
footer .footer-menu ul li:last-child {
  border-right: none;
}
footer .copyright {
  text-align: center;
  padding: 24px 0;
}
footer .copyright small {
  font-size: 13px;
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
#pagetop a {
  display: block;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  background-color: #FFF;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  transition: 0.4s ease;
}
#pagetop a:hover {
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.16);
}

#regist-magazine {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}
#regist-magazine a {
  display: block;
  width: 196px;
  height: 196px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  color: #00348A;
  background-color: #FFC632;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  transition: 0.4s ease;
}
#regist-magazine a:hover {
  text-decoration: none;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.16);
  background-color: #FFD771;
}
#regist-magazine a span {
  display: block;
  padding: 54px 0 50px;
  position: relative;
}
#regist-magazine a span:before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  background: url(../images/btn-magazine-pop01.png) no-repeat center top/contain;
  width: 100%;
  height: 21px;
}
#regist-magazine a span:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: url(../images/btn-magazine-pop02.png) no-repeat center bottom/contain;
  width: 100%;
  height: 52px;
}

#simulation {
  position: fixed;
  bottom: 10px;
  right: 15px;
  z-index: 1000;
}
#simulation a:hover {
  opacity: .7;
}
#simulation img {
  width: 342px;
}

#sp-nav-menu {
  display: none;
  position: fixed;
  top: -100vh;
  left: 0;
}

/*-------------------------
  MAIN
-------------------------*/
/*-------------------------
  INDEX
-------------------------*/
#mainvisual {
  background: #D2ECFA url(../images/mv-img01.png) no-repeat center bottom -2px/contain;
  height: 370px;
  position: relative;
}
#mainvisual .wrap {
  text-align: center;
}
#mainvisual .wrap h1 {
  padding: 52px 0 0;
  font-size: 51px;
  line-height: 1.3;
}
#mainvisual .wrap h1 small {
  display: block;
  font-size: 24px;
  margin: 0 0 8px;
}
#mainvisual .wrap h1 strong {
  color: #00348A;
}
#mainvisual .wrap h1 span {
  font-size: 43px;
}
#mainvisual .wrap .btn {
  padding: 24px 0 0;
}
#mainvisual .wrap .btn a {
  width: 334px;
}

#mainvisual-bnr {
  text-align: center;
  background-color: #F5F5F5;
  position: relative;
  padding: 80px 0 60px;
}
#mainvisual-bnr:before {
  content: "";
  position: absolute;
  top: -48px;
  left: 50%;
  background: url(../images/mv-img02.png) no-repeat center top/contain;
  width: 1139px;
  height: 244px;
  margin: 0 0 0 -600px;
  z-index: 1;
}
#mainvisual-bnr a {
  display: inline-block;
  position: relative;
  z-index: 2;
}
#mainvisual-bnr img {
  width: 680px;
}

#prize-intro {
  background-color: #3171CA;
  color: #FFF;
  padding: 40px 0;
}
#prize-intro .row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 80px;
}
#prize-intro .text {
  text-align: center;
}
#prize-intro .text p {
  font-size: 13px;
}
#prize-intro .text p br.sp {
  display: none;
}
#prize-intro .text h2 {
  font-size: 28px;
  line-height: 1.2;
}
#prize-intro .text h2 strong {
  font-size: 60px;
}
#prize-intro .text small {
  font-size: 12px;
}
#prize-intro .text small br.sp {
  display: none;
}
#prize-intro figure {
  text-align: center;
  margin: 0 0 0 20px;
}
#prize-intro figure img {
  width: 450px;
}

#feature-intro {
  background: url(../images/feature-bg.png) no-repeat center bottom/cover;
  padding: 80px 0;
}
#feature-intro .title {
  text-align: center;
}
#feature-intro .title h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 900;
  color: #FFF;
}
#feature-intro .row ul {
  display: flex;
  justify-content: space-between;
  /*align-items:center;*/
  padding: 0 200px;
}
#feature-intro .row ul li {
  background-color: #FFF;
  padding: 30px 36px;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  width: 31%;
  box-sizing: border-box;
}
#feature-intro .row ul li figure {
  height: 176px;
  line-height: 176px;
  margin: 0 0 16px;
  text-align: center;
}
#feature-intro .row ul li:first-child figure img {
  margin: -8px 0 0;
}
#feature-intro .row ul li h3 {
  font-size: 24px;
  color: #00348A;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.6;
}
#feature-intro .row ul li h3 small {
  display: block;
  font-size: 16px;
  color: #1A1A1A;
}
#feature-intro .row ul li p {
  font-size: 16px;
  line-height: 1.6;
}
#feature-intro .btn {
  padding: 44px 0 0;
  text-align: center;
}
#feature-intro .btn a {
  width: 334px;
}

#comparison-intro {
  padding: 80px 0;
}
#comparison-intro .body {
  padding: 0 200px;
  display: flex;
  flex-direction: row-reverse;
}
#comparison-intro .body .text {
  width: 440px;
  position: relative;
  padding: 75px 0 0 40px;
  line-height: 1.5;
  z-index: 2;
}
#comparison-intro .body .text h2 {
  font-size: 26px;
}
#comparison-intro .body .text h2 strong {
  font-size: 32px;
  color: #00348A;
}
#comparison-intro .body .text .comment {
  position: relative;
  left: 0;
  padding: 36px 0 0;
  margin: 0 0 0 -64px;
}
#comparison-intro .body figure {
  width: 650px;
  margin: 0 -6px;
  position: relative;
  z-index: 1;
}
#comparison-intro .body figure .comment {
  display: none;
}
#comparison-intro .body figure figcaption {
  padding: 8px 6px 0;
  line-height: 1.6;
  font-size: 13px;
  color: #8D8D8D;
}

#products-intro {
  padding: 80px 0;
  background-color: #F5F5F5;
}
#products-intro .title {
  text-align: center;
}
#products-intro .title h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 700;
  color: #00348A;
}
#products-intro .body {
  padding: 0 200px;
  display: flex;
  justify-content: space-between;
}
#products-intro .body .text {
  width: 600px;
}
#products-intro .body .text table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 40px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  border-radius: 5px;
  overflow: hidden;
}
#products-intro .body .text table th {
  color: #FFF;
  background-color: #3171CA;
  text-align: center;
  vertical-align: middle;
  border-right: dotted #FFF 1px;
  font-weight: 700;
  font-size: 17px;
  padding: 8px;
  line-height: 1.2;
}
#products-intro .body .text table th:last-child {
  border-right: none;
}
#products-intro .body .text table td {
  text-align: center;
  vertical-align: middle;
  border-right: dotted #00348A 1px;
  font-weight: 700;
  font-size: 16px;
  padding: 20px 12px;
  line-height: 1.2;
}
#products-intro .body .text table td strong {
  font-size: 36px;
}
#products-intro .body .text table td span {
  font-size: 24px;
}
#products-intro .body .text table td:last-child {
  border-right: none;
}
#products-intro .body .text p {
  font-size: 16px;
  line-height: 1.8;
}
#products-intro .body .text .btn {
  padding: 40px 0 0;
}
#products-intro .body figure {
  width: 450px;
}

#flow-intro {
  padding: 80px 0;
  background: url(../images/flow-bg.png) no-repeat center bottom/auto 90px;
}
#flow-intro .title {
  text-align: center;
}
#flow-intro .title h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 700;
  color: #00348A;
}
#flow-intro .body {
  padding: 0 200px;
}
#flow-intro .body p.mb20 {
  margin: 0 0 20px;
  line-height: 1.8;
}
#flow-intro .body .flow {
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  border-radius: 5px;
  padding: 40px;
}
#flow-intro .body .flow ul {
  display: flex;
  justify-content: space-between;
}
#flow-intro .body .flow ul li {
  width: 22%;
  margin: 0 4% 0 0;
  position: relative;
}
#flow-intro .body .flow ul li:after {
  content: "";
  background: url(../images/flow-arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
  position: absolute;
  top: 75px;
  right: -28px;
}
#flow-intro .body .flow ul li:last-child {
  margin: 0;
}
#flow-intro .body .flow ul li:last-child:after {
  content: none;
}
#flow-intro .body .flow ul li figure {
  text-align: center;
  margin: 0 0 20px;
}
#flow-intro .body .flow ul li figure img {
  width: 150px;
}
#flow-intro .body .flow ul li h3 {
  font-size: 24px;
  color: #00348A;
  margin: 0 0 20px;
  text-align: center;
}
#flow-intro .body .flow ul li p {
  font-size: 16px;
  line-height: 1.8;
}

#faq-intro {
  padding: 80px 0;
  background-color: #F5F5F5;
}
#faq-intro .title {
  text-align: center;
}
#faq-intro .title h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 700;
  color: #00348A;
}
#faq-intro .body {
  padding: 0 200px;
}
#faq-intro .body dl {
  background-color: #FFF;
  margin: 0 0 20px;
  cursor: pointer;
}
#faq-intro .body dl dt {
  position: relative;
  min-height: 80px;
  padding: 20px 60px 20px 100px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
#faq-intro .body dl dt:before {
  content: "Q";
  width: 80px;
  height: 100%;
  background-color: #3171CA;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 80px;
}
#faq-intro .body dl dt:after {
  content: url(../images/plus.svg);
  width: 40px;
  height: 40px;
  background-color: #F5F5F5;
  color: #00348A;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
#faq-intro .body dl dd {
  display: none;
  position: relative;
  padding: 20px 20px 20px 100px;
  font-size: 16px;
  line-height: 1.8;
  align-items: center;
}
#faq-intro .body dl dd:before {
  content: "A";
  width: 80px;
  height: 100%;
  background-color: #EBEBEB;
  color: #00348A;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 80px;
}
#faq-intro .body dl dd h3 {
  margin: 0 0 20px;
}
#faq-intro .body dl dd p {
  margin: 0 0 16px;
  line-height: 1.8;
}
#faq-intro .body dl dd p:last-child {
  margin: 0;
}
#faq-intro .body dl dd small {
  font-size: 13px;
  color: #8D8D8D;
  display: block;
}
#faq-intro .body dl dd table {
  width: 100%;
  table-layout: fixed;
  background-color: #ACACAC;
  border-collapse: separate;
  border-spacing: 1px;
  font-size: 14px;
  margin: 0 0 12px;
}
#faq-intro .body dl dd table th {
  background-color: #EAEAEA;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}
#faq-intro .body dl dd table td {
  background-color: #FFF;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
}
#faq-intro .body dl dd table td.gray {
  background-color: #F5F5F5;
  font-weight: 600;
}
#faq-intro .body dl dd .box {
  padding: 24px 36px;
  background-color: #fff;
}
#faq-intro .body dl dd .box .box-bg {
  padding: 20px 24px;
  background-color: #F5F5F5;
  margin: 0 0 24px;
}
#faq-intro .body dl dd .box .box-bg p {
  color: #00348A;
}
#faq-intro .body dl dd .box .box-bg p span {
  display: inline-block;
  min-width: 120px;
}
#faq-intro .body dl dd .box h3 {
  font-size: 24px;
  margin: 0 0 20px;
}
#faq-intro .body dl dd .box h4 {
  font-size: 20px;
  color: #00348A;
  margin: 0 0 20px;
}
#faq-intro .body dl dd .box h5 {
  font-size: 16px;
}
#faq-intro .body dl dd .box ol {
  margin: 0 0 12px;
  counter-reset: my-counter;
  list-style: none;
}
#faq-intro .body dl dd .box ol li {
  margin: 0 0 0 1.5em;
  padding: 0 0 0 24px;
  line-height: 1.8;
  position: relative;
}
#faq-intro .body dl dd .box ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  color: #333;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 6px;
  left: 0;
}
#faq-intro .body dl.active dt:after {
  content: url(../images/minus.svg);
  background-color: #00348A;
  color: #fff;
  line-height: 28px;
}
#faq-intro.archive .body dl dt:after {
  background-color: #fff;
}
#faq-intro.archive .body dl.active dt:after {
  background-color: #00348A;
}
#faq-intro .btn {
  padding: 24px 0 0;
  text-align: center;
}
#faq-intro .btn a {
  width: 280px;
}
#faq-intro.archive {
  background-color: #fff;
  padding: 0 0 120px;
}
#faq-intro.archive .faq-lists {
  padding: 80px 0 0;
}
#faq-intro.archive .faq-lists h2 {
  margin: 0 0 20px;
}
#faq-intro.archive .faq-lists .faq-menu {
  padding: 0 200px;
  margin: 0 0 20px;
}
#faq-intro.archive .faq-lists .faq-menu ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
#faq-intro.archive .faq-lists .faq-menu ul li {
  margin: 0 0 0 20px;
}
#faq-intro.archive .faq-lists .faq-menu ul li a {
  display: inline-block;
  color: #1A1A1A;
  font-size: 16px;
  padding: 0 0 0 2px;
  border-bottom: solid #1A1A1A 1px;
}
#faq-intro.archive .faq-lists .faq-menu ul li a:before {
  content: url(../images/arrow-below_b.svg);
  display: inline-block;
  margin: 0 8px 0 0;
}
#faq-intro.archive .faq-lists .faq-menu ul li a:hover {
  text-decoration: none;
  border-bottom: none;
}
#faq-intro.archive .faq-lists dl {
  background-color: #F5F5F5;
}

#news-list {
  padding: 80px 0;
}
#news-list .row {
  display: flex;
  justify-content: space-between;
  padding: 0 200px;
}
#news-list .title {
  width: 28%;
}
#news-list .title h2 {
  font-size: 32px;
  color: #00348A;
  line-height: 1.3;
}
#news-list .title .btn {
  padding: 24px 0 0;
  font-size: 24px;
  font-weight: 700;
}
#news-list .title .btn a {
  display: inline-block;
  line-height: 1;
}
#news-list .title .btn a span {
  display: inline-block;
  margin: 8px 0 0;
}
#news-list .title .btn a:hover {
  text-decoration: none;
}
#news-list .title .btn a:after {
  content: url(../images/arrow-wh.svg);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #00348A;
  text-align: center;
  line-height: 34px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 16px;
}
#news-list .body {
  width: 68%;
}
#news-list .body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 700;
}
#news-list .body table tr:first-child th {
  padding: 0 0 32px;
}
#news-list .body table tr:first-child td {
  padding: 0 0 32px;
}
#news-list .body table tr:last-child th {
  border-bottom: none;
}
#news-list .body table tr:last-child td {
  border-bottom: none;
}
#news-list .body table tr:hover {
  background-color: #F5F5F5;
}
#news-list .body table th {
  border-bottom: dotted #ACACAC 1px;
  padding: 32px 0;
  width: 15%;
  text-align: left;
  vertical-align: top;
}
#news-list .body table td {
  border-bottom: dotted #ACACAC 1px;
  padding: 32px 0;
  text-align: left;
  vertical-align: top;
}
#news-list .body table td .cat {
  margin: 0 0 12px;
}
#news-list .body table td .cat span {
  display: inline-block;
  font-size: 14px;
  background-color: #FFF;
  border: dotted #3171CA 1px;
  color: #3171CA;
  padding: 0 20px;
  border-radius: 20px;
}
#news-list .body table td a:hover {
  color: #00348A;
}
#news-list .body .btn.sp {
  display: none;
}
#news-list.archive {
  padding: 0;
}
#news-list.archive .body {
  width: auto;
}

#blog-list {
  height: 387px;
}
#blog-list .row {
  padding: 0 200px;
  position: relative;
}
#blog-list .title {
  width: 28%;
}
#blog-list .title h2 {
  font-size: 32px;
  color: #00348A;
  line-height: 1.3;
}
#blog-list .title .btn {
  padding: 24px 0 0;
  font-size: 24px;
  font-weight: 700;
}
#blog-list .title .btn a {
  display: inline-block;
  line-height: 1;
}
#blog-list .title .btn a span {
  display: inline-block;
  margin: 8px 0 0;
}
#blog-list .title .btn a:hover {
  text-decoration: none;
}
#blog-list .title .btn a:after {
  content: url(../images/arrow-wh.svg);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #00348A;
  text-align: center;
  line-height: 34px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 16px;
}
#blog-list .body {
  width: 100%;
  position: absolute;
  left: 553px;
  top: 0;
}
#blog-list .body ul li {
  width: 400px;
  height: 267px;
  margin: 0 32px 0 0;
}
#blog-list .body ul li a {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  position: relative;
  overflow: hidden;
}
#blog-list .body ul li a:hover {
  text-decoration: none;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.16);
}
#blog-list .body ul li a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}
#blog-list .body ul li figure {
  position: relative;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#blog-list .body ul li figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#blog-list .body ul li .cat {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
}
#blog-list .body ul li .cat span {
  display: inline-block;
  font-size: 14px;
  background-color: #FFF;
  border: dotted #3171CA 1px;
  color: #3171CA;
  padding: 0 20px;
  border-radius: 20px;
}
#blog-list .body ul li .tit {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  line-height: 1.8;
  z-index: 10;
}
#blog-list .body .btn.sp {
  display: none;
}
#blog-list.archive {
  padding: 0;
  height: auto;
}
#blog-list.archive .body {
  width: auto;
  position: static;
}
#blog-list.archive .body ul {
  display: flex;
  flex-wrap: wrap;
}
#blog-list.archive .body ul li {
  width: 31%;
  margin: 0 3.5% 40px 0;
}
#blog-list.archive .body ul li:nth-child(3n) {
  margin: 0 0 40px;
}
#blog-list.archive .body ul li a {
  box-shadow: none;
  transition: 0.4s ease;
}
#blog-list.archive .body ul li a:after {
  content: none;
}
#blog-list.archive .body ul li a:hover {
  opacity: .7;
}
#blog-list.archive .body ul li figure {
  height: 163px;
}
#blog-list.archive .body ul li .tit {
  padding: 12px 0 0;
  position: static;
  color: #1A1A1A;
}

@media (max-width: 1500px) {
  .inner {
    width: auto;
    margin: 0;
  }

  header .row {
    padding: 18px 20px;
  }
  header nav ul li {
    margin: 0 0 0 12px;
  }
  header nav ul li a {
    font-size: 16px;
  }
  header nav .header-menu-btn {
    margin: 0 0 0 10px;
  }
  header nav .header-menu-btn .btn a {
    width: 150px;
    font-size: 16px;
  }
  header nav .header-menu-btn .btn a:after {
    right: 8px;
  }

  footer .footer-btn .head h2 {
    text-align: center;
    font-size: 32px;
    padding: 0 20px;
  }
  footer .footer-link {
    padding: 60px 40px;
  }
  footer .footer-menu {
    padding: 24px 12px 12px;
    font-size: 11px;
  }
  footer .footer-menu ul {
    flex-wrap: wrap;
    justify-content: start;
  }
  footer .footer-menu ul li {
    padding: 0 16px;
    margin: 0 0 12px;
  }
  footer .copyright {
    padding: 24px 0;
  }
  footer .copyright small {
    font-size: 12px;
  }

  #pagetop a {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }

  #regist-magazine a {
    width: 108px;
    height: 108px;
    font-size: 13px;
  }
  #regist-magazine a span {
    display: block;
    padding: 30px 0 30px;
    position: relative;
  }
  #regist-magazine a span:before {
    top: 16px;
    height: 14px;
  }
  #regist-magazine a span:after {
    bottom: 0px;
    height: 30px;
  }

  #prize-intro .row {
    padding: 0 28px;
  }

  #feature-intro {
    padding: 60px 28px;
  }
  #feature-intro .row ul {
    padding: 0;
  }

  #comparison-intro {
    padding: 40px 28px;
  }
  #comparison-intro .body {
    padding: 0;
  }
  #comparison-intro .body .text {
    padding: 40px 0 0 40px;
  }

  #products-intro {
    padding: 60px 28px;
  }
  #products-intro .title h2 {
    font-size: 24px;
  }
  #products-intro .body {
    padding: 0;
  }
  #products-intro .body .text {
    width: 55%;
  }
  #products-intro .body figure {
    width: 40%;
  }

  #flow-intro {
    padding: 60px 28px;
  }
  #flow-intro .title h2 {
    font-size: 24px;
  }
  #flow-intro .body {
    padding: 0;
  }
  #flow-intro .body .flow ul li figure img {
    width: 100px;
  }
  #flow-intro .body .flow ul li h3 {
    font-size: 17px;
  }
  #flow-intro .body .flow ul li p {
    font-size: 14px;
  }

  #faq-intro {
    padding: 60px 28px;
  }
  #faq-intro .title h2 {
    font-size: 24px;
  }
  #faq-intro .body {
    padding: 0;
  }
  #faq-intro .body dl dt {
    padding: 20px 44px 20px 44px;
  }
  #faq-intro .body dl dt:before {
    width: 24px;
    font-size: 14px;
  }
  #faq-intro .body dl dt:after {
    transform: scale(0.6);
    top: 10px;
    right: 10px;
  }
  #faq-intro .body dl dd {
    padding: 28px 24px 28px 44px;
    font-size: 14px;
  }
  #faq-intro .body dl dd:before {
    width: 24px;
    font-size: 14px;
  }
  #faq-intro .body dl dd ol li:before {
    height: 16px;
    width: 16px;
    font-size: 11px;
    top: 3px;
  }
  #faq-intro .btn {
    padding: 24px 0 0;
    text-align: center;
  }
  #faq-intro .btn a {
    width: 100%;
    max-width: 280px;
  }
  #faq-intro.archive {
    padding: 0 40px 120px;
  }
  #faq-intro.archive .faq-lists .faq-menu {
    padding: 0;
  }

  #news-list {
    padding: 60px 28px;
  }
  #news-list .row {
    padding: 0;
  }
  #news-list .title {
    text-align: center;
  }
  #news-list .body table {
    font-size: 14px;
  }

  #blog-list .row {
    padding: 0 28px;
  }
  #blog-list .title {
    text-align: center;
  }
  #blog-list .body {
    left: 32.5%;
  }
}
@media (max-width: 1100px) {
  header nav ul li {
    margin: 0 0 0 12px;
  }
  header nav ul li a {
    font-size: 13px;
  }
  header nav .header-menu-btn {
    margin: 0 0 0 10px;
  }
  header nav .header-menu-btn .btn a {
    width: 130px;
    font-size: 13px;
  }
  header nav .header-menu-btn .btn a:after {
    right: 5px;
  }
}
@media (max-width: 980px) {
  #wrapper {
    padding: 70px 0 0;
  }

  .btn-primary a {
    font-size: 14px;
  }

  .btn-secondary a {
    font-size: 14px;
  }

  header {
    height: 70px;
  }
  header .row {
    padding: 18px 20px;
  }
  header h1 a img {
    height: 40px;
    vertical-align: baseline;
  }
  header nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  }
  header nav ul {
    display: block;
  }
  header nav ul li {
    margin: 0;
    text-align: center;
  }
  header nav ul li a {
    display: block;
    padding: 12px 0;
  }
  header nav .header-menu-btn {
    display: block;
    text-align: center;
    padding: 12px 0;
    margin: 0;
  }
  header nav .header-menu-btn .btn {
    margin: 0 0 12px;
  }
  header .sp-menu {
    display: block;
  }

  footer .footer-btn .row {
    display: block;
  }
  footer .footer-btn .head {
    width: auto;
  }
  footer .footer-btn .head h2 {
    font-size: 24px;
    padding: 28px 28px;
  }
  footer .footer-btn .body {
    width: auto;
  }
  footer .footer-btn .body ul {
    display: block;
  }
  footer .footer-btn .body ul li {
    width: auto;
    padding: 20px 28px;
  }
  footer .footer-btn .body ul li .btn-white a {
    display: block;
    width: auto;
  }
  footer .footer-link {
    padding: 60px 21px;
  }
  footer .footer-link .row {
    display: block;
  }
  footer .footer-link .logo {
    width: auto;
    text-align: center;
    margin: 0 0 40px;
  }
  footer .footer-link .links {
    width: auto;
    flex-wrap: wrap;
    margin: 0;
  }
  footer .footer-link .links ul {
    width: 50%;
    padding: 0 7px;
    margin: 0 0 24px;
  }
  footer .footer-link .links ul li {
    font-size: 12px;
  }
  footer .footer-link .links ul li.h {
    font-size: 16px;
  }

  #sp-nav-menu {
    display: block;
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: calc(100vh - 70px);
    z-index: 9999;
    transition: 0.4s ease;
  }
  #sp-nav-menu.active {
    display: block;
    top: 70px;
  }
  #sp-nav-menu .wrap {
    padding: 0 28px;
    overflow: auto;
    height: calc(100% - 60px);
  }
  #sp-nav-menu .wrap ul li a {
    display: block;
    padding: 24px 12px;
    border-bottom: solid #D8D8D8 1px;
    color: #00348A;
    font-size: 14px;
    font-weight: 600;
  }
  #sp-nav-menu .wrap ul li a:hover {
    text-decoration: none;
  }
  #sp-nav-menu .wrap ul li a span {
    display: block;
    background: url(../images/arrow-bl.svg) no-repeat center right;
  }
  #sp-nav-menu .wrap ul li.parent a span {
    background: url(../images/sp-menu-open.svg) no-repeat center right/contain;
  }
  #sp-nav-menu .wrap ul li.parent a.active span {
    background: url(../images/sp-menu-close.svg) no-repeat center right/contain;
  }
  #sp-nav-menu .wrap ul li.parent ul.children {
    padding: 0 20px;
    display: none;
  }
  #sp-nav-menu .wrap ul li.parent ul.children li a {
    color: #1A1A1A;
  }
  #sp-nav-menu .wrap ul li.parent ul.children li a span {
    background: url(../images/arrow-bl.svg) no-repeat center right;
  }
  #sp-nav-menu .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
  }
  #sp-nav-menu .bottom ul {
    display: flex;
  }
  #sp-nav-menu .bottom ul li {
    width: 50%;
    height: 60px;
  }
  #sp-nav-menu .bottom ul li a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 60px;
    padding: 0 20px;
  }
  #sp-nav-menu .bottom ul li a:hover {
    text-decoration: none;
  }
  #sp-nav-menu .bottom ul li a span {
    display: block;
  }
  #sp-nav-menu .bottom ul li:nth-child(1) a {
    background-color: #EBAD11;
    color: #00348A;
  }
  #sp-nav-menu .bottom ul li:nth-child(1) a span {
    background: url(../images/arrow-bl.svg) no-repeat center right;
  }
  #sp-nav-menu .bottom ul li:nth-child(2) a {
    background-color: #00348A;
    color: #FFF;
  }
  #sp-nav-menu .bottom ul li:nth-child(2) a span {
    background: url(../images/arrow-wh.svg) no-repeat center right;
  }

  #simulation {
    bottom: 5px;
    right: 10px;
  }
  #simulation img {
    width: 240px;
  }

  #mainvisual {
    background: #D2ECFA url(../images/mv-img01_sp.png) no-repeat center bottom -2px/auto 368px;
    height: 380px;
  }
  #mainvisual .wrap h1 {
    font-size: 32px;
    padding: 52px 10px 0;
  }
  #mainvisual .wrap h1 small {
    font-size: 16px;
  }
  #mainvisual .wrap h1 span {
    font-size: 29px;
  }
  #mainvisual .wrap .btn {
    padding: 24px 28px 0;
  }
  #mainvisual .wrap .btn a {
    display: block;
    width: auto;
    max-width: 334px;
    margin: 0 auto;
  }

  #mainvisual-bnr {
    padding: 52px 28px 100px;
  }
  #mainvisual-bnr:before {
    top: -40px;
    background: url(../images/mv-img02_sp.png) no-repeat center top/auto 243px;
    width: 100%;
    margin: 0 0 0 -50%;
  }
  #mainvisual-bnr img {
    width: 338px;
  }

  #prize-intro {
    padding: 20px 0;
  }
  #prize-intro .row {
    display: block;
  }
  #prize-intro .text {
    margin: 0 0 20px;
  }
  #prize-intro .text p br.sp {
    display: block;
  }
  #prize-intro .text h2 {
    font-size: 17px;
  }
  #prize-intro .text h2 strong {
    font-size: 44px;
  }
  #prize-intro .text small br.sp {
    display: block;
  }
  #prize-intro figure {
    margin: 0;
  }
  #prize-intro figure img {
    width: 100%;
    max-width: 450px;
  }

  #feature-intro {
    padding: 40px 28px;
  }
  #feature-intro .title {
    text-align: center;
  }
  #feature-intro .title h2 {
    margin: 0 0 20px;
    font-size: 24px;
  }
  #feature-intro .row ul {
    display: block;
    padding: 0;
  }
  #feature-intro .row ul li {
    padding: 20px 24px;
    width: auto;
    margin: 0 0 20px;
    border-radius: 3px;
  }
  #feature-intro .row ul li figure {
    height: auto;
    line-height: 1;
  }
  #feature-intro .row ul li figure img {
    width: 80%;
    max-width: 334px;
  }
  #feature-intro .row ul li h3 {
    font-size: 20px;
  }
  #feature-intro .row ul li h3 small {
    font-size: 14px;
  }
  #feature-intro .row ul li p {
    font-size: 14px;
  }
  #feature-intro .btn {
    padding: 12px 0 0;
    text-align: center;
  }
  #feature-intro .btn a {
    width: 100%;
    max-width: 334px;
    display: block;
    margin: 0 auto;
  }

  #comparison-intro .body {
    display: block;
  }
  #comparison-intro .body .text {
    width: auto;
    padding: 0 0 20px;
  }
  #comparison-intro .body .text h2 {
    font-size: 16px;
    text-align: center;
  }
  #comparison-intro .body .text h2 strong {
    font-size: 24px;
  }
  #comparison-intro .body .text h2 br.pc {
    display: none;
  }
  #comparison-intro .body .text .comment {
    display: none;
  }
  #comparison-intro .body figure {
    width: auto;
  }
  #comparison-intro .body figure .comment {
    display: block;
    position: relative;
    z-index: 2;
    top: -40px;
    text-align: center;
    margin: 0 0 -40px;
  }
  #comparison-intro .body figure figcaption {
    font-size: 12px;
  }

  #products-intro .body {
    display: block;
  }
  #products-intro .body .text {
    width: auto;
  }
  #products-intro .body .text table {
    margin: 0 0 20px;
    border-radius: 3px;
  }
  #products-intro .body .text table th {
    font-size: 11px;
  }
  #products-intro .body .text table td {
    font-size: 14px;
  }
  #products-intro .body .text table td strong {
    font-size: 20px;
  }
  #products-intro .body .text table td span {
    font-size: 16px;
  }
  #products-intro .body .text p {
    font-size: 12px;
  }
  #products-intro .body .text .btn {
    padding: 20px 0 0;
    text-align: center;
  }
  #products-intro .body figure {
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin: 0 auto 20px;
  }

  #flow-intro {
    background: url(../images/flow-bg_sp.png) space no-repeat center bottom/auto 67px;
  }
  #flow-intro .title h2 {
    margin: 0 0 20px;
  }
  #flow-intro .body p.mb20 {
    font-size: 13px;
  }
  #flow-intro .body .flow {
    background-color: #FFF;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
    border-radius: 3px;
    padding: 28px;
  }
  #flow-intro .body .flow ul {
    display: block;
  }
  #flow-intro .body .flow ul li {
    width: auto;
    margin: 0 0 60px;
  }
  #flow-intro .body .flow ul li:after {
    background: url(../images/flow-arrow_sp.svg) no-repeat center/contain;
    width: 12px;
    height: 15px;
    top: auto;
    bottom: -36px;
    right: 50%;
    margin: 0 -6px 0 0;
  }
  #flow-intro .body .flow ul li figure img {
    width: 80%;
    max-width: 150px;
  }

  #faq-intro.archive {
    padding: 0 28px 80px;
  }
  #faq-intro.archive .faq-lists {
    padding: 40px 0 0;
  }
  #faq-intro.archive .faq-lists .faq-menu {
    display: none;
  }

  #news-list .row {
    display: block;
  }
  #news-list .title {
    width: auto;
    text-align: center;
    margin: 0 0 20px;
  }
  #news-list .title h2 {
    font-size: 24px;
  }
  #news-list .title .btn {
    display: none;
  }
  #news-list .body {
    width: auto;
  }
  #news-list .body table {
    display: block;
  }
  #news-list .body table tr {
    display: block;
    border-bottom: dotted #ACACAC 1px;
    padding: 0 0 20px;
    margin: 0 0 20px;
  }
  #news-list .body table tr:last-child {
    border-bottom: none;
    padding: 0;
  }
  #news-list .body table tbody {
    display: block;
  }
  #news-list .body table th {
    display: inline;
    border-bottom: none;
    padding: 0;
    width: auto;
    padding: 0;
  }
  #news-list .body table td {
    display: inline;
    border-bottom: none;
    padding: 0;
    text-align: left;
    vertical-align: top;
    padding: 0;
  }
  #news-list .body table td .cat {
    margin: 0 0 12px 12px;
    display: inline-block;
  }
  #news-list .body table td .cat span {
    font-size: 12px;
  }
  #news-list .body table td a {
    display: block;
  }
  #news-list .body .btn.sp {
    display: block;
    padding: 24px 0 0;
    text-align: right;
  }
  #news-list .body .btn.sp a {
    display: inline-block;
    line-height: 1;
  }
  #news-list .body .btn.sp a span {
    display: inline-block;
    margin: 8px 0 0;
  }
  #news-list .body .btn.sp a:hover {
    text-decoration: none;
  }
  #news-list .body .btn.sp a:after {
    content: url(../images/arrow-wh.svg);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #00348A;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 16px;
  }

  #blog-list {
    height: auto;
    padding: 0 0 80px;
  }
  #blog-list .title {
    width: auto;
    margin: 0 0 20px;
  }
  #blog-list .title h2 {
    font-size: 24px;
  }
  #blog-list .title .btn {
    display: none;
  }
  #blog-list .body {
    width: auto;
    position: relative;
    left: auto;
    top: auto;
  }
  #blog-list .body ul {
    margin: 0 -28px 0 0;
  }
  #blog-list .body ul li {
    width: 260px;
    height: 173px;
    margin: 0 20px 0 0;
  }
  #blog-list .body ul li .cat span {
    font-size: 12px;
    padding: 0 12px;
  }
  #blog-list .body ul li .tit {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.8;
    z-index: 10;
  }
  #blog-list .body .btn.sp {
    display: block;
    padding: 24px 0 0;
    text-align: right;
  }
  #blog-list .body .btn.sp a {
    display: inline-block;
    line-height: 1;
  }
  #blog-list .body .btn.sp a span {
    display: inline-block;
    margin: 8px 0 0;
  }
  #blog-list .body .btn.sp a:hover {
    text-decoration: none;
  }
  #blog-list .body .btn.sp a:after {
    content: url(../images/arrow-wh.svg);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #00348A;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 16px;
  }
  #blog-list.archive .body ul {
    display: block;
    margin: 0;
  }
  #blog-list.archive .body ul li {
    width: auto;
    height: auto;
    margin: 0 0 28px 0;
  }
  #blog-list.archive .body ul li:nth-child(3n) {
    margin: 0 0 28px;
  }
  #blog-list.archive .body ul li figure {
    height: 300px;
  }
  #blog-list.archive .body ul li .tit {
    padding: 8px 0 0;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  #blog-list.archive .body ul li figure {
    height: 160px;
  }
}
/*-------------------------
  PAGE
-------------------------*/
#page-header {
  background-color: #3171CA;
  color: #FFF;
}
#page-header .inner {
  width: 1100px;
}
#page-header .row {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#page-header .row h1 {
  font-size: 42px;
  font-weight: 700;
}
#page-header .row .page-header-nav ul {
  display: flex;
  align-items: center;
}
#page-header .row .page-header-nav ul li {
  margin: 0 0 0 20px;
}
#page-header .row .page-header-nav ul li a {
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  padding: 0 0 0 2px;
  border-bottom: solid #FFF 1px;
}
#page-header .row .page-header-nav ul li a:before {
  content: url(../images/arrow-below.svg);
  display: inline-block;
  margin: 0 8px 0 0;
}
#page-header .row .page-header-nav ul li a:hover {
  text-decoration: none;
  border-bottom: none;
}

#about-outline {
  background: url(../images/about-bg01.jpg) no-repeat center bottom/cover;
  padding: 80px 0;
}
#about-outline .inner {
  width: 1100px;
}
#about-outline .body .box {
  display: flex;
  justify-content: space-between;
  padding: 24px 40px 0;
  border-radius: 5px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
#about-outline .body .box .text {
  width: 50%;
  padding: 12px 0 24px;
}
#about-outline .body .box .text h2 {
  font-size: 24px;
  line-height: 1.3;
  padding: 0 0 0 12px;
  border-left: solid #00348A 4px;
  margin: 0 0 20px;
}
#about-outline .body .box .text p {
  font-size: 16px;
  line-height: 1.8;
}
#about-outline .body .box .text p strong {
  color: #00348A;
}
#about-outline .body .box figure {
  width: 45%;
}
#about-outline .body .box figure img {
  vertical-align: bottom;
}
#about-outline .body .desc {
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about-outline .body .desc h3 {
  background-color: #FFF;
  border: dotted #00348A 1px;
  color: #00348A;
  border-radius: 50%;
  padding: 24px 20px 32px;
  width: 20%;
  text-align: center;
}
#about-outline .body .desc h3 span {
  font-size: 24px;
  text-align: center;
}
#about-outline .body .desc p {
  width: 75%;
  font-size: 16px;
  line-height: 1.8;
}

#about-feature {
  padding: 80px 0;
}
#about-feature .inner {
  width: 1100px;
}
#about-feature .title {
  text-align: center;
  margin: 0 0 40px;
}
#about-feature .title h2 {
  color: #00348A;
  font-size: 36px;
}
#about-feature .body ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about-feature .body ul li {
  width: 340px;
  padding: 24px 32px;
  background-color: #FFF;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  margin: 0 0 40px;
}
#about-feature .body ul li figure {
  margin: 0 0 20px;
  min-height: 190px;
}
#about-feature .body ul li:first-child figure img {
  margin: -8px 0 0;
}
#about-feature .body ul li .head {
  text-align: center;
  margin: 0 0 20px;
}
#about-feature .body ul li .head small {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}
#about-feature .body ul li .head h3 {
  font-size: 24px;
  color: #00348A;
}
#about-feature .body ul li .head h3 span {
  font-size: 16px;
}
#about-feature .body ul li p {
  font-size: 16px;
  line-height: 1.8;
}
#about-feature .desc {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
#about-feature .desc .text {
  width: 50%;
  padding: 12px 0;
}
#about-feature .desc .text h3 {
  font-size: 24px;
  line-height: 1.3;
  padding: 0 0 0 12px;
  border-left: solid #00348A 4px;
  margin: 0 0 20px;
}
#about-feature .desc .text p {
  font-size: 16px;
  line-height: 1.8;
}
#about-feature .desc .text p strong {
  color: #00348A;
}
#about-feature .desc figure {
  width: 47%;
}
#about-feature .desc figure img {
  vertical-align: bottom;
}
#about-feature .btn {
  padding: 40px 0 0;
  text-align: center;
}

#about-system {
  background: #F5F5F5 url(../images/flow-bg.png) no-repeat center bottom/auto 90px;
  padding: 80px 0;
}
#about-system .inner {
  width: 1100px;
}
#about-system .title {
  text-align: center;
  margin: 0 0 40px;
}
#about-system .title h2 {
  color: #00348A;
  font-size: 36px;
}
#about-system .body {
  background-color: #FFF;
  padding: 0 0 40px;
}
#about-system .body article {
  padding: 60px 150px;
}
#about-system .body article figure {
  margin: 0 0 40px;
}
#about-system .body article ol li {
  padding: 0 0 0 63px;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px;
  position: relative;
}
#about-system .body article ol li:before {
  content: "";
  width: 43px;
  height: 43px;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -21px 0 0;
}
#about-system .body article ol li:nth-child(1):before {
  background: url(../images/num01.png) no-repeat center/contain;
}
#about-system .body article ol li:nth-child(2):before {
  background: url(../images/num02.png) no-repeat center/contain;
}
#about-system .body article ol li:nth-child(3):before {
  background: url(../images/num03.png) no-repeat center/contain;
}
#about-system .body article small {
  font-size: 13px;
  color: #8D8D8D;
}
#about-system .body .box {
  padding: 24px 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  margin: 0 40px 40px;
}
#about-system .body .box .text {
  width: 48%;
  padding: 12px 0;
}
#about-system .body .box .text h3 {
  font-size: 24px;
  line-height: 1.3;
  padding: 0 0 0 12px;
  border-left: solid #00348A 4px;
  margin: 0 0 20px;
}
#about-system .body .box .text p {
  font-size: 16px;
  line-height: 1.8;
}
#about-system .body .box .text p strong {
  color: #00348A;
}
#about-system .body .box figure {
  width: 48%;
}
#about-system .body .box figure img {
  vertical-align: bottom;
}
#about-system .body .box figure figcaption {
  font-size: 13px;
  color: #8D8D8D;
  padding: 40px 0 0;
}
#about-system .body .box2 {
  padding: 32px 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  margin: 0 40px;
}
#about-system .body .box2 h3 {
  font-size: 24px;
  line-height: 1.3;
  padding: 0 0 0 12px;
  border-left: solid #00348A 4px;
  margin: 0 0 20px;
}
#about-system .body .box2 p {
  font-size: 16px;
  line-height: 1.8;
}
#about-system .body .box2 p strong {
  color: #00348A;
}
#about-system .body .box2 p a {
  text-decoration: underline;
  color: #00348A;
}
#about-system .body .box2 p a:hover {
  text-decoration: none;
}
#about-system .body .box2 picture {
  display: block;
  text-align: center;
  padding: 20px 0 12px;
}
#about-system .body .box2 picture img {
  width: 60%;
}
#about-system .body .box2 small {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #8D8D8D;
}
#about-system .body .box2 ul {
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
}
#about-system .body .box2 ul li {
  width: 49%;
}
#about-system .body .box2 ul li small {
  display: block;
  padding: 12px 0 0;
  text-align: left;
  font-size: 13px;
  color: #8D8D8D;
}
#about-system .body .box2 dl {
  padding: 40px 0 0;
}
#about-system .body .box2 dl dt {
  text-align: center;
  padding: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background-color: #3171CA;
}
#about-system .body .box2 dl dd {
  padding: 32px;
  background-color: #F5F5F5;
  font-size: 16px;
  line-height: 1.6;
}

#about-safety {
  padding: 80px 0;
}
#about-safety .inner {
  width: 1100px;
}
#about-safety .title {
  text-align: center;
  margin: 0 0 40px;
}
#about-safety .title h2 {
  color: #00348A;
  font-size: 36px;
}
#about-safety .body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about-safety .body article {
  width: 48%;
  margin: 0 0 40px;
  padding: 40px;
  border-radius: 5px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
#about-safety .body article h3 {
  color: #00348A;
  font-size: 24px;
  line-height: 1.3;
  padding: 0 0 0 85px;
  margin: 0 0 20px;
  position: relative;
  min-height: 63px;
  display: flex;
  align-items: center;
}
#about-safety .body article h3:before {
  content: "";
  width: 65px;
  height: 65px;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -32px 0 0;
}
#about-safety .body article:nth-child(1) h3:before {
  background: url(../images/about-safety-num01.png) no-repeat center/contain;
}
#about-safety .body article:nth-child(2) h3:before {
  background: url(../images/about-safety-num02.png) no-repeat center/contain;
}
#about-safety .body article:nth-child(3) h3:before {
  background: url(../images/about-safety-num03.png) no-repeat center/contain;
}
#about-safety .body article:nth-child(4) h3:before {
  background: url(../images/about-safety-num04.png) no-repeat center/contain;
}
#about-safety .body article p {
  font-size: 16px;
  line-height: 1.8;
}
#about-safety .body article p strong {
  color: #00348A;
}
#about-safety .body article p a {
  text-decoration: underline;
  color: #00348A;
}
#about-safety .body article p a:hover {
  text-decoration: none;
}
#about-safety .body article figure {
  margin: 0 0 20px;
}
#about-safety .body article ul {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
}
#about-safety .body article ul li {
  width: 46%;
}

#products-outline {
  padding: 80px 0;
}
#products-outline .inner {
  width: 1100px;
}
#products-outline .title {
  text-align: center;
  margin: 0 0 40px;
}
#products-outline .title h2 {
  color: #00348A;
  font-size: 36px;
}
#products-outline .body {
  display: flex;
  justify-content: space-between;
}
#products-outline .body .image {
  width: 525px;
}
#products-outline .body .image .image-main {
  width: 100%;
  height: 420px;
  background-color: #F5F5F5;
  margin: 0 0 32px;
}
#products-outline .body .image .image-main figure {
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#products-outline .body .image .image-main figure img {
  max-width: 100%;
  max-height: 100%;
}
#products-outline .body .image .image-thumb {
  display: flex;
  flex-wrap: wrap;
}
#products-outline .body .image .image-thumb ul {
  width: 100% !important;
}
#products-outline .body .image .image-thumb ul li {
  width: 23.5% !important;
  height: 96px;
  margin: 0 2% 12px 0;
  border: solid #fff 1px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: #F5F5F5;
  cursor: pointer;
  overflow: hidden;
}
#products-outline .body .image .image-thumb ul li:nth-child(4n) {
  margin: 0 0 12px;
}
#products-outline .body .image .image-thumb ul li.slick-current {
  border: solid #00348A 1px;
}
#products-outline .body .image .image-thumb ul li img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
#products-outline .body .image .image-thumb .slick-list {
  width: 100% !important;
}
#products-outline .body .image .image-thumb .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
}
#products-outline .body .image .image-thumb .slick-slide {
  float: none !important;
}
#products-outline .body .text {
  width: 525px;
}
#products-outline .body .text table {
  margin: 0 0 40px;
  border-top: solid #00348A 1px;
  border-bottom: solid #00348A 1px;
  width: 100%;
  border-collapse: collapse;
}
#products-outline .body .text table tr:last-child th, #products-outline .body .text table tr:last-child td {
  border-bottom: none;
}
#products-outline .body .text table th {
  padding: 20px 28px;
  text-align: left;
  vertical-align: middle;
  background-color: #F5F5F5;
  border-bottom: dotted #00348A 1px;
}
#products-outline .body .text table td {
  padding: 20px 28px;
  text-align: right;
  vertical-align: middle;
  border-bottom: dotted #00348A 1px;
}
#products-outline .body .text table td span {
  margin: 0 0 0 1em;
}
#products-outline .body .text table td strong {
  font-size: 36px;
  color: #00348A;
  margin: 0 .2em;
}
#products-outline .body .text table td .left {
  text-align: left;
}
#products-outline .body .text .btn-area {
  display: flex;
}
#products-outline .body .text .btn-area .btn {
  margin: 0 12px 0 0;
}
#products-outline .body .text .btn-area .btn a {
  width: auto;
  padding: 0 52px;
}

#products-detail {
  padding: 80px 0 40px;
  background: #F5F5F5 url(../images/flow-bg.png) no-repeat center bottom/auto 90px;
}
#products-detail .inner {
  width: 1100px;
}
#products-detail .body ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#products-detail .body ul li {
  width: 340px;
  padding: 32px 20px;
  margin: 0 0 40px;
  text-align: center;
  background-color: #FFF;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
#products-detail .body ul li figure {
  margin: 0 12px;
  min-height: 140px;
}
#products-detail .body ul li h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}
#products-detail .body ul li p {
  font-size: 24px;
  color: #00348A;
  font-weight: 600;
}

#products-policy {
  padding: 80px 0;
}
#products-policy .title {
  text-align: center;
  margin: 0 0 40px;
}
#products-policy .title h2 {
  font-size: 36px;
}
#products-policy .inner {
  width: 1100px;
}
#products-policy .body table {
  width: 100%;
  background-color: #ACACAC;
  border-collapse: separate;
  border-spacing: 1px;
  font-size: 16px;
  margin: 0 0 12px;
}
#products-policy .body table th {
  background-color: #EAEAEA;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}
#products-policy .body table td {
  background-color: #FFF;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
}
#products-policy .body table td.gray {
  background-color: #F5F5F5;
  font-weight: 600;
}
#products-policy .body small {
  display: block;
  color: #8D8D8D;
  font-size: 13px;
  margin: 0 0 40px;
}
#products-policy .btn {
  text-align: center;
  padding: 20px 0 0;
}
#products-policy .btn a {
  min-width: 334px;
}

#products-target {
  padding: 80px 0;
  background-color: #F5F5F5;
}
#products-target .title {
  text-align: center;
  margin: 0 0 40px;
}
#products-target .title h2 {
  color: #00348A;
  font-size: 36px;
}
#products-target .inner {
  width: 1100px;
}
#products-target .body table {
  width: 100%;
  background-color: #ACACAC;
  border-collapse: separate;
  border-spacing: 1px;
  font-size: 16px;
}
#products-target .body table th {
  background-color: #3171CA;
  color: #FFF;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}
#products-target .body table td {
  background-color: #FFF;
  padding: 20px 12px;
  text-align: center;
  vertical-align: middle;
}
#products-target .body table td.gray {
  background-color: #F5F5F5;
  font-weight: 600;
}
#products-target .body table td a {
  color: #00348A;
  text-decoration: underline;
}
#products-target .body table td a:hover {
  text-decoration: none;
}

#products-risk {
  padding: 80px 0 120px;
}
#products-risk .title {
  text-align: center;
  margin: 0 0 40px;
}
#products-risk .title h2 {
  color: #00348A;
  font-size: 36px;
}
#products-risk .inner {
  width: 1100px;
}
#products-risk .body .box {
  height: 510px;
  border: solid #ACACAC 1px;
  padding: 20px 40px;
  overflow: auto;
}
#products-risk .body .box p {
  font-size: 16px;
  margin: 0 0 20px;
  line-height: 1.8;
}
#products-risk .body .box h3 {
  font-size: 20px;
  margin: 0 0 20px;
  font-weight: 600;
}
#products-risk .body .box dl {
  margin: 0 0 20px;
  line-height: 1.8;
  font-size: 16px;
}
#products-risk .body .box dl dt {
  font-weight: 600;
  margin: 0 0 4px;
}

#flow-application {
  padding: 80px 0;
  background-color: #F5F5F5;
}
#flow-application .title {
  text-align: center;
}
#flow-application .title h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 700;
  color: #00348A;
}
#flow-application .body {
  padding: 0 200px;
}
#flow-application .body p.mb20 {
  margin: 0 0 20px;
  line-height: 1.8;
}
#flow-application .body .flow {
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  border-radius: 5px;
  padding: 40px;
}
#flow-application .body .flow ul {
  display: flex;
  justify-content: space-between;
}
#flow-application .body .flow ul li {
  width: 17%;
  margin: 0 4% 0 0;
  position: relative;
}
#flow-application .body .flow ul li:after {
  content: "";
  background: url(../images/flow-arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
  position: absolute;
  top: 75px;
  right: -28px;
}
#flow-application .body .flow ul li:last-child {
  margin: 0;
}
#flow-application .body .flow ul li:last-child:after {
  content: none;
}
#flow-application .body .flow ul li figure {
  text-align: center;
  margin: 0 0 20px;
}
#flow-application .body .flow ul li figure img {
  width: 150px;
}
#flow-application .body .flow ul li h3 {
  font-size: 20px;
  color: #00348A;
  margin: 0 0 20px;
  text-align: center;
}
#flow-application .body .flow ul li p {
  font-size: 16px;
  line-height: 1.8;
}
#flow-application .body .flow ul li p a {
  text-decoration: underline;
  color: #00348A;
}
#flow-application .body .flow ul li p a:hover {
  text-decoration: none;
}
#flow-application .body .flow ul li small {
  font-size: 13px;
  color: #8D8D8D;
}
#flow-application .body .flow .note {
  padding: 40px 60px 0;
}
#flow-application .body .flow .note .box {
  background-color: #F5F5F5;
}
#flow-application .body .flow .note .box h3 {
  background-color: #3171CA;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  text-align: center;
}
#flow-application .body .flow .note .box .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
}
#flow-application .body .flow .note .box .row figure {
  width: 25%;
}
#flow-application .body .flow .note .box .row .text {
  width: 70%;
}
#flow-application .body .flow .note .box .row .text h4 {
  font-size: 20px;
  text-align: center;
  color: #00348A;
  margin: 0 0 20px;
}
#flow-application .body .flow .note .box .row .text p {
  font-size: 16px;
  line-height: 1.8;
}

#flow-verification {
  padding: 80px 0;
}
#flow-verification .title {
  text-align: center;
}
#flow-verification .title h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 700;
  color: #00348A;
}
#flow-verification .body {
  padding: 0 200px;
}
#flow-verification .body p.mb20 {
  margin: 0 0 40px;
  line-height: 1.8;
}
#flow-verification .body .tabs .tab_area {
  display: -webkit-box;
  display: flex;
}
#flow-verification .body .tabs .tab_btn {
  width: 50%;
  padding: 12px 0;
  color: #8D8D8D;
  background: #F5F5F5;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
#flow-verification .body .tabs .tab_btn:hover {
  background-color: #00348A;
  color: #fff;
}
#flow-verification .body .tabs .tab_btn.active {
  background: #00348A;
  color: #fff;
}
#flow-verification .body .tabs .panel_area {
  padding: 40px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
#flow-verification .body .tabs .tab_panel {
  display: none;
}
#flow-verification .body .tabs .tab_panel.active {
  display: block;
}
#flow-verification .body .tabs table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 1px;
  font-size: 16px;
  margin: 0 0 20px;
  border-top: solid #ACACAC 1px;
  border-left: solid #ACACAC 1px;
  border-right: solid #ACACAC 1px;
}
#flow-verification .body .tabs table th {
  background-color: #3171CA;
  color: #FFF;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  width: 20%;
  border-bottom: solid #fff 1px;
  border-right: dashed #fff 1px;
}
#flow-verification .body .tabs table th:first-child {
  width: 25%;
}
#flow-verification .body .tabs table th:nth-child(2) {
  width: 15%;
}
#flow-verification .body .tabs table th:nth-child(3) {
  width: 15%;
}
#flow-verification .body .tabs table th:nth-child(4) {
  width: 15%;
}
#flow-verification .body .tabs table th:nth-child(5) {
  width: 30%;
  border-right: none;
}
#flow-verification .body .tabs table td {
  background-color: #FFF;
  padding: 20px 12px;
  text-align: center;
  vertical-align: middle;
  border-bottom: solid #ACACAC 1px;
  border-right: dashed #ACACAC 1px;
}
#flow-verification .body .tabs table td img {
  width: 28px;
}
#flow-verification .body .tabs table td.gray {
  background-color: #F5F5F5;
  font-weight: 600;
  text-align: left;
}
#flow-verification .body .tabs table td.left {
  text-align: left;
}
#flow-verification .body .tabs table td:nth-child(5) {
  border-right: none;
}
#flow-verification .body .tabs table td span {
  display: block;
  font-size: 13px;
}
#flow-verification .body .tabs table td small {
  display: block;
  font-size: 13px;
  color: #8D8D8D;
}
#flow-verification .body .tabs table td a {
  color: #00348A;
  text-decoration: underline;
}
#flow-verification .body .tabs table td a:hover {
  text-decoration: none;
}
#flow-verification .body .tabs small {
  font-size: 13px;
  color: #8D8D8D;
}
#flow-verification .body .tabs .box {
  margin: 40px 0 0;
  background-color: #F5F5F5;
  padding: 0 0 35px;
}
#flow-verification .body .tabs .box h3 {
  color: #fff;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  background-color: #3171CA;
}
#flow-verification .body .tabs .box p {
  padding: 32px;
  font-size: 16px;
}
#flow-verification .body .tabs .box ul {
  background-color: #fff;
  margin: 0 32px;
  padding: 16px;
}
#flow-verification .body .tabs .box ul li {
  position: relative;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
}
#flow-verification .body .tabs .box ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #00348A;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 6px;
}

#flow-notes {
  padding: 80px 0;
  background-color: #F5F5F5;
}
#flow-notes .title {
  text-align: center;
  margin: 0 0 40px;
}
#flow-notes .title h2 {
  color: #00348A;
  font-size: 36px;
}
#flow-notes .inner {
  width: 1100px;
}
#flow-notes .body .box {
  height: 510px;
  border: solid #ACACAC 1px;
  background-color: #fff;
  padding: 20px 40px;
  overflow: auto;
}
#flow-notes .body .box p {
  font-size: 16px;
  margin: 0 0 20px;
  line-height: 1.8;
}
#flow-notes .body .box ul {
  margin: 0 0 20px;
  font-size: 16px;
}
#flow-notes .body .box ul li {
  line-height: 1.8;
  list-style: outside disc;
  margin: 0 0 0 1.5em;
}

#flow-purchase {
  padding: 80px 0;
  background: url(../images/flow-bg.png) no-repeat center bottom/auto 90px;
}
#flow-purchase .title {
  text-align: center;
}
#flow-purchase .title h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 700;
  color: #00348A;
}
#flow-purchase .body {
  padding: 0 200px;
}
#flow-purchase .body p.mb20 {
  margin: 0 0 40px;
  line-height: 1.8;
}
#flow-purchase .body p.mb20 small {
  font-size: 13px;
  color: #8D8D8D;
}
#flow-purchase .body .flow {
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  border-radius: 5px;
  padding: 40px;
}
#flow-purchase .body .flow ul {
  display: flex;
  justify-content: space-between;
}
#flow-purchase .body .flow ul li {
  width: 22%;
  margin: 0 4% 0 0;
  position: relative;
}
#flow-purchase .body .flow ul li:after {
  content: "";
  background: url(../images/flow-arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 12px;
  position: absolute;
  top: 75px;
  right: -28px;
}
#flow-purchase .body .flow ul li:last-child {
  margin: 0;
}
#flow-purchase .body .flow ul li:last-child:after {
  content: none;
}
#flow-purchase .body .flow ul li figure {
  text-align: center;
  margin: 0 0 20px;
}
#flow-purchase .body .flow ul li figure img {
  width: 150px;
}
#flow-purchase .body .flow ul li h3 {
  font-size: 24px;
  color: #00348A;
  margin: 0 0 20px;
  text-align: center;
}
#flow-purchase .body .flow ul li p {
  font-size: 16px;
  line-height: 1.8;
}
#flow-purchase .body .flow small {
  font-size: 13px;
  color: #8D8D8D;
}

#flow-commission {
  padding: 80px 0;
  background-color: #F5F5F5;
}
#flow-commission .title {
  text-align: center;
}
#flow-commission .title h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 700;
  color: #00348A;
}
#flow-commission .body {
  padding: 0 200px;
}
#flow-commission .body p.mb20 {
  margin: 0 0 40px;
  line-height: 1.8;
}
#flow-commission .body .box {
  background-color: #FFF;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}
#flow-commission .body .box table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 1px;
  font-size: 24px;
  table-layout: fixed;
}
#flow-commission .body .box table th {
  background-color: #3171CA;
  color: #FFF;
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  font-size: 13px;
  border-right: dashed #fff 1px;
}
#flow-commission .body .box table th:last-child {
  border-right: none;
}
#flow-commission .body .box table td {
  background-color: #FFF;
  padding: 20px 12px;
  text-align: center;
  vertical-align: middle;
  border-right: dashed #ACACAC 1px;
}
#flow-commission .body .box table td:last-child {
  border-right: none;
}
#flow-commission .body .box table td strong {
  font-size: 37px;
}
#flow-commission .body small {
  display: block;
  padding: 12px 0 0;
  line-height: 1.8;
  color: #8D8D8D;
  font-size: 13px;
}

#column {
  width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
}
#column #main-column {
  width: 780px;
}
#column #side-column {
  width: 256px;
}
#column #side-column aside {
  margin: 0 0 40px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  border-radius: 4px;
  overflow: hidden;
  border-top: solid #00348A 4px;
}
#column #side-column aside h3 {
  color: #00348A;
  font-size: 24px;
  font-weight: 600;
  padding: 28px 40px;
}
#column #side-column aside ul {
  padding: 0 40px 24px;
}
#column #side-column aside ul li {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
}
#column #side-column aside ul.tags li {
  display: inline-block;
  margin: 0 12px 12px 0;
}

.pagenavi {
  padding: 40px 0 0;
  text-align: center;
}
.pagenavi span {
  font-size: 16px;
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  margin: 0 4px;
}
.pagenavi span.current {
  background-color: #3171CA;
  color: #fff;
}
.pagenavi a {
  font-size: 16px;
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  background-color: #FFF;
  border-radius: 50%;
  margin: 0 4px;
}
.pagenavi a:hover {
  text-decoration: none;
  background-color: #3171CA;
  color: #fff;
}
.pagenavi a.nextpostslink, .pagenavi a.previouspostslink {
  background-color: #00348A;
  color: #fff;
}
.pagenavi a.nextpostslink {
  margin: 0 0 0 16px;
}
.pagenavi a.previouspostslink {
  margin: 0 16px 0 0;
}

#blog-entry .body .cat {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
#blog-entry .body .cat small {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 12px 0 0;
}
#blog-entry .body .cat span {
  display: inline-block;
  font-size: 16px;
  background-color: #3171CA;
  color: #fff;
  padding: 0 20px;
  border-radius: 20px;
}
#blog-entry .body .tit {
  margin: 0 0 20px;
}
#blog-entry .body .tit h1 {
  font-size: 36px;
  line-height: 1.2;
}
#blog-entry .body .tag {
  margin: 0 0 16px;
}
#blog-entry .body .tag ul li {
  display: inline-block;
  margin: 0 12px 12px 0;
}
#blog-entry .body .tag ul li span {
  display: inline-block;
  font-size: 16px;
  border: solid #8D8D8D 1px;
  color: #8D8D8D;
  padding: 0 20px;
  border-radius: 20px;
}
#blog-entry .body .tag ul li a {
  color: #8D8D8D;
}
#blog-entry .body .tag ul li a:hover {
  text-decoration: none;
}
#blog-entry .body .content {
  padding: 40px 0;
}
#blog-entry .body .content h2 {
  font-size: 36px;
  border-left: solid #00348A 6px;
  padding: 0 0 0 16px;
  margin: 36px 0 36px;
}
#blog-entry .body .content h3 {
  font-size: 24px;
  padding: 24px 30px;
  margin: 36px 0 36px;
  background-color: #F5F5F5;
}
#blog-entry .body .content h4 {
  font-size: 20px;
  margin: 0 0 24px;
}
#blog-entry .body .content h5 {
  font-size: 16px;
  margin: 0 0 20px;
}
#blog-entry .body .content p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 36px;
}
#blog-entry .body .content mark {
  background: linear-gradient(transparent 60%, rgba(254, 198, 50, 0.6) 0%) !important;
}
#blog-entry .body .content figure {
  margin: 0 0 48px;
}
#blog-entry .body .content figure figcaption {
  text-align: center;
  padding: 8px 0 0;
  font-size: 13px;
  color: #8D8D8D;
}
#blog-entry .body .content figure.alignleft {
  float: left;
  margin: 0 36px 48px 0;
}
#blog-entry .body .content ol {
  margin: 0 0 40px;
}
#blog-entry .body .content ol li {
  list-style: decimal outside;
  margin: 0 0 20px 1.5em;
}

.single-share {
  background-color: #F5F5F5;
  padding: 40px 20px;
  text-align: center;
}
.single-share h3 {
  margin: 0 0 12px;
}
.single-share h3 img {
  height: 20px;
}
.single-share ul li {
  display: inline-block;
  margin: 0 12px;
}
.single-share ul li img {
  height: 40px;
}

.single-navi {
  padding: 60px 0 0;
}
.single-navi ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-navi ul li {
  width: 33.33%;
  font-weight: 600;
  font-size: 16px;
}
.single-navi ul li.prev {
  text-align: left;
}
.single-navi ul li.prev a {
  display: inline-block;
  padding: 12px 0 12px 60px;
  background: url(../images/prev-arrow.png) no-repeat center left/42px auto;
}
.single-navi ul li.next {
  text-align: right;
}
.single-navi ul li.next a {
  display: inline-block;
  padding: 12px 60px 12px 0;
  background: url(../images/next-arrow.png) no-repeat center right/42px auto;
}
.single-navi ul li.tolist {
  text-align: center;
}
.single-navi ul li.tolist a {
  display: inline-block;
  padding: 12px 0 12px 32px;
  background: url(../images/blog-top.png) no-repeat center left/16px auto;
}

#page-template {
  padding: 40px 0 120px;
}
#page-template article {
  margin: 0 0 80px;
}
#page-template article.nohead {
  padding: 40px 0 0;
}
#page-template .inner {
  width: 1100px;
}
#page-template h2 {
  font-size: 36px;
  border-left: solid #00348A 6px;
  padding: 0 0 0 24px;
  margin: 36px 0 36px;
}
#page-template h3 {
  font-size: 24px;
  padding: 24px 30px;
  margin: 36px 0 36px;
  background-color: #F5F5F5;
}
#page-template h4 {
  font-size: 20px;
  margin: 0 0 24px;
}
#page-template h5 {
  font-size: 16px;
  margin: 0 0 20px;
}
#page-template p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 36px;
}
#page-template p.right {
  text-align: right;
}
#page-template mark {
  background: linear-gradient(transparent 60%, rgba(254, 198, 50, 0.6) 0%) !important;
}
#page-template figure {
  margin: 0 0 48px;
}
#page-template figure img {
  width: 100%;
}
#page-template figure figcaption {
  text-align: center;
  padding: 8px 0 0;
  font-size: 13px;
  color: #8D8D8D;
}
#page-template figure.leftimage {
  float: left;
  max-width: 50%;
  margin: 0 36px 48px 0;
}
#page-template ol {
  counter-reset: listCounter;
  margin: 0 0 40px;
}
#page-template ol.ms {
  margin: 0 0 20px;
}
#page-template ol li {
  counter-increment: listCounter;
  padding: 0 0 20px 1.5em;
  line-height: 1.8;
  position: relative;
}
#page-template ol li:before {
  content: "(" counter(listCounter) ")";
  position: absolute;
  top: 0;
  left: 0;
}
#page-template ol li ul {
  padding: 24px 0 0;
}
#page-template ol li ul li {
  list-style: none;
  margin: 0 0 10px;
}
#page-template ul {
  margin: 0 0 40px;
}
#page-template ul li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.8;
}
#page-template small {
  color: #8D8D8D;
  font-size: 13px;
  line-height: 1.6;
  display: block;
  margin: 0 0 40px;
}
#page-template small.notes {
  text-indent: -2.1em;
  padding-left: 2.1em;
  margin: 0;
}
#page-template .box {
  padding: 40px 40px 20px;
  background-color: #F5F5F5;
  margin: 0 0 40px;
}

.operation-info {
  padding: 80px 0 0;
}
.operation-info:last-child {
  padding: 80px 0 120px;
}
.operation-info .inner {
  width: 1100px;
}
.operation-info .title {
  text-align: center;
  margin: 0 0 40px;
}
.operation-info .title h2 {
  color: #00348A;
  font-size: 36px;
}
.operation-info .body table {
  width: 100%;
  border-collapse: collapse;
  border-top: solid #00348A 1px;
  border-bottom: solid #00348A 1px;
  line-height: 1.6;
  font-size: 16px;
}
.operation-info .body table tr:last-child th, .operation-info .body table tr:last-child td {
  border-bottom: none;
}
.operation-info .body table th {
  padding: 24px 32px;
  width: 40%;
  text-align: left;
  vertical-align: middle;
  background-color: #F5F5F5;
  border-bottom: dashed #00348A 1px;
}
.operation-info .body table td {
  padding: 24px 32px;
  text-align: left;
  vertical-align: middle;
  border-bottom: dashed #00348A 1px;
}

#page-err {
  padding: 80px 0 120px;
  text-align: center;
}
#page-err .inner {
  width: 1100px;
}
#page-err h2 {
  font-size: 157px;
  margin: 0 0 40px;
  color: #00348A;
  line-height: 1.1;
}
#page-err h2 small {
  font-size: 36px;
  display: block;
}
#page-err p {
  font-size: 16px;
  line-height: 1.8;
}
#page-err .btn {
  padding: 40px 0 0;
}

@media (max-width: 1500px) {
  #page-header .inner {
    width: auto;
    padding: 0 40px;
  }

  #page-template .inner {
    width: auto;
    padding: 0 40px;
  }

  #about-outline {
    padding: 80px 40px;
  }
  #about-outline .inner {
    width: auto;
  }

  #about-feature {
    padding: 80px 40px;
  }
  #about-feature .inner {
    width: auto;
  }
  #about-feature .title {
    margin: 0 0 24px;
  }
  #about-feature .title h2 {
    font-size: 24px;
  }
  #about-feature .body ul li {
    width: 32%;
    padding: 24px 24px;
  }
  #about-feature .desc {
    padding: 24px 24px;
  }

  #about-system {
    padding: 80px 40px;
  }
  #about-system .inner {
    width: auto;
  }
  #about-system .title {
    margin: 0 0 24px;
  }
  #about-system .title h2 {
    font-size: 24px;
  }
  #about-system .body article {
    padding: 40px;
  }

  #about-safety {
    padding: 80px 40px;
  }
  #about-safety .inner {
    width: auto;
  }
  #about-safety .title {
    margin: 0 0 24px;
  }
  #about-safety .title h2 {
    font-size: 24px;
  }

  #products-outline {
    padding: 80px 0;
  }
  #products-outline .inner {
    width: 1100px;
  }
  #products-outline .title {
    text-align: center;
    margin: 0 0 40px;
  }
  #products-outline .title h2 {
    color: #00348A;
    font-size: 36px;
  }
  #products-outline .body {
    display: flex;
    justify-content: space-between;
  }
  #products-outline .body .image {
    width: 525px;
  }
  #products-outline .body .image .image-main {
    width: 100%;
    height: 420px;
    background-color: #F5F5F5;
    margin: 0 0 32px;
  }
  #products-outline .body .image .image-main figure {
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  #products-outline .body .image .image-main figure img {
    max-width: 100%;
    max-height: 100%;
  }
  #products-outline .body .image .image-thumb {
    display: flex;
    flex-wrap: wrap;
  }
  #products-outline .body .image .image-thumb ul {
    width: 100% !important;
  }
  #products-outline .body .image .image-thumb ul li {
    width: 23.5% !important;
    height: 96px;
    margin: 0 2% 12px 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    cursor: pointer;
    overflow: hidden;
  }
  #products-outline .body .image .image-thumb ul li:nth-child(4n) {
    margin: 0 0 12px;
  }
  #products-outline .body .image .image-thumb ul li img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }
  #products-outline .body .image .image-thumb .slick-list {
    width: 100% !important;
  }
  #products-outline .body .image .image-thumb .slick-track {
    transform: unset !important;
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
  }
  #products-outline .body .image .image-thumb .slick-slide {
    float: none !important;
  }
  #products-outline .body .text {
    width: 525px;
  }
  #products-outline .body .text table {
    margin: 0 0 40px;
    border-top: solid #00348A 1px;
    border-bottom: solid #00348A 1px;
    width: 100%;
    border-collapse: collapse;
  }
  #products-outline .body .text table tr:last-child th, #products-outline .body .text table tr:last-child td {
    border-bottom: none;
  }
  #products-outline .body .text table th {
    padding: 20px 32px;
    text-align: left;
    vertical-align: middle;
    background-color: #F5F5F5;
    border-bottom: dotted #00348A 1px;
  }
  #products-outline .body .text table td {
    padding: 20px 32px;
    text-align: right;
    vertical-align: middle;
    border-bottom: dotted #00348A 1px;
  }
  #products-outline .body .text table td span {
    margin: 0 0 0 1em;
  }
  #products-outline .body .text table td strong {
    font-size: 36px;
    color: #00348A;
    margin: 0 .2em;
  }
  #products-outline .body .text table td .left {
    text-align: left;
  }
  #products-outline .body .text .btn-area {
    display: flex;
  }
  #products-outline .body .text .btn-area .btn {
    margin: 0 12px 0 0;
  }
  #products-outline .body .text .btn-area .btn a {
    width: auto;
    padding: 0 52px;
  }

  #products-outline .inner {
    width: auto;
  }
  #products-outline .title h2 {
    font-size: 24px;
  }
  #products-outline .body {
    padding: 0 40px;
  }
  #products-outline .body .image {
    width: 49%;
  }
  #products-outline .body .text {
    width: 48%;
  }

  #products-detail .inner {
    width: auto;
  }
  #products-detail .body {
    padding: 0 40px;
  }
  #products-detail .body ul li {
    width: 32%;
  }

  #products-policy .title h2 {
    font-size: 24px;
  }
  #products-policy .inner {
    width: auto;
  }
  #products-policy .body {
    padding: 0 40px;
  }

  #products-target .title h2 {
    font-size: 24px;
  }
  #products-target .inner {
    width: auto;
  }
  #products-target .body {
    padding: 0 40px;
  }

  #products-risk .title h2 {
    font-size: 24px;
  }
  #products-risk .inner {
    width: auto;
  }
  #products-risk .body {
    padding: 0 40px;
  }

  #flow-application {
    padding: 80px 0;
    background-color: #F5F5F5;
  }
  #flow-application .title {
    text-align: center;
  }
  #flow-application .title h2 {
    margin: 0 0 40px;
    font-size: 36px;
    font-weight: 700;
    color: #00348A;
  }
  #flow-application .body {
    padding: 0 40px;
  }
  #flow-application .body .flow .note {
    padding: 40px 0 0;
  }

  #flow-verification .body {
    padding: 0 40px;
  }

  #flow-notes .inner {
    width: auto;
  }
  #flow-notes .body {
    padding: 0 40px;
  }

  #flow-purchase .body {
    padding: 0 40px;
  }

  #flow-commission .body {
    padding: 0 40px;
  }

  #column {
    width: auto;
    margin: 0;
    padding: 80px 40px;
  }
  #column #main-column {
    width: 72%;
  }
  #column #side-column {
    width: 25%;
  }

  .operation-info .inner {
    width: auto;
    padding: 0 40px;
  }

  #page-err {
    padding: 80px 40px 120px;
  }
  #page-err .inner {
    width: auto;
  }
}
@media (max-width: 980px) {
  #page-header .inner {
    padding: 0 28px;
  }
  #page-header .row {
    height: 80px;
  }
  #page-header .row h1 {
    font-size: 28px;
  }
  #page-header .row .page-header-nav {
    display: none;
  }

  #about-outline {
    padding: 40px 28px;
  }
  #about-outline .body .box {
    display: block;
    padding: 24px 24px 0;
    border-radius: 3px;
  }
  #about-outline .body .box .text {
    width: auto;
    padding: 0 0 12px;
  }
  #about-outline .body .box .text h2 {
    font-size: 16px;
  }
  #about-outline .body .box .text h2 br {
    display: none;
  }
  #about-outline .body .box .text p {
    font-size: 13px;
  }
  #about-outline .body .box figure {
    width: auto;
  }
  #about-outline .body .desc {
    padding: 24px 0 0;
    display: block;
  }
  #about-outline .body .desc h3 {
    padding: 32px 20px 32px;
    margin: 0 auto 20px;
    width: 80%;
    text-align: center;
  }
  #about-outline .body .desc h3 br {
    display: none;
  }
  #about-outline .body .desc h3 span {
    font-size: 20px;
  }
  #about-outline .body .desc p {
    width: auto;
    font-size: 13px;
  }

  #about-feature {
    padding: 40px 28px;
  }
  #about-feature .body ul {
    display: block;
  }
  #about-feature .body ul li {
    width: auto;
    padding: 24px 20px;
    margin: 0 0 24px;
    border-radius: 3px;
  }
  #about-feature .body ul li figure {
    text-align: center;
    min-height: auto;
  }
  #about-feature .body ul li figure img {
    width: 80%;
    max-width: 150px;
  }
  #about-feature .body ul li .head small {
    display: block;
    font-size: 13px;
  }
  #about-feature .body ul li .head h3 {
    font-size: 16px;
  }
  #about-feature .body ul li .head h3 span {
    font-size: 13px;
  }
  #about-feature .body ul li p {
    font-size: 13px;
    line-height: 1.8;
  }
  #about-feature .desc {
    padding: 20px 24px;
    display: block;
    border-radius: 3px;
  }
  #about-feature .desc .text {
    width: auto;
    padding: 12px 0;
  }
  #about-feature .desc .text h3 {
    font-size: 16px;
  }
  #about-feature .desc .text p {
    font-size: 13px;
  }
  #about-feature .desc figure {
    width: auto;
  }

  #about-system {
    background: #F5F5F5 url(../images/flow-bg_sp.png) space no-repeat center bottom/auto 67px;
    padding: 40px 28px;
  }
  #about-system .body article {
    padding: 20px 24px;
  }
  #about-system .body article figure {
    margin: 0 0 24px;
  }
  #about-system .body article ol li {
    font-size: 13px;
  }
  #about-system .body article ol li:before {
    content: "";
    width: 43px;
    height: 43px;
    position: absolute;
    top: 50%;
    left: 0;
    margin: -21px 0 0;
  }
  #about-system .body article small {
    font-size: 12px;
  }
  #about-system .body .box {
    padding: 12px 24px 24px;
    display: block;
    margin: 0 24px 24px;
    border-radius: 3px;
  }
  #about-system .body .box .text {
    width: auto;
  }
  #about-system .body .box .text h3 {
    font-size: 16px;
  }
  #about-system .body .box .text p {
    font-size: 13px;
  }
  #about-system .body .box figure {
    width: auto;
  }
  #about-system .body .box figure figcaption {
    font-size: 12px;
    padding: 20px 0 0;
  }
  #about-system .body .box2 {
    padding: 20px 24px 24px;
    display: block;
    margin: 0 24px;
    border-radius: 3px;
  }
  #about-system .body .box2 h3 {
    font-size: 16px;
  }
  #about-system .body .box2 p {
    font-size: 13px;
  }
  #about-system .body .box2 picture img {
    width: 100%;
  }
  #about-system .body .box2 small {
    font-size: 12px;
  }
  #about-system .body .box2 ul {
    padding: 20px 0 0;
    display: block;
  }
  #about-system .body .box2 ul li {
    width: auto;
  }
  #about-system .body .box2 ul li small {
    font-size: 12px;
  }
  #about-system .body .box2 dl {
    padding: 24px 0 0;
  }
  #about-system .body .box2 dl dt {
    font-size: 13px;
  }
  #about-system .body .box2 dl dd {
    padding: 24px;
    font-size: 13px;
  }

  #about-safety {
    padding: 40px 28px;
  }
  #about-safety .body {
    display: block;
  }
  #about-safety .body article {
    width: auto;
    margin: 0 0 24px;
    padding: 24px;
    border-radius: 3px;
  }
  #about-safety .body article h3 {
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 24px;
  }
  #about-safety .body article p {
    font-size: 13px;
  }
  #about-safety .body article ul {
    display: block;
  }
  #about-safety .body article ul li {
    width: auto;
  }

  #products-outline {
    padding: 80px 0;
  }
  #products-outline .inner {
    width: 1100px;
  }
  #products-outline .title {
    text-align: center;
    margin: 0 0 40px;
  }
  #products-outline .title h2 {
    color: #00348A;
    font-size: 36px;
  }
  #products-outline .body {
    display: flex;
    justify-content: space-between;
  }
  #products-outline .body .image {
    width: 525px;
  }
  #products-outline .body .image .image-main {
    width: 100%;
    height: 420px;
    background-color: #F5F5F5;
    margin: 0 0 32px;
  }
  #products-outline .body .image .image-main figure {
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  #products-outline .body .image .image-main figure img {
    max-width: 100%;
    max-height: 100%;
  }
  #products-outline .body .image .image-thumb {
    display: flex;
    flex-wrap: wrap;
  }
  #products-outline .body .image .image-thumb ul {
    width: 100% !important;
  }
  #products-outline .body .image .image-thumb ul li {
    width: 23.5% !important;
    height: 96px;
    margin: 0 2% 12px 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    cursor: pointer;
    overflow: hidden;
  }
  #products-outline .body .image .image-thumb ul li:nth-child(4n) {
    margin: 0 0 12px;
  }
  #products-outline .body .image .image-thumb ul li img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }
  #products-outline .body .image .image-thumb .slick-list {
    width: 100% !important;
  }
  #products-outline .body .image .image-thumb .slick-track {
    transform: unset !important;
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
  }
  #products-outline .body .image .image-thumb .slick-slide {
    float: none !important;
  }
  #products-outline .body .text {
    width: 525px;
  }
  #products-outline .body .text table {
    margin: 0 0 40px;
    border-top: solid #00348A 1px;
    border-bottom: solid #00348A 1px;
    width: 100%;
    border-collapse: collapse;
  }
  #products-outline .body .text table tr:last-child th, #products-outline .body .text table tr:last-child td {
    border-bottom: none;
  }
  #products-outline .body .text table th {
    padding: 20px 32px;
    text-align: left;
    vertical-align: middle;
    background-color: #F5F5F5;
    border-bottom: dotted #00348A 1px;
  }
  #products-outline .body .text table td {
    padding: 20px 32px;
    text-align: right;
    vertical-align: middle;
    border-bottom: dotted #00348A 1px;
  }
  #products-outline .body .text table td span {
    margin: 0 0 0 1em;
  }
  #products-outline .body .text table td strong {
    font-size: 36px;
    color: #00348A;
    margin: 0 .2em;
  }
  #products-outline .body .text table td .left {
    text-align: left;
  }
  #products-outline .body .text .btn-area {
    display: flex;
  }
  #products-outline .body .text .btn-area .btn {
    margin: 0 12px 0 0;
  }
  #products-outline .body .text .btn-area .btn a {
    width: auto;
    padding: 0 52px;
  }

  #products-outline {
    padding: 40px 28px;
  }
  #products-outline .inner {
    width: auto;
  }
  #products-outline .title {
    margin: 0 0 24px;
  }
  #products-outline .body {
    display: block;
    padding: 0;
  }
  #products-outline .body .image {
    width: auto;
    margin: 0 0 40px;
  }
  #products-outline .body .image .image-main {
    margin: 0 0 24px;
    height: 300px;
  }
  #products-outline .body .image .image-main figure {
    height: 300px;
  }
  #products-outline .body .image .image-thumb ul li {
    height: 72px;
  }
  #products-outline .body .text {
    width: auto;
  }
  #products-outline .body .text table {
    margin: 0 0 24px;
    font-size: 13px;
  }
  #products-outline .body .text table tr:last-child th, #products-outline .body .text table tr:last-child td {
    border-bottom: none;
  }
  #products-outline .body .text table th {
    padding: 12px 24px;
  }
  #products-outline .body .text table td {
    padding: 12px 24px;
  }
  #products-outline .body .text table td strong {
    font-size: 24px;
  }
  #products-outline .body .text .btn-area {
    display: block;
    text-align: center;
  }
  #products-outline .body .text .btn-area .btn {
    margin: 0 0 12px;
  }
  #products-outline .body .text .btn-area .btn a {
    width: auto;
    padding: 0 52px;
  }

  #products-detail {
    padding: 40px 28px 20px;
    background: #F5F5F5 url(../images/flow-bg_sp.png) space no-repeat center bottom/auto 67px;
  }
  #products-detail .body {
    padding: 0;
  }
  #products-detail .body ul {
    display: block;
  }
  #products-detail .body ul li {
    width: auto;
    padding: 24px 20px;
    margin: 0 0 24px;
    border-radius: 3px;
  }
  #products-detail .body ul li figure {
    min-height: auto;
  }
  #products-detail .body ul li figure img {
    width: 80%;
    max-width: 150px;
  }
  #products-detail .body ul li h3 {
    padding: 12px 0 0;
    font-size: 13px;
  }
  #products-detail .body ul li p {
    font-size: 16px;
  }

  #products-policy {
    padding: 40px 28px;
  }
  #products-policy .title {
    margin: 0 0 24px;
  }
  #products-policy .body {
    padding: 0;
  }
  #products-policy .body table {
    font-size: 13px;
  }
  #products-policy .body table th {
    padding: 12px;
  }
  #products-policy .body table td {
    padding: 12px;
  }
  #products-policy .body small {
    font-size: 12px;
  }
  #products-policy .btn a {
    min-width: auto;
  }

  #products-target {
    padding: 40px 28px;
  }
  #products-target .title {
    margin: 0 0 24px;
  }
  #products-target .body {
    padding: 0;
  }
  #products-target .body table {
    width: 200%;
    font-size: 13px;
  }
  #products-target .body table th {
    padding: 12px;
  }
  #products-target .body table td {
    padding: 12px 12px;
  }

  #products-risk {
    padding: 40px 28px 80px;
  }
  #products-risk .title {
    margin: 0 0 24px;
  }
  #products-risk .body {
    padding: 0;
  }
  #products-risk .body .box {
    height: 400px;
    padding: 12px 20px;
  }
  #products-risk .body .box p {
    font-size: 13px;
  }
  #products-risk .body .box h3 {
    font-size: 16px;
  }
  #products-risk .body .box dl {
    font-size: 13px;
  }

  #flow-application {
    padding: 40px 0;
  }
  #flow-application .title h2 {
    margin: 0 0 24px;
    font-size: 24px;
  }
  #flow-application .body {
    padding: 0 28px;
  }
  #flow-application .body p.mb20 {
    font-size: 13px;
  }
  #flow-application .body .flow {
    padding: 28px;
    border-radius: 3px;
  }
  #flow-application .body .flow ul {
    display: block;
  }
  #flow-application .body .flow ul li {
    width: auto;
    margin: 0 0 60px;
  }
  #flow-application .body .flow ul li:after {
    background: url(../images/flow-arrow_sp.svg) no-repeat center/contain;
    width: 12px;
    height: 15px;
    top: auto;
    bottom: -36px;
    right: 50%;
    margin: 0 -6px 0 0;
  }
  #flow-application .body .flow ul li:last-child:after {
    content: none;
  }
  #flow-application .body .flow ul li figure img {
    width: 80%;
    max-width: 150px;
  }
  #flow-application .body .flow ul li h3 {
    font-size: 16px;
  }
  #flow-application .body .flow ul li p {
    font-size: 13px;
  }
  #flow-application .body .flow ul li small {
    font-size: 12px;
  }
  #flow-application .body .flow .note .box h3 {
    padding: 12px;
    font-size: 13px;
  }
  #flow-application .body .flow .note .box .row {
    display: block;
    padding: 20px 24px;
  }
  #flow-application .body .flow .note .box .row figure {
    width: auto;
    margin: 0 0 20px;
    text-align: center;
  }
  #flow-application .body .flow .note .box .row figure img {
    width: 80%;
    max-width: 150px;
  }
  #flow-application .body .flow .note .box .row .text {
    width: auto;
  }
  #flow-application .body .flow .note .box .row .text h4 {
    font-size: 16px;
  }
  #flow-application .body .flow .note .box .row .text p {
    font-size: 13px;
    line-height: 1.8;
  }

  #flow-verification {
    padding: 40px 0;
  }
  #flow-verification .title h2 {
    margin: 0 0 24px;
    font-size: 24px;
  }
  #flow-verification .body {
    padding: 0 28px;
  }
  #flow-verification .body p.mb20 {
    font-size: 13px;
  }
  #flow-verification .body .tabs table {
    width: 150%;
    font-size: 13px;
  }
  #flow-verification .body .tabs table th {
    padding: 12px;
  }
  #flow-verification .body .tabs table td {
    padding: 12px 12px;
  }
  #flow-verification .body .tabs table td img {
    width: 20px;
  }
  #flow-verification .body .tabs table td small {
    font-size: 12px;
  }
  #flow-verification .body .tabs small {
    font-size: 12px;
  }
  #flow-verification .body .tabs .box {
    margin: 20px 0 0;
  }
  #flow-verification .body .tabs .box h3 {
    font-size: 13px;
  }
  #flow-verification .body .tabs .box p {
    padding: 20px 28px;
    font-size: 13px;
  }
  #flow-verification .body .tabs .box ul {
    margin: 0 24px;
  }
  #flow-verification .body .tabs .box ul li {
    font-size: 13px;
  }
  #flow-verification .body .tabs .box ul li:before {
    width: 4px;
    height: 4px;
    top: 8px;
    left: 8px;
  }

  #flow-notes {
    padding: 40px 0;
  }
  #flow-notes .title {
    margin: 0 0 24px;
  }
  #flow-notes .title h2 {
    font-size: 24px;
  }
  #flow-notes .inner {
    width: auto;
  }
  #flow-notes .body {
    padding: 0 28px;
  }
  #flow-notes .body .box {
    height: 400px;
    padding: 20px 24px;
  }
  #flow-notes .body .box p {
    font-size: 13px;
  }
  #flow-notes .body .box ul {
    font-size: 13px;
  }

  #flow-purchase {
    padding: 40px 0;
    background: url(../images/flow-bg_sp.png) space no-repeat center bottom/auto 67px;
  }
  #flow-purchase .title h2 {
    margin: 0 0 24px;
    font-size: 24px;
  }
  #flow-purchase .body {
    padding: 0 28px;
  }
  #flow-purchase .body p.mb20 {
    font-size: 13px;
  }
  #flow-purchase .body p.mb20 small {
    font-size: 12px;
  }
  #flow-purchase .body .flow {
    padding: 28px;
    border-radius: 3px;
  }
  #flow-purchase .body .flow ul {
    display: block;
  }
  #flow-purchase .body .flow ul li {
    width: auto;
    margin: 0 0 60px;
  }
  #flow-purchase .body .flow ul li:after {
    background: url(../images/flow-arrow_sp.svg) no-repeat center/contain;
    width: 12px;
    height: 15px;
    top: auto;
    bottom: -36px;
    right: 50%;
    margin: 0 -6px 0 0;
  }
  #flow-purchase .body .flow ul li figure img {
    width: 80%;
    max-width: 150px;
  }
  #flow-purchase .body .flow ul li h3 {
    font-size: 20px;
  }
  #flow-purchase .body .flow ul li p {
    font-size: 13px;
  }
  #flow-purchase .body .flow small {
    font-size: 12px;
  }

  #flow-commission {
    padding: 80px 0;
    background-color: #F5F5F5;
  }
  #flow-commission .title {
    text-align: center;
  }
  #flow-commission .title h2 {
    margin: 0 0 40px;
    font-size: 36px;
    font-weight: 700;
    color: #00348A;
  }
  #flow-commission .body {
    padding: 0 28px;
  }
  #flow-commission .body p.mb20 {
    font-size: 13px;
  }
  #flow-commission .body .box table {
    font-size: 16px;
  }
  #flow-commission .body .box table th {
    font-size: 12px;
  }
  #flow-commission .body .box table td {
    padding: 12px 8px;
  }
  #flow-commission .body .box table td strong {
    font-size: 20px;
  }
  #flow-commission .body small {
    font-size: 12px;
  }

  #column {
    padding: 40px 28px;
    display: block;
  }
  #column #main-column {
    width: auto;
    margin: 0 0 80px;
  }
  #column #side-column {
    width: auto;
  }
  #column #side-column aside {
    margin: 0 0 24px;
  }
  #column #side-column aside h3 {
    font-size: 20px;
    padding: 24px;
  }
  #column #side-column aside ul {
    padding: 0 24px 24px;
    display: flex;
    flex-wrap: wrap;
  }
  #column #side-column aside ul li {
    font-size: 13px;
    margin: 0 0 12px;
    width: 50%;
  }
  #column #side-column aside ul.tags {
    display: block;
  }
  #column #side-column aside ul.tags li {
    width: auto;
    display: inline-block;
    margin: 0 12px 12px 0;
  }

  .pagenavi {
    padding: 40px 28px 0;
  }
  .pagenavi span {
    font-size: 13px;
  }
  .pagenavi a {
    font-size: 13px;
  }
  .pagenavi a.nextpostslink {
    margin: 0 0 0 8px;
  }
  .pagenavi a.previouspostslink {
    margin: 0 8px 0 0;
  }

  #blog-entry .body .cat small {
    font-size: 13px;
    margin: 0 8px 0 0;
  }
  #blog-entry .body .cat span {
    font-size: 13px;
    padding: 0 12px;
  }
  #blog-entry .body .tit {
    margin: 0 0 20px;
  }
  #blog-entry .body .tit h1 {
    font-size: 24px;
  }
  #blog-entry .body .tag {
    margin: 0 0 12px;
  }
  #blog-entry .body .tag ul li {
    margin: 0 8px 8px 0;
  }
  #blog-entry .body .tag ul li span {
    font-size: 13px;
    padding: 0 12px;
  }
  #blog-entry .body .content {
    padding: 24px 0;
  }
  #blog-entry .body .content h2 {
    font-size: 24px;
    border-left: solid #00348A 4px;
    padding: 0 0 0 12px;
    margin: 24px 0 24px;
  }
  #blog-entry .body .content h3 {
    font-size: 20px;
    padding: 20px 24px;
    margin: 36px 0 36px;
    background-color: #F5F5F5;
  }
  #blog-entry .body .content h4 {
    font-size: 20px;
    margin: 0 0 24px;
  }
  #blog-entry .body .content h5 {
    font-size: 13px;
    margin: 0 0 16px;
  }
  #blog-entry .body .content p {
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 24px;
  }
  #blog-entry .body .content figure {
    margin: 0 0 24px;
  }
  #blog-entry .body .content figure figcaption {
    font-size: 12px;
  }
  #blog-entry .body .content figure.alignleft {
    float: none;
    width: 100%;
    margin: 0 0 24px 0;
  }
  #blog-entry .body .content figure.alignleft img {
    width: 100%;
  }
  #blog-entry .body .content ol {
    margin: 0 0 24px;
    font-size: 13px;
  }
  #blog-entry .body .content ol li {
    margin: 0 0 12px 1.5em;
  }

  .single-share {
    padding: 24px 20px;
  }
  .single-share h3 {
    margin: 0 0 8px;
  }
  .single-share h3 img {
    height: 16px;
  }
  .single-share ul li {
    margin: 0 4px;
  }
  .single-share ul li img {
    height: 24px;
  }

  .single-navi {
    padding: 40px 0 0;
  }
  .single-navi ul li {
    font-size: 13px;
  }
  .single-navi ul li.prev {
    width: 45%;
  }
  .single-navi ul li.next {
    width: 45%;
  }
  .single-navi ul li.tolist {
    width: 10%;
    text-align: center;
  }
  .single-navi ul li.tolist a {
    padding: 0;
    width: 16px;
    height: 16px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }

  #page-template {
    padding: 20px 0 80px;
  }
  #page-template .inner {
    padding: 0 28px;
  }
  #page-template h2 {
    font-size: 24px;
    border-left: solid #00348A 4px;
    padding: 0 0 0 12px;
    margin: 24px 0 24px;
  }
  #page-template h3 {
    font-size: 20px;
    padding: 16px 24px;
    margin: 24px 0 24px;
  }
  #page-template h4 {
    font-size: 16px;
    margin: 0 0 16px;
  }
  #page-template h5 {
    font-size: 13px;
    margin: 0 0 16px;
  }
  #page-template p {
    font-size: 13px;
    margin: 0 0 24px;
  }
  #page-template figure {
    margin: 0 0 24px;
  }
  #page-template figure img {
    width: 100%;
  }
  #page-template figure figcaption {
    padding: 8px 0 0;
    font-size: 12px;
  }
  #page-template figure.leftimage {
    float: none;
    max-width: 100%;
    margin: 0 0 24px 0;
  }
  #page-template ol {
    margin: 0 0 24px;
    font-size: 13px;
  }
  #page-template ol li {
    margin: 0 0 12px 1.5em;
  }
  #page-template ul {
    margin: 0 0 24px;
    font-size: 13px;
  }
  #page-template .box {
    padding: 24px 24px 12px;
    margin: 0 0 24px;
  }

  .operation-info {
    padding: 40px 0 0;
  }
  .operation-info:last-child {
    padding: 40px 0 80px;
  }
  .operation-info .inner {
    padding: 0 28px;
  }
  .operation-info .title {
    margin: 0 0 28px;
  }
  .operation-info .title h2 {
    font-size: 24px;
  }
  .operation-info .body table {
    display: block;
    font-size: 13px;
  }
  .operation-info .body table tbody {
    display: block;
  }
  .operation-info .body table tr {
    display: block;
  }
  .operation-info .body table tr:last-child th, .operation-info .body table tr:last-child td {
    border-bottom: none;
  }
  .operation-info .body table th {
    display: block;
    padding: 12px 18px;
    width: auto;
    background-color: #F5F5F5;
    border-bottom: none;
  }
  .operation-info .body table td {
    display: block;
    padding: 12px 18px;
    border-bottom: dashed #00348A 1px;
  }

  #page-err {
    padding: 40px 28px 80px;
  }
  #page-err h2 {
    font-size: 105px;
  }
  #page-err h2 small {
    font-size: 24px;
  }
  #page-err p {
    font-size: 13px;
  }
  #page-err .btn {
    padding: 24px 0 0;
  }
}
/*-------------------------
  MODAL
-------------------------*/
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 1100px;
  height: auto;
  max-height: calc(80vh - 80px);
  margin: calc(-40vh + 80px) 0 0 -550px;
  padding: 0;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  z-index: 20002;
}
.modal.modal-s {
  max-width: 652px;
  margin: calc(-40vh + 80px) 0 0 -326px;
}
.modal.modal-height {
  height: calc(80vh - 80px);
}
.modal .modal-content {
  padding: 60px 40px;
  overflow: auto;
  width: 100%;
  height: 100%;
  max-height: calc(80vh - 80px);
}
.modal .modal-content h2 {
  margin: 0 0 20px;
  font-size: 24px;
}
.modal .modal-content p {
  font-size: 16px;
  line-height: 1.8;
}
.modal .modal-content p.indent {
  text-indent: -1.7em;
  padding-left: 1.7em;
}
.modal .modal-content h3 {
  font-size: 24px;
  margin: 0 0 20px;
}
.modal .modal-content h4 {
  font-size: 20px;
  margin: 0 0 20px;
}
.modal .modal-content h5 {
  font-size: 16px;
  margin: 0 0 20px;
}
.modal .modal-content ol {
  margin: 0 0 20px;
}
.modal .modal-content ol li {
  font-size: 16px;
  line-height: 1.8;
}
.modal .modal-content ol li dl dt {
  margin: 0 0 0 1em;
}
.modal .modal-content ol li dl dd {
  margin: 0 0 0 2em;
}
.modal .modal-content ol.decimal {
  counter-reset: my-counter;
  list-style: none;
}
.modal .modal-content ol.decimal li {
  margin: 0 0 0 1.5em;
  padding: 0 0 0 24px;
  position: relative;
}
.modal .modal-content ol.decimal li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  color: #333;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 6px;
  left: 0;
}
.modal .modal-content .box {
  padding: 20px 24px;
  background-color: #F5F5F5;
  margin: 0 0 20px;
}
.modal .modal-content .box p {
  color: #00348A;
  font-weight: 600;
}
.modal .modal-content .box p span {
  display: inline-block;
  min-width: 120px;
}

.modal-header.category-products {
  text-align: center;
  padding: 24px;
  background-color: #FFC632;
}
.modal-header.category-products h2 {
  font-size: 24px;
  color: #00348A;
}
.modal-header.category-guide {
  padding: 24px 40px;
  background-color: #F5F5F5;
}
.modal-header.category-guide .row {
  display: flex;
  align-items: center;
}
.modal-header.category-guide h2 {
  font-size: 24px;
  color: #00348A;
}
.modal-header.category-guide ul {
  display: flex;
  padding: 0 0 0 20px;
}
.modal-header.category-guide ul li {
  margin: 0 8px 0 0;
}
.modal-header.category-guide ul li span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #EBAD11;
  color: #00348A;
  font-size: 14px;
  font-weight: 600;
}
.modal-header.category-guide ul li span.gray {
  background-color: #F5F5F5;
  color: #8D8D8D;
}
.modal-header.category-guide small {
  margin: 0 0 0 4px;
  font-size: #fsize13;
  color: #1A1A1A;
}

.modal-products p {
  margin: 0 0 60px;
}
.modal-products .modal-products-price {
  padding: 24px;
  background-color: #F5F5F5;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 60px;
}
.modal-products .modal-products-price span {
  color: #00348A;
}
.modal-products .modal-products-price strong {
  font-size: 52px;
  margin: 0 .3em;
}
.modal-products .modal-products-price small {
  display: block;
  font-size: 20px;
  color: #8D8D8D;
}
.modal-products .modal-products-info {
  display: flex;
  justify-content: space-between;
}
.modal-products .modal-products-info .modal-products-info-image {
  width: 48%;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-main {
  width: 100%;
  height: 420px;
  background-color: #F5F5F5;
  margin: 0 0 32px;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-main figure {
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-main figure img {
  max-width: 100%;
  max-height: 100%;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb {
  display: flex;
  flex-wrap: wrap;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb ul {
  width: 100% !important;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb ul li {
  width: 23.5% !important;
  height: 96px;
  margin: 0 2% 12px 0;
  border: solid #fff 1px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: #F5F5F5;
  cursor: pointer;
  overflow: hidden;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb ul li:nth-child(4n) {
  margin: 0 0 12px;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb ul li.slick-current {
  border: solid #00348A 1px;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb ul li img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb .slick-list {
  width: 100% !important;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
}
.modal-products .modal-products-info .modal-products-info-image .modal-products-info-image-thumb .slick-slide {
  float: none !important;
}
.modal-products .modal-products-info .modal-products-info-text {
  width: 48%;
}
.modal-products .modal-products-info .modal-products-info-text table {
  margin: 0 0 20px;
  border-top: solid #00348A 1px;
  border-bottom: solid #00348A 1px;
  width: 100%;
  border-collapse: collapse;
  line-height: 1.8;
  font-size: 14px;
}
.modal-products .modal-products-info .modal-products-info-text table tr:last-child th, .modal-products .modal-products-info .modal-products-info-text table tr:last-child td {
  border-bottom: none;
}
.modal-products .modal-products-info .modal-products-info-text table th {
  padding: 12px 24px;
  text-align: left;
  vertical-align: middle;
  background-color: #F5F5F5;
  border-bottom: dotted #00348A 1px;
}
.modal-products .modal-products-info .modal-products-info-text table td {
  padding: 12px 24px;
  text-align: left;
  vertical-align: middle;
  border-bottom: dotted #00348A 1px;
}
.modal-products .modal-products-info .modal-products-info-text table td span {
  margin: 0 0 0 1em;
}
.modal-products .modal-products-info .modal-products-info-text table td strong {
  font-size: 24px;
  color: #00348A;
  margin: 0 .2em;
}
.modal-products .modal-products-info .modal-products-info-text small {
  font-size: 13px;
  color: #8D8D8D;
}
.modal-products .modal-products-access {
  padding: 60px 0 0;
}
.modal-products .modal-products-access h3 {
  text-align: center;
  font-size: 20px;
  color: #fff;
  padding: 16px 20px;
  background-color: #00348A;
  margin: 0;
}
.modal-products .modal-products-access iframe {
  width: 100%;
  height: 480px;
  filter: grayscale(1);
}

.modal-guide table {
  border: solid #ACACAC 1px;
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}
.modal-guide table tr:last-child td, .modal-guide table tr:last-child th {
  border-bottom: none;
}
.modal-guide table th {
  padding: 24px;
  background-color: #F5F5F5;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid #ACACAC 1px;
  width: 20%;
}
.modal-guide table td {
  border-bottom: solid #ACACAC 1px;
  padding: 24px;
  text-align: left;
  vertical-align: middle;
}
.modal-guide table td .ident_image p {
  margin: 0 0 12px;
}
.modal-guide table td .ident_image + .ident_image {
  padding: 12px 0 0;
}
.modal-guide table td ul li {
  position: relative;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
}
.modal-guide table td ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #00348A;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 6px;
}

.modal-content-sim {
  padding: 0 60px;
}
.modal-content-sim h2 {
  font-size: 26px;
  padding: 20px 0 12px;
  border-bottom: solid #1A1A1A 3px;
  margin: 0 0 20px;
  text-align: center;
}
.modal-content-sim p {
  font-size: 15px;
  text-align: center;
}
.modal-content-sim .sim_t {
  padding: 28px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content-sim .sim_t > div {
  margin: 0 .1em;
}
.modal-content-sim .sim_t input {
  max-width: 6em;
  padding: 8px;
  border: solid #DBDBDB 1px;
  border-radius: 2px;
  margin: 0 .5em;
}
.modal-content-sim .sim_m {
  padding: 28px 0;
}
.modal-content-sim .sim_m button {
  border: none;
  max-width: 330px;
  width: 80%;
  background-color: #00348A;
  color: #fff;
  padding: 12px 24px;
  margin: 0 auto;
  display: block;
  font-size: 17px;
  cursor: pointer;
  transition: .2s ease;
}
.modal-content-sim .sim_m button:hover {
  opacity: .7;
}
.modal-content-sim .sim_b {
  text-align: center;
  margin: 0 0 24px;
}
.modal-content-sim .sim_b .sim_result {
  font-size: 40px;
  color: #3171CA;
  margin: 0 .2em;
  font-weight: 700;
}
.modal-content-sim .sim_reset {
  text-align: center;
}
.modal-content-sim .sim_reset button {
  background-color: #fff;
  border: solid #DBDBDB 1px;
  border-radius: 2px;
  font-weight: 700;
  padding: 8px 24px;
  font-size: 13px;
  cursor: pointer;
  transition: .2s ease;
}
.modal-content-sim .sim_reset button:hover {
  opacity: .7;
}
.modal-content-sim .sim_note {
  padding: 24px 0 20px;
}
.modal-content-sim .sim_note p {
  color: #8D8D8D;
  font-size: 10px;
  text-align: left;
}

.modal-close-btn {
  position: absolute;
  right: 0;
  top: -80px;
  font-size: 20px;
  background: url(../images/close.svg) no-repeat center/contain;
  width: 63px;
  height: 63px;
  border: none;
  cursor: pointer;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 20001;
  cursor: pointer;
}

@media (max-width: 1500px) {
  .modal {
    max-width: none;
    margin: calc(-40vh + 80px) 0 0 -40%;
  }
}
@media (max-width: 980px) {
  .modal {
    width: 90%;
    max-height: calc(80vh - 56px);
    margin: calc(-40vh + 56px) 0 0 -45%;
  }
  .modal.modal-s {
    width: 90%;
    max-width: none;
    margin: calc(-40vh + 56px) 0 0 -45%;
  }
  .modal.modal-height {
    height: calc(80vh - 80px);
  }
  .modal .modal-content {
    padding: 40px 28px;
    height: calc(100% - 80px);
  }
  .modal .modal-content h2 {
    font-size: 20px;
  }
  .modal .modal-content p {
    font-size: 13px;
  }
  .modal .modal-content ol li {
    font-size: 13px;
  }
  .modal .modal-content ol.decimal li:before {
    height: 16px;
    width: 16px;
    font-size: 11px;
    top: 3px;
  }

  .modal-header.category-products h2 {
    font-size: 20px;
  }
  .modal-header.category-guide {
    padding: 24px 24px 16px;
  }
  .modal-header.category-guide .row {
    display: block;
  }
  .modal-header.category-guide h2 {
    font-size: 20px;
    text-align: center;
    margin: 0 0 12px;
  }
  .modal-header.category-guide ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .modal-header.category-guide ul li {
    margin: 0 8px 8px 0;
  }
  .modal-header.category-guide ul li span {
    padding: 4px;
    font-size: 12px;
  }
  .modal-header.category-guide small {
    margin: 0;
    font-size: 11px;
  }

  .modal-products p {
    margin: 0 0 40px;
  }
  .modal-products .modal-products-price {
    padding: 20px;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 40px;
  }
  .modal-products .modal-products-price span {
    display: block;
  }
  .modal-products .modal-products-price strong {
    font-size: 36px;
    margin: 0 .1em 0 0;
  }
  .modal-products .modal-products-price small {
    font-size: 13px;
  }
  .modal-products .modal-products-info {
    display: block;
  }
  .modal-products .modal-products-info .modal-products-info-image {
    display: none;
    width: auto;
  }
  .modal-products .modal-products-info .modal-products-info-text {
    width: auto;
  }
  .modal-products .modal-products-info .modal-products-info-text table {
    font-size: 13px;
    display: block;
  }
  .modal-products .modal-products-info .modal-products-info-text table tr {
    display: block;
  }
  .modal-products .modal-products-info .modal-products-info-text table tbody {
    display: block;
  }
  .modal-products .modal-products-info .modal-products-info-text table th {
    display: block;
    padding: 12px;
    border-bottom: none;
    text-align: center;
  }
  .modal-products .modal-products-info .modal-products-info-text table td {
    display: block;
    padding: 12px;
    text-align: center;
  }
  .modal-products .modal-products-info .modal-products-info-text table td strong {
    font-size: 20px;
  }
  .modal-products .modal-products-info .modal-products-info-text small {
    font-size: 12px;
  }
  .modal-products .modal-products-access {
    padding: 40px 0 0;
  }
  .modal-products .modal-products-access h3 {
    font-size: 16px;
  }
  .modal-products .modal-products-access iframe {
    height: 400px;
  }

  .modal-guide table {
    display: block;
    font-size: 13px;
  }
  .modal-guide table tr {
    display: block;
  }
  .modal-guide table tbody {
    display: block;
  }
  .modal-guide table th {
    display: block;
    padding: 12px;
    border-bottom: none;
    width: auto;
    text-align: center;
  }
  .modal-guide table td {
    display: block;
    padding: 12px;
    text-align: left;
  }
  .modal-guide table td ul li {
    padding: 0 0 0 16px;
    font-size: 13px;
  }
  .modal-guide table td ul li:before {
    width: 4px;
    height: 4px;
    top: 8px;
    left: 6px;
  }

  .modal-content-sim {
    max-width: none;
    margin: 0;
  }
  .modal-content-sim h2 {
    font-size: 20px;
    padding: 0 0 12px;
    border-bottom: solid #1A1A1A 3px;
  }
  .modal-content-sim p {
    font-size: 13px;
    text-align: left;
  }
  .modal-content-sim .sim_t {
    padding: 20px 0 0;
    display: block;
    text-align: center;
    font-size: 13px;
  }
  .modal-content-sim .sim_t > div {
    margin: 0 0 12px;
  }
  .modal-content-sim .sim_m {
    padding: 20px 0;
    font-size: 13px;
  }
  .modal-content-sim .sim_m button {
    width: 80%;
    padding: 8px 20px;
    font-size: 14px;
  }
  .modal-content-sim .sim_b {
    margin: 0 0 20px;
    font-size: 13px;
  }
  .modal-content-sim .sim_b .sim_result {
    font-size: 28px;
  }
  .modal-content-sim .sim_reset {
    text-align: center;
    font-size: 13px;
  }
  .modal-content-sim .sim_reset button {
    padding: 4px 20px;
  }
  .modal-content-sim .sim_note {
    padding: 20px 0 0;
  }

  .modal-close-btn {
    top: -56px;
    width: 36px;
    height: 36px;
  }
}

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