@charset "utf-8";

/* ----------------------------------------------------------------------------
RESET
---------------------------------------------------------------------------- */

/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  padding-bottom: 135px;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
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;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

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 #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  font-size: 14px;
  color: #333333;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ',
    Meiryo, Osaka, '游ゴシック体', YuGothic, '游ゴシック Medium',
    'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
}

.clear {
  clear: both;
}

.small {
  font-size: 14px;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.bg_none {
  background: none !important;
}

strong {
  font-weight: bold;
}

.ct {
  text-align: center;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

.inner {
  width: 960px;
  margin: 0 auto;
  padding: 45px 0 20px;
}

@media only screen and (max-width: 767px) {
  .inner {
    width: 100%;
    margin: 0 auto;
    padding: 6% 4% 2%;
    box-sizing: border-box;
  }
}

.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

/* --------------------------------------------------------------------------------------------------------------------------------------
contents
----------------------------------------------------------------------------------------------------------------------------------------- */

/* header
---------------------------------------------------------------------------- */

header {
  width: 960px;
  margin: 0 auto;
}

header .logo {
  padding: 20px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  header {
    width: 100%;
  }
  header .logo {
    padding: 4%;
    text-align: center;
  }
  header .logo img {
    width: 50%;
  }
}

/* main
---------------------------------------------------------------------------- */

.main {
  background: url(/assets/img/special/part/main-bg_pc.png) repeat-x;
  background-position: center;
  width: 100%;
  height: 568px;
  position: relative;
}

.main-inner {
  position: relative;
  width: 1050px;
  margin: 0 auto;
}

.main-slide-box {
  position: absolute;
  top: 100px;
  left: 0;
}

.main-slide {
  position: relative;
  overflow: hidden;
  width: 414px;
  height: 545px;
  margin: auto;
}

.main-slide img {
  display: block;
  position: absolute;
  width: inherit;
  height: inherit;
  opacity: 0;
  animation: slideAnime 12s ease infinite;
}

.main-slide img:nth-of-type(1) {
  animation-delay: 0s;
}
.main-slide img:nth-of-type(2) {
  animation-delay: 3s;
}
.main-slide img:nth-of-type(3) {
  animation-delay: 6s;
}
.main-slide img:nth-of-type(4) {
  animation-delay: 9s;
}

@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  19% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.main-img {
  width: 960px;
  margin: 0 auto;
}

.main-ttl {
  width: 55%;
  margin: 0 auto;
  padding-top: 45px;
  position: absolute;
  right: 170px;
  animation: mainfadeup 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes mainfadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 767px) {
  .main {
    width: 100%;
    background: url(/assets/img/special/part/main-bg_sp.png) no-repeat;
    background-size: contain;
    height: 80vh;
  }
  .main-inner {
    width: 100%;
    height: 80vh;
  }
  .main-img {
    width: 100%;
  }
  .main-img .main-ttl {
    width: 96%;
    right: 0;
    margin: 0 2%;
  }
  .main-slide {
    width: 54vw;
    height: 40vh;
  }
  .main-slide-box {
    top: auto;
    bottom: 0;
  }
}

/* CTA
---------------------------------------------------------------------------- */

.btn_area {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.btn_entry {
  width: 485px;
  height: 75px;
  font-size: 20px;
  box-sizing: border-box;
  margin-left: 9%;
}

.btn_entry a {
  padding: 25px 130px;
}

.btn_job_entry {
  width: 100%;
  background-color: #ffea6a;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.41);
  font-size: 20px;
  box-sizing: border-box;
}

.btn_float_entry {
  width: 640px;
  background-color: #ff718e;
  border: 3px solid #584f4f;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.41);
  font-size: 20px;
  box-sizing: border-box;
}

.btn_entry,
.btn_job_entry,
.btn_float_entry {
  display: inline-block;
  vertical-align: middle;
  border-radius: 100px;
  text-align: center;
}

.btn_float_entry,
.btn_float_entry {
  height: 65px;
}

.btn_job_entry {
  height: 45px;
}

.btn_float_entry a {
  padding: 20px 0;
}

.btn_job_entry a {
  padding: 13px 0;
  font-size: 18px;
}

.btn_job_entry a,
.btn_float_entry a {
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.25s linear;
  -webkit-transition: 0.25s linear;
  -moz-transition: 0.25s linear;
  font-weight: bold;
}

.btn_job_entry a {
  color: #636262;
}

.btn_job_entry a::before,
.btn_float_entry a::before {
  display: block;
  position: absolute;
  z-index: -1;
  left: -30%;
  top: -50%;
  content: '';
  width: 30px;
  height: 115px;
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  background-image: linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left bottom,
    right bottom,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 1)),
    color-stop(100%, rgba(255, 255, 255, 0))
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    #ffffff rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0) 100%
  );
  animation: shiny 3s infinite linear;
  -webkit-animation: shiny 3s infinite linear;
  -moz-animation: shiny 3s infinite linear;
}

.btn_entry a::after,
.btn_job_entry a::after,
.btn_float_entry a::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 5px solid #fff;
}

.btn_job_entry a::after {
  border-left: 5px solid #595151;
}

