/* ==========================
Base
========================== */
html {
  font-size: 62.5%;
}

body {
  color: #121212;
  font-family: 'Noto Sans JP', sans-serif;
}

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

a {
  color: #FC216F;
}

a:hover, a:focus {
  opacity: 0.8;
}

button:hover, button:focus {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

em, address {
  font-style: normal;
}

/* ==========================
Component (Reusable Block)
========================== */
/* === Button === */
.btn {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  width: 290px;
  padding: 11px 25px;
  background-color: #E70012;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .btn {
    width: 335px;
  }
}

.btn_small-txt {
  display: block;
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.btn_big-txt {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .05em;
}

/* === Section Title === */
.sect-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .sect-title {
    font-size: 2.4rem;
  }
}

.sect-title::first-letter {
  font-size: 5.6rem;
}

@media (max-width: 768px) {
  .sect-title::first-letter {
    font-size: 3.2rem;
  }
}

/* === Dot Text === */
.dot-text {
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 1em 0.18182em;
  background-image: url(img/dot.svg);
}

.dot-text--yellow {
  background-image: url(img/dot_yellow.svg);
}

/* === Table === */
.table {
  overflow-x: auto;
}

.table_inner {
  width: 100%;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
}

@media (max-width: 768px) {
  .table_inner {
    width: auto;
  }
}

.table_th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  background-color: #121212;
  border: 1px solid #121212;
  vertical-align: middle;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.71429;
  white-space: normal;
}

@media (max-width: 768px) {
  .table_th {
    white-space: nowrap;
  }
}

.table_th--primary {
  position: relative;
  background-color: #A90714;
  border-color: #A90714;
  color: #fff;
}

.table_th--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 6px solid #A90714;
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.table_th--sp-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
}

@media (max-width: 768px) {
  .table_th--sp-sticky {
    z-index: 1;
  }
}

.table_th--sp-sticky::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .table_th--sp-sticky::after {
    border: 1px solid #121212;
  }
}

.table_td {
  padding: 12px;
  background-color: #fff;
  border: 2px solid #121212;
  vertical-align: middle;
  font-size: 1.4rem;
  line-height: 1.71429;
  white-space: normal;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .table_td {
    white-space: nowrap;
  }
}

.table_td--primary {
  position: relative;
  border-color: #A90714;
}

.table_td--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 6px solid #A90714;
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.table_width-controller {
  width: 140px;
}

@media (max-width: 768px) {
  .table_width-controller {
    width: 110px;
  }
}

.table_body-tr:last-child .table_td--primary::after {
  border-bottom-width: 6px;
}

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

/* === Numbering Panel === */
.numbering-panel {
  position: relative;
  width: 194px;
  -webkit-box-shadow: 0px 2px 4px 0px #00000026;
          box-shadow: 0px 2px 4px 0px #00000026;
}

.numbering-panel_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 37px;
  height: 32px;
  background-color: #A90714;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

.numbering-panel_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 42px;
  padding: 14px;
  background-color: #f0f0f0;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .05em;
}

/* === Form === */
.form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 53px;
  padding: 14px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
  line-height: 1.5625;
}

.form-text::-webkit-input-placeholder {
  color: #9e9e9e;
}

.form-text:-ms-input-placeholder {
  color: #9e9e9e;
}

.form-text::-ms-input-placeholder {
  color: #9e9e9e;
}

.form-text::placeholder {
  color: #9e9e9e;
}

.form-text:not(:placeholder-shown) {
  background-color: #fff;
  border: 1px solid #483527;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 53px;
  padding: 14px;
  background-color: #F1F1F1;
  border: none;
  border-radius: 4px;
  color: #9E9E9E;
  font-size: 1.6rem;
  line-height: 1.5625;
}

.form-select:valid {
  background-color: #fff;
  border: 1px solid #483527;
}

