@charset "UTF-8";
/*============================================================
　変数
============================================================*/
/*============================================================
　mixin
============================================================*/
/*メディアクエリ呼び出し方
.example {
    color: blue;
    @include mq() { // 引数を省略（初期値はspの599px）
        color: yellow;
    }
    @include mq(tb) { // 引数を個別に指定
        color: red;
    }
}
------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700);
/*呼び出し方--------------------------------------------------
@include font-face('volvo', '../../webfonts/volvo-bold', bold（weight）, null（style）, ttf（type）);
.example {
    @include fontsize(12);
}
a {
    @include linkcolor(#3cf);
}
------------------------------------------------------------*/
/*フォントフェイス
------------------------------------------------------------*/
/*フォントファミリー
------------------------------------------------------------*/
/*フォントサイズ
------------------------------------------------------------*/
/*リンクカラー
------------------------------------------------------------*/
/*hタグ共通
------------------------------------------------------------*/
/*ベンダープレフィックス
.example {
    @include ProprtySetPrefix(transition, 0.5s);
    または
    @include ValueSetPrefix(display, flex);
}
------------------------------------------------------------*/
/*透明度
.example {
    @include opacity(0.5);
}
------------------------------------------------------------*/
/*ポジションabsolute
.example {
    @include absolute(5px, 20px, 10px, 15px);
    または
    @include absolute($top:0, $left:0);
}
------------------------------------------------------------*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

img a {
  outline: none;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

label {
  cursor: pointer;
}

address {
  font-style: normal;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("../webfonts/icomoon.eot");
  src: url("../webfonts/icomoon.eot?#iefix") format("eot"), url("../webfonts/icomoon.woff") format("woff"), url("../webfonts/icomoon.svg") format("svg"), url("../webfonts/icomoon.ttf") format("ttf");
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* 基準を10px */
}
@media (max-width: 559px) {
  html {
    font-size: 56.25%;
  }
}

/*
@media only screen and (min-width:651px) {651以上のスマホ・タブレット
    html {
        font-size: 71.4286%;16px基準
    }
}
@media only screen and (min-width:961px) {961以上のタブレット・PC
    html {
        font-size: 75.8929%;17px基準
    }
}
*/
body {
  font-family: "Roboto", Noto Sans JP, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic Pro, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #1a1a1a;
  line-height: 1.85;
  text-align: left;
  text-rendering: optimizeSpeed;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  line-height: 1.5;
  margin-bottom: 1em;
}