.btn_entry:hover,
.btn_job_entry:hover,
.btn_float_entry:hover {
  transition-duration: 0.3s;
  opacity: 0.7;
  transition-delay: 0.6s;
}

.btn_entry_l {
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 40px;
  padding: calc(1.5rem - 12px) 3rem 1.5rem;
  background: #ff718e;
}
.btn_entry_l:before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 3px solid #000;
  border-radius: 40px;
}

.btn_entry_l:hover:before {
  top: 0;
  left: 0;
}

.btn_entry_l:hover {
  padding: 25px 130px;
}

.sub_txt {
  position: absolute;
  left: 20px;
  font-size: 14px;
  background-color: #74e1eb;
  padding: 10px;
  border-radius: 35px;
  top: 19px;
}

@media only screen and (max-width: 767px) {
  .btn_float_entry {
    width: 80%;
    font-size: 5vw;
    height: auto;
  }
  .btn_float_entry a {
    padding: 3% 0 4%;
  }
  .btn_float_entry span {
    color: #fff;
    font-size: 3.5vw;
    line-height: 2;
  }
}

@keyframes shiny {
  0% {
    left: -50%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@-webkit-keyframes shiny {
  0% {
    left: -50%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@-moz-keyframes shiny {
  0% {
    left: -50%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

/* contents
---------------------------------------------------------------------------- */

.content {
  background: url(/assets/img/special/part/img-voice_btm.png) center bottom
      repeat-x,
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 213, 213, 1) 100%
    );
}
.content_ttl h2 {
  margin: 0 auto 35px;
  color: #424242;
  font-weight: bold;
  text-align: center;
}

.content_ttl h2 .strong-rdf {
  font-size: 40px;
  color: #f68290;
}

@media only screen and (max-width: 767px) {
  .content {
    background: url(/assets/img/special/part/img-voice_btm.png) center bottom
        repeat-x,
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 213, 213, 1) 100%
      );
    background-size: 10%;
  }
  .content_ttl h2 {
    width: 100%;
    margin-bottom: 5%;
  }
  .content_ttl h2 img {
    width: 60%;
    margin: 0 auto;
  }
}

/* section-merit
---------------------------------------------------------------------------- */
.merit .inner h2 img {
  margin: 0 auto;
}

.inner_merit {
  padding-top: 70px;
}

.merit ul {
  text-align: center;
  display: inline-block;
  vertical-align: top;
}

.merit ul li {
  display: inline-block;
  vertical-align: top;
  padding-right: 28px;
  width: 30%;
}

.merit ul .merit-sp {
  display: none;
}

.merit ul li .txt-copy {
  padding: 20px 0 10px 0;
  margin: 0;
  text-align: left;
}

.merit ul li .txt-copy-02 {
  padding: 25px 0 30px;
}

.merit ul li .txt-copy-01 img,
.merit ul li .txt-copy-03 img {
  width: 100%;
  display: block;
  margin: 0 auto;
  width: 75%;
}

.merit ul li .txt-copy-02 img {
  width: 100%;
  display: block;
  margin: 0 auto;
  width: 90%;
}

.merit ul li .txt {
  line-height: 2;
  font-size: 14px;
  width: 80%;
  margin: 0 auto;
  text-align: left;
}

.merit ul li .txt .txt-r {
  color: #eb6a79;
  font-weight: bold;
}

.merit ul li img {
  width: 100%;
}

.merit ul li .sp-img-merit {
  display: none;
}

.merit ul li .merit-item-txt {
  width: 88%;
  padding-top: 5%;
  margin: 0 auto;
}
.merit ul li:nth-child(2) .merit-item-txt {
  width: 77%;
  margin: 0 auto;
}
.merit ul li:nth-child(3) .merit-item-txt {
  width: 73%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .inner_merit {
    padding-top: 6%;
  }
  .merit ul li {
    position: relative;
    display: inline-block;
    padding: 4% 0 0 0;
    width: 100%;
  }

  .merit ul li:nth-child(1)::after,
  .merit ul li:nth-child(2)::before,
  .merit ul li:nth-child(3)::after {
    display: block;
    width: 55vw;
    height: 19vw;
    position: absolute;
    bottom: 13%;
  }
  .merit ul li:nth-child(1)::after {
    content: '';
    background: url(/assets/img/special/part/img-merit01-txt_sp.png) no-repeat,
      rgb(255 255 255 / 77%);
    background-size: 90%;
    background-position: center;
    left: 40%;
  }
  .merit ul li:nth-child(2)::before {
    content: '';
    background: url(/assets/img/special/part/img-merit02-txt_sp.png) no-repeat,
      rgb(255 255 255 / 77%);
    background-size: 82%;
    background-position: center;
    right: 40%;
  }
  .merit ul li:nth-child(3)::after {
    content: '';
    background: url(/assets/img/special/part/img-merit03-txt_sp.png) no-repeat,
      rgb(255 255 255 / 77%);
    background-size: 80%;
    background-position: center;
    left: 40%;
  }

  .merit ul li:nth-child(2) .merit-item-txt {
    width: 100%;
  }

  .merit ul li img {
    width: 95%;
  }
  .merit ul li .txt-block {
    display: inline-block;
    width: 43%;
    margin-left: 5%;
  }
  .merit ul .merit-sp {
    display: block;
  }
  .merit ul .merit-pc {
    display: none;
  }
  .merit ul li .txt-copy img {
    width: 100%;
  }
  .merit ul li .txt-copy-01 img {
    width: 85%;
  }
  .merit ul li .txt-copy-03 img {
    width: 90%;
  }
  .merit ul li .txt {
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .pc-img-merit,
  .merit-item-fl {
    width: 49%;
    display: inline-block;
  }
  .merit-item-fl {
    vertical-align: top;
    padding-top: 5%;
  }
}

/* section-joboffer
---------------------------------------------------------------------------- */
.joboffer {
  margin-bottom: 90px;
}

.joboffer .joboffer-box {
  background-color: #fff;
  max-width: 1660px;
  min-width: 980px;
  margin: 111px auto 0;
  position: relative;
  border-left: 1px solid;
  border-right: 1px solid;
}

.joboffer .joboffer-box::before {
  position: absolute;
  width: 100%;
  height: 146px;
  content: '';
  display: block;
  top: -70px;
  background: url(/assets/img/special/part/img-joboffer-top_pc.png) no-repeat;
  background-size: contain;
}
.joboffer .joboffer-box::after {
  position: absolute;
  width: 100%;
  height: 155px;
  content: '';
  display: block;
  bottom: -88px;
  background: url(/assets/img/special/part/img-joboffer_chair.png) no-repeat,
    url(/assets/img/special/part/img-joboffer-btm_pc.png) no-repeat;
  background-size: 240px, contain;
  background-position: 97% 0%, center;
}

.joboffer .inner {
  padding: 90px 0;
}

.joboffer .jobofferlist .swiper-slide {
  display: inline-block;
  vertical-align: top;
  width: 32%;
  box-sizing: border-box;
  margin-bottom: 1%;
  border: solid 1px #bbb;
  border-radius: 10px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.joboffer .jobofferlist .swiper-slide:last-child {
  margin-right: 0;
}

.joboffer .jobofferlist .swiper-slide h3 {
  font-size: 16px;
  font-weight: bold;
  border-bottom: dashed 1px #786a5b;
  padding: 10px;
  line-height: 1.2;
  color: #4a4a4a;
}

.joboffer .jobofferlist .swiper-slide img {
  width: 100%;
  border: solid 3px #fff;
  border-radius: 10px;
}

.joboffer .jobofferlist .swiper-slide .detail {
  padding: 20px;
}

.joboffer .jobofferlist .swiper-slide .tag {
  display: inline-block;
  padding: 5px 10px;
  background-color: #ff9674;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  margin: 10px 0;
  width: auto;
  text-align: center;
}

.joboffer .jobofferlist .swiper-slide .salary,
.joboffer .jobofferlist .swiper-slide .part {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #5f5f5f;
  letter-spacing: -1px;
  border-bottom: 1px solid #f4ebe6;
}

.joboffer .jobofferlist .swiper-slide .salary::before,
.joboffer .jobofferlist .swiper-slide .part::before {
  position: absolute;
  content: '';
  height: 19px;
  width: 15px;
  position: absolute;
  top: 0;
  left: 0;
}

.joboffer .jobofferlist .swiper-slide .part::before {
  height: 20px;
  width: 18px;
  left: -1px;
}

.joboffer .jobofferlist .swiper-slide .salary::before {
  background: url(/assets/img/special/part/yen-sign.png) no-repeat;
}

.joboffer .jobofferlist .swiper-slide .detail-txt {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
  margin-bottom: 10px;
}

.joboffer-list_a {
  background-color: #d2f0f2;
}
.joboffer-list_b {
  background-color: #e2e2e2;
}

@media only screen and (max-width: 767px) {
  .joboffer {
    margin-bottom: 12%;
  }
  .joboffer .joboffer-box {
    max-width: 100%;
    min-width: auto;
    border: none;
    padding-bottom: 10%;
    margin: 20% auto 0;
  }
  .joboffer .inner {
    padding: 8% 0 2%;
  }
  .joboffer .joboffer-box::before {
    width: 100%;
    height: 20vw;
    content: '';
    top: -5%;
    background: url(/assets/img/special/part/img-joboffer-top_sp.png) no-repeat;
    background-size: contain;
  }
  .joboffer .joboffer-box::after {
    width: 100%;
    height: 30vw;
    content: '';
    bottom: -10%;
    background: url(/assets/img/special/part/img-joboffer_chair.png) no-repeat,
      url(/assets/img/special/part/img-joboffer-btm_sp.png) no-repeat;
    background-size: 33%, contain;
    background-position: 95% 14%, center;
  }
  .joboffer .jobofferlist .swiper-slide {
    width: 80%;
    margin-right: 1%;
  }
  .joboffer .jobofferlist .swiper-container {
    padding: 0 0 50px 0;
  }
  .joboffer .jobofferlist .swiper-pagination-bullet-active {
    color: rgba(219, 36, 31, 0.9);
  }
  .joboffer .jobofferlist .swiper-button-prev,
  .joboffer .jobofferlist .swiper-button-next {
    width: 11%;
    height: 46%;
    margin-top: -45px;
    z-index: 10;
    cursor: pointer;
    top: 30%;
    display: block;
  }
  .joboffer .jobofferlist .swiper-button-prev {
    background-image: url(/assets/img/special/part/prev.png);
    background-size: contain;
    left: 0;
  }
  .joboffer .jobofferlist .swiper-button-next {
    background-image: url(/assets/img/special/part/next.png);
    background-size: contain;
    right: 0;
  }
  .joboffer .jobofferlist .swiper-slide h3 {
    font-size: 4.6vw;
  }
  .joboffer .jobofferlist .swiper-slide .salary {
    font-size: 4.6vw;
  }
  .joboffer .jobofferlist .swiper-slide .detail-txt {
    font-size: 3.8vw;
  }
  .joboffer .jobofferlist .swiper-button-prev:after,
  .joboffer .jobofferlist .swiper-container-rtl .swiper-button-next:after,
  .joboffer .jobofferlist .swiper-button-next:after,
  .joboffer .jobofferlist .swiper-container-rtl .swiper-button-prev:after {
    content: 'none';
  }
}

@media only screen and (min-width: 768px) {
  .jobofferlist .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .jobofferlist .swiper-slide {
    width: 32%;
  }
  .jobofferlist .swiper-button-prev,
  .jobofferlist .swiper-button-next,
  .jobofferlist .swiper-pagination {
    display: none;
  }
}

/* section-voice
---------------------------------------------------------------------------- */
.voice .inner {
  padding-bottom: 220px;
}

.voice ul {
  position: relative;
  display: flex;
  margin-top: 95px;
}

.voice ul::before {
  content: '';
  display: block;
  width: 370px;
  height: 370px;
  position: absolute;
  background: url(/assets/img/special/part/img-voice-item-l.png) no-repeat;
  background-size: contain;
  left: -470px;
  bottom: 30px;
}
.voice ul::after {
  content: '';
  display: block;
  width: 370px;
  height: 370px;
  position: absolute;
  background: url(/assets/img/special/part/img-voice-item-r.png) no-repeat;
  background-size: contain;
  right: -470px;
  bottom: 30px;
}

.voice ul li {
  display: flow-root;
  border: 2px #6cdaba solid;
  border-radius: 2px;
  width: 300px;
  padding: 15px;
  margin-right: 20px;
  box-sizing: border-box;
  vertical-align: top;
  list-style-type: none;
  background-image: none;
  background-color: #fff;
}

.voice ul li:last-child {
  margin-right: 0;
}

.voice_ttl {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 5px;
  clear: both;
}

.voice_ttl figure {
  width: 73px;
  position: absolute;
  top: -100px;
  left: -30px;
  padding: 0;
  margin: 0;
}

.voice_ttl figure img {
  width: 80px;
  height: 100px;
}

.voice_ttl .voice_text {
  margin: 0 0 0 30px;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 8px;
  padding: 10px;
}
.voice_ttl .voice_text img {
  width: 100%;
}
.voice_ttl .voice_text .voice_txtimg01 {
  width: 90%;
}

.voice ul li .profile {
  font-size: 18px;
  font-weight: bold;
  color: #7dd2d3;
  margin: 15px;
}

.voice ul li .txt {
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .voice {
    padding: 2%;
  }
  .voice .inner {
    padding-bottom: 35%;
  }
  .voice ul {
    display: block;
  }
  .voice ul::before,
  .voice ul::after {
    content: none;
  }
  .voice ul li {
    width: 100%;
    display: block;
    margin-bottom: 27%;
    margin-right: 0;
  }
  .voice ul li:last-child {
    margin-bottom: 0;
  }
  .voice_ttl .voice_text {
    width: 90%;
  }
  .voice-btm_ill {
    width: 100%;
    padding-top: 6%;
  }
  .voice-btm_ill img {
    width: 100%;
  }
}

/* section-reason
---------------------------------------------------------------------------- */

.reason_wrap {
  background: #f0f8fb;
}

.reason_cont {
  padding-top: 10px;
}

.reason_cont_h3 {
  display: table;
  width: 100%;
  margin-bottom: 25px;
}

.reason_cont_h3 .img_wrap {
  display: table-cell;
  width: 25%;
}

.reason_cont_h3 .img_wrap img {
  width: 100%;
}

.reason_cont_h3 span {
  display: table-cell;
  width: 75%;
  padding-left: 15px;
  font-size: 130%;
  font-weight: bold;
  margin: 60px 0px 50px;
  color: #333;
  vertical-align: middle;
  text-align: left;
}

.reason_cont_h3 span:first-letter {
  font-size: 160%;
}

.reason_cont_inner {
  display: table;
  width: 100%;
  border-bottom: 1px solid #eee;
  margin-top: 40px;
}

.reason_cont_inner:first-child {
  margin-top: 0;
}

.reason_cont_inner:last-child {
  border-bottom: 0;
}

.reason_cont_wrap_left {
  display: table-cell;
  width: 55%;
  vertical-align: top;
}

.reason_cont_wrap p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
  color: #666;
}

.reason_cont_wrap {
  margin-bottom: 50px;
}

.reason_cont_wrap .adress {
  font-size: 1.2rem;
  font-weight: normal;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: dotted 2px #fa9023;
}

.reason_cont_wrap .adress dt {
  color: #ef6f42;
  display: inline-block;
  margin-left: -6px;
}

.reason_cont_wrap .access {
  font-size: 1.3rem;
  font-weight: normal;
}

.reason_cont_wrap .access dt {
  color: #ef6f42;
  display: inline-block;
  margin-left: -6px;
}

.reason_cont_wrap .access dd {
  line-height: 1.8;
}

.sub_menu_cont_img_wrap {
  display: table-cell;
  width: 45%;
  padding-left: 30px;
  vertical-align: middle;
}

.sub_menu_cont_img_wrap img {
  width: 100%;
}

.pc_wrap_cont_wrap {
  background: #fff;
  padding: 50px 75px;
  margin-bottom: 30px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

@media only screen and (max-width: 767px) {
  .reason_cont .content_ttl h2 img {
    width: 80%;
  }
  .reason_wrap {
    padding: 6% 0;
  }
  .pc_wrap_cont_wrap {
    padding: 4%;
    box-sizing: border-box;
  }
  .reason_cont_wrap_left,
  .sub_menu_cont_img_wrap {
    display: block;
    width: 100%;
    padding: 0;
  }
  .reason_cont {
    padding-top: 10px;
  }
  .reason_cont_wrap {
    margin-bottom: 0;
  }
}

/* section-flow
---------------------------------------------------------------------------- */

.flow_wrap {
  padding: 0 0 30px;
  background-color: #ecf3e9;
  background: url(/lp_static/029/img/bg_container.gif);
}

.flow_wrap .pc_wrap {
  padding-bottom: 50px;
}

#flow h2.h2_pc {
  background: transparent;
  font-size: 180%;
  color: #ff7c8b;
  font-weight: bold;
  padding: 40px 0px 0px;
}

.kks-service-flow__body {
  margin-top: 40px;
  padding-bottom: 55px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.kks-service-flow__body:after {
  content: '';
  display: block;
  clear: both;
}

.kks-service-list__item {
  width: 23.0519480519%;
  position: relative;
  float: left;
  list-style: none;
}

.kks-service-item {
  padding: 0;
  margin: 0;
}

.kks-service-item__fig img {
  width: 60%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.kks-service-item__header {
  padding: 15px 0;
}

.kks-service-item__step {
  font-family: 'Roboto Condensed', 'Helvetica', ヒラギノ角ゴ Pro,
    Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #f28b53;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
}

.kks-service-item__step strong {
  font-family: 'Roboto Condensed', 'Helvetica', ヒラギノ角ゴ Pro,
    Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 22px;
  font-weight: bold;
}

.kks-service-item__txt {
  font-size: 18px;
  font-weight: 500;
}

.kks-service-item__lead {
  padding-top: 10px;
  border-top: 1px solid #cbcbcb;
  font-size: 14px;
  line-height: 1.7;
}

.kks-service-item__lead span {
  display: block;
  color: #f28b53;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: center;
}

.kks-service-list__item + .kks-service-list__item:before {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 62px;
  left: -17px;
  border-style: solid;
  border-width: 14px 0 14px 12px;
  border-color: transparent transparent transparent #f28b53;
  content: ' ';
}

.kks-service-list__item + .kks-service-list__item {
  margin-left: 2.5974025974%;
}

@media only screen and (max-width: 767px) {
  .flow_wrap .content_ttl h2 img {
    width: 90%;
  }
  .flow_wrap {
    padding-top: 7%;
  }
}

/* section-present
---------------------------------------------------------------------------- */

.present_dtl {
  padding: 35px 20px 25px;
  background-color: #fff;
}

.present_top {
  margin-bottom: 10px;
}

.kks-benefits {
  position: relative;
  background-color: #fff;
  padding: 30px;
  border: 6px double #77cbbd;
  display: table;
  width: 100%;
  box-sizing: border-box;
}

.kks-benefits__content {
  width: 50%;
  display: table-cell;
  padding: 15px 15px 0px;
}

.kks-benefits__h {
  width: 480px;
  position: absolute;
  top: -23px;
  left: 45%;
  margin-left: -165px;
  background-color: #77cbbd;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 46px;
  text-align: center;
  vertical-align: middle;
}

.kks-benefits__h strong {
  color: #fff48a;
  font-size: 30px;
  vertical-align: middle;
  position: relative;
}

.kks-benefits__h:before,
.kks-benefits__h:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  left: -15px;
  z-index: 0;
}

.kks-benefits__h:before {
  width: 0;
  height: 0;
  top: 0;
  border-style: solid;
  border-width: 0px 15px 23px 0;
  border-color: transparent #77cbbd transparent transparent;
}

.kks-benefits__h:after {
  width: 0;
  height: 0;
  bottom: 0;
  border-style: solid;
  border-width: 23px 15px 0px 0;
  border-color: transparent #77cbbd transparent transparent;
}

.kks-benefits__h > div:before,
.kks-benefits__h > div:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  right: -15px;
  z-index: 0;
}

.kks-benefits__h > div:before {
  width: 0;
  height: 0;
  top: 0;
  border-style: solid;
  border-width: 0px 0 23px 15px;
  border-color: transparent transparent transparent #77cbbd;
  z-index: 0;
}

.kks-benefits__h > div:after {
  width: 0;
  height: 0;
  bottom: 0;
  border-style: solid;
  border-width: 23px 0 0px 15px;
  border-color: transparent transparent transparent #77cbbd;
  z-index: 0;
}

#present .kks-benefits__h > div {
  padding-right: 15px;
  padding-left: 15px;
}

#present .kks-benefits__content:last-child {
  margin-bottom: 0px;
}

.kks-benefits__content__header {
  display: table;
  width: 100%;
}

.kks-benefits__content__header__num,
.kks-benefits__content__header__txt {
  display: table-cell;
  vertical-align: middle;
}

#present .kks-benefits__content__header__num {
  width: 50px;
}