.form-zip-btn {
  padding: 14px;
  background: none;
  border: 1px solid #275DC5;
  border-radius: 8px;
  color: #275DC5;
  font-size: 1.6rem;
  line-height: 1.5625;
  cursor: pointer;
}

.wpcf7-form-control-wrap {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 21px;
}

@media (max-width: 768px) {
  .wpcf7-form-control-wrap {
    margin-top: 8px;
    margin-left: 0;
  }
}

.wpcf7-response-output {
  padding: 10px;
  text-align: center;
  font-size: 2rem;
}

.form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .form_item {
    display: block;
  }
}

.form_item:not(:first-child) {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .form_item:not(:first-child) {
    margin-top: 24px;
  }
}

.form_item--short .wpcf7-form-control-wrap {
  max-width: 240px;
}

@media (max-width: 768px) {
  .form_item--short .wpcf7-form-control-wrap {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .form_item--has-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .form_item--has-btn .form_title {
    width: 100%;
  }
}

.form_item--has-btn .wpcf7-form-control-wrap {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

.form_item--has-btn .form-zip-btn {
  margin-left: 16px;
}

@media (max-width: 768px) {
  .form_item--has-btn .form-zip-btn {
    margin-top: 16px;
    margin-left: 0;
  }
}

.form_title {
  display: block;
  width: 161px;
  text-align: right;
  font-size: 1.8rem;
  line-height: 1.38889;
}

@media (max-width: 768px) {
  .form_title {
    width: auto;
    text-align: left;
  }
}

.form_title--has-note {
  padding-bottom: 24px;
}

@media (max-width: 768px) {
  .form_title--has-note {
    padding-bottom: 0;
  }
}

.form_required {
  color: #A90714;
}

@media (max-width: 768px) {
  .form_required {
    display: inline-block;
  }
}

.form_control {
  display: block;
  width: 100%;
}

.form .your-prefecture {
  position: relative;
  max-width: 240px;
}

@media (max-width: 768px) {
  .form .your-prefecture {
    max-width: none;
  }
}

.form .your-prefecture::after {
  content: '';
  display: block;
  position: absolute;
  top: 24px;
  right: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #A90714 transparent transparent transparent;
}

.form .wpcf7-radio {
  margin-top: -12px;
  margin-left: -36px;
  width: auto;
}

@media (max-width: 768px) {
  .form .wpcf7-radio {
    margin-top: 0;
    margin-left: 0;
  }
}

.form .wpcf7-list-item {
  display: inline-block;
  margin-top: 12px;
  margin-left: 36px;
}

@media (max-width: 768px) {
  .form .wpcf7-list-item {
    display: block;
    margin-top: 12px;
    margin-left: 0;
  }
}

.form [name="information-session"] {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.form [name="information-session"]:checked + .wpcf7-list-item-label {
  cursor: auto;
}

.form [name="information-session"]:checked + .wpcf7-list-item-label::before {
  background-color: #A90714;
  cursor: auto;
}

.form [name="information-session"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  cursor: auto;
}

.form .wpcf7-list-item-label {
  position: relative;
  padding-left: 32px;
  font-size: 1.6rem;
  line-height: 1.25;
  cursor: pointer;
}

.form .wpcf7-list-item-label::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #FFF;
  border: 1px solid #A90714;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.form .wpcf7-list-item-label::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 12px;
  height: 12px;
  background: url(img/form_radio-check.svg) center/cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  cursor: pointer;
}

.form .invalid {
  background-color: #FFA4A4;
  color: #fff;
}

.form .invalid::-webkit-input-placeholder {
  color: #fff;
}

.form .invalid:-ms-input-placeholder {
  color: #fff;
}

.form .invalid::-ms-input-placeholder {
  color: #fff;
}

.form .invalid::placeholder {
  color: #fff;
}

.form_note {
  margin-top: 8px;
  margin-left: 182px;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .form_note {
    margin-left: 0;
  }
}

.form_detail {
  margin-top: 6px;
  margin-left: 182px;
  font-size: 1.2rem;
  line-height: 1.33333;
}

@media (max-width: 768px) {
  .form_detail {
    margin-top: 16px;
    margin-left: 0;
  }
}

.form_privacy-policy-wrap {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 768px) {
  .form_privacy-policy-wrap {
    margin-top: 24px;
  }
}

.form_privacy-policy {
  font-size: 1.6rem;
  letter-spacing: .05em;
}

.form_annotation {
  margin-top: 24px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .form_annotation {
    margin-top: 16px;
    font-size: 1.2rem;
  }
}

.form_submit {
  display: block;
  width: 100%;
  padding: 21px;
  margin-top: 36px;
  background-color: #A90714;
  border: none;
  outline: none;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: .1em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .form_submit {
    padding: 16px;
    margin-top: 24px;
  }
}

/* === Floating Button === */
.floating-btn {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 2px #2D2D2D26;
          box-shadow: 0px 0px 20px 2px #2D2D2D26;
  text-align: center;
}

/* === Header === */
.header {
  padding: 12px 20px;
  background-color: #FFF132;
}

@media (max-width: 768px) {
  .header {
    padding-top: 16px;
    padding-bottom: 20px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1020px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .header_inner {
    display: block;
    max-width: 335px;
  }
}

.header_utils {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header_logo {
  width: 125px;
}

@media (max-width: 768px) {
  .header_logo {
    width: 72px;
  }
}

.header_site-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 26px;
  color: #483527;
  font-size: 1.6rem;
  line-height: 1.42857;
}

@media (max-width: 768px) {
  .header_site-title {
    margin-left: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .header_btn {
    margin-top: 12px;
  }
}

/* === Content === */
.cont {
  padding: 80px 20px;
}

.cont_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1020px;
  margin: 0 auto;
}

/* === Footer === */
.footer {
  padding: 40px 0;
  background-color: #121212;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.footer_inner {
  max-width: 1020px;
  padding: 0 20px;
  margin: 0 auto;
  color: #fff;
}

.footer_company {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.footer_head-office {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.footer_address {
  margin-top: 8px;
  font-size: 1.4rem;
  letter-spacing: .05em;
  line-height: 1.21429;
}

.footer_copyright {
  display: block;
  margin-top: 102px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 120px;
  }
}

/* ==========================
Unreusable Block
========================== */
/* === Hero Area === */
.hero {
  position: relative;
  z-index: 1;
  background-color: #121212;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .hero {
    background-image: url(img/hero_bg-sp.png);
  }
}

.hero_inner {
  padding-top: 39px;
  padding-bottom: 32px;
}

@media (max-width: 768px) {
  .hero_inner {
    padding-top: 35px;
    padding-bottom: 330px;
  }
}

.hero_img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
  background: url(img/hero_bg.jpg) left/cover;
  -webkit-clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
  .hero_img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 290px;
    -webkit-clip-path: polygon(0% 50px, 100% 5%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 50px, 100% 5%, 100% 100%, 0% 100%);
  }
}

.hero_appeal {
  width: 428px;
  padding-left: 35px;
  font-family: 'Shippori Mincho B1', serif;
}

@media (max-width: 768px) {
  .hero_appeal {
    width: 288px;
    padding-left: 0;
    margin: 0 auto;
  }
}

.hero_appeal-since {
  position: relative;
  padding: 5px;
  text-align: center;
  background-color: #fff;
  font-size: 2.8rem;
}

@media (max-width: 768px) {
  .hero_appeal-since {
    font-size: 1.9rem;
  }
}

.hero_appeal-since::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 9px 6px 9px 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.hero_appeal-txt {
  position: relative;
  margin-top: 29px;
  color: #fff;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .03em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero_appeal-txt {
    font-size: 4rem;
  }
}

