@charset "UTF-8";
/* General */
.float-list, .cf {
  *zoom: 1;
}
.float-list:after, .cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

form ::-webkit-input-placeholder {
  color: #C6C6C6;
}
form :-moz-placeholder {
  opacity: 1;
  color: #C6C6C6;
}
form ::-moz-placeholder {
  opacity: 1;
  color: #C6C6C6;
}
form :-ms-input-placeholder {
  color: #C6C6C6;
}

::-moz-selection {
  color: #FFF;
  background: rgba(90, 187, 182, 0.7);
}

::selection {
  color: #FFF;
  background: rgba(90, 187, 182, 0.7);
}

.float-list li {
  float: left;
}

/* Base */
*,
*:before,
*:after {
  box-sizing: inherit;
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 300;
  src: url("../../assets/font/NotoSansCJKjp-DemiLight.woff2") format("woff2"), url("../../assets/font/NotoSansCJKjp-DemiLight.woff") format("woff"), url("../../assets/font/NotoSansCJKjp-DemiLight.ttf") format("truetype"), url("../../assets/font/NotoSansCJKjp-DemiLight.eot") format("embedded-opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("../../assets/font/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../../assets/font/NotoSansCJKjp-Regular.woff") format("woff"), url("../../assets/font/NotoSansCJKjp-Regular.ttf") format("truetype"), url("../../assets/font/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 500;
  src: url("../../assets/font/NotoSansCJKjp-Medium.woff2") format("woff2"), url("../../assets/font/NotoSansCJKjp-Medium.woff") format("woff"), url("../../assets/font/NotoSansCJKjp-Medium.ttf") format("truetype"), url("../../assets/font/NotoSansCJKjp-Medium.eot") format("embedded-opentype");
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url("../../assets/font/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../../assets/font/NotoSansCJKjp-Bold.woff") format("woff"), url("../../assets/font/NotoSansCJKjp-Bold.ttf") format("truetype"), url("../../assets/font/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(116, 110, 110, 0.0001);
}

@-ms-viewport {
  width: device-width;
}
body {
  font-size: 1.4rem;
  line-height: 1.9;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans Japanese","Lucida Grande","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","sans-serif";
  color: #746e6e;
}

.fo {
  font-family: 'Fjalla One', sans-serif;
}

a {
  -webkit-text-decoration-skip: objects;
}
a:link, a:visited {
  text-decoration: none;
  color: #746e6e;
}
a:hover, a:active, a:focus {
  color: #746e6e;
}
a:hover img, a:active img, a:focus img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: content-box;
  vertical-align: middle;
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  max-height: 100%;
}

input[type="button"], input[type="submit"], input[type="reset"], label {
  cursor: pointer;
}

input[type="button"], input[type="submit"], input[type="reset"] {
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.header-logo a:hover img,
.footer-logo a:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}

b,
strong {
  font-weight: bolder;
}

svg:not(:root) {
  overflow: hidden;
  vertical-align: middle;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

/* Layout */
/*==============================
共通要素
==============================*/
.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.table {
  display: table;
}

.cell {
  display: table-cell;
}

.left-box {
  float: left;
}

.right-box {
  float: right;
}

.show-xs {
  display: none;
}

.fl-container {
  display: -webkit-flex;
  display: flex;
}

@-webkit-keyframes vertical {
  0%,100% {
    -webkit-transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
}
@keyframes vertical {
  0% ,100% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes vertical2 {
  0%,
     100% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes vertical2 {
  0%,
   100% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media only screen and (max-width: 1279px) {
  .hidden-sp {
    display: block;
  }

  .hidden-pc {
    display: none;
  }
}
.c-regular {
  color: #fff;
  background: #84bdee;
}

.c-epd {
  color: #fff;
  background: #79dad7;
}

.c-temp {
  color: #fff;
  background: #a6e87e;
}

.bg-box {
  background: #f3f3f0;
}

.entry-btn a {
  position: relative;
  display: block;
  margin: auto;
  height: 116px;
  max-width: 782px;
  width: 97%;
  padding: 30px 2% 0 0;
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  border-radius: 58px;
  background: #eb6d8e url(../img/module/arrow_02.svg) no-repeat right 6.5% top 57%/26px 19px;
  box-shadow: 0px 5px 0px 0px rgba(138, 31, 59, 0.75);
  transition: transform .3s , box-shadow .3s, opacity .3s;
  animation: vertical2 3s ease 0s 1 normal;
  animation-iteration-count: infinite;
  z-index: 5;
}
.entry-btn a br {
  display: none;
}
.entry-btn a:hover {
  opacity: .7;
  animation-play-state: paused;
}
.entry-btn a:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 0;
}

.headline-style {
  text-align: center;
  position: relative;
}
.headline-style .ja {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 35px;
  line-height: 1.5;
  height: 1.5em;
  font-weight: 700;
  color: #44a6a1;
}

.inview {
  transform: translateY(100px);
  opacity: 0;
  transition: transform .8s .3s, opacity .8s .3s;
}
.inview.active {
  transform: translateY(0);
  opacity: 1;
}

.inview-h {
  transform: translateX(-100px);
  opacity: 0;
  transition: transform .8s .3s, opacity .8s .3s;
}
.inview-h.active {
  transform: translateX(0);
  opacity: 1;
}

/*==============================
ヘッダー
==============================*/
.l-header .header-btn {
  top: 0;
  position: fixed;
  width: 100%;
  margin: auto;
  min-height: 60px;
  background: #f7f4e8;
  z-index: 15;
}
.l-header .header-btn .header-btn-list {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.l-header .header-btn .header-entry {
  padding: 8px 0 12px;
  width: 146px;
}
.l-header .header-btn .header-entry a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 15% 0 0;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border-radius: 14% / 50%;
  background: #eb6d8e url(../img/module/arrow_01.svg) no-repeat right 16px top 55%/15px 10px;
  box-shadow: 0px 4px 0px 0px rgba(138, 31, 59, 0.75);
  animation: vertical 3s ease 0s 1 normal;
  animation-iteration-count: infinite;
  transition: opacity .3s;
}
.l-header .header-btn .header-entry a:hover {
  opacity: .7;
  animation-play-state: paused;
}
.l-header .header-btn .header-entry a:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 0;
}
.l-header .header-tel {
  -webkit-align-items: center;
  align-items: center;
  width: 390px;
}
.l-header .header-tel .tel-child {
  padding: 0 0 0 25px;
  font-size: 34px;
  color: #746e6e;
  white-space: nowrap;
  background: url(../img/module/icon_tel@2x.png) no-repeat left center/19px 23px;
}
.l-header .header-tel .note {
  margin: 0 1% 0 3%;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}
.l-header .sp-menu-btn {
  display: none;
}
.l-header .l-nav {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 90px;
  margin: 60px 0 0;
}
.l-header .l-nav .nav-list {
  height: 100%;
}
.l-header .l-nav .nav-list li {
  position: relative;
  line-height: 1.25em;
  font-size: 13px;
}
.l-header .l-nav .nav-list li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 7px 1em 0;
  height: 100%;
  white-space: nowrap;
}
.l-header .l-nav .nav-list li a:hover {
  color: #eb6d8e;
}
.l-header .l-nav .nav-list li:last-child a {
  padding: 7px 0 0 1em;
}
.l-header .l-nav .nav-list li + li:before {
  left: -.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  height: 1.25em;
  content: '・';
  padding-top: 3px;
}

.sp-logo {
  display: none;
}

/*==============================
コンテンツ
==============================*/
.l-contents .l-mv {
  position: relative;
  margin: 0 0 110px;
  height: 500px;
  background: url(../img/mv01.jpg) no-repeat center/cover;
}
.l-contents .l-mv .wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.l-contents .l-mv .inner-wrap {
  padding: 30px 2% 20px;
  margin: 0 0 60px;
  min-width: 473px;
  width: 48%;
  min-height: 293px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}
.l-contents .l-mv .mv-list {
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 0 23px;
}
.l-contents .l-mv .mv-list li {
  padding: 8px 6.1%;
  margin: 0 1.5%;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
}
.l-contents .l-mv p {
  font-size: 22px;
  line-height: 1.45;
  margin: 0 0 15px;
}
.l-contents .l-mv .h1-txt {
  width: 70%;
  max-width: 296px;
  margin: auto;
}
.l-contents .l-mv .entry-btn a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -54px;
}
.l-contents .advantage {
  margin: 0 0 40px;
  text-align: center;
}
.l-contents .advantage .advantage-box {
  position: relative;
  display: inline-block;
}
.l-contents .advantage .advantage-box span {
  display: block;
}
.l-contents .advantage .advantage-box .first-line {
  font-size: 25px;
  line-height: 1.5;
}
.l-contents .advantage .advantage-box .second-line {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
}
.l-contents .advantage .advantage-box .third-line {
  font-size: 25px;
  line-height: 1.9;
}
.l-contents .advantage .advantage-box:before, .l-contents .advantage .advantage-box:after {
  content: '';
  position: absolute;
  display: block;
  bottom: 10px;
  width: 60px;
  height: 60px;
  background: no-repeat center /59px 59px;
}
.l-contents .advantage .advantage-box:before {
  left: 0;
  margin: 0 0 0 -12%;
  background-image: url(../img/advantage_line_01.svg);
}
.l-contents .advantage .advantage-box:after {
  right: 0;
  margin: 0 -12% 0 0;
  background-image: url(../img/advantage_line_02.svg);
}
.l-contents .reason {
  padding: 0 0 55px;
  background: #f3f3f0;
}
.l-contents .reason .reason-headline {
  margin: -25px 0 35px;
  padding-top: 25px;
  background: #fff;
  overflow-x: hidden;
}
.l-contents .reason .reason-headline .bg-color {
  background: #5abbb6;
}
.l-contents .reason .reason-headline .wrap {
  position: relative;
}
.l-contents .reason .reason-headline h2 {
  height: 157px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
}
.l-contents .reason .reason-headline h2 span {
  font-size: 2.25em;
}
.l-contents .reason .reason-headline .img {
  position: absolute;
  bottom: 0;
  right: -87px;
  width: 204px;
  height: 181px;
}
.l-contents .reason .reason-box .reason-list {
  width: 93%;
  margin: auto;
}
.l-contents .reason .reason-box .reason-list > li {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 45px 3% 0 12%;
  margin: 0 auto 35px;
  background: no-repeat left top / 62px 88px , no-repeat 10px 28px / 114px 114px;
}
.l-contents .reason .reason-box .reason-list > li h3 {
  width: 100%;
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
}
.l-contents .reason .reason-box .reason-list > li .img-box {
  width: 46.5%;
}
.l-contents .reason .reason-box .reason-list > li .img-box img {
  display: block;
  border-radius: 5px;
  box-shadow: 10px 10px 0 0 #ddddd5;
}
.l-contents .reason .reason-box .reason-list > li .txt-box {
  width: 47.5%;
  padding: 5px 0 0;
}
.l-contents .reason .reason-box .reason-list > li .txt-box p {
  margin: 0 0 23px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.73;
}
.l-contents .reason .reason-box .reason-list > li .txt-box .type-list li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 1.23;
  font-size: 12px;
  letter-spacing: .04em;
  text-indent: .04em;
  border-radius: 50%;
}
.l-contents .reason .reason-box .reason-list > li .txt-box .type-list li + li {
  margin-left: 10px;
}
.l-contents .reason .reason-box .reason-list > li:nth-child(1) {
  background-image: url(../img/reason_no_01@2x.png), url(../img/reason_line.svg);
}
.l-contents .reason .reason-box .reason-list > li:nth-child(2) {
  background-image: url(../img/reason_no_02@2x.png), url(../img/reason_line.svg);
}
.l-contents .reason .reason-box .reason-list > li:nth-child(3) {
  background-image: url(../img/reason_no_03@2x.png), url(../img/reason_line.svg);
}
.l-contents .reason .reason-box .reason-list > li:nth-child(4) {
  background-image: url(../img/reason_no_04@2x.png), url(../img/reason_line.svg);
}
.l-contents .reason .reason-box .reason-list > li:nth-child(5) {
  background-image: url(../img/reason_no_05@2x.png), url(../img/reason_line.svg);
}
.l-contents .reason .reason-box .reason-list > li:nth-child(6) {
  background-image: url(../img/reason_no_06@2x.png), url(../img/reason_line.svg);
}
.l-contents .btn-box {
  padding: 60px 0 55px;
}
.l-contents .flow {
  padding: 55px 0 0;
  margin: 0 0 35px;
}
.l-contents .flow .headline-style {
  margin-bottom: 25px;
}
.l-contents .flow .bg-box {
  margin-top: -100px;
  padding-top: 100px;
  padding-bottom: 50px;
}
.l-contents .flow h3 {
  font-size: 40px;
  text-align: center;
  letter-spacing: .02em;
  text-indent: .02em;
  color: #5abbb6;
  font-weight: 400;
}
.l-contents .flow .sub {
  margin: 0 0 45px;
  font-size: 22px;
  letter-spacing: .03em;
  text-indent: .03em;
  font-weight: 400;
  text-align: center;
}
.l-contents .flow .flow-step .flow-step-headline {
  padding: 3px 3%;
  margin: 0 0 30px;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}
.l-contents .flow .flow-step .flow-step-headline span {
  font-size: 1.12em;
  font-weight: 700;
}
.l-contents .flow .flow-step .step-list {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 94%;
  margin: 0 auto 35px;
}
.l-contents .flow .flow-step .step-list li {
  position: relative;
  width: 20%;
  text-align: center;
}
.l-contents .flow .flow-step .step-list li img {
  max-width: 114px;
}
.l-contents .flow .flow-step .step-list li p {
  margin-top: 17px;
  line-height: 1.428;
}
.l-contents .flow .flow-step .step-list li + li:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: '';
  width: 13px;
  height: 15px;
  background: no-repeat center / contain;
}
.l-contents .flow .flow-regular .step-list li + li:before {
  background-image: url(../img/arrow_03@2x.png);
}
.l-contents .flow .flow-epd .step-list li + li:before {
  background-image: url(../img/arrow_04@2x.png);
}
.l-contents .flow .flow-temp .step-list {
  max-width: 61%;
}
.l-contents .flow .flow-temp .step-list li {
  width: 33%;
}
.l-contents .flow .flow-temp .step-list li + li:before {
  background-image: url(../img/arrow_05@2x.png);
}
.l-contents .voice {
  padding: 55px 0 90px;
}
.l-contents .voice .headline-style {
  margin: 0 0 25px;
}
.l-contents .voice .headline-style .ja {
  height: 3em;
}
.l-contents .voice .voice-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
}
.l-contents .voice .swiper-container {
  max-width: 980px;
}
.l-contents .voice .swiper-slide {
  height: auto;
  box-sizing: border-box;
  padding: 20px 0 10px 20px;
}
.l-contents .voice .swiper-slide .slider-inner {
  position: relative;
  border: 4px solid;
  box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
  height: 100%;
  padding: 90px 5% 20px;
  margin: 0 10px 10px 0;
}
.l-contents .voice .swiper-slide .slider-inner:after {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  content: '';
  display: block;
  background: #f3f3f0;
  border: 4px solid;
}
.l-contents .voice .swiper-slide .prof {
  position: absolute;
  left: 0;
  top: 15px;
  display: inline-block;
  height: 46px;
  padding: 10px 20px 10px 115px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0 -20px;
}
.l-contents .voice .swiper-slide .prof:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 16px;
}
.l-contents .voice .swiper-slide .prof:after {
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 65px;
  height: 72px;
  content: '';
  display: block;
  background: no-repeat center / contain;
}
.l-contents .voice .swiper-slide h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.36;
}
.l-contents .voice .swiper-slide p {
  font-size: 15px;
  line-height: 1.8;
}
.l-contents .voice .swiper-slide p strong {
  background: #ffff00;
}
.l-contents .voice .regular-item .slider-inner {
  border-color: #84bdee;
}
.l-contents .voice .regular-item .slider-inner:after {
  border-color: #84bdee;
}
.l-contents .voice .regular-item .prof {
  background: #84bdee;
}
.l-contents .voice .regular-item .prof:before {
  border-right-color: #70a0c9;
}
.l-contents .voice .regular-item h3 {
  color: #84bdee;
}
.l-contents .voice .epd-item .slider-inner {
  border-color: #79dad7;
}
.l-contents .voice .epd-item .slider-inner:after {
  border-color: #79dad7;
}
.l-contents .voice .epd-item .prof {
  background: #79dad7;
}
.l-contents .voice .epd-item .prof:before {
  border-right-color: #60b1af;
}
.l-contents .voice .epd-item h3 {
  color: #79dad7;
}
.l-contents .voice .temp-item .slider-inner {
  border-color: #a6e87e;
}
.l-contents .voice .temp-item .slider-inner:after {
  border-color: #a6e87e;
}
.l-contents .voice .temp-item .prof {
  background: #a6e87e;
}
.l-contents .voice .temp-item .prof:before {
  border-right-color: #8dcd6b;
}
.l-contents .voice .temp-item h3 {
  color: #8dcd6b;
}
.l-contents .voice .item-01 .prof:after {
  background-image: url(../img/voice_icon_01@2x.png);
}
.l-contents .voice .item-02 .prof:after {
  background-image: url(../img/voice_icon_02@2x.png);
}
.l-contents .voice .item-03 .prof:after {
  background-image: url(../img/voice_icon_03@2x.png);
}
.l-contents .voice .item-04 .prof:after {
  background-image: url(../img/voice_icon_04@2x.png);
}
.l-contents .voice .item-05 .prof:after {
  background-image: url(../img/voice_icon_05@2x.png);
}
.l-contents .voice .ctrl-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}
.l-contents .voice .ctrl-wrap .swiper-button-next,
.l-contents .voice .ctrl-wrap .swiper-button-prev {
  width: 57px;
  height: 125px;
  margin-top: -63px;
  animation: vertical2 3s ease 0s 1 normal;
  animation-iteration-count: infinite;
  z-index: 5;
  transition: opacity .3s;
}
.l-contents .voice .ctrl-wrap .swiper-button-next:hover,
.l-contents .voice .ctrl-wrap .swiper-button-prev:hover {
  animation-play-state: paused;
}
.l-contents .voice .ctrl-wrap .swiper-button-prev {
  background: rgba(255, 255, 255, 0.3) url(../img/arrow_06.svg) no-repeat center/38px 105px;
}
.l-contents .voice .ctrl-wrap .swiper-button-next {
  background: rgba(255, 255, 255, 0.3) url(../img/arrow_07.svg) no-repeat center/38px 105px;
}
.l-contents .voice .ctrl-wrap .swiper-pagination {
  width: 100%;
  bottom: -50px;
}
.l-contents .voice .ctrl-wrap .swiper-pagination .swiper-pagination-bullet {
  background: #e5e5e5;
  width: 40px;
  height: 10px;
  margin: 0 10px;
  border-radius: 0;
  opacity: 1;
}
.l-contents .voice .ctrl-wrap .swiper-pagination .swiper-pagination-bullet-active {
  background: #bfbfbf;
}
.l-contents .qa {
  padding: 55px 0 0;
}
.l-contents .qa .headline-style {
  margin-bottom: 40px;
}
.l-contents .qa .bg-box {
  padding: 130px 0 20px;
  margin-top: -130px;
}
.l-contents .qa .qa-box dt {
  padding: 0 0 20px 60px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: #5abbb6;
  background: url(../img/qa_q@2x.png) no-repeat 1.5% top/26px 45px;
}
.l-contents .qa .qa-box dd {
  padding: 30px 4.5%;
  margin: 0 0 50px;
  background: #fff;
}
.l-contents .qa .qa-box dd .answer {
  padding: 0 0 10px 45px;
  font-size: 24px;
  font-weight: 700;
  background: url(../img/qa_a@2x.png) no-repeat left top/28px 38px;
}
.l-contents .qa .qa-box dd .note {
  font-size: 16px;
  line-height: 1.687;
  font-weight: 400;
}
.l-contents .entry {
  padding: 85px 0 0;
}
.l-contents .entry .headline-style {
  margin: 0 0 40px;
}
.l-contents .entry table {
  width: 100%;
  margin: 0 0 50px;
  border: 1px solid #e5e5e5;
}
.l-contents .entry table th {
  width: 25%;
  min-width: 220px;
  padding: 33px 3%;
  font-size: 15px;
  vertical-align: middle;
  border-bottom: 1px solid  #ccc;
}
.l-contents .entry table th .note {
  display: block;
  margin: 0 0 0 46px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
}
.l-contents .entry table td {
  width: 75%;
  padding: 25px 5% 25px 0;
  line-height: 2;
  vertical-align: middle;
  border-bottom: 1px solid  #ccc;
}
.l-contents .entry table tr:nth-child(even) {
  background: #f3f3f0;
}
.l-contents .entry table input[type=text],
.l-contents .entry table input[type=email],
.l-contents .entry table input[type=tel],
.l-contents .entry table select {
  height: 44px;
  width: 100%;
  padding: 3px 10px;
  max-width: 600px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
}
.l-contents .entry table input[type=text]:focus,
.l-contents .entry table input[type=email]:focus,
.l-contents .entry table input[type=tel]:focus,
.l-contents .entry table select:focus {
  outline: none;
  background: rgba(90, 187, 182, 0.2);
}
.l-contents .entry table input[type=text],
.l-contents .entry table input[type=email],
.l-contents .entry table input[type=tel] {
  -webkit-appearance: none;
}
.l-contents .entry table input[type=checkbox],
.l-contents .entry table input[type=radio] {
  vertical-align: middle;
  margin: 0 .5em 1px 0;
}
.l-contents .entry table .mwform-checkbox-field,
.l-contents .entry table .mwform-radio-field {
  display: inline-block;
  margin: 0 2em 0 0;
}
.l-contents .entry table .must {
  display: inline-block;
  width: 36px;
  margin: -1px 10px 0 0;
  font-size: 9px;
  font-weight: 300;
  line-height: 2;
  text-align: center;
  color: #c60000;
  border: 1px solid #c60000;
  border-radius: 9px;
  vertical-align: middle;
  background: #fff;
}
.l-contents .entry table .free {
  display: inline-block;
  width: 46px;
}
.l-contents .entry table .place select {
  width: auto;
  min-width: 200px;
}
.l-contents .entry table .birth select {
  width: 120px;
  margin: 0 1em 0 0;
}
.l-contents .entry table .birth select:nth-child(3),
.l-contents .entry table .birth select:nth-child(5) {
  margin-left: 2em;
}
.l-contents .entry table .add01,
.l-contents .entry table .add02,
.l-contents .entry table .add03,
.l-contents .entry table .add04 {
  background: #f3f3f0;
}
.l-contents .entry table .add01 th, .l-contents .entry table .add01 td,
.l-contents .entry table .add02 th,
.l-contents .entry table .add02 td,
.l-contents .entry table .add03 th,
.l-contents .entry table .add03 td {
  padding-bottom: 0;
  border-bottom: none;
}
.l-contents .entry table .add01 select {
  width: auto;
  min-width: 200px;
}
.l-contents .entry table .zip th {
  vertical-align: top;
}
.l-contents .entry table .zip input {
  width: 200px;
  margin: 0 1em 0 0;
}
.l-contents .entry table .zip input[type=button] {
  width: 130px;
  height: 44px;
  margin-left: 0;
  margin-right: 0;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ccc;
}
.l-contents .entry table .name-td input {
  width: 200px;
  margin: 0 7% 0 1.5em;
}
.l-contents .entry table .furigana input {
  width: 200px;
  margin: 0 7% 0 .5em;
}
.l-contents .entry table .tel input {
  width: 150px;
}
.l-contents .entry table tr.whi {
  background: #fff;
}
.l-contents .entry table .bg {
  background: #f3f3f0;
}
.l-contents .entry table tr.error-row {
  background: #fff6f3 !important;
}
.l-contents .entry .submit {
  margin: 0 0 70px;
  text-align: center;
}
.l-contents .entry .submit input[type=submit] {
  height: 90px;
  width: 80%;
  max-width: 362px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  border-radius: 45px;
  border: none;
  background: #eb6d8e;
  box-shadow: 0px 5px 0px 0px rgba(138, 31, 59, 0.75);
  transition: transform .3s , box-shadow .3s, opacity .3s;
}
.l-contents .entry .submit input[type=submit]:hover {
  opacity: .7;
}
.l-contents .entry .submit input[type=submit]:focus {
  outline: none;
}
.l-contents .entry .submit input[type=submit]:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 0;
}
.l-contents .mw_wp_form_input .headline-style.conf-headline,
.l-contents .mw_wp_form_input .conf-message {
  display: none;
}
.l-contents .mw_wp_form_confirm .headline-style.entry-headline {
  display: none;
}
.l-contents .mw_wp_form_confirm .conf-message {
  margin: 0 0 50px;
  font-size: 15px;
  text-align: center;
}
.l-contents .mw_wp_form_confirm table td {
  padding: 2vw 3%;
}
.l-contents .mw_wp_form_confirm .zip input[type=button] {
  display: none;
}
.l-contents .mw_wp_form_confirm .name-td td span,
.l-contents .mw_wp_form_confirm .furigana td span {
  display: inline-block;
  width: 0em;
  height: 1em;
  visibility: hidden;
  overflow: hidden;
}
.l-contents .mw_wp_form_confirm .name-td td span:last-of-type,
.l-contents .mw_wp_form_confirm .furigana td span:last-of-type {
  width: 1em;
}
.l-contents .mw_wp_form_confirm .submit input[type="submit"].back {
  background: #ccc;
  box-shadow: 0px 5px 0px 0px rgba(135, 135, 135, 0.75);
}
.l-contents .mw_wp_form_confirm .submit input[type=submit] {
  margin: 0 1% 20px;
}
.l-contents .mw_wp_form_complete .headline-style .ja {
  position: static;
}
.l-contents .mw_wp_form_complete .thanks {
  margin: 0 0 100px;
}
.l-contents .mw_wp_form_complete .thanks p {
  text-align: center;
  font-size: 15px;
}
.l-contents .mw_wp_form_complete .thanks p + p {
  margin-top: 1.75em;
}
.l-contents .mw_wp_form_complete .thanks .top {
  margin-top: 3em;
  font-size: 1.1em;
}
.l-contents .mw_wp_form_complete .thanks .top a {
  text-decoration: underline;
}
.l-contents .mw_wp_form_complete .thanks .top a:hover {
  color: #eb6d8e;
}
.l-contents .thought {
  margin: -30px auto 20px;
  padding: 30px 0 0;
  max-width: 100%;
  overflow-x: hidden;
}
.l-contents .thought .headline-style {
  margin: 0 auto 20px;
}
.l-contents .thought h3 {
  padding: 26px 0 27px;
  margin: 0 0 20px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  border-radius: 10px;
  background: #5abbb6;
}
.l-contents .thought .thought-list {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 0 70px;
}
.l-contents .thought .thought-list li {
  position: relative;
  width: 31.5%;
  margin: 0 10px 10px 0;
}
.l-contents .thought .thought-list li .thought-inner {
  border: 4px solid #5abbb6;
  border-radius: 10px;
  background: #fff no-repeat center 30px;
  background-size: 42px 59px;
  padding: 110px 3% 30px;
  font-size: 16px;
  line-height: 1.625;
  height: 100%;
}
.l-contents .thought .thought-list li .thought-inner:after {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  content: '';
  display: block;
  background: #f3f3f0;
  border: 4px solid #5abbb6;
}
.l-contents .thought .thought-list li strong {
  background: #ffff00;
}
.l-contents .thought .thought-list li:first-child .thought-inner {
  background-image: url(../img/thought_no_01@2x.png);
}
.l-contents .thought .thought-list li:nth-child(2) {
  transition-delay: .6s;
}
.l-contents .thought .thought-list li:nth-child(2) .thought-inner {
  background-image: url(../img/thought_no_02@2x.png);
}
.l-contents .thought .thought-list li:nth-child(3) {
  transition-delay: .9s;
}
.l-contents .thought .thought-list li:nth-child(3) .thought-inner {
  background-image: url(../img/thought_no_03@2x.png);
}