.kks-benefits__content__header__txt {
  padding-left: 12px;
  font-size: 15px;
  line-height: 1.2;
}

.kks-benefits__content__header__txt strong {
  font-size: 17px;
  line-height: 1.2;
}

#present .kks-benefits__content__header__txt {
  font-size: 12px;
  line-height: 1.6;
}

.kks-benefits__content__num {
  width: 70px;
  height: 70px;
  background-color: #ff7c8b;
  border-radius: 100%;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 1.15;
}

.kks-benefits__content__num > span {
  display: inline-block;
  margin-top: 12px;
}

.kks-benefits__content__num > span strong {
  font-family: 'Roboto Condensed', 'Helvetica', ヒラギノ角ゴ Pro,
    Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  font-weight: 700;
}

.kks-benefits__content__fig {
  margin-top: 10px;
}

#present .kks-benefits__content__fig {
  padding-left: 20px;
  padding-right: 20px;
}

.kks-benefits__content--1 .kks-benefits__content__fig img {
  width: 398px;
  height: auto;
}

#present .kks-benefits__content--1 .kks-benefits__content__fig img {
  width: 100%;
  height: auto;
}

#present .kks-benefits__content--2 {
  margin-top: 20px;
}

.kks-benefits__content--2 .kks-benefits__content__fig img {
  width: 399px;
  height: auto;
}

