@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

body {
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -webkit-text-size-adjust: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  color: #333;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}

ul,
ol {
  list-style: none;
}

em,
i {
  font-style: normal;
}

/* フォントサイズ
-------------------------------------------*/
html {
  font-size: 52.5%;
}

@media screen and (min-width: 350px) {
  html {
    font-size: 62.5%;
  }
}

@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

/* body
-------------------------------------------*/
body {
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  width: 100%;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

/* コンテンツ幅
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 991px) {
  .inner {
    padding: 0 6%;
  }
}

.inner_s {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner_s {
    padding: 0 6%;
  }
}

/*------------------------------------
clearfix 
------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  display: block;
}

/* End IE-mac */
.clear {
  clear: both;
}

/*------------------------------------
リンク 
------------------------------------*/
a {
  color: #333333;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hover:hover {
    opacity: 0.6 !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*------------------------------------
テキスト
------------------------------------*/
.bold {
  font-weight: bold;
}

.txt_co_orange {
  color: #ff7f00;
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px) {
  .disp_sp {
    display: none !important;
  }
}

/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  height: 100px;
  z-index: 100;
}

@media screen and (max-width: 991px) {
  .header {
    height: 60px;
  }
}

.header-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
}

.header-inner {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .header-inner {
    padding: 0 3%;
  }
}

.header-logo {
  height: 45px;
}

@media screen and (max-width: 991px) {
  .header-logo {
    height: 35px;
  }
}

.header-logo > img {
  height: 100%;
}

.header-cv {
  display: flex;
}

.header-tel {
  height: 47px;
  margin-right: 30px;
}

@media screen and (max-width: 991px) {
  .header-tel {
    height: 40px;
    margin-right: 10px;
  }
}

.header-tel img {
  height: 100%;
}

.header-contact {
  height: 50px;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  background: #d42614;
  border: 1px solid #d42614;
  color: #fff;
  border-radius: 50px;
  font-size: 1.6rem;
  padding: 15px 35px;
  margin: auto;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 0 0 #e0e0e0;
}

@media screen and (max-width: 991px) {
  .header-contact {
    height: 40px;
    padding: 15px;
  }
}

.header-contact > span {
  position: relative;
  padding-left: 30px;
}

@media screen and (max-width: 991px) {
  .header-contact > span {
    padding-left: 25px;
  }
}

.header-contact > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/icon_contact.svg) left center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 992px) {
  .header-contact {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .header-contact > span::before {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .header-contact:hover {
    background: #fff;
    color: #d42614;
  }
  .header-contact:hover > span::before {
    background-image: url(../img/common/icon_contact_on.svg);
  }
}

@media screen and (max-width: 991px) {
  .header-contact {
    font-size: 1.5rem;
  }
}

.footer {
  margin-top: auto;
  background: #d42614;
  padding: 50px 0 15px;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 40px 0 15px;
  }
}

.footer-inner {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 991px) {
  .footer-inner {
    padding: 0 5%;
  }
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .footer-logo {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
}

.footer-logo > img {
  height: 48px;
  margin-right: 15px;
}

@media screen and (max-width: 991px) {
  .footer-logo > img {
    height: 35px;
  }
}

.footer-logo > div {
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .footer-logo > div {
    margin-top: 15px;
  }
}

.footer-address dl + dl {
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .footer-address dl + dl {
    margin-top: 20px;
  }
}

.footer-address dl dt,
.footer-address dl dd {
  color: #fff;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .footer-address dl dt,
  .footer-address dl dd {
    letter-spacing: 0.01em;
  }
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 25px;
}

.footer-flex .item {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .footer-flex {
    margin-bottom: 30px;
    flex-direction: column;
  }
  .footer-flex .item {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav {
    margin-top: 30px;
  }
}

.footer-nav ul {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  .footer-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (min-width: 992px) {
  .footer-nav ul > li + li {
    margin-left: 15px;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav ul > li + li {
    margin-top: 15px;
  }
}

.footer-nav ul > li a {
  color: #fff;
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
}

@media screen and (min-width: 992px) {
  .footer-nav ul > li a:hover {
    text-decoration: underline;
  }
}

.footer-nav ul > li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer-copyright {
  display: flex;
  justify-content: flex-end;
  color: #fff;
  font-size: 1.2rem;
}

@media screen and (max-width: 991px) {
  .footer-copyright {
    justify-content: center;
  }
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  padding-top: 100px;
}

@media screen and (max-width: 991px) {
  .main {
    padding-top: 60px;
  }
}

.topMv {
  animation: bgscroll 30s linear infinite;
  background: url(../img/index/mv_bg.png) left center repeat-x;
  background-size: auto 100%;
  height: 660px;
}

@media screen and (max-width: 991px) {
  .topMv {
    height: auto;
    background-color: #F2F3F5;
    background-size: auto 40%;
    background-position: left bottom;
    padding-bottom: 20px;
  }
}

.topMv-copy {
  height: 660px;
  position: relative;
  display: table;
}

@media screen and (max-width: 991px) {
  .topMv-copy {
    height: auto;
  }
}

.topMv-copy img {
  height: 660px;
  width: auto;
}

@media screen and (max-width: 991px) {
  .topMv-copy img {
    height: auto;
  }
}

.topMv-copy a {
  position: absolute;
  left: 0;
  right: 0;
  width: 340px;
  bottom: 25px;
  height: 75px;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  background: #d42614;
  border: 1px solid #d42614;
  color: #fff;
  border-radius: 50px;
  font-size: 1.8rem;
  padding: 15px 35px;
  margin: auto;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 0 0 #BCBCBC;
}

@media screen and (max-width: 991px) {
  .topMv-copy a {
    position: relative;
    margin-top: 70px;
  }
}

.topMv-copy a > span {
  position: relative;
  padding-left: 40px;
}

.topMv-copy a > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/icon_contact.svg) left center no-repeat;
  background-size: contain;
  width: 30px;
  height: 20px;
}

.topMv-copy a > span::after {
  content: "";
  position: absolute;
  bottom: -20px;
  margin: auto;
  left: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (min-width: 992px) {
  .topMv-copy a {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .topMv-copy a > span::before, .topMv-copy a > span::after {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .topMv-copy a:hover {
    background: #fff;
    color: #d42614;
  }
  .topMv-copy a:hover > span::before {
    background-image: url(../img/common/icon_contact_on.svg);
  }
  .topMv-copy a:hover > span::after {
    border-color: #d42614;
  }
}

@media screen and (max-width: 991px) {
  .topMv-copy a {
    font-size: 1.8rem;
  }
}

@keyframes bgscroll {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: -100vw bottom;
  }
}

@keyframes loop_slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.topMerit {
  padding: 120px 0 170px;
}

@media screen and (max-width: 991px) {
  .topMerit {
    padding: 40px 0;
  }
}

.topMerit-box {
  border: 4px solid #d42614;
  position: relative;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .topMerit-box {
    margin-bottom: 35px;
  }
}

.topMerit-box::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 24px 0 24px;
  border-color: #d42614 transparent transparent transparent;
}

.topMerit-box .box1 {
  padding: 50px;
}

@media screen and (max-width: 991px) {
  .topMerit-box .box1 {
    padding: 25px 20px 30px;
  }
}

.topMerit-box .box1 dl dt {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .topMerit-box .box1 dl dt {
    font-size: 2.6rem;
  }
}

.topMerit-box .box1 dl dd ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 95%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .topMerit-box .box1 dl dd ul {
    width: auto;
    display: table;
  }
}

.topMerit-box .box1 dl dd ul li {
  position: relative;
  padding-left: 28px;
}

.topMerit-box .box1 dl dd ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_chk01.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .topMerit-box .box1 dl dd ul li::before {
    bottom: inherit;
  }
}

@media screen and (min-width: 992px) {
  .topMerit-box .box1 dl dd ul li {
    width: 50%;
  }
  .topMerit-box .box1 dl dd ul li:nth-child(n + 3) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 991px) {
  .topMerit-box .box1 dl dd ul li {
    width: 100%;
  }
  .topMerit-box .box1 dl dd ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.topMerit-box .box2 {
  background: #d42614;
  padding: 30px;
}

@media screen and (max-width: 991px) {
  .topMerit-box .box2 {
    padding: 25px 10px;
  }
}

.topMerit-box .box2 p {
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.topMerit-box .box2 p .t1 {
  font-size: 4rem;
}

@media screen and (max-width: 991px) {
  .topMerit-box .box2 p .t1 {
    font-size: 2.1rem;
  }
}

.topMerit-box .box2 p .t2 {
  font-size: 4.8rem;
}

@media screen and (max-width: 991px) {
  .topMerit-box .box2 p .t2 {
    font-size: 3rem;
  }
}

.topMerit-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topMerit-list .item ul li {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .topMerit-list .item ul li {
    font-size: 1.8rem;
  }
}

.topMerit-list .item ul li:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #d42614;
  margin-bottom: 20px;
}

.topMerit-list .item ul li b {
  color: #d42614;
}

.topMerit-list .item ul li > div {
  padding-left: 40px;
  position: relative;
}

.topMerit-list .item ul li > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url(../img/common/icon_chk02.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (min-width: 992px) {
  .topMerit-list .item:nth-child(1) {
    width: calc(100% - 400px);
    padding-right: 40px;
  }
  .topMerit-list .item:nth-child(2) {
    width: 400px;
  }
}

@media screen and (max-width: 991px) {
  .topMerit-list .item {
    width: 100%;
  }
  .topMerit-list .item:not(:last-child) {
    margin-bottom: 30px;
  }
}

.topFeature {
  background: #f2f3f5;
  padding: 100px 0;
}

@media screen and (max-width: 991px) {
  .topFeature {
    padding: 40px 0 60px;
  }
}

.topFeature-ttl {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .topFeature-ttl {
    font-size: 3.4rem;
    margin-bottom: 50px;
  }
}

.topFeature-list {
  background: #fff;
  padding: 80px 70px 60px;
}

@media screen and (max-width: 991px) {
  .topFeature-list {
    padding: 40px 20px 50px;
  }
}

.topFeature-item + .topFeature-item {
  padding-top: 70px;
  margin-top: 70px;
  background-image: linear-gradient(to right, #d42614, #d42614 3px, transparent 3px, transparent 8px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
}

@media screen and (max-width: 991px) {
  .topFeature-item + .topFeature-item {
    padding-top: 40px;
    margin-top: 50px;
  }
}

.topFeature-item .txt p + p {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .topFeature-item .txt p + p {
    margin-top: 25px;
  }
}

.topFeature-item .t1 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 45px;
  line-height: 1.5;
  color: #d42614;
}

@media screen and (max-width: 991px) {
  .topFeature-item .t1 {
    font-size: 3rem;
    margin-bottom: 25px;
  }
}

.topFeature-item .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topFeature-item .flex.--end {
  align-items: flex-end;
}

.topFeature-item .flex.--center {
  align-items: center;
}

@media screen and (min-width: 992px) {
  .topFeature-item .flex .item:nth-child(1) {
    width: 60%;
    padding-right: 35px;
  }
  .topFeature-item .flex .item:nth-child(2) {
    width: 40%;
  }
}

@media screen and (max-width: 991px) {
  .topFeature-item .flex .item:nth-child(2) {
    margin-top: 20px;
  }
}

.topFeature-item.--no2 .flex {
  margin-bottom: 35px;
}

.topPrice {
  padding: 100px 0 0;
}

@media screen and (max-width: 991px) {
  .topPrice {
    padding: 60px 0 0;
  }
}

.topPrice .price1 {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .topPrice .price1 {
    margin-bottom: 35px;
  }
}

.topPrice .price1 img {
  max-width: 333px;
}

.topPrice .flex1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 870px;
  margin: 0 auto 50px;
}

@media screen and (min-width: 992px) {
  .topPrice .flex1 .item {
    max-width: 416px;
    width: 48%;
  }
}

@media screen and (max-width: 991px) {
  .topPrice .flex1 .item {
    width: 100%;
    text-align: center;
  }
  .topPrice .flex1 .item:not(:last-child) {
    margin-bottom: 0;
  }
}

.topPrice .box1 {
  max-width: 830px;
  margin: 0 auto 50px;
  position: relative;
  border: 1px solid #d42614;
  padding: 35px 30px 25px 30px;
}

@media screen and (max-width: 991px) {
  .topPrice .box1 {
    padding: 25px 25px 20px 25px;
    margin: 0 auto 35px;
  }
}

.topPrice .box1 dl dt {
  position: absolute;
  background: #fff;
  padding: 0 15px;
  top: -1em;
  left: 30px;
  font-size: 2.4rem;
  font-weight: 700;
  display: table;
}

@media screen and (max-width: 991px) {
  .topPrice .box1 dl dt {
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1.8rem;
  }
}

.topPrice .box2 {
  max-width: 830px;
  margin: 0 auto;
  position: relative;
  background: #d42614;
  padding: 15px 5px 15px 25px;
}

@media screen and (max-width: 991px) {
  .topPrice .box2 {
    padding: 15px 20px;
  }
}

.topPrice .box2 p {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 991px) {
  .topPrice .box2 p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.topCase {
  padding: 100px 0 180px;
}

@media screen and (max-width: 991px) {
  .topCase {
    padding: 60px 0 80px;
  }
}

.topPrice + .topCase {
  padding-top: 150px;
}

@media screen and (max-width: 991px) {
  .topPrice + .topCase {
    padding-top: 80px;
  }
}

.topCase .inner {
  max-width: 890px;
}

.topCase .ttl-kako {
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .topCase .ttl-kako {
    margin-bottom: 50px;
  }
}

.topCase .flex1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .topCase .flex1 {
    margin-bottom: 40px;
  }
}

.topCase .flex1 .item dl {
  display: flex;
  align-items: center;
}

.topCase .flex1 .item dl dt {
  padding: 5px;
  width: 5.2em;
  text-align: center;
  background: #d42614;
  font-size: 2.3rem;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .topCase .flex1 .item dl dt {
    font-size: 1.8rem;
  }
}

.topCase .flex1 .item dl dd {
  width: calc(100% - 5.2em);
  padding-left: 15px;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 991px) {
  .topCase .flex1 .item dl dd {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .topCase .flex1 .item {
    width: 43%;
  }
  .topCase .flex1 .item:nth-child(n + 3) {
    margin-top: 4%;
  }
  .topCase .flex1 .item:nth-child(even) {
    width: 57%;
  }
}

@media screen and (max-width: 991px) {
  .topCase .flex1 .item {
    width: 100%;
  }
  .topCase .flex1 .item:not(:last-child) {
    margin-bottom: 15px;
  }
}

.topCase .box1 dl dt {
  padding: 7px;
  text-align: center;
  background: #d42614;
  font-size: 2.3rem;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .topCase .box1 dl dt {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.topCase .box1 dl dd {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topCase .box1 dl dd .t1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .topCase .box1 dl dd .t1 {
    font-size: 1.8rem;
    width: 100%;
    text-align: left;
    line-height: 1.5;
  }
}

.topCase .box1 dl dd .t1 b {
  font-size: 3.2rem;
}

@media screen and (max-width: 991px) {
  .topCase .box1 dl dd .t1 b {
    font-size: 2.2rem;
  }
}

.topCase .box1 dl dd .t2 {
  margin-bottom: 30px;
  max-width: 529px;
}

.topCase .box1 dl dd .t3 {
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .topCase .box1 dl dd .t3 {
    font-size: 3.4rem;
    line-height: 1.6;
  }
}

.topVoice {
  padding-bottom: 100px;
}

@media screen and (max-width: 991px) {
  .topVoice {
    padding-bottom: 0;
  }
}

.topVoice .inner {
  padding: 0;
}

.topVoice-wrap {
  background: #f2f3f5;
  position: relative;
  padding: 120px 60px 60px 60px;
}

@media screen and (max-width: 991px) {
  .topVoice-wrap {
    padding: 50px 3% 40px;
  }
}

.topVoice-ttl {
  font-size: 6rem;
  font-weight: 700;
  color: #d42614;
  margin: auto;
}

@media screen and (min-width: 992px) {
  .topVoice-ttl {
    position: absolute;
    display: table;
    top: -1em;
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 991px) {
  .topVoice-ttl {
    font-size: 3.4rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
  }
}

.topVoice-item {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .topVoice-item {
    flex-direction: column;
    padding: 20px;
    position: relative;
  }
  .topVoice-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 95%;
    width: 100%;
    background: #fff;
  }
}

.topVoice-item + .topVoice-item {
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .topVoice-item + .topVoice-item {
    margin-top: 35px;
  }
}

.topVoice-item .item {
  position: relative;
  z-index: 1;
}

.topVoice-item .item .image {
  width: 70%;
}

@media screen and (max-width: 991px) {
  .topVoice-item .item .image {
    margin: auto;
    width: 100%;
  }
}

.topVoice-item .item .image img {
  width: 75%;
  display: block;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .topVoice-item .item .image img {
    max-width: 120px;
  }
}

.topVoice-item .item .image ul {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .topVoice-item .item .image ul {
    display: table;
    margin: 20px auto 0;
  }
}

.topVoice-item .item .image ul li {
  display: flex;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .topVoice-item .item .image ul li {
    font-size: 1.4rem;
  }
}

.topVoice-item .item .image ul li + li {
  margin-top: 5px;
}

@media screen and (min-width: 992px) {
  .topVoice-item .item:nth-child(2) {
    background: #fff;
    padding: 30px;
  }
}

.topVoice-item .item:nth-child(2) dl dt {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 35px;
  padding-left: 30px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .topVoice-item .item:nth-child(2) dl dt {
    font-size: 2.2rem;
    margin-bottom: 25px;
    padding-left: 20px;
  }
}

.topVoice-item .item:nth-child(2) dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 100%;
  background: #d42614;
}

@media screen and (max-width: 991px) {
  .topVoice-item .item:nth-child(2) dl dt::before {
    width: 5px;
  }
}

.topVoice-item .item:nth-child(2) dl dd p + p {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .topVoice-item .item:nth-child(2) dl dd p + p {
    margin-top: 25px;
  }
}

@media screen and (min-width: 992px) {
  .topVoice-item .item:nth-child(1) {
    width: 35%;
  }
  .topVoice-item .item:nth-child(2) {
    width: 65%;
  }
}

@media screen and (max-width: 991px) {
  .topVoice-item .item {
    width: 100%;
  }
  .topVoice-item .item:nth-child(1) {
    margin-bottom: 30px;
  }
}

.cvBox {
  padding: 70px 0;
  position: relative;
  background: url(../img/common/bg_cv.png) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 991px) {
  .cvBox {
    padding: 50px 0;
  }
}

.cvBox-ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.cvBox-ttl.--learge {
  font-size: 4.8rem;
}

@media screen and (max-width: 991px) {
  .cvBox-ttl.--learge {
    font-size: 2.8rem;
    text-align: left;
    align-items: flex-start;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .cvBox-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

.cvBox-ttl > span {
  display: inline-block;
  padding: 0 10px;
  border: 1px solid #fff;
  margin: 0 15px;
}

@media screen and (max-width: 991px) {
  .cvBox-ttl > span {
    display: table;
    font-size: 3rem;
    margin: 7px 0;
  }
}

.cvBox-btn {
  height: 100px;
  max-width: 600px;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  background: #d42614;
  border: 1px solid #d42614;
  color: #fff;
  border-radius: 50px;
  font-size: 3.2rem;
  padding: 15px 35px;
  margin: auto;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 0 0 #e0e0e0;
}

@media screen and (max-width: 991px) {
  .cvBox-btn {
    height: 80px;
    padding: 15px;
  }
}

.cvBox-btn > span {
  position: relative;
}

.cvBox-btn > span::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (max-width: 991px) {
  .cvBox-btn > span::before {
    bottom: -18px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}

@media screen and (min-width: 992px) {
  .cvBox-btn {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .cvBox-btn > span::before {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .cvBox-btn:hover {
    background: #fff;
    color: #d42614;
  }
  .cvBox-btn:hover > span::before {
    border-color: #d42614;
  }
}

@media screen and (max-width: 991px) {
  .cvBox-btn {
    font-size: 2.2rem;
  }
}

.cvBox-tel {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .cvBox-tel {
    margin-top: 20px;
  }
}

.cvBox .t1,
.cvBox .t2 {
  color: #fff;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .cvBox .t1,
  .cvBox .t2 {
    text-align: left;
  }
}

.cvBox .t1 {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .cvBox .t1 {
    font-size: 1.6rem;
  }
}

.cvBox .t1 + .t2 {
  margin-top: 20px;
}

.cvBox .t2 {
  font-size: 2.4rem;
}

@media screen and (max-width: 991px) {
  .cvBox .t2 {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.cvBox .wbox {
  margin: auto;
  max-width: 830px;
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 991px) {
  .cvBox .wbox {
    padding: 20px;
  }
}

.cvBox .wbox dl dt {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .cvBox .wbox dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.cvBox .wbox dl dt > span {
  position: relative;
  padding: 0 25px;
  display: table;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .cvBox .wbox dl dt > span {
    padding: 0 15px;
  }
}

.cvBox .wbox dl dt > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2px;
  height: 40px;
  background: #d42614;
  transform: rotate(-25deg);
}

@media screen and (max-width: 991px) {
  .cvBox .wbox dl dt > span::before {
    height: 35px;
  }
}

.cvBox .wbox dl dt > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 40px;
  background: #d42614;
  transform: rotate(25deg);
}

@media screen and (max-width: 991px) {
  .cvBox .wbox dl dt > span::after {
    height: 35px;
  }
}

.topWorries {
  padding: 200px 0;
}

@media screen and (max-width: 991px) {
  .topWorries {
    padding: 100px 0 60px;
  }
}

.topWorries .inner {
  max-width: 860px;
}

.topWorries .box1 {
  border: 1px solid #d42614;
  padding: 70px 50px 50px 50px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .topWorries .box1 {
    padding: 60px 20px 20px 20px;
  }
}

.topWorries .box1 dl dt {
  width: 75%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -1em;
  font-size: 4rem;
  font-weight: 700;
  color: #d42614;
  background: #fff;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .topWorries .box1 dl dt {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    font-size: 2.6rem;
    width: auto;
    line-height: 1.3;
    top: -1.2em;
    width: 10em;
  }
}

.topWorries .box1 ul {
  display: table;
  margin: auto;
}

.topWorries .box1 ul li {
  position: relative;
  padding-left: 35px;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .topWorries .box1 ul li {
    line-height: 1.6;
    font-size: 1.8rem;
  }
}

.topWorries .box1 ul li + li {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .topWorries .box1 ul li + li {
    margin-top: 15px;
  }
}

.topWorries .box1 ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_chk03.svg) left center no-repeat;
  background-size: contain;
}

.topWorries .box2 {
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .topWorries .box2 {
    margin-top: 50px;
  }
}

.topWorries .box2 .txt p + p {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .topWorries .box2 .txt p + p {
    margin-top: 25px;
  }
}

.topWorries .box2 .image {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .topWorries .box2 .image {
    margin-top: 35px;
    width: 100%;
    display: block;
  }
  .topWorries .box2 .image img {
    width: 100%;
  }
}

.topService {
  padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
  .topService {
    padding-bottom: 60px;
  }
}

.topService-bg {
  height: 400px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .topService-bg {
    height: 250px;
  }
}

@media screen and (min-width: 992px) {
  .topService-bg img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: inherit;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    position: absolute;
  }
}

@media screen and (max-width: 991px) {
  .topService-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

.topService .wbox {
  background: #fff;
  margin-top: -100px;
  padding: 80px 50px 90px;
  border-radius: 20px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topService .wbox {
    padding: 30px 20px;
  }
}

.topService-ttl {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #d42614;
}

@media screen and (max-width: 991px) {
  .topService-ttl {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

.topService-ttl + p {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .topService-ttl + p {
    font-size: 1.6rem;
    text-align: left;
    width: 90%;
    margin: auto;
  }
}

.topService-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: 50px auto 0;
}

@media screen and (max-width: 991px) {
  .topService-list {
    width: 100%;
    margin: 20px auto 0;
  }
}

.topService-list li {
  background: #f2f3f5;
  text-align: center;
  padding: 12px;
  color: #d42614;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .topService-list li {
    font-size: 1.6rem;
    padding: 8px;
  }
}

@media screen and (min-width: 992px) {
  .topService-list {
    position: relative;
  }
  .topService-list li {
    width: 31%;
  }
  .topService-list li:nth-child(n + 4) {
    margin-top: 2%;
  }
  .topService-list::after {
    content: "";
    display: block;
    width: 31%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .topService-list li {
    width: 48.5%;
  }
  .topService-list li:nth-child(n + 3) {
    margin-top: 3%;
  }
}

.topEcimage {
  background: #f2f3f5;
  padding: 100px 0 120px;
}

@media screen and (max-width: 991px) {
  .topEcimage {
    padding: 50px 0 70px;
  }
}

.topEcimage .inner {
  max-width: 890px;
}

.topEcimage-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .topEcimage-ttl {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
}

.topEcimage-ttl > b {
  display: table;
  font-size: 4.8rem;
  color: #d42614;
  padding-bottom: 5px;
  border-bottom: 2px solid #d42614;
}

@media screen and (max-width: 991px) {
  .topEcimage-ttl > b {
    font-size: 3.4rem;
    line-height: 1.3;
    padding-top: 7px;
  }
}

.topEcimage-item {
  position: relative;
  display: flex;
  padding-left: 30px;
}

.topEcimage-item + .topEcimage-item {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .topEcimage-item + .topEcimage-item {
    margin-top: 40px;
  }
}

.topEcimage-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border: 2px solid #d42614;
  border-radius: 50%;
}

.topEcimage-item::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  margin: auto;
  width: 2px;
  height: 100%;
  background: #d42614;
}

.topEcimage-item .item dl dt {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .topEcimage-item .item dl dt {
    font-size: 2.2rem;
    margin-bottom: 7px;
  }
}

.topEcimage-item .item dl dt img {
  display: block;
  margin-bottom: 20px;
  height: 30px;
}

.topEcimage-item .item dl dd p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .topEcimage-item .item dl dd p {
    font-size: 1.6rem;
  }
}

.topEcimage-item .item:nth-child(1) {
  width: 68%;
  padding-right: 50px;
}

@media screen and (max-width: 991px) {
  .topEcimage-item .item:nth-child(1) {
    padding-right: 10px;
    width: 60%;
  }
}

.topEcimage-item .item:nth-child(2) {
  width: 32%;
}

@media screen and (max-width: 991px) {
  .topEcimage-item .item:nth-child(2) {
    width: 40%;
  }
}

.topEcimage-item .item:nth-child(2) img {
  max-width: 248px;
  display: block;
  margin: auto;
  width: 100%;
}

.topMessage {
  padding: 0 0 150px;
}

@media screen and (max-width: 991px) {
  .topMessage {
    padding: 0 0 90px;
  }
}

.topMessage-item {
  position: relative;
}

@media screen and (max-width: 991px) {
  .topMessage-item {
    display: flex;
    flex-direction: column-reverse;
  }
}

.topMessage-item + .topMessage-item {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .topMessage-item + .topMessage-item {
    margin-top: 80px;
  }
}

@media screen and (min-width: 992px) {
  .topMessage-item + .topMessage-item .topMessage-txt {
    padding-bottom: 10%;
  }
}

@media screen and (min-width: 1300px) {
  .topMessage-item + .topMessage-item .topMessage-txt {
    padding-bottom: 14vw;
  }
}

@media screen and (min-width: 1540px) {
  .topMessage-item + .topMessage-item .topMessage-txt {
    padding-bottom: 20vw;
  }
}

.topMessage-item .image {
  width: 46%;
}

@media screen and (min-width: 992px) {
  .topMessage-item .image {
    position: absolute;
  }
}

@media screen and (max-width: 991px) {
  .topMessage-item .image {
    width: 88%;
    margin: 30px auto 0;
  }
}

.topMessage-item .image > div {
  position: relative;
}

.topMessage-item .image > div::after {
  content: "";
  position: absolute;
  top: 40px;
  margin: auto;
  width: calc(100% - 40px);
  height: 100%;
  background: #d42614;
}

@media screen and (max-width: 991px) {
  .topMessage-item .image > div::after {
    width: calc(100% - 20px);
    top: 20px;
  }
}

.topMessage-item .image img {
  width: calc(100% - 40px);
  display: block;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topMessage-item .image img {
    width: calc(100% - 20px);
  }
}

@media screen and (min-width: 992px) {
  .topMessage-item:nth-child(odd) .image {
    left: 54%;
  }
}

.topMessage-item:nth-child(odd) .image img {
  margin-left: auto;
}

.topMessage-item:nth-child(odd) .image > div::after {
  left: 0;
}

@media screen and (min-width: 992px) {
  .topMessage-item:nth-child(even) .image {
    right: 54%;
  }
}

.topMessage-item:nth-child(even) .image > div::after {
  right: 0;
}

.topMessage-item:nth-child(even) .image img {
  margin-right: auto;
}

.topMessage-item:nth-child(even) .topMessage-txt {
  margin-left: auto;
}

.topMessage-txt {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .topMessage-txt {
    width: 100%;
  }
}

.topMessage-txt dl dt {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #d42614;
}

@media screen and (max-width: 991px) {
  .topMessage-txt dl dt {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }
}

.topMessage-txt dl dd p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .topMessage-txt dl dd p {
    font-size: 1.6rem;
  }
}

.topMessage-txt dl dd p + p {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .topMessage-txt dl dd p + p {
    margin-top: 20px;
  }
}

.topLast {
  padding: 20px 0 100px;
  background: #f2f3f5;
}

@media screen and (max-width: 991px) {
  .topLast {
    padding: 0 0 50px;
  }
}

.topLast .image {
  display: flex;
  justify-content: center;
}

.topLast-txt {
  text-align: center;
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .topLast-txt {
    margin-bottom: 40px;
  }
}

.topLast-txt dt {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #d42614;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .topLast-txt dt {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}

.topLast-txt dd p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .topLast-txt dd p {
    font-size: 1.6rem;
    text-align: left;
  }
}

.topLast .wbox {
  background: #fff;
  padding: 50px;
}

@media screen and (max-width: 991px) {
  .topLast .wbox {
    padding: 30px 25px 30px;
  }
}

.topLast .wbox .list01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  padding-top: 20px;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .topLast .wbox .list01 {
    padding-top: 0;
    width: 100%;
    margin-bottom: 30px;
  }
}

.topLast .wbox .list01 li > div {
  padding-left: 40px;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .topLast .wbox .list01 li > div {
    font-size: 2rem;
  }
}

.topLast .wbox .list01 li > div > span {
  background: linear-gradient(transparent 60%, #f0e68b 60%);
}

.topLast .wbox .list01 li > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url(../img/common/icon_chk02.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (min-width: 992px) {
  .topLast .wbox .list01 li {
    width: 48%;
  }
  .topLast .wbox .list01 li:nth-child(n + 3) {
    margin-top: 4%;
  }
  .topLast .wbox .list01 li:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .topLast .wbox .list01 li {
    width: 100%;
  }
  .topLast .wbox .list01 li:not(:last-child) {
    margin-bottom: 25px;
  }
}

.topLast .wbox .list02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topLast .wbox .list02 li {
  background: #d42614;
  padding: 20px;
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .topLast .wbox .list02 li {
    width: 49%;
  }
  .topLast .wbox .list02 li:nth-child(n + 3) {
    margin-top: 2%;
  }
}

@media screen and (max-width: 991px) {
  .topLast .wbox .list02 li {
    width: 100%;
    font-size: 2rem;
    padding: 0 10px;
    min-height: 90px;
    line-height: 1.5;
  }
  .topLast .wbox .list02 li:not(:last-child) {
    margin-bottom: 12px;
  }
  .topLast .wbox .list02 li > div {
    display: table;
    margin: auto;
  }
}

.topManager {
  padding: 0 0 100px;
}

@media screen and (max-width: 991px) {
  .topManager {
    padding: 0 0 60px;
  }
}

.topManager-ttl {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: #d42614;
  text-align: center;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .topManager-ttl {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 30px;
  }
}

.topManager .flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .topManager .flex {
    flex-direction: column;
  }
}

@media screen and (min-width: 992px) {
  .topManager .flex .item:nth-child(1) {
    width: 35%;
  }
  .topManager .flex .item:nth-child(2) {
    width: 58%;
  }
}

@media screen and (max-width: 991px) {
  .topManager .flex .item:nth-child(1) {
    margin-bottom: 25px;
  }
  .topManager .flex .item:nth-child(1) img {
    width: 100%;
  }
}

.topManager .flex .item .t1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .topManager .flex .item .t1 {
    font-size: 1.6rem;
  }
}

.topManager .flex .item dl dt {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .topManager .flex .item dl dt {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.topManager .flex .item dl dd p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .topManager .flex .item dl dd p {
    font-size: 1.6rem;
  }
}

.ttl-kako {
  display: flex;
  justify-content: center;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .ttl-kako {
    font-size: 3rem;
    margin-bottom: 40px;
  }
}

.ttl-kako > span {
  position: relative;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .ttl-kako > span {
    padding: 0 40px;
  }
}

.ttl-kako > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/kako_left.svg) left center no-repeat;
  background-size: contain;
  width: 12px;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .ttl-kako > span::before {
    background-image: url(../img/common/kako_left_sp.svg);
    min-height: 75px;
  }
}

.ttl-kako > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/common/kako_right.svg) left center no-repeat;
  background-size: contain;
  width: 12px;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .ttl-kako > span::after {
    background-image: url(../img/common/kako_right_sp.svg);
    min-height: 75px;
  }
}

.red {
  color: #d42614;
}

.contact {
  padding: 70px 0;
}

.contact-caution {
  display: table;
  margin: auto;
  text-align: center;
  color: #534741;
  border: solid 1px #534741;
  outline: solid 1px #534741;
  /* 外側の線になる一本線の枠線をひく*/
  outline-offset: 3px;
  padding: 15px 30px;
  margin-bottom: 50px;
}

.contact-wrap {
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .contact {
    padding: 30px 0 60px;
  }
  .contact-caution {
    padding: 10px;
    margin-bottom: 30px;
  }
  .contact-wrap {
    width: 100%;
    margin: auto;
  }
}

.topForm {
  padding: 100px 0 150px;
}

@media screen and (max-width: 991px) {
  .topForm {
    padding: 60px 0 90px;
  }
}

.topForm .inner {
  max-width: 830px;
}

.topForm-ttl {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #d42614;
}

@media screen and (max-width: 991px) {
  .topForm-ttl {
    font-size: 3.2rem;
  }
}

:focus {
  outline: none;
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #9f9f9f;
}

:-ms-input-placeholder {
  color: #9f9f9f;
}

::placeholder {
  color: #9f9f9f;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent !important;
  transition: 0.1s;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

.contact_item {
  flex-wrap: wrap;
}

.contact_item:not(:last-child) {
  margin-bottom: 20px;
}

.contact_item dt {
  position: relative;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  margin-bottom: 5px;
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .contact_item dt {
    font-size: 1.6rem;
  }
}

.contact_item dt .hisu {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

.contact_item dd {
  font-size: 1.8rem;
  width: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .contact_item dd {
    font-size: 1.6rem;
  }
}

.contact_item dd select,
.contact_item dd input,
.contact_item dd textarea {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .contact_item dd select,
  .contact_item dd input,
  .contact_item dd textarea {
    font-size: 16px;
  }
}

.contact_item dd li:not(:last-child) {
  margin-bottom: 20px;
}

.contact-btn {
  height: 100px;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  background: #d42614;
  border: 1px solid #d42614;
  color: #fff;
  border-radius: 50px;
  font-size: 3.2rem;
  padding: 15px 35px;
  margin: auto;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 0 0 #e0e0e0;
  width: 90%;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .contact-btn {
    height: auto;
    padding: 15px;
    font-size: 2.4rem;
    line-height: 1.5;
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .contact-btn {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .contact-btn:hover {
    background: #fff;
    color: #d42614;
  }
}

.contact_item dt .hisu {
  font-size: 12px;
  background: #fff;
  color: #ce3149 !important;
  border: 1px solid #ce3149;
  padding: 5px 10px;
  color: #fff;
  line-height: 1;
}

textarea.input_text {
  height: 200px;
}

.input_text {
  width: 100%;
  padding: 10px 15px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.select {
  position: relative;
  border: 1px solid #736357;
  overflow: hidden;
  width: 40%;
  height: 40px;
  text-align: center;
}

.select::before {
  position: absolute;
  top: 1em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}

.select select {
  width: 100%;
  height: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 38px 8px 8px;
}

.select select option:first-child {
  color: #9e9e9f;
}

.select select::-ms-expand {
  display: none;
}

label.error {
  margin-top: 5px;
  display: table;
  background: #ff0000;
  color: #fff;
  padding: 3px 10px;
  font-size: 1.4rem;
}

/* checkbox02 */
input[type="radio"],
input[type="checkbox"] {
  visibility: hidden;
}

.radio-list {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  padding: 20px;
}

.radio-list label + label {
  margin-top: 10px;
}

.radio-list label input {
  position: absolute;
}

.radio-list label input:checked + span::after {
  opacity: 1;
}

.radio-list label > span {
  border-radius: 4px;
  padding: 0 15px 0 30px;
  display: inline-block;
  position: relative;
  letter-spacing: 0.05em;
}

.radio-list label > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d0d0d0;
}

.radio-list label > span::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 5px;
  background: #ce3149;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact-privacy {
  padding: 20px 0 50px;
}

@media screen and (max-width: 991px) {
  .contact-privacy {
    padding: 10px 0 40px;
  }
}

.contact-privacy p {
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .contact-privacy p {
    text-align: left;
    margin-bottom: 20px;
  }
}

.contact-privacy-chk {
  display: flex;
  justify-content: center;
}

.contact-privacy-chk label input {
  position: absolute;
}

.contact-privacy-chk label input:checked + span::after {
  opacity: 1;
}

.contact-privacy-chk label span {
  position: relative;
  padding: 0 15px 0 30px;
}

.contact-privacy-chk label span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #1c1c1c;
}

.contact-privacy-chk label span::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #1c1c1c;
  border-bottom: 2px solid #1c1c1c;
}

@media screen and (min-width: 991px) {
  .contact_item {
    margin-bottom: 10px;
    display: flex;
    width: 100%;
  }
  .contact_item dt {
    position: relative;
    font-weight: 400;
    width: 33%;
    text-align: left;
    padding: 15px;
    box-sizing: border-box;
    align-items: center;
  }
  .contact_last dt {
    align-items: flex-start;
  }
  .contact_last dt .hisu {
    margin-top: 0.4em;
  }
  .contact_item dt .hisu {
    font-size: 12px;
    padding: 5px 10px;
    line-height: 1;
  }
  .contact_item dd {
    width: 67%;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  .contact_item:not(:last-child) {
    margin-bottom: 0;
  }
  .contact_btn:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 991px) {
  .contact_item dt {
    font-size: 1.6rem;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .contact_item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.page-ttl {
  background: #F2F3F5;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .page-ttl {
    height: 250px;
  }
}

.page-ttl h1 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-ttl h1 > div {
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .page-ttl h1 > div {
    font-size: 1.4rem;
  }
}

.philosophyBox {
  padding: 100px 0 150px;
}

@media screen and (max-width: 991px) {
  .philosophyBox {
    padding: 60px 0 100px;
  }
}

.philosophyBox-item + .philosophyBox-item {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .philosophyBox-item + .philosophyBox-item {
    margin-top: 50px;
  }
}

.philosophyBox-item dl dt {
  text-align: center;
}

.philosophyBox-item dl dt .linetxt {
  position: relative;
}

@media screen and (max-width: 991px) {
  .philosophyBox-item dl dt .linetxt::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D42614;
  }
}

.philosophyBox-item dl dt .linetxt > span {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  color: #D42614;
}

@media screen and (max-width: 991px) {
  .philosophyBox-item dl dt .linetxt > span {
    font-size: 1.6rem;
    background: #fff;
    padding: 0 20px;
  }
}

.philosophyBox-item dl dt .linetxt > span::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -120px;
  width: 100px;
  height: 1px;
  background: #D42614;
}

@media screen and (max-width: 991px) {
  .philosophyBox-item dl dt .linetxt > span::before {
    content: none;
  }
}

.philosophyBox-item dl dt .linetxt > span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -120px;
  width: 100px;
  height: 1px;
  background: #D42614;
}

@media screen and (max-width: 991px) {
  .philosophyBox-item dl dt .linetxt > span::after {
    content: none;
  }
}

.philosophyBox-item dl dd p {
  display: table;
  margin: auto;
}

.philosophyBox-item dl dd p.t1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 30px;
}