.hero_appeal-sales {
  position: absolute;
  padding: 8px 11px 12px;
  background-color: #CF0B1A;
  font-size: 3.2rem;
}

@media (max-width: 768px) {
  .hero_appeal-sales {
    padding: 7px;
    font-size: 2rem;
  }
}

.hero_appeal-blank {
  display: inline-block;
  width: 67px;
}

@media (max-width: 768px) {
  .hero_appeal-blank {
    width: 45px;
  }
}

.hero_appeal-l1 {
  display: inline-block;
  margin-top: -16px;
}

.hero_appeal-l1-1 {
  display: inline-block;
  color: #FFF132;
  font-size: 10.3rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero_appeal-l1-1 {
    font-size: 6.9rem;
  }
}

.hero_appeal-l1-2 {
  display: inline-block;
  color: #FFF132;
  font-size: 5.6rem;
  line-height: 1.33333;
  letter-spacing: -.01em;
}

@media (max-width: 768px) {
  .hero_appeal-l1-2 {
    font-size: 3.8rem;
  }
}

.hero_appeal-l2 {
  display: inline-block;
  margin-top: 20px;
  color: #FFF132;
  line-height: 1.33333;
  letter-spacing: -.01em;
}

.hero_appeal-l3 {
  display: inline-block;
  line-height: 1.33333;
}