#present .kks-benefits__content--2 .kks-benefits__content__fig img {
  width: 100%;
  height: auto;
}

.kks-benefits-wrap__note {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.6;
}

#other_info {
  background-color: #ff8996;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  #other_info .telBox {
    overflow: hidden;
    width: 1030px;
    margin: 0 auto;
    padding: 10px 50px;
  }
  #other_info .telBox .info1 {
    overflow: hidden;
    margin: 0 0 20px 0;
    background-color: #fff;
    color: #ff5c6e;
    border-radius: 5px;
    padding: 10px;
  }
  #other_info .telBox .info1 .ttl {
    text-align: center;
  }
  #other_info .telBox .info1 .ttl .telTtl {
    margin: 0 0 5px 0;
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 100px;
    line-height: 1;
    background-color: #ff8996;
    color: #fff;
    text-align: center;
  }
  #other_info .telBox .info1 .ttl .free {
    margin: 0 0 0 10px;
    font-size: 12px;
    text-align: center;
  }
  #other_info .telBox .info1 li {
    width: 33.3333%;
    float: left;
    list-style: none;
  }
  #other_info .telBox .info1 li#telSP {
    padding: 10px 0;
    text-align: center;
  }
  #other_info .telBox .info1 li#telSP a {
    background-color: #fff;
    display: block;
    border-radius: 8px;
    padding: 10px;
  }
  #other_info .telBox .info1 li#telSP {
    display: none;
  }
  #other_info .telBox .info1 li.txt {
    padding: 5px 0 0;
    font-size: 11px;
    line-height: 1.3em;
    text-align: left;
    display: inline-block;
  }
}