@media screen and (max-width: 991px) {
  .philosophyBox-item dl dd p.t1 {
    font-size: 3.6rem;
  }
}

.philosophyBox-item dl dd p.t2 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-top: 30px;
}

@media screen and (max-width: 991px) {
  .philosophyBox-item dl dd p.t2 {
    font-size: 2rem;
    padding-top: 20px;
  }
}

.philosophyBox-item dl dd p.t3 {
  font-size: 1.8rem;
  font-weight: 700;
  padding-top: 30px;
}

@media screen and (max-width: 991px) {
  .philosophyBox-item dl dd p.t3 {
    font-size: 1.6rem;
    padding-top: 20px;
  }
}

.companyBox {
  padding: 100px 0 150px;
}

@media screen and (max-width: 991px) {
  .companyBox {
    padding: 60px 0 100px;
  }
}

.companyBox .inner {
  max-width: 700px;
}

.companyBox-item {
  padding-bottom: 35px;
  border-bottom: 1px solid #D42614;
  display: flex;
}

@media screen and (max-width: 991px) {
  .companyBox-item {
    flex-direction: column;
    padding-bottom: 15px;
  }
}

.companyBox-item dt {
  width: 32%;
}

@media screen and (max-width: 991px) {
  .companyBox-item dt {
    width: 100%;
    margin-bottom: 7px;
  }
}