.hero-bottom {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #CF0B1A;
}

.hero-bottom_copy {
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.20833;
}

@media (max-width: 768px) {
  .hero-bottom_copy {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}

/* === About === */
.about {
  padding-top: 100px;
}

@media (max-width: 768px) {
  .about {
    padding-top: 16px;
  }
}

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

@media (max-width: 768px) {
  .about_inner {
    display: block;
  }
}

.about_cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about_title {
  padding: 22px 18px 22px 16px;
  background-color: #121212;
  border-left: 6px solid #CF0B1A;
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 3.6rem;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .about_title {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 2.4rem;
  }
}

.about_desc {
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .about_desc {
    margin-top: 16px;
  }
}

.about_desc--accent {
  color: #A90714;
  text-decoration: underline;
  text-underline-offset: .3em;
}

.about_img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  width: 427px;
  margin-left: 24px;
}

@media (max-width: 768px) {
  .about_img {
    width: 100%;
    margin-top: 92px;
    margin-left: 0;
  }
}

.about_slogan {
  position: absolute;
  top: -80px;
  right: 20px;
  -webkit-transform: rotate(16deg);
          transform: rotate(16deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 160px;
  height: 160px;
  padding: 20px;
  background-color: #A90714;
  border-radius: 50%;
  text-align: center;
  font-family: 'Shippori Mincho B1', serif;
}

@media (max-width: 768px) {
  .about_slogan {
    top: -54px;
    width: 107px;
    height: 107px;
    padding: 13px;
  }
}

.about_slogan::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -6px;
  left: 28%;
  width: 40px;
  height: 20px;
  background-color: #A90714;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 60%, 0 100%);
          clip-path: polygon(20% 0, 100% 0, 100% 60%, 0 100%);
}

@media (max-width: 768px) {
  .about_slogan::after {
    bottom: -4px;
  }
}

.about_slogan-normal {
  color: #fff;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .about_slogan-normal {
    font-size: 0.9rem;
  }
}

.about_slogan-large {
  margin-top: 8px;
  color: #FFF132;
  font-size: 2rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about_slogan-large {
    font-size: 1.3rem;
  }
}

.about_slogan-exlarge {
  color: #FFF132;
  font-size: 4rem;
}

@media (max-width: 768px) {
  .about_slogan-exlarge {
    font-size: 2.7rem;
  }
}

.about_slogan-exlarge--sm {
  font-size: 2.8rem;
}

@media (max-width: 768px) {
  .about_slogan-exlarge--sm {
    font-size: 1.9rem;
  }
}

/* === Reasons === */
.reasons-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 29px 35px;
  border: 2px solid #fff;
}

@media (max-width: 768px) {
  .reasons-list {
    padding: 32px 24px;
  }
}