@media only screen and (min-width: 768px) {
  #other_info .telBox .box01 {
    overflow: hidden;
    border-radius: 5px;
    width: 31.3333%;
    float: left;
  }
  #other_info .telBox .box01,
  #other_info .telBox .box02 {
    margin-right: 2%;
  }
  #other_info .telBox .box01 figure,
  #other_info .telBox .box02 figure {
    float: left;
    margin: 0 5px 0 0;
    padding: 0;
  }
  #other_info .telBox .box01 .txtbox {
    float: left;
    width: 76%;
  }
  #other_info .telBox .box01 .txtbox h2,
  #other_info .telBox .box02 .txtbox h2 {
    margin: 0 0 3px 0;
    font-size: 12px;
    font-weight: bold;
    display: block;
  }
  #other_info .telBox .txtbox p {
    font-size: 80%;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 767px) {
  .kks-service-flow__body ul {
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 5px;
  }
  .kks-service-list__item {
    position: relative;
    width: 100%;
    float: none;
  }
  .kks-service-item {
    padding: 0;
    margin: 0;
  }
  .kks-benefits:before,
  .kks-profile:before,
  .kks-section__sp-img-wrap:before,
  .kks-service-item:before,
  .kks-service-list:before,
  .kks-benefits:after,
  .kks-profile:after,
  .kks-section__sp-img-wrap:after,
  .kks-service-item:after,
  .kks-service-list:after {
    display: table;
    content: '';
  }
  .kks-benefits:after,
  .kks-profile:after,
  .kks-section__sp-img-wrap:after,
  .kks-service-item:after,
  .kks-service-list:after {
    clear: both;
  }
  .kks-service-list__item + .kks-service-list__item {
    margin-top: 30px;
    margin-left: 0;
  }
  .kks-service-item__fig {
    width: 30%;
    float: left;
  }
  .kks-service-item__fig img {
    width: 100%;
    height: auto;
  }
  .kks-service-item__caption {
    width: 66.1971830986%;
    float: right;
  }
  .kks-service-item__header {
    padding-top: 0;
    padding-bottom: 8px;
  }
  .kks-service-item__step {
    font-family: 'Roboto Condensed', 'Helvetica', ヒラギノ角ゴ Pro,
      Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #f28b53;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
  }
  .kks-service-item__txt {
    font-size: 14px;
    font-weight: 500;
  }
  .kks-service-item__lead {
    border-top: 1px solid #cbcbcb;
    font-size: 13px;
    padding-top: 5px;
    line-height: 1.3;
  }
  .kks-service-item__lead span {
    display: block;
    color: #f28b53;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
  }
  .kks-service-list__item + .kks-service-list__item {
    margin-top: 30px;
    margin-left: 0;
  }
  .kks-service-list__item + .kks-service-list__item:before {
    display: block;
    position: absolute;
    content: ' ';
    width: 0;
    height: 0;
    top: -20px;
    left: 50%;
    margin-left: -20px;
    border-style: solid;
    border-width: 10px 20px 0 20px;
    border-color: #f28b53 transparent transparent transparent;
  }
  #present .present_dtl {
    padding: 35px 20px 25px;
    background-color: #fff;
  }
  .kks-benefits {
    position: relative;
    background-color: #fff;
    padding: 50px 35px 30px;
    border: 6px double #77cbbd;
  }
  #present .kks-benefits {
    padding: 40px 22px 25px 0;
  }
  .kks-benefits__h {
    width: 330px;
    position: absolute;
    top: -23px;
    left: 50%;
    margin-left: -165px;
    background-color: #77cbbd;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 46px;
    text-align: center;
    vertical-align: middle;
  }
  #present .kks-benefits__h {
    width: 110%;
    margin-left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 4vw;
    white-space: nowrap;
  }
  .kks-benefits__h strong {
    color: #fff48a;
    font-size: 5vw;
    vertical-align: middle;
    position: relative;
  }
  #present .kks-benefits__h strong {
    font-size: 22px;
  }
  .kks-benefits__h:before,
  .kks-benefits__h:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    left: -15px;
    z-index: 1;
  }
  .kks-benefits__h:before {
    width: 0;
    height: 0;
    top: 0;
    border-style: solid;
    border-width: 0px 15px 23px 0;
    border-color: transparent #77cbbd transparent transparent;
  }
  .kks-benefits__h:after {
    width: 0;
    height: 0;
    bottom: 0;
    border-style: solid;
    border-width: 23px 15px 0px 0;
    border-color: transparent #77cbbd transparent transparent;
  }
  .kks-benefits__h > div:before,
  .kks-benefits__h > div:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    right: -15px;
    z-index: 1;
  }
  .kks-benefits__h > div:before {
    width: 0;
    height: 0;
    top: 0;
    border-style: solid;
    border-width: 0px 0 23px 15px;
    border-color: transparent transparent transparent #77cbbd;
  }
  .kks-benefits__h > div:after {
    width: 0;
    height: 0;
    bottom: 0;
    border-style: solid;
    border-width: 23px 0 0px 15px;
    border-color: transparent transparent transparent #77cbbd;
  }
  #present .kks-benefits__h > div {
    padding-right: 15px;
    padding-left: 15px;
  }
  .kks-benefits__content {
    width: 425px;
    float: left;
  }
  #present .kks-benefits__content {
    width: 100%;
    margin-bottom: 20px;
  }
  #present .kks-benefits__content:last-child {
    margin-bottom: 0px;
  }
  .kks-benefits__content__header {
    display: table;
    width: 100%;
  }
  .kks-benefits__content__header__num,
  .kks-benefits__content__header__txt {
    display: table-cell;
    vertical-align: middle;
  }
  #present .kks-benefits__content__header__num {
    width: 50px;
  }
  .kks-benefits__content__header__txt {
    padding-left: 12px;
    font-size: 15px;
    line-height: 1.2;
  }
  .kks-benefits__content__header__txt strong {
    font-size: 20px;
    line-height: 1.2;
  }
  #present .kks-benefits__content__header__txt {
    font-size: 12px;
    line-height: 1.6;
  }
  #present .kks-benefits__content__header__txt strong {
    font-size: 16px;
  }
  .kks-benefits__content__num {
    width: 80px;
    height: 80px;
    background-color: #77cbbd;
    border-radius: 100%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 1.15;
  }
  .kks-benefits__content__num > span {
    display: inline-block;
    margin-top: 16px;
  }
  .kks-benefits__content__num > span strong {
    font-family: 'Roboto Condensed', 'Helvetica', ヒラギノ角ゴ Pro,
      Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 30px;
    font-weight: 700;
  }
  #present .kks-benefits__content__num {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
  #present .kks-benefits__content__num > span {
    margin-top: 10px;
  }
  #present .kks-benefits__content__num > span strong {
    font-size: 18px;
  }
  .kks-benefits__content__fig {
    margin-top: 10px;
  }
  #present .kks-benefits__content__fig {
    padding-left: 20px;
    padding-right: 20px;
  }
  .kks-benefits__content--1 .kks-benefits__content__fig img {
    width: 398px;
    height: auto;
  }
  #present .kks-benefits__content--1 .kks-benefits__content__fig img {
    width: 100%;
    height: auto;
  }
  #present .kks-benefits__content--2 {
    margin-top: 20px;
  }
  .kks-benefits__content--2 .kks-benefits__content__fig img {
    width: 399px;
    height: auto;
  }
  #present .kks-benefits__content--2 .kks-benefits__content__fig img {
    width: 100%;
    height: auto;
  }
  .kks-benefits-wrap__note {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.6;
  }
  #other_info .telBox {
    overflow: hidden;
    width: 95%;
    margin: 0 auto;
    padding: 10px 0;
  }
  #other_info .telBox .info1 {
    overflow: hidden;
    margin: 0 0 10px 0;
    padding: 0px;
  }
  #other_info .telBox .info1 .ttl {
    text-align: center;
  }
  #other_info .telBox .info1 .ttl .telTtl {
    margin: 0 0 5px 0;
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
    border: solid 1px #fff;
    border-radius: 100px;
    line-height: 1;
  }
  #other_info .telBox .info1 .ttl .free {
    margin: 3px 0 0 5px;
  }
  #other_info .telBox .info1 li#telSP {
    padding: 10px 0;
    text-align: center;
  }
  #other_info .telBox .info1 li#telSP a {
    background-color: #fff;
    display: block;
    border-radius: 8px;
    padding: 10px 15px;
  }
  #other_info .telBox .info1 li#telPC {
    display: none;
  }
  #other_info .telBox .info1 li.txt {
    margin: 0px;
    padding: 0px;
    font-size: 90%;
    line-height: 1.3em;
    text-align: center;
  }
  #other_info .telBox .box01,
  #other_info .telBox .box02 {
    overflow: hidden;
    background-color: #fff7eb;
    color: #ef6a35;
    padding: 10px 5px;
    display: table;
  }
  #other_info .telBox .box01 figure,
  #other_info .telBox .box02 figure {
    display: table-cell;
    width: 15%;
    margin: 0 5px 0 0;
    padding: 0;
  }
  #other_info .telBox .box01 .txtbox,
  #other_info .telBox .box02 .txtbox {
    width: 85%;
    display: table-cell;
    vertical-align: top;
    padding-left: 5px;
  }
  #other_info .telBox .box01 .txtbox h2,
  #other_info .telBox .box02 .txtbox h2 {
    margin: 0 0 3px 0;
    color: #f0b845;
    font-size: 14px;
    line-height: 1.3;
  }
  #other_info .telBox .box01 .txtbox p,
  #other_info .telBox .box02 .txtbox p {
    color: #000;
    font-size: 80%;
  }
  #other_info {
    background-color: #ff8996;
    color: #fff;
  }
  #page-top {
    display: none !important;
  }
}