.companyBox-item dd {
  width: 68%;
}

@media screen and (max-width: 991px) {
  .companyBox-item dd {
    width: 100%;
  }
}

.companyBox-item:not(:last-child) {
  margin-bottom: 20px;
}

.policyBox {
  padding: 100px 0 150px;
}

@media screen and (max-width: 991px) {
  .policyBox {
    padding: 60px 0 100px;
  }
}

.policyBox .inner {
  max-width: 830px;
}

.policyBox-item:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .policyBox-item:not(:last-child) {
    margin-bottom: 35px;
  }
}

.policyBox-item dt {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #D42614;
}

@media screen and (max-width: 991px) {
  .policyBox-item dt {
    font-size: 2rem;
  }
}

.policyBox-item dd p {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .policyBox-item dd p {
    font-size: 1.6rem;
  }
}

.policyBox-item dd .t1 {
  margin-top: 50px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .policyBox-item dd .t1 {
    margin-top: 35px;
  }
}

.thanks-ttl {
  position: relative;
}

@media screen and (max-width: 991px) {
  .thanks-ttl {
    padding-top: 40px;
  }
}

.thanks-ttl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: calc(100% - 50px);
  background: #F2F3F5;
}

@media screen and (max-width: 991px) {
  .thanks-ttl::after {
    height: 100%;
  }
}

