@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6, strong, small,
b {
  font-weight: normal;
}

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

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/*
.demo {
    background-color: red;
    @include mqMin(w4) {
	    background-color: blue;
	}
}
*/
/*
.demo {
    background-color: red;
    @include mqMax(w4) {
	    background-color: blue;
	}
}
*/
/*
.demo {
    background-color: red;
    @include mqRange(w2, w4) {
	    background-color: blue;
	}
}
*/
.accordion-group {
  padding: 1rem 0;
}

.accordion-group__accordion {
  margin: 0 0 0.25rem 0;
}

.accordion-group__accordion-heading {
  margin: 0;
}

.accordion-group__accordion-btn {
  background-color: #e2e2e2;
  border-color: #ccc;
  border-radius: 0.3rem;
  border-style: solid;
  border-width: 0.05rem;
  display: block;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #000;
  text-align: left;
  width: 100%;
}

.accordion-group__accordion-btn:focus {
  background-color: #bbc8d2;
  border-color: #577b80;
  border-radius: 0.3rem;
  border-style: solid;
  border-width: 0.05rem;
}

.accordion-group__accordion-panel {
  border-color: #ccc;
  border-radius: 0 0 0.3rem 0.3rem;
  border-style: solid;
  border-width: 0 0.05rem 0.05rem 0.05rem;
  padding: 0.5rem 1rem;
}

.accordion-group__accordion-btn_expanded {
  background-color: #bbc8d2;
  border-color: #ccc;
  border-radius: 0.3rem;
  border-style: solid;
  border-width: 0.05rem;
}

main {
  display: block;
}