.reasons-list_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
}

.reasons-list_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .reasons-list_body {
    margin-left: 17px;
  }
}

.reasons-list_title {
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 2.4rem;
  line-height: 1.16667;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .reasons-list_title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.reasons-list_desc {
  margin-top: 16px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .reasons-list_desc {
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.reasons {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(img/reasons_bg.png) center/cover #000;
}

@media (max-width: 768px) {
  .reasons {
    padding-top: 40px;
  }
}

.reasons_title {
  color: #fff;
}

.reasons_title-accent {
  color: #FFF132;
  font-size: 4.8rem;
}

@media (max-width: 768px) {
  .reasons_title-accent {
    font-size: 3.2rem;
  }
}

.reasons_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 150px 150px;
      grid-template-rows: 150px 150px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .reasons_list {
    display: block;
    margin-top: 24px;
  }
}

/* === Evidence === */
.evidence {
  padding-bottom: 64px;
}

.evidence_title {
  padding-left: 16px;
  border-left: 16px solid #CF0B1A;
}

@media (max-width: 768px) {
  .evidence_title {
    padding-left: 12px;
    border-left-width: 8px;
  }
}

.evidence_title::first-letter {
  color: #CF0B1A;
}

.evidence_title-accent {
  color: #CF0B1A;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #FFF132), color-stop(40%, transparent));
  background-image: linear-gradient(to top, #FFF132 40%, transparent 40%);
}

.evidence_title-accent--lg {
  font-size: 4.8rem;
}

@media (max-width: 768px) {
  .evidence_title-accent--lg {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .evidence_title-accent--lg-sp {
    font-size: 3.2rem;
  }
}

.evidence_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}

.evidence_chart {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  border: 4px solid #000;
}

@media (max-width: 768px) {
  .evidence_chart {
    padding: 28px 20px;
    border-width: 3px;
  }
}

.evidence_chart::before {
  content: '';
  display: block;
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: -4px;
  right: -4px;
  z-index: -1;
  background-color: #fff;
}

@media (max-width: 768px) {
  .evidence_chart::before {
    top: 20px;
    bottom: 20px;
  }
}

.evidence_chart::after {
  content: '';
  display: block;
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 32px;
  right: 32px;
  z-index: -1;
  background-color: #fff;
}

@media (max-width: 768px) {
  .evidence_chart::after {
    left: 20px;
    right: 20px;
  }
}

.evidence_chart-caption {
  text-align: center;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  .evidence_chart-caption {
    font-size: 1.6rem;
  }
}

.evidence_chart-img {
  max-width: 545px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .evidence_chart-img {
    max-width: 299px;
  }
}

.evidence_appeal {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  margin-top: 83px;
  margin-left: 36px;
}

@media (max-width: 768px) {
  .evidence_appeal {
    margin-left: 0;
    margin-top: 40px;
  }
}

.evidence_copy {
  position: relative;
  padding: 30px;
  background-color: #000;
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 2rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .evidence_copy {
    padding: 28px;
    text-align: left;
    font-size: 1.8rem;
  }
}

.evidence_copy::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 12px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.evidence_copy-lg {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .evidence_copy-lg {
    font-size: 2.8rem;
  }
}

.evidence_logo {
  max-width: 352px;
  margin-top: 24px;
}

/* === Comment === */
.comment {
  padding-top: 64px;
  background: url(img/comment_bg.png) center/cover #000;
}

@media (max-width: 768px) {
  .comment {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.comment_title {
  color: #fff;
}

.comment_title::first-letter {
  color: #CF0B1A;
}

.comment_examples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-left: -24px;
}

@media (max-width: 768px) {
  .comment_examples {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
}

.comment_example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 24px;
}

@media (max-width: 768px) {
  .comment_example {
    margin-top: 36px;
    margin-left: 0;
  }
}

.comment_voice {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 38px 36px 36px;
  margin-top: 32px;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .comment_voice {
    padding: 25px 20px 24px;
  }
}

.comment_voice::before {
  content: '';
  display: block;
  position: absolute;
  top: -52px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 26px 22px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.comment_voice-em {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #FFF132), color-stop(40%, transparent));
  background-image: linear-gradient(to top, #FFF132 40%, transparent 40%);
  font-weight: bold;
}

.comment_commenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .comment_commenter {
    margin-top: 22px;
  }
}

.comment_portrait {
  width: 120px;
}

.comment_info {
  margin-left: 20px;
}

.comment_name {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .03em;
}

.comment_job {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: .03em;
}

/* === Profit === */
.profit {
  background: -webkit-gradient(linear, left top, left bottom, from(#95000C), to(#A90714));
  background: linear-gradient(180deg, #95000C 0%, #A90714 100%);
}

@media (max-width: 768px) {
  .profit {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.profit_title {
  color: #fff;
}

.profit_examples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .profit_examples {
    display: block;
    margin-top: 24px;
  }
}

.profit_example {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.profit_example:not(:first-child) {
  margin-left: 24px;
}

@media (max-width: 768px) {
  .profit_example:not(:first-child) {
    margin-top: 16px;
    margin-left: 0;
  }
}

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

.profit_catch {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  text-align: center;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.66667;
  letter-spacing: .1em;
}

@media (max-width: 768px) {
  .profit_catch {
    font-size: 2.4rem;
  }
}

.profit_catch::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -44px;
  border-width: 12px 7px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.profit_catch::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: -44px;
  border-width: 12px 7px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.profit_btn-wrap {
  margin-top: 36px;
}

@media (max-width: 768px) {
  .profit_btn-wrap {
    margin-top: 24px;
  }
}

.profit_btn {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 16px;
  background-color: #fff;
  color: #A90714;
  -webkit-box-shadow: 0px 4px 0px 0px #500006;
          box-shadow: 0px 4px 0px 0px #500006;
}

@media (max-width: 768px) {
  .profit_btn {
    padding-top: 13px;
    padding-bottom: 15px;
  }
}

.profit_btn .btn_big-txt {
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  .profit_btn .btn_big-txt {
    font-size: 1.8rem;
  }
}

/* === Comparision === */
@media (max-width: 768px) {
  .comparison {
    padding-top: 40px;
  }
}

.comparison_title {
  padding-left: 21px;
  border-left: 16px solid #CF0B1A;
}

@media (max-width: 768px) {
  .comparison_title {
    padding-left: 12px;
    border-left-width: 8px;
  }
}

.comparison_title::first-letter {
  color: #CF0B1A;
}

.comparison_table {
  margin-top: 40px;
  -webkit-box-shadow: 0px 4px 8px 0px #DDD1C8;
          box-shadow: 0px 4px 8px 0px #DDD1C8;
}

@media (max-width: 768px) {
  .comparison_table {
    margin-top: 24px;
    margin-right: -20px;
  }
}

/* === Call To Action === */
.cta {
  padding-top: 60px;
  padding-bottom: 117px;
  background-image: conic-gradient(at 50% 100%, #FFF132 23%, #fff 23%, #fff 77%, #FFF132 77%);
}

@media (max-width: 768px) {
  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.cta_title {
  text-align: center;
  color: #121212;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 3.6rem;
  line-height: 1.33333;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .cta_title {
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

.cta_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px;
  margin-top: 36px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .cta_body {
    display: block;
    padding: 12px 12px 20px;
  }
}

.cta_img {
  width: 466px;
}

@media (max-width: 768px) {
  .cta_img {
    width: 100%;
  }
}

.cta_list {
  margin-left: 24px;
}

@media (max-width: 768px) {
  .cta_list {
    margin-top: 20px;
    margin-left: 0;
  }
}

.cta_list-item {
  position: relative;
  max-width: 410px;
  padding-left: 50px;
  color: #121212;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.45455;
  letter-spacing: .1em;
}

@media (max-width: 768px) {
  .cta_list-item {
    padding-left: 42px;
  }
}

.cta_list-item + .cta_list-item {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .cta_list-item + .cta_list-item {
    margin-top: 24px;
  }
}

.cta_list-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 39px;
  height: 36px;
  background: url(img/list-icon.svg) center/cover;
}

@media (max-width: 768px) {
  .cta_list-item::before {
    width: 30px;
    height: 28px;
  }
}

/* === Flow === */
.flow {
  padding-top: 56px;
  padding-bottom: 38px;
}

@media (max-width: 768px) {
  .flow {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.flow_title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .flow_title {
    font-size: 2.4rem;
  }
}

.flow_list-wrap {
  margin-top: 34px;
}

@media (max-width: 768px) {
  .flow_list-wrap {
    overflow-x: scroll;
    padding-bottom: 12px;
    padding-left: 4px;
    margin-top: 22px;
    margin-right: -20px;
  }
}

.flow_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -12px;
  margin-left: -12px;
}

@media (max-width: 768px) {
  .flow_list {
    width: 1023px;
    margin-top: 0;
    margin-left: 0;
  }
}

.flow_list-item {
  margin-top: 12px;
  margin-left: 12px;
}

@media (max-width: 768px) {
  .flow_list-item {
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .flow_list-item:not(:first-child) {
    margin-left: 12px;
  }
}

/* === Request === */
.request {
  padding-top: 0;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .request {
    padding-bottom: 169px;
    padding-left: 0;
    padding-right: 0;
  }
}

.request_inner {
  border: 2px solid #000;
}

@media (max-width: 768px) {
  .request_inner {
    border: none;
  }
}

.request_head {
  padding: 24px;
  background-color: #000;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .request_head {
    padding: 26px 20px;
    border-radius: 0;
  }
}

.request_title {
  font-size: 3.2rem;
  letter-spacing: .12em;
}

@media (max-width: 768px) {
  .request_title {
    font-size: 2.4rem;
    line-height: 1.33333;
    letter-spacing: 0;
  }
}

.request_note {
  margin-top: 16px;
  font-size: 1.6rem;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .request_note {
    margin-top: 12px;
    font-size: 1.4rem;
    line-height: 1.57143;
    letter-spacing: .05em;
  }
}

.request_form-wrap {
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .request_form-wrap {
    padding-top: 32px;
    padding-bottom: 0;
  }
}

.request_form {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

/* === Thanks === */
.thanks {
  padding-top: 51px;
  padding-bottom: 100px;
  text-align: center;
}

@media (max-width: 768px) {
  .thanks {
    padding-top: 27px;
    padding-bottom: 120px;
  }
}

.thanks_title {
  font-size: 2.8rem;
  line-height: 1.25;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .thanks_title {
    font-size: 2.4rem;
    line-height: 1.08333;
  }
}

.thanks_message {
  margin-top: 16px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4375;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .thanks_message {
    margin-top: 12px;
    font-size: 1.6rem;
  }
}

.thanks_detail {
  margin-top: 12px;
  font-size: 1.6rem;
  line-height: 1.3125;
}

.thanks_link-wrap {
  margin-top: 36px;
}

@media (max-width: 768px) {
  .thanks_link-wrap {
    margin-top: 12px;
  }
}

.thanks_link {
  color: #A90714;
  font-size: 1.8rem;
  letter-spacing: .05em;
}

/* ==========================
Helper
========================== */
.only-sp {
  display: none;
}

@media (max-width: 768px) {
  .only-sp {
    display: block;
  }
}

.only-pc {
  display: block;
}

@media (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

.primary {
  color: #A90714;
}

.yellow {
  color: #FFF132;
}

.bold {
  font-weight: bold;
}

.marker {
  background-image: linear-gradient(to top, #FFF132 12px, transparent 12px);
}
/*# sourceMappingURL=style.css.map */