@charset "utf-8";

/* reset
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  min-height: 100%;
  width: 100%;
  font-size: 62.5%;
  font-size: 10px\0;
  /* IE */
  background: #fff;
}

body {
  line-height: 1;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Helvetica Neue", Arial, Meiryo, sans-serif;
  color: #333;
  background: #fff url(../img/bg-pc@2x.jpg) no-repeat 50% 0;
  background-attachment: fixed;
  background-size: cover;
}

/* IE */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}

/* image
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

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

figure {
  line-height: 1;
  text-align: center;
}

figure img {
  line-height: 1;
}

/* link
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

a:link {
  color: #000;
  text-decoration: none;
  transition: all 0.4s;
}

p>a:link {
  text-decoration: underline;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:active {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover img {
  opacity: .7;
}

/* clear
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clearfix>li {
  float: left;
}

/* style
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

select {
  width: auto;
  vertical-align: middle;
  color: inherit;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.6rem;
  min-height: 1em;
  padding: 7px 35px 7px 15px !important;
  background: #fff url(../img/common/icon/arrow-select.svg) right 10px center / 10px no-repeat !important;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea {
  margin: 0;
  font-size: 1.6rem;
  padding: 1.1em 1.5em 1.1em 1.5em;
  outline: none;
  line-height: 1.4;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #99cdea;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 7px;
  width: 100%;
}

input.hasDatepicker {
  width: 35%;
}

.mwform-tel-field input[type="text"] {
  width: 28%;
}

textarea {
  min-height: 12em;
  height: 12em;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 5px;
}

input[type="submit"],
button {
  -webkit-appearance: none;
}

p.Indent_List,
ul.Indent_List>li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}

time {
  font-size: 1.6rem;
  color: #929292;
  display: inline-block;
  letter-spacing: 1px;
}

div,
p,
dt,
dd,
li {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .06em;
}

@media screen and (max-width: 750px) {

  div,
  p,
  dt,
  dd,
  li {
    font-size: 1.4rem;
    font-size: 3.73vw;
    line-height: 2.2;
  }
}

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}

.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* text
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

.Bold {
  font-weight: 600;
}

.Poppins {
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.Text_Left {
  text-align: left !important;
}

.Text_Center {
  text-align: center !important;
}

.Text_Right {
  text-align: right !important;
}


/* Float
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

.Left {
  float: left !important;
}

.Right {
  float: right !important;
}

/* h1-h6
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: normal;
}

/* Flex_Box
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/
.Flex_Box,
.Flex_Box.Nowrap,
.Flex_Box.End,
.Flex_Box.Start,
.Flex_Box.Reverse,
.Flex_Box.Column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  box-sizing: border-box;
}

.Flex_Box.Middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -ms-flex-line-pack: center;
  align-content: center;
}

.Flex_Box.Column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.Flex_Box.Bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.Flex.Column>* {
  width: 100%;
}

.Box_2>* {
  width: 49%;
}

.Box_3>* {
  width: 32.3333%;
}

.Box_4>* {
  width: 24%;
}

.Box_5>* {
  width: 19%;
}

.Box_6>* {
  width: 15.6666%;
}

.Box_7>* {
  width: 13.285%;
}

.Box_8>* {
  width: 11.5%;
}

.Box_9>* {
  width: 10.1111%;
}

.Flex_Box.Type-a>figure {
  width: 26%;
}

.Flex_Box.Type-a>div,
.Flex_Box.Type-a>p {
  width: 72%;
}

.Flex_Box.Type-b>figure {
  width: 27%;
}

.Flex_Box.Type-b>div,
.Flex_Box.Type-b>p {
  width: 70%;
}

.Flex_Box.Nowrap {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.Flex_Box.Reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.Flex_Box.End {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.Flex_Box.Start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.Flex_Box.Center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* HEADER
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

#Header {
  width: 100%;
  height: 17vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  text-align: center;
  overflow: hidden;
}

@media screen and (min-width: 751px) {
  #Header {
    height: 96px;
  }
}

#Header .inner {
  padding: 2.5vw 3.5vw;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 750px;
  background: #fff;
  position: relative;
}

@media screen and (min-width: 751px) {
  #Header .inner {
    padding: 20px 10px;
    max-width: 500px;
  }
}

#Header .btn-contact {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 750px) {
  #Header .btn-contact {
    width: 17vw;
    height: 17vw;
  }
}

#Header .sitelogo {
  width: 48%;
  float: left;
}

@media screen and (min-width: 751px) {
  #Header .sitelogo {
    width: 41%;
  }
}

#Header .tel {
  font-size: 3.2rem;
  float: left;
  width: 36%;
  margin-left: .5%;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 1% 0;
}

@media screen and (min-width: 751px) {
  #Header .tel {
    font-size: 2.2rem;
    padding: .5%;
  }
}

@media screen and (max-width: 750px) {
  #Header .tel {
    font-size: 1.6rem;
    font-size: 4.26vw;
  }
}

#Header .tel a {
  text-decoration: none;
}

@media screen and (min-width: 751px) {
  #Header .tel a {
    pointer-events: none;
  }
}

#Header .tel span {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 0;
}

@media screen and (min-width: 751px) {
  #Header .tel span {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 750px) {
  #Header .tel span {
    font-size: 1.1rem;
    font-size: 2.73vw;
  }
}

/* FOOTER
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

#Footer {
  max-width: 750px;
  padding: 5.6% 0;
  margin: 0 auto;
  border-top: 1px solid #eee;
  background: #fff;
}

@media screen and (min-width: 751px) {
  #Footer {
    padding: 65px 0;
    max-width: 500px;
  }
}

#Footer .footsitelogo {
  padding: 0 9.5%;
}

#Footer .btn {
  margin: 4.5% auto;
  width: 73%;
  text-align: center;
}

#Footer .btn a {
  font-size: 1.8rem;
  color: #fff;
  background: #C82124;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: .2em .5em .1em;
  transition: all .4s;
}

@media screen and (max-width: 750px) {
  #Footer .btn a {
    font-size: 1.4rem;
    font-size: 3.73vw;
  }
}

#Footer .btn a:hover {
  opacity: .7;
}

#Footer .btn a:after {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/icn_link@2x.png) no-repeat 50% 50%;
  background-size: contain;
  margin: 0 -.2em 0 .5em;
}

@media screen and (max-width: 750px) {
  #Footer .btn a:after {
    width: 1.4rem;
    height: 1.4rem;
  }
}

#Footer p {
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 750px) {
  #Footer p {
    font-size: 1rem;
    font-size: 2.36vw;
  }
}

#Footer p>a:link {
  text-decoration: none;
}

/* contents
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/


#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 100005;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #ca001c;
  ;
  z-index: 2;
}

.pc-reserved {
  display: none;
}

@media screen and (min-width: 1380px) {
  .pc-reserved {
    display: block;
    position: fixed;
    bottom: 2%;
    right: 1%;
    width: 342px;
    height: 103px;
    z-index: 3;
  }

  .pc-reserved a {
    display: block;
  }
}

#contents .inner {
  width: 100%;
  padding: 0 5%;
}

#contents {
  background: #fff;
  padding-top: 17vw;
  max-width: 750px;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  #contents {
    padding-top: 96px;
    max-width: 500px;
  }
}

/* Box
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/


/* Title - 見出し -
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

.ttl-01 {
  font-size: 3.4rem;
  letter-spacing: .06em;
  margin: 0 auto 0.55em;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .ttl-01 {
    font-size: 2.6rem;
    font-size: 7vw;
  }
}

.txt_bg-01 {
  display: inline-block;
  line-height: 1.45;
  padding: 0 .3em;
}

.txt_bg-01.blue {
  background: #3289E0;
  color: #fff;
}

.txt_bg-01.orange-gr {
  background: #C82124;
  background-image: linear-gradient(90deg, rgba(200, 33, 36, 1), rgba(234, 134, 33, 1));
  color: #fff;
}

.ttl-02 {
  font-size: 3.2rem;
  margin: 0 auto 0.8em;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .ttl-02 {
    font-size: 2.6rem;
    font-size: 7vw;
  }
}

.ttl-02 .en {
  font-size: 1.4rem;
  color: #C82124;
  display: block;
  font-weight: bold;
  margin: 0 auto .2em;
}

@media screen and (max-width: 750px) {
  .ttl-02 .en {
    font-size: 1.2rem;
    font-size: 3.2vw;
  }
}

.ttl-03 {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .ttl-03 {
    font-size: 2.2rem;
    font-size: 5.86vw;
  }
}

.ttl-04 {
  font-size: 2.6rem;
  margin: 0 auto 0.4em;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  .ttl-04 {
    font-size: 2rem;
    font-size: 5.34vw;
  }
}

.ttl-05 {
  font-size: 2.6rem;
  margin: 0 auto 0.4em;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .ttl-05 {
    font-size: 2rem;
    font-size: 5.34vw;
  }
}

.txt_red {
  color: #ca2124;
  font-weight: bold;
}

/* Btn
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

.btn-doc-request {
  margin-top: 15px;
}


/* Section
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/

#main-img {
  margin: 0 auto 6%;
}

#sec-01 {
  padding: 4% 0 16%;
}

#sec-01 .box-01 {
  padding: 8% 0 3.5%;
  margin: 0 auto 12%;
  position: relative;
  background: #eee;
}

#sec-01 .box-01:before {
  content: "";
  position: absolute;
  bottom: -64px;
  left: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 375px 0 375px;
  border-color: #eee transparent transparent transparent;
}

@media screen and (min-width: 751px) {
  #sec-01 .box-01:before {
    bottom: -52.5px;
    border-width: 52.5px 250px 0 250px;
  }
}

@media screen and (max-width: 750px) {
  #sec-01 .box-01:before {
    bottom: calc(-9.1vw + 1.5px);
    border-width: 9.1vw 50vw 0 50vw;
  }
}

#sec-01 .box-02 p {
  font-size: 3.2rem;
  margin: 0 auto 42px;
  letter-spacing: .07rem;
  line-height: 1.96;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  #sec-01 .box-02 p {
    font-size: 2.2rem;
    font-size: 5.86vw;
  }
}

#sec-01 .box-02 p .small {
  font-size: 2.2rem;
}

@media screen and (max-width: 750px) {
  #sec-01 .box-02 p .small {
    font-size: 1.8rem;
    font-size: 4.8vw;
  }
}

#sec-01 .box-02 .txt_bg-01.orange-gr {
  font-size: 4.4rem;
  padding: 0 .2em 0 .25em;
  margin-right: .1em;
}

@media screen and (max-width: 750px) {
  #sec-01 .box-02 .txt_bg-01.orange-gr {
    font-size: 2.6rem;
    font-size: 7vw;
  }
}

#sec-02 {
  padding: 0 0 14%;
}

#sec-02 .point-list {
  margin: 3.5% auto 0;
}

#sec-02 .point-list li .Flex_Box {
  background: url(../img/icn_01@2x.png) no-repeat 5% 50%;
  background-size: auto 38%;
}

#sec-02 .point-list li:nth-child(2) .Flex_Box {
  background-image: url(../img/icn_02@2x.png);
}

#sec-02 .point-list li:nth-child(3) .Flex_Box {
  background-image: url(../img/icn_03@2x.png);
}

#sec-02 .point-list li:nth-child(4) .Flex_Box {
  background-image: url(../img/icn_04@2x.png);
}

#sec-02 .point-list li:nth-child(even) .Flex_Box {
  background-position: 95% 50%;
}

#sec-02 .point-list li:nth-child(odd) {
  background: #FBF7F2;
}

#sec-02 .point-list li .ttl {
  width: 44.5%;
  text-align: right;
  padding: 0 7% 0 4.5%;
  position: relative;
}

#sec-02 .point-list li:nth-child(even) .ttl {
  text-align: left;
  padding: 0 4.5% 0 7%;
}

#sec-02 .point-list li .ttl span {
  position: relative;
  z-index: 3;
}

#sec-02 .point-list li figure {
  width: 55.5%;
}

#sec-02 .point-list li p {
  padding: 4% 4% 8.5%;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  #sec-02 .point-list li p {
    line-height: 2.14;
  }
}

#sec-03 {
  padding: 16.5% 0 14.2%;
  background: #eee;
}

#sec-03 .slider {
  margin: 6% auto;
  padding: 0 12% 16%;
}

@media screen and (max-width: 750px) {
  #sec-03 .slider {
    padding: 0 0 5%;
  }
}

/*
#sec-03 .slider .slick-list {
  padding: 0 16.5% 0 0!important;
}*/
#sec-03 .slider-box {
  padding: 0 12.5px;
}