@-webkit-keyframes headerIn {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes headerIn {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
body {
  font-size: 62.5%;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: #231815;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

a:hover {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0.8;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flexBox.InlineFlex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flexBox.VerticalCenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexBox.VerticalBottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flexBox.HorizontalCenter {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flexBox.SpacedBetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

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

.header {
  position: relative;
  z-index: 20;
}
.header.is-fixed {
  background-color: #fff;
}
.header.is-fixed .headerLogo {
  display: none;
}
.header.is-fixed .headerLogoFixed {
  display: block;
}
.header.is-fixed .headerMenuBtnBar {
  background-color: #000;
}
.headerContainer {
  max-width: 1210px;
  width: 100%;
}
@media (min-width: 768px) {
  .headerContainer {
    padding: 25px 20px 25px 56px;
  }
}
@media (max-width: 767px) {
  .headerContainer {
    padding-left: 34px;
  }
}
.headerLogoLink {
  display: block;
}
@media (min-width: 768px) {
  .headerLogoLink {
    margin-top: 12px;
  }
  .headerLogoLink img {
    max-width: 200px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .headerLogo {
    width: 132px;
  }
}
.headerLogoFixed {
  display: none;
}
@media (min-width: 768px) {
  .headerLinkContainer {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .headerLinkContainer {
    display: none;
    position: fixed;
    background-color: #fff;
    top: 68px;
    right: 0;
    padding: 30px 24px;
  }
  .headerLinkContainer__active {
    display: block;
  }
}
.headerLinkContainerSpText {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
.headerLinkContainer .btn {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1;
}
@media (min-width: 768px) {
  .headerLinkContainer .btn {
    max-width: 312px;
    width: 48.44%;
    height: 70px;
    border-radius: 35px;
    padding: 14px 0;
  }
}
@media (max-width: 767px) {
  .headerLinkContainer .btn {
    width: 260px;
    height: 58px;
    border-radius: 29px;
    padding: 10px 0;
  }
}
.headerLinkContainer .btn span {
  display: block;
}
.headerLinkContainer .phoneBtn {
  background-color: #ff942d;
}
@media (max-width: 767px) {
  .headerLinkContainer .phoneBtn {
    margin-top: 30px;
  }
}
.headerLinkContainer .phoneBtn .eceptionTime {
  font-size: 10px;
}
.headerLinkContainer .phoneBtn .phoneNumbar {
  margin-top: 5px;
  background-image: url("../img/icon_coll.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 24px;
}
@media (min-width: 768px) {
  .headerLinkContainer .phoneBtn .phoneNumbar {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .headerLinkContainer .phoneBtn .phoneNumbar {
    font-size: 20px;
    background-size: 18px auto;
  }
}
.headerLinkContainer .visitApplication {
  background-color: #ff5623;
  background-image: url("../img/btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 22px center;
}
@media (min-width: 768px) {
  .headerLinkContainer .visitApplication {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .headerLinkContainer .visitApplication {
    margin-top: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .headerLinkContainer .visitApplicationSubText {
    font-size: 14px;
    margin-top: 5px;
  }
}
@media (min-width: 768px) {
  .headerLinkContainer .visitApplicationSubText {
    font-size: 11px;
  }
}
@media (min-width: 768px) {
  .headerLinkContainer .visitApplicationText {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .headerLinkContainer .visitApplicationText {
    font-size: 13px;
  }
}
.headerMenuBtn {
  position: relative;
  width: 70px;
  height: 70px;
}
.headerMenuBtnInner {
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 13px);
  width: 30px;
  height: 26px;
  -webkit-transition: opacity, 0.4s, -webkit-transform 0.4s;
  transition: opacity, 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity, 0.4s;
  transition: transform 0.4s, opacity, 0.4s, -webkit-transform 0.4s;
}
.headerMenuBtnBar {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: opacity, 0.4s, -webkit-transform 0.4s;
  transition: opacity, 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity, 0.4s;
  transition: transform 0.4s, opacity, 0.4s, -webkit-transform 0.4s;
  background-color: #fff;
}
.headerMenuBtnBar:nth-child(1) {
  top: 0;
}
.headerMenuBtnBar:nth-child(2) {
  top: 12px;
}
.headerMenuBtnBar:nth-child(3) {
  bottom: 0;
}
.headerMenuBtn__active {
  background-color: #fff;
}
.headerMenuBtn__active .headerMenuBtnBar {
  background-color: #000;
}
.headerMenuBtn__active .headerMenuBtnBar:nth-child(1) {
  -webkit-transform: translateY(12px) rotate(-315deg);
  transform: translateY(12px) rotate(-315deg);
}
.headerMenuBtn__active .headerMenuBtnBar:nth-child(2) {
  opacity: 0;
}
.headerMenuBtn__active .headerMenuBtnBar:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(315deg);
  transform: translateY(-12px) rotate(315deg);
}

.mainVisual {
  display: block;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sectionAbout {
    padding-top: 33px;
  }
}
@media (max-width: 767px) {
  .sectionAbout {
    padding-top: 30px;
  }
}
.sectionAbout .aboutContainer {
  text-align: center;
}
@media (max-width: 767px) {
  .sectionAbout .aboutContainer {
    margin: 0 36px;
  }
}
.sectionAbout .aboutContainer .sectionTitle {
  font-size: 36px;
  font-weight: bold;
}
.sectionAbout .aboutContainer .sectionTitle::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #000;
}
@media (min-width: 768px) {
  .sectionAbout .aboutContainer .sectionTitle::after {
    width: 40px;
    margin: 38px auto 0 auto;
  }
}
@media (max-width: 767px) {
  .sectionAbout .aboutContainer .sectionTitle::after {
    width: 40px;
    margin: 30px auto 0 auto;
  }
}
.sectionAbout .aboutContainer .sectionSubTitle {
  font-weight: bold;
}
@media (min-width: 768px) {
  .sectionAbout .aboutContainer .sectionSubTitle {
    font-size: 28px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .sectionAbout .aboutContainer .sectionSubTitle {
    font-size: 24px;
    margin-top: 15px;
  }
}
.sectionAbout .aboutContainer .sectionText {
  line-height: 2;
}
@media (min-width: 768px) {
  .sectionAbout .aboutContainer .sectionText {
    font-size: 20px;
    margin-top: 46px;
  }
}
@media (max-width: 767px) {
  .sectionAbout .aboutContainer .sectionText {
    text-align: left;
    font-size: 14px;
    margin-top: 12px;
  }
}
.sectionAbout .licenseContainer {
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .sectionAbout .licenseContainer {
    padding: 81px 0 100px 0;
    margin-top: 115px;
  }
}
@media (max-width: 767px) {
  .sectionAbout .licenseContainer {
    margin-top: 60px;
    padding: 36px 0 60px 0;
  }
}
.sectionAbout .licenseContainer .licenseTitle {
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .sectionAbout .licenseContainer .licenseTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .sectionAbout .licenseContainer .licenseTitle {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .sectionAbout .licenseContainer .licenseImagelist {
    margin: 64px auto 0 auto;
    max-width: 1092px;
    padding: 0 20px;
  }
  .sectionAbout .licenseContainer .licenseImagelist .licenseImage {
    width: 31.17%;
  }
  .sectionAbout .licenseContainer .licenseImagelist .licenseImage:nth-child(1n+2) {
    margin-left: 3.23%;
  }
}
@media (max-width: 767px) {
  .sectionAbout .licenseContainer .licenseImagelist {
    margin-top: 18px;
  }
  .sectionAbout .licenseContainer .licenseImagelist .sliders {
    width: 100% !important;
  }
  .sectionAbout .licenseContainer .licenseImagelist .sliders ul {
    width: auto !important;
  }
  .sectionAbout .licenseContainer .licenseImagelist .sliders li img {
    margin-left: 10px;
  }
}
.sectionAbout .licenseContainer .licenseList {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sectionAbout .licenseContainer .licenseList {
    max-width: 1200px;
    margin: 60px auto 0 auto;
  }
}
@media (max-width: 767px) {
  .sectionAbout .licenseContainer .licenseList {
    margin: 60px 36px;
  }
}
@media (min-width: 768px) {
  .sectionAbout .licenseContainer .licenseList .licenseListItem {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .sectionAbout .licenseContainer .licenseList .licenseListItem {
    width: 46.86%;
  }
  .sectionAbout .licenseContainer .licenseList .licenseListItem:nth-child(1n+3) {
    margin-top: 25px;
  }
  .sectionAbout .licenseContainer .licenseList .licenseListItem img {
    width: 100%;
    display: block;
  }
}

.section3Reasons {
  background-image: url("../img/3reasons_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
@media (min-width: 768px) {
  .section3Reasons {
    padding: 96px 0 100px 0;
  }
}
@media (max-width: 767px) {
  .section3Reasons {
    padding: 37px 35px 60px 35px;
  }
}
.section3Reasons .reasonsTitle {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .section3Reasons .reasonsTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsTitle {
    font-size: 22px;
  }
}
.section3Reasons .reasonsTitle span {
  color: #ff5623;
}
@media (min-width: 768px) {
  .section3Reasons .reasonsTitle span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsTitle span {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .section3Reasons .reasonsContainer {
    max-width: 1055px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.section3Reasons .reasonsItem {
  position: relative;
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem {
    margin-top: 22px;
  }
}
.section3Reasons .reasonsItemWrapper {
  position: relative;
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItemWrapper {
    border: 3px solid #fff;
    border-radius: 16px;
    max-width: 640px;
    width: 68%;
    min-height: 340px;
    padding: 92px 65px 36px 65px;
  }
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem:first-of-type {
    margin-top: 155px;
  }
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem:nth-of-type(1n+2) {
    margin-top: 140px;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem:nth-of-type(1n+2) {
    margin-top: 30px;
  }
}
.section3Reasons .reasonsItem .num {
  position: absolute;
  top: 0;
  font-weight: bold;
  line-height: 1px;
  -webkit-transform: translateY(-0.1em);
  transform: translateY(-0.1em);
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem .num {
    font-size: 105px;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem .num {
    font-size: 90px;
    left: 20px;
  }
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem .reasonsImage {
    position: absolute;
    top: 0;
    z-index: 2;
    max-width: 520px;
    width: 52%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem .reasonsImage {
    position: relative;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem .reasonsImage::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 101%;
    height: 101%;
    background-color: rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem .reasonsImage img {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem .reasonsItemInner {
    position: relative;
    border-width: 0 3px 3px 3px;
    border-style: solid;
    border-color: #fff;
    border-radius: 0 0 20px 20px;
    padding: 50px 16px;
  }
}
.section3Reasons .reasonsItem .title {
  font-weight: bold;
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem .title {
    font-size: 18px;
  }
}
.section3Reasons .reasonsItem .text {
  position: relative;
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem .text {
    padding-top: 32px;
    margin-top: 32px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section3Reasons .reasonsItem .text {
    font-size: 15px;
    padding-top: 20px;
    margin-top: 15px;
  }
}
.section3Reasons .reasonsItem .text::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 3px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem.reasonsItemLeft .reasonsItemWrapper {
    margin-right: auto;
    padding-right: 200px;
  }
  .section3Reasons .reasonsItem.reasonsItemLeft .reasonsItemWrapper .num {
    left: 65px;
  }
}
.section3Reasons .reasonsItem.reasonsItemLeft .reasonsImage {
  right: 0;
}
@media (min-width: 768px) {
  .section3Reasons .reasonsItem.reasonsItemRight .reasonsItemWrapper {
    margin-left: auto;
    padding-left: 176px;
  }
}
.section3Reasons .reasonsItem.reasonsItemRight .reasonsImage {
  left: 0;
}

.sectionResult {
  color: #fff;
}
@media (min-width: 768px) {
  .sectionResult {
    margin-top: 120px;
  }
}
@media (max-width: 767px) {
  .sectionResult {
    margin-top: 60px;
  }
}
.sectionResult .trouble {
  background-image: url("../img/trouble_bg.png");
  background-repeat: no-repeat;
  background-position: center bottom 0;
  background-size: cover;
}
.sectionResult .troubleContainer {
  position: relative;
}
@media (min-width: 768px) {
  .sectionResult .troubleContainer {
    padding: 80px 0;
    height: 632px;
  }
}
@media (max-width: 767px) {
  .sectionResult .troubleContainer {
    padding: 46px 0;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .sectionResult .troubleInner {
    border: 3px solid #fff;
    width: 716px;
    height: 472px;
    padding: 58px 0;
    border-radius: 14px;
  }
}
@media (max-width: 767px) {
  .sectionResult .troubleInner {
    padding: 0 36px;
  }
}
.sectionResult .troubleTitle {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .sectionResult .troubleTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .sectionResult .troubleTitle {
    font-size: 20px;
  }
}
.sectionResult .troubleTitle .text {
  color: #ff6c00;
}
@media (min-width: 768px) {
  .sectionResult .troubleTitle .text {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .sectionResult .troubleTitle .text {
    font-size: 32px;
  }
}
.sectionResult .troubleTitle .bracket {
  font-weight: normal;
}
@media (min-width: 768px) {
  .sectionResult .troubleList {
    margin: 30px 0 0 98px;
  }
}
@media (max-width: 767px) {
  .sectionResult .troubleList {
    margin-top: 19px;
    position: relative;
    z-index: 2;
  }
}
.sectionResult .troubleList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-weight: bold;
  background-image: url("../img/answer_checkmark.svg");
  background-repeat: no-repeat;
  background-position: 0 0.25em;
}
@media (min-width: 768px) {
  .sectionResult .troubleList li {
    font-size: 20px;
    padding-left: 52px;
    min-height: 35px;
  }
}
@media (max-width: 767px) {
  .sectionResult .troubleList li {
    font-size: 18px;
    background-size: 21px auto;
    padding-left: 26px;
    min-height: 22px;
  }
}
@media (min-width: 768px) {
  .sectionResult .troubleList li:nth-child(1n+2) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .sectionResult .troubleList li:nth-child(1n+2) {
    margin-top: 18px;
  }
}
.sectionResult .troubleHuman {
  position: absolute;
  bottom: 0;
}
@media (min-width: 768px) {
  .sectionResult .troubleHuman {
    right: 0;
  }
}
@media (max-width: 767px) {
  .sectionResult .troubleHuman {
    width: 140px;
    right: -8px;
  }
}

.blockConsultation {
  background-color: #e95513;
  font-weight: bold;
  color: #fff;
}
@media (min-width: 768px) {
  .blockConsultation {
    padding: 60px 20px;
  }
}
@media (max-width: 767px) {
  .blockConsultation {
    padding: 60px 8px;
  }
}
.blockConsultationContainer {
  background-color: #fff;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .blockConsultationContainer {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .blockConsultationContainer {
    padding: 8px;
  }
}
.blockConsultationInner {
  background-color: #e95513;
  border-radius: 8px;
  padding: 36px 0;
}
.blockConsultationTitle {
  text-align: center;
}
@media (min-width: 768px) {
  .blockConsultationTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .blockConsultationTitle {
    font-size: 20px;
  }
}
.blockConsultationIntro {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .blockConsultationIntro {
    font-size: 28px;
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .blockConsultationIntro {
    font-size: 20px;
  }
}
.blockConsultationText {
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .blockConsultationText {
    font-size: 24px;
    margin-top: 36px;
    padding-top: 36px;
  }
}
@media (max-width: 767px) {
  .blockConsultationText {
    font-size: 18px;
    margin-top: 28px;
    padding-top: 18px;
  }
}
.blockConsultationText::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  background-color: #fff;
  top: 0;
  left: calc(50% - 20px);
}
@media (min-width: 768px) {
  .blockConsultationText::before {
    height: 6px;
  }
}
@media (max-width: 767px) {
  .blockConsultationText::before {
    height: 4px;
  }
}
.blockConsultationInfo {
  margin-top: 28px;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .blockConsultationInfo {
    display: block;
  }
}
@media (min-width: 768px) {
  .blockConsultationVisitApplication {
    margin-left: 64px;
  }
}
.blockConsultationPhone {
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .blockConsultationPhone {
    border: 4px solid #fff;
    padding: 10px 0;
    border-radius: 50px;
  }
}
@media (min-width: 768px) {
  .blockConsultationPhoneTime {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .blockConsultationPhoneTime {
    font-size: 10px;
  }
}
.blockConsultationPhoneNumbar {
  background-image: url("../img/icon_coll.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .blockConsultationPhoneNumbar {
    font-size: 49px;
    margin-top: 10px;
    padding-left: 50px;
    background-size: 45px auto;
    min-height: 45px;
  }
}
@media (max-width: 767px) {
  .blockConsultationPhoneNumbar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-size: 18px auto;
    padding-left: 23px;
    min-height: 18px;
    font-size: 22px;
    margin-top: 6px;
  }
}
.blockConsultationVisitApplication {
  background-color: #fff;
  background-repeat: no-repeat;
  background-image: url("../img/answervisit_application_arrow.svg");
  background-position: right 42px center;
  color: #e95513;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .blockConsultationVisitApplication {
    width: 462px;
    height: 98px;
    border-radius: 49px;
  }
}
@media (max-width: 767px) {
  .blockConsultationVisitApplication {
    width: 100%;
    margin-top: 20px;
    border-radius: 50px;
    padding: 10px 0;
    background-size: 6px auto;
    background-position: center right 27px;
  }
}
.blockConsultationVisitApplication span {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .blockConsultationVisitApplicationSubTitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .blockConsultationVisitApplicationSubTitle {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .blockConsultationVisitApplicationText {
    font-size: 25px;
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .blockConsultationVisitApplicationText {
    font-size: 16px;
    margin-top: 3px;
  }
}

.resultBlockConsultation {
  margin-top: -1px;
  background-image: url("../img/answer_bg.png");
  background-repeat: no-repeat;
  background-position: top 0 center;
}
@media (min-width: 768px) {
  .resultBlockConsultation {
    padding: 103px 20px 43px 20px;
  }
}
@media (max-width: 767px) {
  .resultBlockConsultation {
    padding: 66px 8px 30px 8px;
    background-image: url("../img/sp/answer_bg.png");
  }
}

@media (min-width: 768px) {
  .workType {
    margin-top: 120px;
  }
}
@media (max-width: 767px) {
  .workType {
    margin-top: 60px;
  }
}
.workTypeContainer {
  margin-top: 80px;
  padding: 0 36px;
}
@media (min-width: 768px) {
  .workTypeTitleArea {
    height: 398px;
    padding: 46px 0;
  }
}
@media (max-width: 767px) {
  .workTypeTitleArea {
    display: block;
    position: relative;
  }
  .workTypeTitleArea img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .workTypeTitleArea .container {
    padding: 0 20px;
  }
}
.workTypeTitle {
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .workTypeTitle {
    width: 360px;
    height: 144px;
    font-size: 20px;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .workTypeTitle {
    padding: 18px 40px 18px 20px;
    font-size: 18px;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    left: 36px;
    bottom: 0;
    position: absolute;
  }
}
.workTypeTitle span {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .workTypeTitle span {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .workTypeTitle span {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .workTypeIntro {
    display: block;
  }
}
.workTypeIntroImage {
  display: block;
}
@media (min-width: 768px) {
  .workTypeIntroImage {
    width: 34.48%;
  }
}
@media (max-width: 767px) {
  .workTypeIntroImage {
    width: 100%;
    margin: 0 auto;
  }
}
.workTypeIntroText {
  line-height: 1.8;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
@media (min-width: 768px) {
  .workTypeIntroText {
    position: relative;
    margin: 54px 0 0 8.86%;
    max-width: 636px;
    width: 56.38%;
    padding: 60px;
    font-size: 16px;
    border-width: 3px;
    border-style: solid;
  }
  .workTypeIntroText::before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff;
    right: -3px;
    bottom: -3px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media (max-width: 767px) {
  .workTypeIntroText {
    position: relative;
    font-size: 15px;
    margin-top: 40px;
    padding: 30px;
  }
  .workTypeIntroText::before {
    content: "";
    bottom: -5px;
    right: -5px;
    position: absolute;
    width: 42px;
    height: 42px;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
    background-color: #fff;
  }
}
@media (min-width: 768px) {
  .workTypeContents {
    margin-top: 90px;
  }
}
@media (max-width: 767px) {
  .workTypeContents {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .workTypeContentsItem:nth-child(1n+2) {
    margin-top: 78px;
  }
}
@media (max-width: 767px) {
  .workTypeContentsItem:nth-child(1n+2) {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .workTypeContentsInner {
    margin-top: 36px;
  }
}
@media (max-width: 767px) {
  .workTypeContentsInner {
    margin-top: 30px;
  }
}
.workTypeContentsTitle {
  font-weight: bold;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  padding: 14px 0;
}
@media (min-width: 768px) {
  .workTypeContentsTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .workTypeContentsTitle {
    font-size: 22px;
  }
}
.workTypeContentsSubTitle {
  font-weight: bold;
}
@media (min-width: 768px) {
  .workTypeContentsSubTitle {
    font-size: 24px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .workTypeContentsSubTitle {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .workTypeContentsWorkList {
    max-width: 760px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 26px auto 0 auto;
  }
}
@media (max-width: 767px) {
  .workTypeContentsWorkList {
    display: block;
    margin-top: 14px;
  }
}
.workTypeContentsWorkList li {
  font-weight: bold;
}
@media (min-width: 768px) {
  .workTypeContentsWorkList li {
    width: 50%;
    font-size: 20px;
  }
  .workTypeContentsWorkList li:nth-child(1n+3) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .workTypeContentsWorkList li {
    font-size: 16px;
  }
  .workTypeContentsWorkList li:nth-child(1n+2) {
    margin-top: 14px;
  }
}
.workTypeContentsWorkList li::before {
  content: "●";
  display: inline-block;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .workTypeContentsScheduleTable {
    overflow-x: scroll;
  }
}
.workTypeContentsScheduleTable img {
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .workTypeContentsScheduleTable img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .workTypeContentsScheduleHelper {
    margin-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .workTypeContentsScheduleHelper p {
    margin-left: 8px;
    font-size: 12px;
  }
}
.workTypeContentsDayFlowImage {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.workTypeContentsDayFlowWage {
  font-weight: bold;
}
@media (min-width: 768px) {
  .workTypeContentsDayFlowWage {
    max-width: 806px;
    margin: 38px auto 0 auto;
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .workTypeContentsDayFlowWage {
    width: auto;
    margin: 30px auto 0 auto;
    padding: 16px 10px;
  }
}
@media (min-width: 768px) {
  .workTypeContentsDayFlowWage dt {
    font-size: 24px;
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .workTypeContentsDayFlowWage dt {
    font-size: 18px;
    padding-right: 8px;
    margin-right: 8px;
  }
}
@media (min-width: 768px) {
  .workTypeContentsDayFlowWage dd {
    font-size: 20px;
    padding: 0 28px;
  }
}
@media (max-width: 767px) {
  .workTypeContentsDayFlowWage dd {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .workTypeWorking .workTypeTitleArea {
    background-image: url("../img/work_type_working_title_image.jpg");
  }
}
.workTypeWorking .workTypeTitle {
  width: 230px;
  background-color: #50cbca;
}
@media (min-width: 768px) {
  .workTypeWorking .workTypeIntroText {
    border-color: #51B5BB;
  }
  .workTypeWorking .workTypeIntroText::before {
    background-image: url("../img/work_type_working_intro_line.svg");
  }
}
@media (max-width: 767px) {
  .workTypeWorking .workTypeIntroText {
    border: 4px solid #50ADB2;
  }
  .workTypeWorking .workTypeIntroText::before {
    background-image: url("../img/sp/work_type_working_intro_line.svg");
  }
}
.workTypeWorking .workTypeContentsTitle {
  background-color: #50cbca;
}
.workTypeWorking .workTypeContentsSubTitle {
  color: #006b9c;
}
.workTypeWorking .workTypeContentsWorkList li::before {
  color: #006b9c;
}
.workTypeWorking .workTypeContentsScheduleHelper p {
  color: #006b9c;
}
.workTypeWorking .workTypeContentsDayFlowWage {
  border: 1px solid #50cbca;
  color: #006b9c;
}
.workTypeWorking .workTypeContentsDayFlowWage dt {
  border-right: 1px solid #50cbca;
}

@media (min-width: 768px) {
  .workTypeIndependence .workTypeTitleArea {
    background-image: url("../img/work_type_Independence_title_image.jpg");
  }
}
.workTypeIndependence .workTypeTitle {
  background-color: #ff942d;
}
.workTypeIndependence .workTypeIntroText {
  border-color: #ff942d;
}
@media (min-width: 768px) {
  .workTypeIndependence .workTypeIntroText::before {
    background-image: url("../img/work_type_Independence_intro_line.svg");
  }
}
@media (max-width: 767px) {
  .workTypeIndependence .workTypeIntroText {
    border: 4px solid #F18F34;
  }
  .workTypeIndependence .workTypeIntroText::before {
    background-image: url("../img/sp/work_type_Independence_intro_line.svg");
  }
}
.workTypeIndependence .workTypeContentsTitle {
  background-color: #ff942d;
}
.workTypeIndependence .workTypeContentsSubTitle {
  color: #ff5623;
}
.workTypeIndependence .workTypeContentsWorkList li::before {
  color: #ff5623;
}
.workTypeIndependence .workTypeContentsScheduleHelper p {
  color: #ff5623;
}
.workTypeIndependence .workTypeContentsDayFlowWage {
  border: 1px solid #ff942d;
  color: #ff5623;
}
.workTypeIndependence .workTypeContentsDayFlowWage dt {
  border-right: 1px solid #ff942d;
}

.employmentFlow {
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .employmentFlow {
    margin-top: 120px;
    padding: 76px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .employmentFlow {
    margin-top: 60px;
    padding: 60px 36px;
  }
}
.employmentFlowTitle {
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .employmentFlowContainer {
    max-width: 1005px;
  }
}
.employmentFlowList {
  margin-top: 36px;
}
.employmentFlowList li {
  position: relative;
}
@media (min-width: 768px) {
  .employmentFlowList li {
    height: 233px;
    padding: 36px 36px 40px 36px;
    background-image: url("../img/employment_flow_list_border.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .employmentFlowList li {
    padding: 26px 28px;
    border: 3px solid #13733E;
    border-radius: 20px;
  }
  .employmentFlowList li::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 35px;
    height: 30px;
    background-image: url("../img/sp/employment_flow_list_arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (min-width: 768px) {
  .employmentFlowList li:nth-child(1n+2) {
    margin-top: 44px;
  }
}
@media (max-width: 767px) {
  .employmentFlowList li:nth-child(1n+2) {
    margin-top: 58px;
  }
}
.employmentFlowListTitle {
  font-weight: bold;
  color: #13733e;
}
@media (min-width: 768px) {
  .employmentFlowListTitle {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .employmentFlowListTitle {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .employmentFlowListText {
    max-width: 670px;
    margin-top: 18px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .employmentFlowListText {
    font-size: 15px;
    margin-top: 20px;
  }
  .employmentFlowListText::before {
    content: "";
    display: block;
    float: right;
    margin-top: 6em;
  }
  .employmentFlowListText::after {
    content: "";
    display: block;
    clear: both;
  }
}
@media (min-width: 768px) {
  .employmentFlowListImage {
    position: absolute;
    right: 25px;
    bottom: 10px;
  }
}
@media (max-width: 767px) {
  .employmentFlowListImage {
    float: right;
    clear: both;
    width: 150px;
    height: auto;
  }
  .employmentFlowListImage img {
    width: 100%;
  }
}
.employmentFlowLastContent {
  border: 3px solid #ff5623;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .employmentFlowLastContent {
    padding: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .employmentFlowLastContent {
    padding: 20px;
    margin-top: 56px;
  }
}
.employmentFlowLastContentTitle {
  font-weight: bold;
  text-align: center;
  color: #ff5623;
}
@media (min-width: 768px) {
  .employmentFlowLastContentTitle {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .employmentFlowLastContentTitle {
    font-size: 18px;
  }
}
.employmentFlowLastContentIntro {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .employmentFlowLastContentIntro {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .employmentFlowLastContentIntro {
    font-size: 16px;
  }
}
.employmentFlowLastContentIntro span {
  font-weight: bold;
}
@media (max-width: 767px) {
  .employmentFlowLastContentIntro span {
    font-size: 16px;
  }
}
.employmentFlowLastContentText {
  margin-top: 18px;
  font-size: 16px;
}

.useFlow {
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .useFlow {
    padding: 78px 0;
  }
}
@media (max-width: 767px) {
  .useFlow {
    padding: 56px 28px;
  }
}
@media (min-width: 768px) {
  .useFlowContainer {
    max-width: 956px;
    padding: 0 20px;
  }
}
.useFlowTitle {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .useFlowTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .useFlowTitle {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .useFlowList {
    margin-top: 36px;
  }
}
@media (max-width: 767px) {
  .useFlowList {
    margin-top: 28px;
  }
}
.useFlowList li {
  position: relative;
  border-radius: 20px;
  border-width: 10px;
  border-style: solid;
  padding: 26px;
  text-align: center;
}
.useFlowList li::before {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-color: transparent;
  border-top-color: #000;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .useFlowList li::before {
    border-width: 24px;
    bottom: -58px;
  }
}
@media (max-width: 767px) {
  .useFlowList li::before {
    border-width: 20px;
    bottom: -49px;
  }
}
@media (min-width: 768px) {
  .useFlowList li:nth-child(1n+2) {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .useFlowList li:nth-child(1n+2) {
    margin-top: 40px;
  }
}
.useFlowList li:nth-child(1) {
  border-color: #B2D68D;
}
.useFlowList li:nth-child(1)::before {
  border-top-color: #B2D68D;
}
.useFlowList li:nth-child(2) {
  border-color: #A9D67A;
}
.useFlowList li:nth-child(2)::before {
  border-top-color: #A9D67A;
}
.useFlowList li:nth-child(3) {
  border-color: #85AF5A;
}
.useFlowList li:nth-child(3)::before {
  border-top-color: #85AF5A;
}
.useFlowList li:nth-child(4) {
  border-color: #5FA31B;
}
.useFlowList li:nth-child(4)::before {
  border-top-color: #5FA31B;
}
.useFlowListTitle {
  font-weight: bold;
  color: #13733e;
}
@media (min-width: 768px) {
  .useFlowListTitle {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .useFlowListTitle {
    font-size: 18px;
  }
}
.useFlowListText {
  margin-top: 18px;
}
@media (min-width: 768px) {
  .useFlowListText {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .useFlowListText {
    font-size: 15px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .useFlowLastContent {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .useFlowLastContent {
    margin-top: 50px;
  }
}
.useFlowLastContent img {
  display: block;
}
@media (min-width: 768px) {
  .useFlowLastContent img {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .useFlowLastContent img {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .staffIntro {
    margin-top: 78px;
  }
}
@media (max-width: 767px) {
  .staffIntro {
    margin-top: 56px;
    padding: 0 35px;
  }
}
@media (min-width: 768px) {
  .staffIntroContainer {
    max-width: 1260px;
    padding: 0 38px;
  }
}
.staffIntroTitle {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .staffIntroTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .staffIntroTitle {
    font-size: 22px;
  }
}
.staffIntroSubTitle {
  text-align: center;
}
@media (min-width: 768px) {
  .staffIntroSubTitle {
    margin-top: 25px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .staffIntroSubTitle {
    margin-top: 16px;
    font-size: 18px;
  }
}
.staffIntroList {
  margin-top: 38px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .staffIntroList {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .staffIntroList {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.staffIntroList li {
  position: relative;
  border: 3px solid #82BF4A;
}
@media (min-width: 768px) {
  .staffIntroList li {
    max-width: 368px;
    width: 31%;
    padding: 36px 36px 54px 36px;
  }
  .staffIntroList li:nth-child(3n+2) {
    margin-left: 3.37%;
    margin-right: 3.37%;
  }
  .staffIntroList li:nth-child(1n+4) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .staffIntroList li {
    padding: 28px 28px 48px 28px;
  }
  .staffIntroList li:nth-child(1n+2) {
    margin-top: 30px;
  }
}
.staffIntroList li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 40px;
  height: 40px;
  border-width: 3px;
  border-style: solid;
  border-color: #82BF4A transparent transparent #82BF4A;
  background-color: #fff;
}
.staffIntroList li::after {
  content: "";
  display: block;
  position: absolute;
  right: -10px;
  bottom: 17px;
  width: 55px;
  height: 3px;
  background-color: #82bf4a;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .staffIntroListPosition {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .staffIntroListPosition {
    font-size: 15px;
  }
}
.staffIntroListName {
  font-weight: bold;
}
@media (min-width: 768px) {
  .staffIntroListName {
    margin-top: 10px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .staffIntroListName {
    margin-top: 8px;
    font-size: 18px;
  }
}
.staffIntroListHobby {
  margin-top: 0px;
}
@media (min-width: 768px) {
  .staffIntroListHobby {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .staffIntroListHobby {
    font-size: 15px;
  }
}
.staffIntroListSkill {
  margin-top: 0px;
}
@media (min-width: 768px) {
  .staffIntroListSkill {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .staffIntroListSkill {
    font-size: 15px;
  }
}
.staffIntroListText {
  margin-top: 18px;
}
@media (min-width: 768px) {
  .staffIntroListText {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .staffIntroListText {
    font-size: 15px;
  }
}

.qa {
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .qa {
    margin-top: 78px;
    padding: 80px;
  }
  .qaContainer {
    max-width: 1074px;
  }
}
@media (max-width: 767px) {
  .qa {
    margin-top: 60px;
    padding: 60px 36px;
  }
}
.qaTitle {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .qaTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .qaTitle {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .qaList {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .qaList {
    margin-top: 33px;
  }
}
.qaListItem {
  margin-bottom: 0;
}
.qaListItem:nth-child(1n+2) {
  margin-top: 40px;
}
.qaListTitle {
  position: relative;
  font-weight: bold;
  color: #fff;
  background-color: #87c846;
  border-radius: 0;
  border: none;
}
@media (min-width: 768px) {
  .qaListTitle {
    padding: 16px 30px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .qaListTitle {
    position: relative;
    padding: 12px 16px 32px 16px;
    font-size: 16px;
  }
}
.qaListTitle::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/sp/qa_list_title_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media (min-width: 768px) {
  .qaListTitle::before {
    width: 18px;
    height: 16px;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .qaListTitle::before {
    bottom: 13px;
    left: 50%;
    width: 16px;
    height: 14px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .qaListTitle.accordion-group__accordion-btn_expanded::before {
    -webkit-transform: translateY(-50%) rotateX(180deg);
    transform: translateY(-50%) rotateX(180deg);
  }
}
@media (max-width: 767px) {
  .qaListTitle.accordion-group__accordion-btn_expanded::before {
    -webkit-transform: translateX(-50%) rotateX(180deg);
    transform: translateX(-50%) rotateX(180deg);
  }
}
.qaListTitle:hover {
  cursor: pointer;
}
.qaListTitle span {
  background-image: url("../img/qa_list_title_icon.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
}
@media (min-width: 768px) {
  .qaListTitle span {
    padding-left: 48px;
    height: 38px;
  }
}
@media (max-width: 767px) {
  .qaListTitle span {
    padding-left: 32px;
    background-size: 20px auto;
  }
}
.qaListText {
  display: none;
  border: 3px solid #87c846;
  border-radius: 0;
}
@media (min-width: 768px) {
  .qaListText {
    padding: 28px 50px 28px 20px;
  }
}
@media (max-width: 767px) {
  .qaListText {
    padding: 16px 8px;
  }
}
.qaListText p {
  min-height: 44px;
  padding-left: 58px;
  background-image: url("../img/qa_list_text_icon.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (min-width: 768px) {
  .qaListText p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .qaListText p {
    font-size: 15px;
    padding-left: 38px;
    background-size: 27px auto;
  }
}

@media (min-width: 768px) {
  .accessMap {
    padding: 76px 0;
  }
}
@media (max-width: 767px) {
  .accessMap {
    padding: 58px 0;
  }
}
.accessMapTitle {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .accessMapTitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .accessMapTitle {
    font-size: 22px;
  }
}
.accessMapIntro {
  display: block;
}
@media (min-width: 768px) {
  .accessMapIntro {
    margin: 8px auto 0 auto;
  }
}
@media (max-width: 767px) {
  .accessMapIntro {
    margin: 28px auto 0 auto;
  }
}
.accessMapIframe {
  margin-top: 26px;
  width: 100%;
  height: 420px;
}
.accessMapAddress {
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
}

.footer {
  background-color: #000;
  color: #fff;
}
@media (min-width: 768px) {
  .footer {
    padding: 38px 0 24px 0;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 28px 0 14px 0;
  }
}
@media (min-width: 768px) {
  .footerContainer {
    max-width: 974px;
  }
}
@media (max-width: 767px) {
  .footerContainer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
.footerTopLink {
  display: block;
}
@media (max-width: 767px) {
  .footerTopLink {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .footerNav {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footerNavItem:nth-child(1n+2) {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid #fff;
}
.footerNavItem a {
  color: #fff;
}
@media (min-width: 768px) {
  .footerNavItem a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footerNavItem a {
    font-size: 12px;
  }
}
.footerCopyright {
  text-align: center;
}
@media (min-width: 768px) {
  .footerCopyright {
    margin-top: 62px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footerCopyright {
    margin-top: 40px;
    font-size: 10px;
  }
}

#overlay {
  display: none;
}
#overlay.active {
  display: block;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.page_to_top_wrapper {
  position: fixed;
  overflow: hidden;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1240px;
  width: 100%;
}
@media (min-width: 768px) {
  .page_to_top_wrapper {
    padding: 0 20px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .page_to_top_wrapper {
    bottom: 0;
  }
}

.page_to_top {
  display: block;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  .page_to_top {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 767px) {
  .page_to_top {
    width: 40px;
    height: 40px;
  }
}
.page_to_top.active {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.page_to_top img {
  display: block;
  width: 100%;
}

.remodal .remodal-cancel:hover {
  opacity: 0.7;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.remodal {
  color: #000;
  display: none;
  margin: 0 auto;
  width: 96%;
  max-width: 1200px;
  max-height: 95%;
  background: #fff;
  overflow: auto;
  font-size: 14px;
}

.modal_area {
  padding: 10px;
}

.remodal h2.title {
  background-color: #a2bae0;
}

.remodal .title img {
  margin: 0 auto;
}

.modal_area.type01 .title img {
  padding: 29px 0;
  width: 421px;
}

.modal_area.type01 dl {
  display: table;
  margin: 0 auto;
  padding: 60px 0 20px;
  width: 1000px;
}

.modal_area.type01 dt {
  display: table-cell;
  vertical-align: middle;
  width: 216px;
}

.modal_area.type01 dd {
  display: table-cell;
  vertical-align: middle;
  padding-left: 55px;
  width: 784px;
}

.modal_area.type01 dd .image01 {
  width: 628px;
}

.modal_area.type01 dd .txt {
  color: #000;
  font-size: 16px;
  text-align: left;
  padding: 5px 0 10px;
}

.modal_area.type01 dd .image02 {
  width: 417px;
}

.remodal .remodal-cancel {
  background: none;
  display: block;
  width: 312px;
  margin: 40px auto;
  padding: 0;
  outline: none;
  border: none;
}

#lean_overlay {
  background: #000;
  cursor: pointer;
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
}

.remodal.ft {
  color: #000;
  text-align: left;
  padding: 30px 30px 0;
}

.remodal.ft h2.title {
  background: none;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.remodal.ft dl {
  margin-bottom: 30px;
}

.remodal.ft dt.title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.remodal.ft .txt {
  line-height: 1.8;
}

.remodal.ft button {
  background-color: #ccc;
  border-radius: 5px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  margin-bottom: 50px;
  width: 200px;
}

.remodal.ft button:hover {
  cursor: pointer;
}

.remodal.ft dd li:before {
  content: "・";
}

.remodal.ft dd li {
  line-height: 1.8;
  padding-left: 14px;
  text-indent: -14px;
}

.topPage .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.topPage .header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation: headerIn ease 0.5s;
  animation: headerIn ease 0.5s;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16);
}

.PageInquiry .ui-widget {
  font-size: 16px;
}

.contactForm {
  background-color: #FFFFF1;
}
.contactFormTitle {
  text-align: center;
  position: relative;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .contactFormTitle {
    font-size: 50px;
    padding-bottom: 65px;
  }
}
@media (max-width: 767px) {
  .contactFormTitle {
    font-size: 6.6vw;
    padding-bottom: 39px;
  }
}
.contactFormTitle::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-style: solid;
  border-color: transparent;
  border-top-color: #ff942d;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .contactFormTitle::before {
    border-width: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .contactFormTitle::before {
    border-width: 40px 40px 0 40px;
  }
}
.contactFormTitle span {
  display: block;
  background-color: #ff942d;
}
@media (min-width: 768px) {
  .contactFormTitle span {
    padding: 34px 0 32px;
  }
}
@media (max-width: 767px) {
  .contactFormTitle span {
    padding: 6.7% 0 5.2%;
  }
}
.contactFormContainer {
  max-width: 1065px;
}
@media (min-width: 768px) {
  .contactFormContainer {
    margin-top: 65px;
    padding: 1px 20px;
  }
}
@media (max-width: 767px) {
  .contactFormContainer {
    padding: 4% 3% 13.5% 3%;
  }
}
@media (min-width: 768px) {
  .contactForm .inquiry_inr.error, .contactForm .inquiry_inr.confirm {
    font-size: 18px;
  }
}
.contactForm .inquiry_inr.error .form_box, .contactForm .inquiry_inr.confirm .form_box {
  width: 96.2%;
  margin: 44px auto;
  padding-right: 12px;
}
.contactForm .inquiry_inr.error .inquiry_lead, .contactForm .inquiry_inr.confirm .inquiry_lead {
  text-align: center;
}
.contactForm .inquiry_inr.error .error_messe, .contactForm .inquiry_inr.confirm .error_messe {
  color: #BF0D23;
  line-height: 2;
  text-align: center;
}
.contactForm .inquiry_inr.error input[type=button], .contactForm .inquiry_inr.confirm input[type=button] {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(22%, #727171), color-stop(94%, #3e3a39));
  background: -webkit-linear-gradient(top, #727171 22%, #3e3a39 94%);
  background: linear-gradient(to bottom, #727171 22%, #3e3a39 94%);
}
@media (min-width: 768px) {
  .contactForm .inquiry_inr.thanks .contactFormRead {
    font-size: 20px;
  }
}
.contactFormRead {
  line-height: 1.68;
  font-weight: 500;
}
@media (min-width: 768px) {
  .contactFormRead {
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .contactFormRead {
    font-size: 3.9vw;
  }
}
.contactFormRead .attention {
  color: #bf0d23;
  margin-top: 1.8em;
}
@media (min-width: 768px) {
  .contactFormInner {
    padding: 44px 0;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .contactFormInner {
    margin-top: 6.5vw;
    font-size: 1.8rem;
  }
}
.contactForm dl {
  border-bottom: 2px dotted #036eb4;
}
@media (min-width: 768px) {
  .contactForm dl {
    display: table;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .contactForm dl {
    font-size: 3.7vw;
    display: block;
    width: 100%;
    margin-bottom: 4%;
  }
}
.contactForm dl dt {
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 768px) {
  .contactForm dl dt {
    width: 19.9%;
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px 6px 0;
  }
}
@media (max-width: 767px) {
  .contactForm dl dt {
    width: 100%;
    display: block;
    padding: 0 0.5em 0 0;
  }
}
@media (min-width: 768px) {
  .contactForm dl dt span {
    font-size: 14px;
    padding-left: 5px;
    vertical-align: 1px;
  }
}
@media (max-width: 767px) {
  .contactForm dl dt span {
    font-size: 3.2vw;
    padding-left: 0.7em;
  }
}
.contactForm dl dt .cat, .contactForm dl dt .error_messe {
  color: #BF0D23;
  display: inline-block;
}
@media (min-width: 768px) {
  .contactForm dl dd {
    padding: 0.8em 0 1.2em 0;
    display: table-cell;
  }
}
@media (max-width: 767px) {
  .contactForm dl dd {
    display: block;
    padding: 0.4em 0 1em 0;
  }
}
.contactForm dl dd > span {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
.contactForm dl dd input, .contactForm dl dd textarea, .contactForm dl dd select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #FFF;
  border: 2px solid #caccc4;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .contactForm dl dd input, .contactForm dl dd textarea, .contactForm dl dd select {
    line-height: 48px;
    font-size: 18px;
    width: 99.7%;
    max-width: 100%;
    min-height: 50px;
    padding: 0 8px;
  }
}
@media (max-width: 767px) {
  .contactForm dl dd input, .contactForm dl dd textarea, .contactForm dl dd select {
    line-height: 1.9;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    min-height: 9.5vw;
    padding: 0 0.6em;
  }
}
.contactForm dl dd textarea {
  min-height: 150px;
  line-height: 1.5;
  padding: 16px;
}
.contactForm dl .select {
  position: relative;
}
.contactForm dl .select:not(:target)::after {
  display: none\9 ;
}
.contactForm dl .select::after {
  content: "▼";
  display: block;
  position: absolute;
  color: #666;
  pointer-events: none;
  left: auto;
  bottom: auto;
  line-height: 1;
  top: 46%;
}
@media (min-width: 768px) {
  .contactForm dl .select::after {
    font-size: 16px;
    right: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    padding: 0 0 12px 0;
  }
}
@media (max-width: 767px) {
  .contactForm dl .select::after {
    font-size: 10px;
    right: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 10px;
    height: 10px;
    padding: 0 0 1.25em 0;
  }
}
.contactForm dl.date dd > span {
  width: auto;
  font-weight: 500;
}
.contactForm dl.date input, .contactForm dl.date select {
  margin-bottom: 0.5em;
  padding: 0 0.5em;
}
.contactForm dl .sub_title {
  margin-right: 10px;
  vertical-align: 0;
}
.contactForm dl .time {
  margin-left: 0.3em;
  width: 6em;
  display: inline-block;
}
.contactForm .send {
  margin: 40px auto;
}
.contactForm .btn {
  border-radius: 15px;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 1vw rgba(35, 24, 21, 0.6);
  box-shadow: 0 0 1vw rgba(35, 24, 21, 0.6);
  overflow: hidden;
}
@media (min-width: 768px) {
  .contactForm .btn {
    width: 72%;
    margin: 40px auto;
  }
}
@media (max-width: 767px) {
  .contactForm .btn {
    width: 100%;
    margin: 9% auto 0;
  }
}
.contactForm .btn:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.contactForm input[type=submit], .contactForm input[type=button] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFF;
  width: 100%;
  cursor: pointer;
  border: none;
  font-weight: 600;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(22%, #E33A03), color-stop(94%, #E3264B));
  background: -webkit-linear-gradient(top, #E33A03 22%, #E3264B 94%);
  background: linear-gradient(to bottom, #E33A03 22%, #E3264B 94%);
}
@media (min-width: 768px) {
  .contactForm input[type=submit], .contactForm input[type=button] {
    padding: 10px;
    font-size: 24px;
    padding: 26px 0;
    border-radius: 15px;
  }
}
@media (max-width: 767px) {
  .contactForm input[type=submit], .contactForm input[type=button] {
    line-height: 3.1;
    font-size: 4.4vw;
    max-width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    border-radius: 2vw;
  }
}
@media (max-width: 767px) {
  .contactForm input[type=text].hasDatepicker {
    width: 10em;
  }
}
/*# sourceMappingURL=sourcemaps/index.css.map */