.thanks-ttl .inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.thanks-ttl .flex {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .thanks-ttl .flex {
    flex-direction: column;
  }
}

.thanks-ttl .flex .item:nth-child(1) {
  margin-right: 30px;
  padding-top: 50px;
}

@media screen and (max-width: 991px) {
  .thanks-ttl .flex .item:nth-child(1) {
    margin-right: 0;
    padding-top: 0;
    margin-bottom: 20px;
  }
}

.thanks-ttl .flex .item:nth-child(1) p {
  font-size: 3.2rem;
  font-weight: 700;
  color: #D42614;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .thanks-ttl .flex .item:nth-child(1) p {
    display: table;
    margin: auto;
    font-size: 2.4rem;
  }
}

.thanks-ttl .flex .item:nth-child(2) img {
  max-width: 300px;
}

@media screen and (max-width: 991px) {
  .thanks-ttl .flex .item:nth-child(2) img {
    width: 70%;
    margin: auto;
    display: block;
  }
}

.thanksBox {
  padding: 100px 0 200px;
}

@media screen and (max-width: 991px) {
  .thanksBox {
    padding: 40px 0 60px;
  }
}

.thanksBox dl dt {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .thanksBox dl dt {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
}

.thanksBox dl dd p {
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .thanksBox dl dd p {
    font-size: 1.6rem;
    text-align: left;
  }
}

.messageBox {
  padding: 100px 0 150px;
}

.messageBox .inner{
  max-width: 700px;
}

.messageBox-txt p + p{
  margin-top: 35px;
}

.messageBox-sign {
  display: flex;
  justify-content: flex-end;
  margin-top: 70px;
}
.messageBox-sign img{
  max-width: 270px;
}

@media screen and (max-width: 991px) {
  .messageBox {
    padding: 60px 0 100px;
  }
  .messageBox-txt p + p{
    margin-top: 25px;
  }
  .messageBox-sign {
    margin-top: 35px;
  }
  .messageBox-sign img{
    max-width: 200px;
  }
  
}

/* ボタンアニメーション
-------------------------------------------*/
.horizontal {
  animation: horizontal_5806 3.72s ease infinite;
  transform-origin: 50% 50%;
}

@keyframes horizontal_5806 {
  0% {
    transform: translate(0, 0);
  }
  3.22581% {
    transform: translate(5px, 0);
  }
  6.45161% {
    transform: translate(0, 0);
  }
  9.67742% {
    transform: translate(5px, 0);
  }
  12.90323% {
    transform: translate(0, 0);
  }
  16.12903% {
    transform: translate(5px, 0);
  }
  19.35484% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