@media screen and (max-width: 750px) {
  #sec-03 .slider-box {
    padding: 0 5vw;
  }
}

#sec-03 .slider .slick-prev,
#sec-03 .slider .slick-next {
  left: inherit;
  top: 127px;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

@media screen and (max-width: 750px) {

  #sec-03 .slider .slick-prev,
  #sec-03 .slider .slick-next {
    width: 10vw;
    height: 10vw;
    top: 31vw;
  }
}

#sec-03 .slider .slick-prev {
  left: 8%;
  background: url(../img/icn_left-or@2x.png?ver=0922) no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 750px) {
  #sec-03 .slider .slick-prev {
    left: .5vw
  }
}

#sec-03 .slider .slick-next {
  right: 8%;
  background: url(../img/icn_right-or@2x.png?ver=0922) no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 750px) {
  #sec-03 .slider .slick-next {
    right: .5vw;
  }
}

#sec-03 .slider .slick-prev.slick-disabled {
  background-image: url(../img/icn_left-gr@2x.png?ver=0922);
}

#sec-03 .slider .slick-next.slick-disabled {
  background-image: url(../img/icn_right-gr@2x.png?ver=0922);
}

#sec-03 .slider .slick-prev:before,
#sec-03 .slider .slick-next:before {
  display: none;
}