p {
  margin-bottom: 1em;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mb90 {
  margin-bottom: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

.br-pc {
  display: inline;
}
@media (max-width: 559px) {
  .br-pc {
    display: none;
  }
}
.br-sp {
  display: none;
}
@media (max-width: 559px) {
  .br-sp {
    display: inline;
  }
}

/*
.case__align--center {
    text-align: center;
    @include mq(sp) {
        text-align: left;
    }
}
*/
.tel--address {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 1em 0;
}
@media (max-width: 559px) {
  .tel--address {
    font-size: 33.3333333333px;
    font-size: 3.3333333333rem;
    line-height: 1.2;
    text-align: center;
  }
}
.tel--address a {
  text-decoration: none;
  color: #b90b0b;
}
.tel--address a:hover, .tel--address a:active, .tel--address a:focus {
  color: #f33737;
}
.tel--address a::before {
  font-family: "icomoon";
  font-weight: 400;
  padding-right: 5px;
  content: "\e923";
}
.tel--address span {
  font-size: 20px;
  font-size: 2rem;
  margin-left: 0.5em;
}
@media (max-width: 559px) {
  .tel--address span {
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: 0;
  }
}

.header {
  height: 60px;
  background: #ffffff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 50px 5px;
}
@media (max-width: 959px) {
  .header {
    height: 50px;
    padding: 7px 30px;
  }
}
.header .logo {
  width: 180px;
  height: auto;
  margin: 0;
}
@media (max-width: 559px) {
  .header .logo {
    width: 150px;
  }
}

.gotop {
  position: fixed;
  z-index: 100;
  bottom: 60px;
  right: 3%;
}
.gotop img {
  width: 50px;
  height: auto;
}

.footer {
  color: #aaa5a5;
  background: #252525;
  padding: 40px 50px;
}
@media (max-width: 959px) {
  .footer {
    padding: 40px 30px;
  }
}
@media (max-width: 559px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.footer__bnr {
  width: 100%;
  margin: 40px auto 20px;
  box-sizing: border-box;
}
.footer__bnr img {
  margin: 0 auto;
}
.footer__nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.footer__nav--item {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 12px;
}
.footer__nav--item a {
  color: #aaa5a5;
  text-decoration: none;
}
.footer__nav--item a:hover, .footer__nav--item a:active, .footer__nav--item a:focus {
  color: #dcd9d9;
}
.footer__nav--item a::before {
  font-size: 11px;
  font-size: 1.1rem;
  font-family: "icomoon";
  content: "\e911";
  padding-right: 2px;
}
.footer__box {
  margin: 40px auto 5px;
}
@media (max-width: 559px) {
  .footer__box {
    margin: 0px auto 5px;
  }
}
.footer__box img {
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px;
}
@media (max-width: 559px) {
  .footer__box img {
    max-width: 180px;
  }
}
.footer__box p {
  font-size: 11px;
  font-size: 1.1rem;
}
.footer .copyright {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0;
  margin: 30px 0 0;
}

main {
  margin: 0;
  padding: 0;
  position: relative;
}

.hero {
  width: 100%;
  height: 80vh;
  min-height: 650px;
  max-height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 959px) {
  .hero {
    position: static;
    overflow: visible;
    height: auto;
    min-height: auto;
    max-height: 100%;
  }
}
.hero__img--fit {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}
@supports (object-fit: cover) {
  .hero__img--fit {
    position: static;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    object-position: 50% 50%;
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}
.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url(../images/pattern.png);
  background-repeat: repeat;
}
@media (max-width: 959px) {
  .hero::before {
    display: none;
  }
}
.hero__inner {
  padding: 50px;
  max-width: 1540px;
  height: auto;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  color: #FFFFFF;
  text-align: left;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 959px) {
  .hero__inner {
    padding: 30px;
  }
}
@media (max-width: 559px) {
  .hero__inner {
    padding: 20px;
  }
}
@media (max-width: 959px) {
  .hero__inner {
    position: static;
    color: #252525;
    text-align: left;
  }
}
.hero__area {
  width: 100%;
  height: auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 959px) {
  .hero__area {
    flex-flow: column nowrap;
    align-items: flex-start;
  }
}
.hero__area--ttl {
  font-size: 50px;
  font-size: 5rem;
  margin-bottom: 1em;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .hero__area--ttl {
    font-size: 35px;
    font-size: 3.5rem;
    white-space: normal;
  }
}
@media (max-width: 559px) {
  .hero__area--ttl {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.hero__area--ttl rt {
  font-size: 30px;
  font-size: 3rem;
}
@media (max-width: 559px) {
  .hero__area--ttl rt {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.hero__area--lead {
  font-size: 18px;
  font-size: 1.8rem;
}
.hero__area--lead.start {
  font-weight: 600;
  margin-bottom: 2em;
}
.hero__area--lead.end {
  margin-bottom: 0;
}
.hero__area--copy {
  max-width: 60%;
  padding-right: 2%;
}
@media (max-width: 959px) {
  .hero__area--copy {
    max-width: 100%;
    padding-right: 0;
  }
}
.hero__area--entry {
  min-width: 40%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: auto;
}
@media (max-width: 959px) {
  .hero__area--entry {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.hero__area--entry .msg {
  width: 100%;
  position: relative;
  display: inline-block;
  margin: 15px 0 5px;
  padding: 10px 30px;
  background: #edfdfd;
  font-size: 15px;
  font-size: 1.5rem;
  color: #0e345a;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.hero__area--entry .msg:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 10px solid #edfdfd;
}
@media (max-width: 959px) {
  .hero__area--entry .msg {
    display: none;
  }
}
.hero__area--entry .strlist {
  width: 100%;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 959px) {
  .hero__area--entry .strlist {
    display: none;
    width: auto;
    margin: 30px auto 0;
    flex-flow: row wrap;
  }
}
.hero__area--entry .strlist li {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
  width: calc(100%/3);
  min-width: 20%;
  margin: 0 10px 20px 0;
  padding: 15px;
  display: block;
  border: 1px solid #ffffff;
  border-radius: 2px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.hero__area--entry .strlist li:last-child {
  margin-right: 0;
}
.hero__area--entry .strlist li span {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline;
}
@media (max-width: 959px) {
  .hero__area--entry .strlist li {
    min-width: 100%;
    margin: 0 0 10px 0;
    border: 1px solid #252525;
    flex-flow: row nowrap;
  }
}
@media (max-width: 559px) {
  .hero__area--entry .strlist li {
    font-size: 20px;
    font-size: 2rem;
  }
}
.hero__area--entry .btn {
  font-size: 21px;
  font-size: 2.1rem;
  font-feature-settings: "palt";
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0 0;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 959px) {
  .hero__area--entry .btn {
    width: 100%;
    max-width: auto;
    min-width: auto;
  }
}
.hero__area--entry .btn a {
  color: #ffffff;
  width: 100%;
  display: block;
  padding: 1.5em 3em 1.5em 3.25em;
  text-decoration: none;
  background-color: #b90b0b;
  border: 1px solid #b90b0b;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transition: color 0.2s ease 0s, border 0.4s;
}
@media (max-width: 959px) {
  .hero__area--entry .btn a {
    padding: 1.5em;
  }
}
.hero__area--entry .btn a span {
  position: relative;
  z-index: 2;
}
.hero__area--entry .btn a span::before {
  font-family: "icomoon";
  padding-right: 10px;
  font-size: 24px;
  font-size: 2.4rem;
  content: "\e92c";
  padding-right: 15px;
}
.hero__area--entry .btn a:hover {
  border: 1px solid #e90e0e;
}
.hero__area--entry .btn a::after {
  background-color: #e90e0e;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate3d(-100%, 0px, 0px);
  transition: transform 0.4s cubic-bezier(0.48, 0.18, 0, 0.98) 0s, -webkit-transform 0.4s cubic-bezier(0.48, 0.18, 0, 0.98) 0s;
  width: 100%;
  z-index: 1;
}
.hero__area--entry .btn a:hover::after {
  transform: translate3d(0px, 0px, 0px);
}
@media (max-width: 559px) {
  .hero__area--entry .btn {
    font-size: 21px;
    font-size: 2.1rem;
    font-feature-settings: "palt";
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
    width: auto;
    max-width: auto;
  }
}
@media (max-width: 559px) and (max-width: 959px) {
  .hero__area--entry .btn {
    width: 100%;
    max-width: auto;
    min-width: auto;
  }
}
@media (max-width: 559px) {
  .hero__area--entry .btn a {
    color: #ffffff;
    width: 100%;
    display: block;
    padding: 1.5em 3em 1.5em 3.25em;
    text-decoration: none;
    background-color: #b90b0b;
    border: 1px solid #b90b0b;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    transition: color 0.2s ease 0s, border 0.4s;
  }
}
@media (max-width: 559px) and (max-width: 959px) {
  .hero__area--entry .btn a {
    padding: 1.5em;
  }
}
@media (max-width: 559px) {
  .hero__area--entry .btn a span {
    position: relative;
    z-index: 2;
  }
  .hero__area--entry .btn a span::before {
    font-family: "icomoon";
    padding-right: 10px;
    font-size: 21px;
    font-size: 2.1rem;
    content: "\e92c";
    padding-right: 15px;
  }
  .hero__area--entry .btn a:hover {
    border: 1px solid #e90e0e;
  }
  .hero__area--entry .btn a::after {
    background-color: #e90e0e;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate3d(-100%, 0px, 0px);
    transition: transform 0.4s cubic-bezier(0.48, 0.18, 0, 0.98) 0s, -webkit-transform 0.4s cubic-bezier(0.48, 0.18, 0, 0.98) 0s;
    width: 100%;
    z-index: 1;
  }
  .hero__area--entry .btn a:hover::after {
    transform: translate3d(0px, 0px, 0px);
  }
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
}
.inner.inner--md {
  max-width: 1180px;
}
.inner.inner--sm {
  max-width: 960px;
}
@media (max-width: 959px) {
  .inner {
    width: auto;
  }
}

.sec__heading {
  font-family: "Roboto Condensed", Noto Sans JP, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic Pro, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 46px;
  font-size: 4.6rem;
  letter-spacing: .03em;
  text-align: center;
  margin-bottom: 2em;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  /*&::before {
      display: block;
      content: "01.";
      padding-right: 0.25rem;
  }*/
}
@media (max-width: 559px) {
  .sec__heading {
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 1.5em;
  }
}
.sec__heading::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  width: 4%;
  height: 4px;
  display: block;
  content: "";
  background: #252525;
}
.sec__heading span {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}

.sec__lead {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
}
@media (max-width: 559px) {
  .sec__lead {
    font-size: 23px;
    font-size: 2.3rem;
  }
}

.cta {
  width: 100%;
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 30px 40px 20px;
  background: #ffffff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 959px) {
  .cta {
    margin: 20px auto 0;
    padding: 20px;
  }
}
.cta__heading {
  font-size: 28px;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.cta__block {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.cta__block--tel {
  font-family: "Roboto Condensed", Noto Sans JP, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic Pro, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  width: 48%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 959px) {
  .cta__block--tel {
    width: 100%;
    flex-flow: column wrap;
  }
}
.cta__block--tel p {
  margin: 0;
}
.cta__block--tel address {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 700;
  margin: 0 0 0 4%;
}
@media (max-width: 559px) {
  .cta__block--tel address {
    font-size: 37.5px;
    font-size: 3.75rem;
    line-height: 1.2;
    text-align: center;
  }
}
.cta__block--tel address a {
  text-decoration: none;
  color: #b90b0b;
}
.cta__block--tel address a:hover, .cta__block--tel address a:active, .cta__block--tel address a:focus {
  color: #f33737;
}
.cta__block--tel address a::before {
  font-family: "icomoon";
  font-weight: 400;
  padding-right: 5px;
  content: "\e923";
}
.cta__block--tel address span {
  font-size: 22.5px;
  font-size: 2.25rem;
  margin-left: 0.5em;
}
@media (max-width: 559px) {
  .cta__block--tel address span {
    font-size: 18px;
    font-size: 1.8rem;
    margin-left: 0;
  }
}
.cta__block--form {
  width: 48%;
}
@media (max-width: 959px) {
  .cta__block--form {
    width: 100%;
  }
}
.cta__block--form .btn {
  font-size: 21px;
  font-size: 2.1rem;
  font-feature-settings: "palt";
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  width: auto;
  max-width: auto;
}
@media (max-width: 959px) {
  .cta__block--form .btn {
    width: 100%;
    max-width: auto;
    min-width: auto;
  }
}
.cta__block--form .btn a {
  color: #ffffff;
  width: 100%;
  display: block;
  padding: 1.5em 3em 1.5em 3.25em;
  text-decoration: none;
  background-color: #b90b0b;
  border: 1px solid #b90b0b;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transition: color 0.2s ease 0s, border 0.4s;
}
@media (max-width: 959px) {
  .cta__block--form .btn a {
    padding: 1.5em;
  }
}
.cta__block--form .btn a span {
  position: relative;
  z-index: 2;
}
.cta__block--form .btn a span::before {
  font-family: "icomoon";
  padding-right: 10px;
  font-size: 24px;
  font-size: 2.4rem;
  content: "\e92c";
  padding-right: 15px;
}
.cta__block--form .btn a:hover {
  border: 1px solid #e90e0e;
}
.cta__block--form .btn a::after {
  background-color: #e90e0e;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate3d(-100%, 0px, 0px);
  transition: transform 0.4s cubic-bezier(0.48, 0.18, 0, 0.98) 0s, -webkit-transform 0.4s cubic-bezier(0.48, 0.18, 0, 0.98) 0s;
  width: 100%;
  z-index: 1;
}
.cta__block--form .btn a:hover::after {
  transform: translate3d(0px, 0px, 0px);
}
@media (max-width: 959px) {
  .cta__block--form .btn {
    font-size: 21px;
    font-size: 2.1rem;
    font-feature-settings: "palt";
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: auto;
    max-width: auto;
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media (max-width: 959px) and (max-width: 959px) {
  .cta__block--form .btn {
    width: 100%;
    max-width: auto;
    min-width: auto;
  }
}
@media (max-width: 959px) {
  .cta__block--form .btn a {
    color: #ffffff;
    width: 100%;
    display: block;
    padding: 1.5em 3em 1.5em 3.25em;
    text-decoration: none;
    background-color: #b90b0b;
    border: 1px solid #b90b0b;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    transition: color 0.2s ease 0s, border 0.4s;
  }
}
@media (max-width: 959px) and (max-width: 959px) {
  .cta__block--form .btn a {
    padding: 1.5em;
  }
}
@media (max-width: 959px) {
  .cta__block--form .btn a span {
    position: relative;
    z-index: 2;
  }
  .cta__block--form .btn a span::before {
    font-family: "icomoon";
    padding-right: 10px;
    font-size: 19px;
    font-size: 1.9rem;
    content: "\e92c";
    padding-right: 15px;
  }
  .cta__block--form .btn a:hover {
    border: 1px solid #e90e0e;
  }
  .cta__block--form .btn a::after {
    background-color: #e90e0e;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate3d(-100%, 0px, 0px);
    transition: transform 0.4s cubic-bezier(0.48, 0.18, 0, 0.98) 0s, -webkit-transform 0.4s cubic-bezier(0.48, 0.18, 0, 0.98) 0s;
    width: 100%;
    z-index: 1;
  }
  .cta__block--form .btn a:hover::after {
    transform: translate3d(0px, 0px, 0px);
  }
}

.about {
  padding: 80px 50px;
  text-align: center;
  background: none;
}
@media (max-width: 959px) {
  .about {
    padding: 60px 30px;
  }
}
@media (max-width: 559px) {
  .about {
    padding: 40px 20px;
    text-align: left;
  }
}
.about p {
  font-size: 18px;
  font-size: 1.8rem;
}
.about p strong {
  font-size: 20px;
  font-size: 2rem;
  color: #bf0d0d;
}
.about__block {
  width: 100%;
  margin-top: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 959px) {
  .about__block {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.about__block--user {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 959px) {
  .about__block--user {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.about__block--user li {
  width: 33%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  font-weight: 600;
}
@media (max-width: 959px) {
  .about__block--user li {
    width: 100%;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.about__block--user li img {
  margin-top: 10px;
}
@media (max-width: 959px) {
  .about__block--user li img {
    width: 100%;
  }
}
@media (max-width: 959px) {
  .about__block--user .matching--owner {
    width: 65%;
    margin: 0 auto;
  }
}
.about__block--user .matching--owner::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 25px solid #d6d4d4;
  border-right: 25px solid transparent;
  margin: auto 20px auto 40px;
}
@media (max-width: 959px) {
  .about__block--user .matching--owner::after {
    border-top: 25px solid #d6d4d4;
    border-bottom: 25px solid transparent;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    margin: 20px auto -10px;
  }
}
@media (max-width: 959px) {
  .about__block--user .matching--user {
    width: 65%;
    margin: 0 auto;
  }
}
.about__block--user .matching--user::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 25px solid transparent;
  border-right: 25px solid #d6d4d4;
  margin: auto 40px auto 20px;
}
@media (max-width: 959px) {
  .about__block--user .matching--user::before {
    border-top: 25px solid transparent;
    border-bottom: 25px solid #d6d4d4;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    margin: 0 auto 20px;
  }
}
.about__block .matching--result::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid #d6d4d4;
  border-bottom: 25px solid transparent;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  margin: 10px auto;
}
.about__block .matching--result img {
  margin-top: 10px;
}

.feature {
  padding: 80px 50px;
  text-align: left;
  background: #f5f5f5;
}
@media (max-width: 959px) {
  .feature {
    padding: 60px 30px;
  }
}
@media (max-width: 559px) {
  .feature {
    padding: 40px 20px;
    text-align: left;
  }
}
.feature__list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.feature__list--item {
  width: 48%;
  margin-bottom: 30px;
}
@media (max-width: 959px) {
  .feature__list--item {
    width: 100%;
  }
}
.feature__list--item img {
  margin-bottom: 12px;
}
.feature h3 {
  text-align: center;
}

.brands {
  padding: 80px 50px;
  text-align: left;
  color: #ffffff;
  background: #252525;
}
@media (max-width: 959px) {
  .brands {
    padding: 60px 30px;
  }
}
@media (max-width: 559px) {
  .brands {
    padding: 40px 20px;
    text-align: left;
  }
}
.brands .sec__heading::after {
  background: #ffffff;
}
.brands img {
  margin: 0 auto;
}

.merit {
  padding: 80px 50px;
  text-align: center;
  background: #f5f5f5;
}
@media (max-width: 959px) {
  .merit {
    padding: 60px 30px;
  }
}
@media (max-width: 559px) {
  .merit {
    padding: 40px 20px;
    text-align: left;
  }
}
.merit .inner > p {
  font-size: 18px;
  font-size: 1.8rem;
}
.merit .inner > p strong {
  font-size: 20px;
  font-size: 2rem;
  color: #bf0d0d;
}
.merit .img--graph {
  width: 90%;
  margin: 20px auto;
}
@media (max-width: 959px) {
  .merit .img--graph {
    width: 100%;
  }
}
.merit__block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto;
}
@media (max-width: 559px) {
  .merit__block {
    margin: 30px auto 10px;
  }
}
.merit__unit {
  width: 48%;
  text-align: left;
}
@media (max-width: 959px) {
  .merit__unit {
    width: 100%;
  }
  .merit__unit img {
    margin-bottom: 20px;
  }
}
.merit__comt {
  width: auto;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  border: 1px solid #d6d4d4;
  border-radius: 2px;
  background: #d6d4d4;
}
@media (max-width: 959px) {
  .merit__comt {
    padding: 20px;
  }
  .merit__comt::after {
    content: "";
    display: block;
    clear: both;
  }
}
.merit__comt p {
  margin-bottom: 0;
}
.merit__comt .sec__lead {
  color: #b90b0b;
  margin: 0 auto 25px;
}
.merit__comt .balloon__box {
  position: absolute;
  top: -20px;
  left: 40px;
}
@media (max-width: 959px) {
  .merit__comt .balloon__box {
    position: static;
    margin: 0 15px 15px 0;
    float: left;
  }
}
.merit__comt .balloon__box p {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  background: #f11515;
  border-radius: 50%;
  padding: 2em;
  line-height: 60px;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  font-family: "Roboto Condensed", Noto Sans JP, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic Pro, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 800;
  color: #d6d4d4;
}
@media (max-width: 959px) {
  .merit__comt .balloon__box p {
    width: 60px;
    height: 60px;
    line-height: 30px;
  }
}
.merit__comt .balloon__box p::after {
  position: absolute;
  right: 3px;
  bottom: 3px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #f11515;
  border-width: 10px 0 10px 17.32px;
  transform: rotate(45deg);
}

.step {
  padding: 80px 50px;
  text-align: left;
  background: none;
}
@media (max-width: 959px) {
  .step {
    padding: 60px 30px;
  }
}
@media (max-width: 559px) {
  .step {
    padding: 40px 20px;
    text-align: left;
  }
}
.step__list--item {
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border: 1px solid #d6d4d4;
  background: #f0eeef;
}
@media (max-width: 959px) {
  .step__list--item {
    flex-flow: column nowrap;
  }
}
.step__list--item::after {
  position: absolute;
  bottom: -31px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  width: 6px;
  height: 20px;
  display: block;
  content: "";
  background: #d6d4d4;
}
.step__list--item:last-child::after {
  display: none;
}
.step--serial {
  width: 30%;
}
@media (max-width: 959px) {
  .step--serial {
    width: 100%;
  }
}
.step--serial dl {
  width: 100%;
  text-align: center;
}
.step--serial dl dt, .step--serial dl dd {
  padding: 5px;
}
.step--serial dl dt {
  font-family: "Roboto Condensed", Noto Sans JP, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic Pro, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  background: #252525;
}
.step--serial dl dt span {
  font-size: 15px;
  font-size: 1.5rem;
}
.step--serial dl dt span.turnUser {
  font-size: 12px;
  font-size: 1.2rem;
}
.step--serial dl dd {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  background: #4a4949;
}
.step--serial dl.ourTurn dt {
  background: #989898;
}
.step--serial dl.ourTurn dd {
  background: #aaaaaa;
}
.step--detail {
  margin-bottom: 0;
  padding: 12px 4%;
}

.contact {
  padding: 80px 50px;
  text-align: center;
  background: #f5f5f5;
}
@media (max-width: 959px) {
  .contact {
    padding: 60px 30px;
  }
}
@media (max-width: 559px) {
  .contact {
    padding: 40px 20px;
    text-align: left;
  }
}
.contact address {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 0 0;
}
@media (max-width: 559px) {
  .contact address {
    font-size: 33.3333333333px;
    font-size: 3.3333333333rem;
    line-height: 1.2;
    text-align: center;
  }
}
.contact address a {
  text-decoration: none;
  color: #b90b0b;
}
.contact address a:hover, .contact address a:active, .contact address a:focus {
  color: #f33737;
}
.contact address a::before {
  font-family: "icomoon";
  font-weight: 400;
  padding-right: 5px;
  content: "\e923";
}
.contact address span {
  font-size: 20px;
  font-size: 2rem;
  margin-left: 0.5em;
}
@media (max-width: 559px) {
  .contact address span {
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: 0;
  }
}

.thanks {
  padding: 80px 50px;
  text-align: left;
  background: #f5f5f5;
}
@media (max-width: 959px) {
  .thanks {
    padding: 60px 30px;
  }
}
@media (max-width: 559px) {
  .thanks {
    padding: 40px 20px;
    text-align: left;
  }
}