/*==============================
フッター
==============================*/
.l-footer .footer-nav-list {
  margin: 0 0 80px;
  -webkit-justify-content: center;
  justify-content: center;
}
.l-footer .footer-nav-list li {
  font-size: 13px;
}
.l-footer .footer-nav-list li + li:before {
  padding: 0 1em;
  content: '|';
}
.l-footer .footer-nav-list a:hover {
  color: #eb6d8e;
}
.l-footer .l-copyright {
  margin: 0 0 45px;
  font-size: 11px;
  letter-spacing: .04em;
  text-indent: .04em;
  text-align: center;
}

@media only screen and (max-width: 999px) {
  .entry-btn a {
    height: 11.6vw;
    padding: 3vw 2% 0 0;
    font-size: 2.8vw;
    border-radius: 5.8vw;
  }

  .headline-style .ja {
    font-size: 3.5vw;
  }
  .headline-style .en {
    max-width: 53%;
    margin: auto;
  }

  .inview {
    transform: translateY(10vw);
    opacity: 0;
    transition: transform .8s .3s, opacity .8s .3s;
  }
  .inview.active {
    transform: translateY(0);
    opacity: 1;
  }

  /*==============================
  ヘッダー
  ==============================*/
  .l-header .l-nav {
    height: 9vw;
  }
  .l-header .l-nav .nav-list li {
    font-size: calc(5px + .75vw);
  }
  .l-header .l-nav .nav-list li a {
    padding: 7px .75em 0;
  }
  .l-header .l-nav .nav-list li:last-child a {
    padding: 7px 0 0 .75em;
  }

  /*==============================
  コンテンツ
  ==============================*/
  .l-contents .l-mv {
    margin: 0 0 11vw;
    height: 50vw;
  }
  .l-contents .l-mv .inner-wrap {
    padding: 3vw 2% 2vw;
    margin: 0 0 6vw;
    min-height: 0;
    min-width: 0;
  }
  .l-contents .l-mv .mv-list {
    margin: 0 0 2.3vw;
  }
  .l-contents .l-mv .mv-list li {
    font-size: 1.7vw;
    white-space: nowrap;
  }
  .l-contents .l-mv p {
    margin-bottom: 1.5vw;
    font-size: 2.2vw;
  }
  .l-contents .l-mv .entry-btn a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5.4vw;
  }
  .l-contents .advantage {
    margin: 0 0 4vw;
  }
  .l-contents .advantage .advantage-box .first-line {
    font-size: 2.5vw;
  }
  .l-contents .advantage .advantage-box .second-line {
    font-size: 3.5vw;
  }
  .l-contents .advantage .advantage-box .third-line {
    font-size: 2.5vw;
  }
  .l-contents .advantage .advantage-box:before, .l-contents .advantage .advantage-box:after {
    bottom: 1vw;
    width: 6vw;
    height: 6vw;
    background-size: 5.9vw 5.9vw;
  }
  .l-contents .reason {
    padding: 0 0 5.5vw;
  }
  .l-contents .reason .reason-headline {
    margin: -5vw 0 3.5vw;
    padding-top: 10vw;
  }
  .l-contents .reason .reason-headline h2 {
    height: auto;
    font-size: 3.8vw;
    padding: 1vw 150px 1vw 10px;
  }
  .l-contents .reason .reason-headline .img {
    right: -40px;
  }
  .l-contents .reason .reason-box .reason-list > li {
    padding: 4.5vw 3% 0 12%;
    margin: 0 auto 3.5vw;
    background: no-repeat left top / 6.2vw 8.8vw , no-repeat 1vw 2.8vw / 11.4vw 11.4vw;
  }
  .l-contents .reason .reason-box .reason-list > li h3 {
    margin: 0 0 1.8vw;
    font-size: 3.2vw;
  }
  .l-contents .reason .reason-box .reason-list > li .txt-box {
    width: 47.5%;
    padding: 5px 0 0;
  }
  .l-contents .reason .reason-box .reason-list > li .txt-box p {
    margin: 0 0 23px;
    font-size: calc(10px + .5vw);
  }
  .l-contents .btn-box {
    padding: 6vw 0 5.5vw;
  }
  .l-contents .flow {
    padding: 5.5vw 0 0;
    margin: 0 0 3.5vw;
  }
  .l-contents .flow .headline-style {
    margin-bottom: 2.5vw;
  }
  .l-contents .flow .bg-box {
    margin-top: -10vw;
    padding-top: 10vw;
    padding-bottom: 5vw;
  }
  .l-contents .flow h3 {
    font-size: 4vw;
  }
  .l-contents .flow .sub {
    margin: 0 0 4.5vw;
    font-size: 2.2vw;
  }
  .l-contents .flow .flow-step .flow-step-headline {
    padding: 3px 3%;
    margin: 0 0 3vw;
    font-size: calc(15px + 1vw);
  }
  .l-contents .flow .flow-step .step-list {
    margin: 0 auto 3.5vw;
  }
  .l-contents .flow .flow-step .step-list li img {
    max-width: 11.4vw;
  }
  .l-contents .flow .flow-step .step-list li p {
    margin-top: 1.7vw;
    font-size: calc(1px + 1.3vw);
  }
  .l-contents .flow .flow-step .step-list li + li:before {
    width: 1.3vw;
    height: 1.5vw;
  }
  .l-contents .voice {
    padding: 5.5vw 0 9vw;
  }
  .l-contents .voice .headline-style {
    margin: 0 0 2.5vw;
  }
  .l-contents .voice .headline-style .ja {
    height: 3em;
  }
  .l-contents .voice .swiper-container {
    max-width: 88%;
  }
  .l-contents .voice .swiper-slide .slider-inner {
    margin-right: 25px;
  }
  .l-contents .voice .swiper-slide .prof {
    padding-left: 100px;
    font-size: 1.3rem;
  }
  .l-contents .voice .swiper-slide .prof:after {
    width: 62px;
    height: 68px;
  }
  .l-contents .voice .swiper-slide h3 {
    font-size: 2.2vw;
  }
  .l-contents .voice .swiper-slide p {
    font-size: calc(10px + .5vw);
  }
  .l-contents .voice .ctrl-wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
  }
  .l-contents .voice .ctrl-wrap .swiper-button-next,
  .l-contents .voice .ctrl-wrap .swiper-button-prev {
    width: 5.7vw;
    height: 12.5vw;
    margin-top: -6.3vw;
    animation: vertical 3s ease 0s 1 normal;
    animation-iteration-count: infinite;
  }
  .l-contents .voice .ctrl-wrap .swiper-button-prev {
    background-size: 3.8vw 10.5vw;
  }
  .l-contents .voice .ctrl-wrap .swiper-button-next {
    background-size: 3.8vw 10.5vw;
  }
  .l-contents .qa {
    padding: 5.5vw 0 0;
  }
  .l-contents .qa .headline-style {
    margin-bottom: 4vw;
  }
  .l-contents .qa .bg-box {
    padding: 13vw 0 2vw;
    margin-top: -13vw;
  }
  .l-contents .qa .qa-box dt {
    padding: 0 0 2vw 6vw;
    font-size: 2.4vw;
    background-size: 2.6vw 4.5vw;
  }
  .l-contents .qa .qa-box dd {
    padding: 3vw 4.5%;
    margin: 0 0 5vw;
  }
  .l-contents .qa .qa-box dd .answer {
    padding: 0 0 1vw 4.5vw;
    font-size: 2.4vw;
    background-size: 2.8vw 3.8vw;
  }
  .l-contents .qa .qa-box dd .note {
    font-size: calc(11px + .5vw);
  }
  .l-contents .entry {
    padding: 8.5vw 0 0;
  }
  .l-contents .entry .headline-style {
    margin: 0 0 4vw;
  }
  .l-contents .entry table {
    width: 100%;
    margin: 0 0 5vw;
  }
  .l-contents .entry table th {
    padding: 3.3vw 3%;
    font-size: calc(10px + .5vw);
  }
  .l-contents .entry table th .note {
    display: block;
    margin: 0 0 0 46px;
    font-size: calc(5px + .5vw);
  }
  .l-contents .entry table td {
    padding: 2.5vw 5% 2.5vw 0;
  }
  .l-contents .entry table .mwform-checkbox-field,
  .l-contents .entry table .mwform-radio-field {
    display: inline-block;
    margin: 0 2em 0 0;
  }
  .l-contents .entry table .birth select {
    width: 22%;
    max-width: 120px;
  }
  .l-contents .entry table .name-td input {
    width: 36%;
    max-width: 200px;
  }
  .l-contents .entry table .name-td input:last-child {
    margin-right: 0;
  }
  .l-contents .entry table .furigana input {
    width: 36%;
    max-width: 200px;
  }
  .l-contents .entry table .furigana input:last-child {
    margin-right: 0;
  }
  .l-contents .entry table .tel input {
    width: 22%;
    max-width: 150px;
  }
  .l-contents .entry .submit {
    margin: 0 0 7vw;
  }
  .l-contents .entry .submit input[type=submit] {
    height: 9vw;
    width: 80%;
    font-size: calc(15px + .5vw);
    border-radius: 4.5vw;
  }
  .l-contents .entry .mw_wp_form_confirm .headline-style .en {
    max-width: 74%;
  }
  .l-contents .entry .mw_wp_form_confirm .conf-message {
    margin-bottom: 5vw;
    font-size: calc(10px + .5vw);
  }
  .l-contents .entry .mw_wp_form_complete .thanks {
    margin: 0 0 10vw;
  }
  .l-contents .entry .mw_wp_form_complete .thanks p {
    font-size: calc(10px + .5vw);
  }
  .l-contents .thought .headline-style .en {
    max-width: 73.3%;
  }
  .l-contents .thought .thought-list {
    margin: 0 0 7vw;
  }
  .l-contents .thought .thought-list li {
    width: 31.5%;
  }
  .l-contents .thought .thought-list li .thought-inner {
    background: #fff no-repeat center 3vw;
    background-size: 4.2vw 5.9vw;
    padding: 11vw 3% 3vw;
    font-size: calc(11px + .5vw);
  }

  /*==============================
  フッター
  ==============================*/
  .l-footer .footer-nav-list {
    margin: 0 0 8vw;
  }
  .l-footer .l-copyright {
    margin: 0 0 4.5vw;
  }
}
/*==========================================================================================
ここからSP
==========================================================================================*/
@media only screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }

  .hidden-pc {
    display: block;
  }

  .wrap {
    padding: 0 3.125%;
    width: 100%;
  }

  .entry-btn a {
    max-width: 700px;
    height: 17.3vw;
    border-radius: 8.65vw;
    font-size: 4.5vw;
    line-height: 1.29;
    background: #eb6d8e url(../img/module/arrow_02.svg) no-repeat right 6.5% top 57%/3.3vw 2.4vw;
    animation: vertical 3s ease 0s 1 normal;
    animation-iteration-count: infinite;
  }
  .entry-btn a br {
    display: inline;
  }

  /*==============================
  ヘッダー
  ==============================*/
  .l-header {
    top: 0;
    position: fixed;
    width: 100%;
    margin: auto;
    z-index: 15;
  }
  .l-header > .wrap {
    padding: 0;
  }
  .l-header .header-btn {
    position: static;
    min-height: 0;
  }
  .l-header .header-btn .header-btn-list {
    padding: 0;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .l-header .header-btn .header-entry {
    margin-left: 3.125%;
    margin-right: 2%;
    padding: 8px 0 12px;
    width: 19vw;
    min-width: 9.4rem;
  }
  .l-header .header-btn .header-entry a {
    height: auto;
    max-height: 40px;
    padding: 1.5vw 5% 1.5vw 0;
    font-size: calc(5px + 1.39vw);
    border-radius: 19% / 50%;
    background: #eb6d8e url(../img/module/arrow_01.svg) no-repeat right 2vw top 55%/7.5px 5px;
    animation: none;
    transition: opacity .3s;
  }
  .l-header .header-tel {
    margin-left: auto;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    width: 50%;
  }
  .l-header .header-tel .tel-child {
    padding: 0 0 0 3.25vw;
    line-height: 1.1;
    font-size: 4.42vw;
    background: url(../img/module/icon_tel@2x.png) no-repeat left center/2.47vw 2.99vw;
  }
  .l-header .header-tel .note {
    margin: 0.3em 0 0;
    font-size: calc(5px + 1vw);
    line-height: 1.2;
    white-space: nowrap;
  }
  .l-header .header-tel .note br {
    display: none;
  }
  .l-header .sp-menu-btn {
    display: block;
    position: relative;
    width: 16vw;
    margin: 0 0 0 2%;
    cursor: pointer;
    background: #746e6e;
  }
  .l-header .sp-menu,
  .l-header .sp-menu span {
    display: inline-block;
    transition: all .4s;
  }
  .l-header .sp-menu {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 25px;
    height: 22px;
  }
  .l-header .sp-menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
  }
  .l-header .sp-menu span:nth-of-type(1) {
    top: 0;
  }
  .l-header .sp-menu span:nth-of-type(2) {
    top: 10px;
  }
  .l-header .sp-menu span:nth-of-type(3) {
    bottom: 0;
  }
  .l-header .sp-menu span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all .4s;
  }
  .l-header .sp-menu.active span:nth-of-type(1) {
    transform: translate(50%) scale(0);
  }
  .l-header .sp-menu.active span:nth-of-type(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header .sp-menu.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .l-header .sp-menu.active span:nth-of-type(3) {
    transform: translate(-50%) scale(0);
  }
  .l-header .l-nav {
    margin-top: 0;
    position: relative;
    height: 0;
    background: #fff;
  }
  .l-header .l-nav .header-logo {
    display: none;
  }
  .l-header .l-nav .nav-list {
    display: none;
    height: auto;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .l-header .l-nav .nav-list li {
    font-size: 3.125vw;
  }
  .l-header .l-nav .nav-list li a {
    padding: 2vw .75em;
    border-bottom: 1px solid  #ccc;
  }
  .l-header .l-nav .nav-list li:last-child a {
    padding: 2vw .75em;
  }
  .l-header .l-nav .nav-list li + li:before {
    content: none;
  }

  .sp-logo {
    display: block;
  }

  .header-logo {
    margin: auto;
    margin-top: calc(52px + 1.39vw);
    width: 45%;
    max-width: 220px;
    padding: 1vw 0 1vw 3.125vw;
    text-align: center;
    background: #fff;
  }

  /*==============================
  コンテンツ
  ==============================*/
  .l-contents .l-mv {
    margin: 0 0 16vw;
    max-height: 500px;
    height: 66vw;
  }
  .l-contents .l-mv .inner-wrap {
    width: 75%;
  }
  .l-contents .l-mv .mv-list li {
    font-size: calc(1.3vw + 5px);
  }
  .l-contents .l-mv p {
    font-size: calc(1.8vw + 5px);
  }
  .l-contents .l-mv .entry-btn a {
    bottom: -8.65vw;
  }
  .l-contents .advantage {
    margin: 0 0 40px;
    text-align: center;
    margin: 0 0 4vw;
  }
  .l-contents .advantage .advantage-box .first-line {
    font-size: calc(7px + 1.24vw);
  }
  .l-contents .advantage .advantage-box .second-line {
    font-size: calc(15px + 1.24vw);
  }
  .l-contents .advantage .advantage-box .third-line {
    font-size: calc(7px + 1.24vw);
  }
  .l-contents .reason .reason-headline {
    margin: 0 0 3rem;
    padding-top: 0;
  }
  .l-contents .reason .reason-headline h2 {
    font-size: 40px;
  }
  .l-contents .reason .reason-headline h2 {
    height: auto;
    font-size: 4.5vw;
    padding: 1vw 0;
  }
  .l-contents .reason .reason-headline .img {
    display: none;
  }
  .l-contents .reason .reason-box .reason-list {
    max-width: 600px;
    width: 100%;
  }
  .l-contents .reason .reason-box .reason-list > li {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 4.5vw 0 0 12%;
    margin: 0 auto 5vw;
  }
  .l-contents .reason .reason-box .reason-list > li h3 {
    font-size: calc(6px + 2.2vw);
  }
  .l-contents .reason .reason-box .reason-list > li .img-box {
    width: calc(100% - 10px);
    margin: 0 0 2.8vw;
  }
  .l-contents .reason .reason-box .reason-list > li .img-box img {
    margin: auto;
  }
  .l-contents .reason .reason-box .reason-list > li .txt-box {
    width: 100%;
    padding: 5px 0 0;
  }
  .l-contents .reason .reason-box .reason-list > li .txt-box p {
    margin: 0 0 3vw;
    font-size: calc(10px + .5vw);
  }
  .l-contents .reason .reason-box .reason-list > li .txt-box .type-list li {
    width: 55px;
    height: 55px;
    font-size: 11px;
  }
  .l-contents .reason .reason-box .reason-list > li .txt-box .type-list li + li {
    margin-left: 3%;
  }
  .l-contents .flow {
    padding: 5.5vw 0 0;
    margin: 0 0 3.5vw;
  }
  .l-contents .flow .sp-flow {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-contents .flow h3 {
    font-size: 4vw;
    width: 100%;
  }
  .l-contents .flow .sub {
    margin: 0 0 4.5vw;
    font-size: 2.2vw;
    width: 100%;
  }
  .l-contents .flow .flow-step {
    width: calc(99.99% / 3);
  }
  .l-contents .flow .flow-step .flow-step-headline {
    padding: 3px 3%;
    margin: 0;
    font-size: 2.85vw;
  }
  .l-contents .flow .flow-step .step-list {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 3.5vw;
    max-width: 100%;
    border-left: 1px solid #fff;
  }
  .l-contents .flow .flow-step .step-list li {
    padding: 2.5rem 0 1rem;
    width: 100%;
    min-height: 200px;
    transform: translateY(10vw);
    opacity: 0;
    transition: transform .8s .3s, opacity .8s .3s;
  }
  .l-contents .flow .flow-step .step-list li.active {
    transform: translateY(0);
    opacity: 1;
  }
  .l-contents .flow .flow-step .step-list li img {
    max-width: 114px;
  }
  .l-contents .flow .flow-step .step-list li p {
    margin-top: 1.7vw;
    font-size: calc(1px + 1.3vw);
  }
  .l-contents .flow .flow-step .step-list li + li:before {
    bottom: auto;
    right: 0;
    transform: rotate(90deg);
    width: 13px;
    height: 15px;
  }
  .l-contents .flow .flow-step.inview {
    opacity: 1;
    transform: translateY(0);
  }
  .l-contents .flow .flow-temp .step-list {
    border-right: 1px solid #fff;
    max-width: 100%;
  }
  .l-contents .flow .flow-temp .step-list li {
    width: 100%;
  }
  .l-contents .voice {
    padding: 5.5vw 0 9vw;
  }
  .l-contents .voice .headline-style {
    margin: 0 0 25px;
  }
  .l-contents .voice .headline-style .ja {
    height: 3em;
  }
  .l-contents .voice .headline-style {
    margin: 0 0 2.5vw;
  }
  .l-contents .voice .headline-style .ja {
    height: 3em;
  }
  .l-contents .voice .voice-slider {
    margin: 0 auto 3vw;
  }
  .l-contents .voice .swiper-slide h3 {
    font-size: calc(6px + 2.2vw);
  }
  .l-contents .voice .ctrl-wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    margin: 0 0 5rem;
  }
  .l-contents .voice .ctrl-wrap .swiper-button-next,
  .l-contents .voice .ctrl-wrap .swiper-button-prev {
    width: 5.7vw;
    height: 12.5vw;
    margin-top: -6.3vw;
  }
  .l-contents .voice .ctrl-wrap .swiper-button-prev {
    background-size: 3.8vw 10.5vw;
  }
  .l-contents .voice .ctrl-wrap .swiper-button-next {
    background-size: 3.8vw 10.5vw;
  }
  .l-contents .voice .ctrl-wrap .swiper-pagination {
    bottom: -4rem;
  }
  .l-contents .voice .ctrl-wrap .swiper-pagination .swiper-pagination-bullet {
    width: 3rem;
    margin: 0 2%;
  }
  .l-contents .qa .qa-box dt {
    padding: 0 0 1.5rem 4.5rem;
    font-size: calc(6px + 2.2vw);
    background-size: 1.7rem 3rem;
  }
  .l-contents .qa .qa-box dd {
    padding: 2.5rem 4.5%;
    margin: 0 0 3.5rem;
  }
  .l-contents .qa .qa-box dd .answer {
    padding: 1rem 0 0 3.5rem;
    margin: 0 0 1rem;
    line-height: 1.35;
    font-size: calc(6px + 2.2vw);
    background-size: 2.1rem 2.9rem;
    background-position: center left;
  }
  .l-contents .qa .qa-box dd .note {
    font-size: calc(3px + 2.2vw);
  }
  .l-contents .entry {
    padding: 8.5vw 0 0;
  }
  .l-contents .entry .headline-style {
    margin: 0 0 4vw;
  }
  .l-contents .entry table th {
    display: block;
    width: 100%;
    padding: 2vw 3%;
    background: #f3f3f0;
  }
  .l-contents .entry table th .note {
    display: inline;
    margin: 0 0 0 .5em;
  }
  .l-contents .entry table td {
    display: block;
    width: 100%;
    padding: 2vw 3% 0;
  }
  .l-contents .entry table input[type=text],
  .l-contents .entry table input[type=email],
  .l-contents .entry table input[type=tel],
  .l-contents .entry table input[type=number],
  .l-contents .entry table select,
  .l-contents .entry table input[type=button] {
    margin-bottom: 2vw;
    padding: 3px 2%;
  }
  .l-contents .entry table .birth select {
    width: 22%;
    max-width: 120px;
  }
  .l-contents .entry table .birth select:nth-child(3), .l-contents .entry table .birth select:nth-child(5) {
    margin-left: 1em;
    margin-bottom: 2vw;
  }
  .l-contents .entry table .checkbox-td {
    padding-bottom: 2vw;
  }
  .l-contents .entry table .add01,
  .l-contents .entry table .add02,
  .l-contents .entry table .add03,
  .l-contents .entry table .add04 {
    background: #fff;
  }
  .l-contents .entry table .add01 th, .l-contents .entry table .add01 td,
  .l-contents .entry table .add02 th,
  .l-contents .entry table .add02 td,
  .l-contents .entry table .add03 th,
  .l-contents .entry table .add03 td {
    border-bottom: 1px solid #ccc;
  }
  .l-contents .entry table .add01 th,
  .l-contents .entry table .add02 th,
  .l-contents .entry table .add03 th {
    padding-bottom: 2vw;
  }
  .l-contents .entry table .name-td input {
    width: 36%;
    max-width: 200px;
  }
  .l-contents .entry table .name-td input:last-child {
    margin-right: 0;
  }
  .l-contents .entry table .furigana input {
    width: 36%;
    max-width: 200px;
  }
  .l-contents .entry table .furigana input:last-child {
    margin-right: 0;
  }
  .l-contents .entry table .tel input {
    width: 150px;
  }
  .l-contents .entry table tr:nth-child(even) {
    background: #fff;
  }
  .l-contents .entry table tr.whi {
    background: #fff;
  }
  .l-contents .entry table .bg {
    background: #fff;
  }
  .l-contents .entry .submit {
    margin: 0 0 7vw;
  }
  .l-contents .entry .submit input[type=submit] {
    height: 9vw;
    width: 80%;
    font-size: calc(15px + .5vw);
    border-radius: 4.5vw;
  }
  .l-contents .entry .mw_wp_form_confirm table td {
    padding: 2vw 3%;
  }
  .l-contents .thought h3 {
    padding: 2.6vw 0 2.7vw;
    margin: 0 0 2vw;
    font-size: calc(7px + 2vw);
  }
  .l-contents .thought .thought-list {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-contents .thought .thought-list li {
    width: calc(100% - 10px);
    margin: 0 0 4.5vw;
  }
  .l-contents .thought .thought-list li .thought-inner {
    background: #fff no-repeat center 3vw;
    background-size: 4.2vw 5.9vw;
    padding: 11vw 3% 3vw;
    font-size: calc(3px + 2.2vw);
  }
  .l-contents .thought .thought-list li:nth-child(2),
  .l-contents .thought .thought-list li:nth-child(3) {
    transition-delay: .3s;
  }
}
@media only screen and (max-width: 480px) {
  .l-header .header-tel .tel-child {
    font-size: 2rem;
  }
  .l-header .l-nav .nav-list li a {
    padding: 4vw .75em;
  }
  .l-header .l-nav .nav-list li:last-child a {
    padding: 4vw .75em;
  }

  .l-contents .thought .thought-list li {
    margin-bottom: 2rem;
  }
  .l-contents .flow .flow-step {
    width: 100%;
  }
  .l-contents .flow .flow-step .flow-step-headline {
    font-size: 4.5vw;
  }
  .l-contents .flow .flow-step .step-list {
    border: none;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-contents .flow .flow-step .step-list li {
    width: 50%;
  }
  .l-contents .flow .flow-step .step-list li p {
    font-size: 1.2rem;
  }
  .l-contents .flow .flow-step .step-list li + li:before {
    bottom: 0;
    right: auto;
    transform: rotate(0);
  }
  .l-contents .entry table .birth select {
    margin-right: .5em;
  }
  .l-contents .entry table .name-td input,
  .l-contents .entry table .furigana input {
    width: calc(100% - 2.5em);
    margin-right: 0;
    max-width: 100%;
  }
  .l-contents .entry .submit input[type=submit] {
    height: 4.5rem;
    font-size: 1.6rem;
    border-radius: 2.25rem;
  }
  .l-contents .entry .show-xs {
    display: inline;
  }
  .l-contents .entry .mw_wp_form_complete .thanks p {
    font-size: 1.3rem;
  }

  .l-footer .footer-nav-list li {
    font-size: 1.2rem;
  }
}
.tablet input[type=checkbox],
.tablet input[type=radio],
.iphone input[type=checkbox],
.iphone input[type=radio] {
  -webkit-appearance: none;
}