#sec-03 .slider-box figure {
  position: relative;
  margin: 0 auto 3.8rem;
}

@media screen and (max-width: 750px) {
  #sec-03 .slider-box figure {
    margin: 0 auto 2.25rem;
  }
}

#sec-03 .slider-box figure:after {
  content: "";
  width: 100%;
  height: 5.7rem;
  background: url(../img/icn_ttl_01@2x.png) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -2.85rem;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  #sec-03 .slider-box figure:after {
    height: 3.8rem;
    bottom: -1.75rem;
  }
}

#sec-03 .slider-02 figure:after {
  background-image: url(../img/icn_ttl_02@2x.png);
}

#sec-03 .slider-03 figure:after {
  background-image: url(../img/icn_ttl_03@2x.png);
}

#sec-03 .slider-04 figure:after {
  background-image: url(../img/icn_ttl_04@2x.png);
}

#sec-03 .slider-05 figure:after {
  background-image: url(../img/icn_ttl_05@2x.png);
}

#sec-03 .slider-06 figure:after {
  background-image: url(../img/icn_ttl_06@2x.png);
}

#sec-04 {
  padding: 16.5% 0 14.5%;
  background: #FBF7F2;
}

#sec-04 .voice-01 {
  margin: 0 auto 8%;
}

#sec-04 .voice-01 .ttl-03_box {
  background: url(../img/bg-voice_01@2x.png) no-repeat 50% 50%;
  background-size: 100% auto;
  padding: 15.75% 0;
  margin: 0 auto 4%;
}