/* footer
---------------------------------------------------------------------------- */

#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 77%;
  z-index: 10000;
}

#pagetop a {
  display: block;
  text-indent: -9999px;
  width: 60px;
  height: 60px;
  background: rgba(119, 203, 189, 0.9);
  border-radius: 4px;
  position: relative;
}

#pagetop a:before {
  content: '';
  width: 0;
  height: 0;
  border: solid 9px transparent;
  border-bottom: solid 15px #fff;
  position: absolute;
  top: 25%;
  right: 35%;
}

#pagetop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

footer {
  width: 100%;
  border-top: dotted 1px #999;
}

footer p {
  display: block !important;
  padding: 8px 0;
  color: #666 !important;
  font-size: 11px;
  text-align: center;
}

.floating {
  position: fixed;
  display: none;
  width: 100%;
  text-align: center;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 35px;
  z-index: 1000;
}

@media only screen and (max-width: 767px) {
  #pagetop {
    bottom: 95px;
    display: none;
  }
  .floating {
    padding: 2%;
    box-sizing: border-box;
  }
}

.add-footer-link {
  padding-top: 20px;
  font-size: 14px;
  text-align: center;
}

.add-footer-link a {
  margin-left: 30px;
  color: #32b7e6;
}

.add-footer-link > *:first-child {
  margin-left: 0;
}

.none_text01,
.none_text02,
.none_text03 {
  display: none;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none !important;
}
