@import url(https://fonts.googleapis.com/css?family=Kosugi+Maru);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

/* remove border & off descender */
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
a:not([href]) {
  cursor: pointer;
}

/* remove descender */
svg,
input,
select,
textarea,
label {
  vertical-align: middle;
}

/* break word for all elements */
*,
*:before,
*:after {
  word-break: break-all;
}

/* [IE8-] New Tag from HTML5 */
main, article, aside, figcaption, figure,
footer, header, nav, section, details, summary {
  display: block;
}

em, i {
  font-style: normal;
}

.cf:after {
  height: 0;
  clear: both;
  display: block;
  content: '';
}

body {
  font-size: 17px;
  line-height: 1.6;
  font-family: "Kosugi Maru", sans-serif;
  min-width: 320px;
  color: #1b1b1b;
  max-width: 100%;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  max-width: 1140px;
}
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container.small {
  max-width: 960px;
}
.container .container {
  padding-left: 0;
  padding-right: 0;
  margin-left: -40px;
  margin-right: -40px;
}
@media (max-width: 767px) {
  .container .container {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.overlay.show {
  visibility: visible;
  opacity: 1;
}

.header {
  position: relative;
  z-index: 100;
  height: 98px;
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
}
@media (max-width: 1023px) {
  .header {
    height: 68px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 42px;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1023px) {
  .header-inner {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 374px) {
  .header-inner {
    padding-left: 5px;
  }
}

.header-main {
  display: flex;
  align-items: center;
}

.header-brand {
  font-size: 0;
}
.header-brand img {
  height: 50px;
  width: auto;
}
@media (max-width: 1279px) {
  .header-brand img {
    height: 46px;
  }
}
@media (max-width: 1023px) {
  .header-brand img {
    height: 36px;
  }
}
@media (max-width: 767px) {
  .header-brand img {
    height: 22px;
  }
}
@media (max-width: 374px) {
  .header-brand img {
    height: 19px;
  }
}

.header-labels {
  display: flex;
  align-self: center;
  margin-left: 13px;
  padding-top: 3px;
}
@media (max-width: 767px) {
  .header-labels {
    margin-left: 6px;
    padding-top: 1px;
  }
}
@media (max-width: 374px) {
  .header-labels {
    padding-top: 0;
    margin-top: -1px;
  }
}
.header-labels > li + li {
  margin-left: 6px;
}
@media (max-width: 767px) {
  .header-labels > li + li {
    margin-left: 3px;
  }
}

.header-label {
  display: inline-block;
  border-radius: 7px;
  text-align: center;
  min-width: 72px;
  padding-left: 8px;
  padding-right: 8px;
  color: #FFFFFF;
  height: 32px;
  line-height: 32px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .header-label {
    font-size: 10px;
    height: 16px;
    line-height: 16px;
    min-width: 0;
    border-radius: 4px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.header-label.primary {
  background-color: #3B82C5;
}
.header-label.secondary {
  background-color: #EA5541;
}

.header-contacts {
  display: flex;
}
@media (max-width: 1023px) {
  .header-contacts {
    display: none;
  }
}
.header-contacts > li + li {
  margin-left: 24px;
}

.header-contact {
  font-weight: bold;
}
.header-contact > dt {
  font-size: 11px;
}
.header-contact > dd {
  position: relative;
  padding-left: 20px;
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 1279px) {
  .header-contact > dd {
    font-size: 24px;
  }
}
.header-contact > dd:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 20px;
  background: url("../images/icon_tel.png") no-repeat center;
  background-size: 100% auto;
  transform: translateY(-50%);
}

.header-hamburger-launcher {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
  background-color: #C21727;
}
@media (max-width: 1023px) {
  .header-hamburger-launcher {
    display: block;
  }
}
@media (max-width: 767px) {
  .header-hamburger-launcher {
    width: 42px;
    height: 42px;
  }
}
.header-hamburger-launcher.is-active .header-hamburger i:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-hamburger-launcher.is-active .header-hamburger i:nth-of-type(2) {
  opacity: 0;
}
.header-hamburger-launcher.is-active .header-hamburger i:nth-of-type(3) {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-top: 0;
}

.header-hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 18px;
  transition: 0.3s;
}
.header-hamburger i {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #FFFFFF;
  transition: 0.3s;
  left: 50%;
}
.header-hamburger i:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%);
}
.header-hamburger i:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-hamburger i:nth-of-type(3) {
  bottom: 0;
  transform: translateX(-50%);
}

.header-side-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 1023px) {
  .header-side-nav {
    display: block;
  }
}
.header-side-nav.is-active {
  opacity: 1;
}

.footer-nav {
  padding-top: 42px;
  padding-bottom: 42px;
  background-color: #B91B28;
}
@media (max-width: 767px) {
  .footer-nav {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.footer-nav-list {
  max-width: 872px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .footer-nav-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer-nav-list > li + li {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .footer-nav-list > li + li {
    margin-top: 24px;
  }
}

.footer-nav-item {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-nav-item {
    display: block;
  }
}
.footer-nav-item > dt {
  width: 86px;
  height: 32px;
  line-height: 32px;
  background-color: #76111a;
  color: #FFFFFF;
  text-align: center;
  font-size: 10px;
}
@media (max-width: 767px) {
  .footer-nav-item > dt {
    width: 100%;
    font-size: 13px;
    height: 35px;
    line-height: 35px;
  }
}
.footer-nav-item > dd {
  width: calc(100% - 86px);
  padding-left: 20px;
}
@media (max-width: 767px) {
  .footer-nav-item > dd {
    width: 100%;
    padding-left: 0;
    margin-top: 8px;
  }
}

.footer-nav-links {
  font-size: 0;
  margin-top: -6px;
}
@media (max-width: 767px) {
  .footer-nav-links {
    margin-top: 0;
  }
}
.footer-nav-links > li {
  display: inline-block;
  margin-right: 15px;
  border-right: 1px solid #FFFFFF;
  padding-right: 15px;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .footer-nav-links > li {
    margin-right: 0;
    border-right: 0;
    padding-right: 0;
    margin-top: 0;
    display: block;
  }
}
.footer-nav-links > li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.footer-nav-link {
  display: block;
  font-size: 13px;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer-nav-link {
    line-height: 2;
    font-size: 12px;
  }
}

.footer-copyright {
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 10px;
}

.d-ib {
  display: inline-block;
}

.table {
  width: 100%;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  border-spacing: 0;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .table {
    font-size: 10px;
  }
}
.table.primary th, .table.primary td {
  border-color: #3B82C5;
}
.table.primary th {
  color: #fff;
  background-color: #3B82C5;
  border-right-color: #fff;
}
.table.primary th:last-child {
  border-right-color: #3B82C5;
}
.table.secondary th, .table.secondary td {
  border-color: #EA5541;
}
.table.secondary th {
  color: #fff;
  background-color: #EA5541;
  border-right-color: #fff;
}
.table.secondary th:last-child {
  border-right-color: #EA5541;
}
.table.tertiary th, .table.tertiary td {
  border-color: #03AF7A;
}
.table.tertiary th {
  color: #fff;
  background-color: #03AF7A;
  border-right-color: #fff;
}
.table.tertiary th:last-child {
  border-right-color: #03AF7A;
}
.table th, .table td {
  border: 2px solid #fff;
  padding: 10px;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .table th, .table td {
    border-width: 1px;
    padding: 5px;
  }
}

.cat-btn {
  text-align: center;
}
.cat-btn .btn.btn-primary {
  font-size: 22px;
  padding: 20px 80px;
}
@media (max-width: 767px) {
  .cat-btn .btn.btn-primary {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
  }
}

.cta-txt {
  text-align: center;
  padding: 20px 0;
}

.cta {
  padding-top: 44px;
  padding-bottom: 48px;
}
@media (max-width: 767px) {
  .cta {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

.cta-heading {
  text-align: center;
  font-size: 31px;
}
@media (max-width: 1023px) {
  .cta-heading {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .cta-heading {
    font-size: 12px;
  }
}

.cta-body {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .cta-body {
    margin-top: 8px;
  }
}

.cta-contacts {
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .cta-contacts {
    display: block;
    text-align: center;
    font-size: 0;
  }
}
@media (max-width: 1023px) {
  .cta-contacts > li {
    display: inline-block;
  }
}
.cta-contacts > li + li {
  margin-left: 30px;
}
@media (max-width: 1023px) {
  .cta-contacts > li + li {
    margin-left: 0;
    margin-top: 12px;
  }
}
@media (max-width: 767px) {
  .cta-contacts > li + li {
    margin-top: 8px;
  }
}

.cta-contact {
  display: flex;
  align-items: center;
}
.cta-contact > dt {
  padding-right: 10px;
  font-size: 0;
}
@media (max-width: 767px) {
  .cta-contact > dt {
    padding-right: 6px;
  }
}
.cta-contact > dd {
  position: relative;
  padding-left: 35px;
  font-size: 51px;
  line-height: 1;
}
@media (max-width: 767px) {
  .cta-contact > dd {
    font-size: 19px;
    padding-left: 16px;
  }
}
.cta-contact > dd:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 39px;
  background: url("../images/icon_tel.png") no-repeat center;
  background-size: 100% auto;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .cta-contact > dd:before {
    width: 11px;
    height: 15px;
  }
}

.cta-label {
  height: 44px;
  line-height: 44px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 20px;
  display: inline-block;
  border-radius: 7px;
  text-align: center;
  min-width: 72px;
  color: #FFFFFF;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cta-label {
    font-size: 10px;
    height: 19px;
    line-height: 19px;
    padding-left: 6px;
    padding-right: 6px;
    min-width: 0;
    border-radius: 4px;
  }
}
.cta-label.primary {
  background-color: #3B82C5;
}
.cta-label.secondary {
  background-color: #EA5541;
}

input[type='radio'],
input[type='checkbox'],
label {
  cursor: pointer;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='search'],
input[type='tel'],
input.text,
textarea {
  padding: 5px 10px;
  min-height: 36px;
  margin: 0 5px 0 0;
  border: 1px solid #a0a0a0;
  vertical-align: middle;
  font-weight: normal;
  line-height: 1.5;
  max-width: 100%;
  font-size: 16px;
  display: inline-block;
  box-shadow: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}
input[type='text'].input-sm,
input[type='password'].input-sm,
input[type='email'].input-sm,
input[type='search'].input-sm,
input[type='tel'].input-sm,
input.text.input-sm,
textarea.input-sm {
  width: 140px;
}
input[type='text'].input-xs,
input[type='password'].input-xs,
input[type='email'].input-xs,
input[type='search'].input-xs,
input[type='tel'].input-xs,
input.text.input-xs,
textarea.input-xs {
  width: 80px;
}

textarea {
  line-height: 1.4;
}

select {
  padding: 5px 10px;
  height: 36px;
  line-height: 1;
  border: 1px solid #a0a0a0;
  background: #fff;
  font-size: 16px;
  display: inline-block;
  box-shadow: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-clip: padding;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
}

/*
 btn
----------------------------*/
.btn {
  cursor: pointer;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  text-decoration: none !important;
  position: relative;
  border: 1px solid #000;
  padding: 20px 50px;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  vertical-align: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-shadow: none;
  position: relative;
  outline: none;
}
@media (max-width: 767px) {
  .btn {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.btn:hover {
  text-decoration: none !important;
  opacity: .6;
}
.btn.btn-default {
  border-color: #707070;
  background: #ffffff;
  font-size: 18.75px;
  color: #3B4043;
  font-weight: bold;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 12px 60px;
}
@media (max-width: 767px) {
  .btn.btn-default {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.btn.btn-primary {
  border-color: #B0242E;
  background: #B0242E;
  font-size: 18.75px;
  color: #fff;
  font-weight: bold;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 10px 40px;
}
@media (max-width: 767px) {
  .btn.btn-primary {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.btn.btn-option {
  border-color: #FF8282;
  background: #FF8282;
  font-size: 18.75px;
  color: #fff;
  font-weight: bold;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 18px 40px;
}
.article-team .btn.btn-option {
  border-color: #51AC0C;
  background-color: #51AC0C;
}
@media (max-width: 767px) {
  .btn.btn-option {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.btn.btn-block {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-title {
  font-size: 37.5px;
  line-height: 1.5em;
  text-align: center;
  color: #0a0a0a;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    font-size: 6.4vw;
  }
}

.section-contact {
  padding: 80px 0 120px;
}
@media (max-width: 767px) {
  .section-contact {
    padding: 40px 0 60px;
  }
}
.section-contact .btn-wrap {
  text-align: center;
}

.contact-title {
  font-size: 22.5px;
  color: #3b4043;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 4px solid #707070;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 18px;
    font-size: 4.8vw;
  }
}

.table-contact {
  width: 100%;
  font-size: 22.5px;
  color: #3b4043;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .table-contact {
    font-size: 18px;
  }
}
.table-contact th, .table-contact td {
  font-weight: bold;
  padding: 10px;
}
@media (max-width: 767px) {
  .table-contact th, .table-contact td {
    text-align: left;
  }
}
.table-contact textarea,
.table-contact input[type="email"],
.table-contact input[type="text"] {
  font-weight: normal;
  font-size: 15px;
  text-align: left;
  color: #3b4043;
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  border-radius: 7.5px;
  border: 1px solid #707070;
  height: 42.75px;
  background: #fff;
  width: 100%;
  max-width: 450px;
}
.table-contact textarea.wpcf7c-conf,
.table-contact input[type="email"].wpcf7c-conf,
.table-contact input[type="text"].wpcf7c-conf {
  border: none;
  background: none;
}
@media (max-width: 767px) {
  .table-contact textarea,
  .table-contact input[type="email"],
  .table-contact input[type="text"] {
    font-size: 16px;
  }
}
.table-contact textarea {
  height: 100px;
}
.table-contact .note {
  font-weight: normal;
  font-size: 14px;
}
.table-contact span.wpcf7-list-item {
  margin: 0;
  margin-right: 1em;
}
.table-contact span.wpcf7-not-valid-tip {
  font-size: 16px;
}
@media (max-width: 767px) {
  .table-contact span.wpcf7-not-valid-tip {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .table-contact {
    display: block;
  }
  .table-contact tbody, .table-contact thead, .table-contact tr, .table-contact th, .table-contact td {
    display: block;
    padding: 0;
  }
  .table-contact th {
    margin-bottom: 10px;
  }
  .table-contact tr {
    margin-bottom: 20px;
  }
}

.main {
  padding-top: 64px;
  padding-bottom: 124px;
  background: url("../images/bg-main-pattern.png") -4px -6px;
  background-size: 13px;
}
@media (max-width: 767px) {
  .main {
    padding-top: 20px;
    padding-bottom: 34px;
  }
}

.main-inner {
  max-width: 896px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .main-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 374px) {
  .main-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section + .section {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .section + .section {
    margin-top: 26px;
  }
}

.section-primary .section-header {
  color: #3B82C5;
}
.section-primary .section-heading:before, .section-primary .section-heading:after {
  background-color: #3B82C5;
}
.section-primary .section-box {
  color: #3B82C5;
}
.section-primary .section-box > dt {
  background-color: #3B82C5;
}
.section-primary .section-box-caption {
  color: #3B82C5;
}

.section-secondary .section-header {
  color: #EA5541;
}
.section-secondary .section-heading:before, .section-secondary .section-heading:after {
  background-color: #EA5541;
}
.section-secondary .section-box {
  color: #EA5541;
}
.section-secondary .section-box > dt {
  background-color: #EA5541;
}
.section-secondary .section-box-caption {
  color: #EA5541;
}

.section-tertiary .section-header {
  color: #03AF7A;
}
.section-tertiary .section-heading:before, .section-tertiary .section-heading:after {
  background-color: #03AF7A;
}
.section-tertiary .section-box {
  color: #03AF7A;
}
.section-tertiary .section-box > dt {
  background-color: #03AF7A;
}
.section-tertiary .section-box-caption {
  color: #03AF7A;
}
@media (max-width: 767px) {
  .section-tertiary .section-heading-img img {
    width: auto;
    height: 40px;
  }
}
.section-tertiary.section-tertiary-01 .section-sub > dd:before {
  display: none;
}
.section-tertiary .section-sub > dd {
  position: relative;
  z-index: 0;
}
.section-tertiary .section-sub > dd:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  background: url("../images/section_03_decoration.png") no-repeat center bottom;
  background-size: 100% auto;
  width: 150px;
  height: 150px;
}
@media (max-width: 1023px) {
  .section-tertiary .section-sub > dd:before {
    width: 156px;
    height: 142px;
  }
}
@media (max-width: 767px) {
  .section-tertiary .section-sub > dd:before {
    width: 80px;
    height: 73px;
    right: -20px;
  }
}

.section-header {
  text-align: center;
  font-size: 0;
}
.section-header + .section-body {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .section-header + .section-body {
    margin-top: 10px;
  }
}

.section-heading {
  position: relative;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  font-size: 42px;
  padding-left: 50px;
  padding-right: 50px;
  font-weight: bold;
}
@media (max-width: 1279px) {
  .section-heading {
    font-size: 40px;
  }
}
@media (max-width: 1023px) {
  .section-heading {
    font-size: 34px;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .section-heading {
    font-size: 16px;
    padding-left: 18px;
    padding-right: 18px;
    height: 26px;
    line-height: 26px;
    letter-spacing: -0.06em;
  }
}
@media (max-width: 374px) {
  .section-heading {
    font-size: 15px;
    padding-right: 16px;
    padding-left: 16px;
    white-space: nowrap;
  }
}
.section-heading:before, .section-heading:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  height: 72px;
  width: 4px;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .section-heading:before, .section-heading:after {
    height: 28px;
    width: 2px;
  }
}
.section-heading:before {
  left: 0;
  transform: translateX(18px) rotate(-25deg);
}
@media (max-width: 767px) {
  .section-heading:before {
    transform: translateX(6px) rotate(-25deg);
  }
}
.section-heading:after {
  right: 0;
  transform: translateX(-18px) rotate(25deg);
}
@media (max-width: 767px) {
  .section-heading:after {
    transform: translateX(-6px) rotate(25deg);
  }
}

.section-box {
  background-color: #FFFFFF;
}
.section-box > dt {
  height: 58px;
  line-height: 58px;
  color: #FFFFFF;
  font-size: 36px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.25em;
}
@media (max-width: 767px) {
  .section-box > dt {
    height: 28px;
    line-height: 28px;
    font-size: 16px;
  }
}
.section-box > dd {
  padding: 48px;
}
@media (max-width: 767px) {
  .section-box > dd {
    padding: 25px;
  }
}
@media (max-width: 374px) {
  .section-box > dd {
    padding: 20px 16px;
  }
}

.section-main {
  display: flex;
}
@media (max-width: 767px) {
  .section-main {
    display: block;
  }
}

.section-figure {
  width: 325px;
}
@media (max-width: 1023px) {
  .section-figure {
    width: 240px;
  }
}
@media (max-width: 767px) {
  .section-figure {
    width: 100%;
  }
}

.section-def-list {
  width: calc(100% - 325px);
  padding-left: 16px;
}
@media (max-width: 1023px) {
  .section-def-list {
    width: calc(100% - 240px);
  }
}
@media (max-width: 767px) {
  .section-def-list {
    width: 80%;
    padding-left: 0;
    padding-top: 14px;
  }
}
.section-def-list > li + li {
  margin-top: 14px;
}
@media (max-width: 767px) {
  .section-def-list > li + li {
    margin-top: 6px;
  }
}

.section-def {
  display: flex;
  width: 100%;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section-def {
    min-width: 100%;
    font-size: 0;
  }
}
.section-def > dt {
  font-size: 23px;
  text-align: center;
  border: 1.6px solid;
  width: 86px;
  height: 36px;
  line-height: 34px;
  border-radius: 10px;
}
@media (max-width: 1023px) {
  .section-def > dt {
    font-size: 19px;
    height: 32px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .section-def > dt {
    font-size: 10px;
    height: 16px;
    line-height: 14px;
    border-radius: 4px;
    border-width: 1px;
    width: 32px;
    min-width: 32px;
  }
}
.section-def > dd {
  padding-top: 2px;
  padding-left: 8px;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.1em;
}
@media (max-width: 1023px) {
  .section-def > dd {
    font-size: 21px;
    padding-top: 3px;
  }
}
@media (max-width: 767px) {
  .section-def > dd {
    font-size: 11px;
    padding-top: 1px;
    padding-left: 4px;
  }
}
.section-def > dd small {
  display: block;
  margin-top: 4px;
  font-size: 19px;
}
@media (max-width: 1023px) {
  .section-def > dd small {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .section-def > dd small {
    font-size: 10px;
    display: inline;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .section-def > dd br {
    display: none;
  }
}
.section-def .comma {
  letter-spacing: -0.6em;
}
@media (max-width: 767px) {
  .section-def .price-images {
    white-space: nowrap;
    font-size: 0;
  }
}
.section-def .price-image {
  height: 44px;
  width: auto;
}
@media (max-width: 1023px) {
  .section-def .price-image {
    height: 38px;
    transform: translateY(-1px);
  }
}
@media (max-width: 767px) {
  .section-def .price-image {
    height: 16px;
    display: inline-block;
    transform: translateY(-2px);
  }
}
.section-def .price-image:first-child {
  margin-top: -6px;
}
.section-def .price-image img {
  height: 100%;
  width: auto;
}
.section-def .price-image + .price-image {
  margin-top: 9px;
}
@media (max-width: 767px) {
  .section-def .price-image + .price-image {
    padding-left: 8px;
    margin-top: 0;
  }
}

.section-sub {
  margin-top: 16px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .section-sub {
    margin-top: 10px;
    font-size: 12px;
  }
}
.section-sub > dt {
  font-weight: bold;
  font-size: 29px;
}
@media (max-width: 767px) {
  .section-sub > dt {
    font-size: 12px;
  }
}
.section-sub > dt small {
  font-size: 18px;
}
@media (max-width: 767px) {
  .section-sub > dt small {
    font-size: 10px;
  }
}

.section-box-caption {
  display: block;
  text-align: right;
  margin-top: 5px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section-box-caption {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .sp-dn {
    display: none !important;
  }
}

.sp-db {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-db {
    display: block !important;
  }
}

.pc-dn {
  display: none !important;
}
@media (max-width: 767px) {
  .pc-dn {
    display: block !important;
  }
}

.tab-db {
  display: none !important;
}
@media (max-width: 1023px) {
  .tab-db {
    display: block !important;
  }
}

@media (max-width: 1023px) {
  .tab-dn {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp_only {
    display: block !important;
  }
}