@media screen and (max-width: 750px) {
  #sec-04 .voice-01 .ttl-03_box {
    padding: 15.6vw 0;
  }
}

#sec-04 .voice-01 .ttl-03_box p {
  font-size: 2.8rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  #sec-04 .voice-01 .ttl-03_box p {
    font-size: 1.4rem;
    font-size: 3.73vw;
  }
}

#sec-04 .voice-01 .ttl-03_box .ttl {
  color: #fff;
  letter-spacing: .08em;
  margin: 0 auto;
}

#sec-04 .article {
  margin: 4.5% auto 3.5%;
}

#sec-04 .article figure {
  margin: 0 auto 4%;
}

#sec-05 {
  padding: 16.5% 0 14%;
}

#sec-05 .flow-list {
  padding: 0 0 0 16%;
  position: relative;
}

#sec-05 .flow-list:before {
  content: "";
  width: 1%;
  height: 100%;
  background: #eee;
  position: absolute;
  left: 5%;
  top: 0;
}

#sec-05 .flow-list li {
  margin: 0 0 5%;
}

#sec-05 .flow-list li figure:after {
  content: "";
  width: 13.1%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -19.2%;
  z-index: 3;
  background: url(../img/icn_ttl_01@2x.png) no-repeat 50% 50%;
  background-size: contain;
}

#sec-05 .flow-list li:nth-child(2) figure:after {
  background-image: url(../img/icn_ttl_02@2x.png);
}

#sec-05 .flow-list li:nth-child(3) figure:after {
  background-image: url(../img/icn_ttl_03@2x.png);
}

#sec-05 .flow-list li:nth-child(4) figure:after {
  background-image: url(../img/icn_ttl_04@2x.png);
}

#sec-05 .flow-list li:nth-child(5) figure:after {
  background-image: url(../img/icn_ttl_05@2x.png);
}

#sec-05 .flow-list li:nth-child(6) figure:after {
  background-image: url(../img/icn_ttl_06@2x.png);
}

#sec-05 .flow-list li:first-child figure:before,
#sec-05 .flow-list li:last-child figure:before,
#sec-05 .flow-list li:last-child .ttl:before,
#sec-05 .flow-list li:last-child p:before {
  content: "";
  width: 13.1%;
  height: 50%;
  position: absolute;
  top: 0;
  left: -19.2%;
  background: #fff;
  z-index: 1;
}

#sec-05 .flow-list li:last-child figure:before {
  top: inherit;
  bottom: -5%;
  height: 55%;
}

#sec-05 .flow-list li:last-child .ttl:before,
#sec-05 .flow-list li:last-child p:before {
  height: 105%;
}

#sec-05 .flow-list li figure {
  margin: 0 auto 2.5%;
  position: relative;
}

#sec-05 .flow-list li .ttl {
  font-size: 2.9rem;
  text-align: left;
  margin: 0 auto;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 750px) {
  #sec-05 .flow-list li .ttl {
    font-size: 2rem;
    font-size: 5.34vw;
  }
}

#sec-05 .flow-list li p {
  line-height: 2;
  position: relative;
}

@media screen and (max-width: 750px) {
  #sec-05 .flow-list li p {
    line-height: 2.1;
  }
}
