@charset "UTF-8";
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.8em;
  background: #fff;
  color: #000;
  line-height: 1.77;
  text-align: justify;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #000;
  text-decoration: none;
}
a.hvop {
  transition: opacity .3s ease;
}
a.hvop:hover {
  opacity: .7;
  transition: opacity .2s ease;
}

.is-tab {
  display: none;
}

.is-sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  body {
    font-size: 1.6em;
  }
  .is-tab {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.5em;
  }
  a.hvop:hover {
    opacity: 1;
  }
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}

/*------------------------------------------
  modules
------------------------------------------*/
.l-grid {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

/* ===== layout ===== */
[class*="l-inner"] {
  margin: auto;
  padding: 0 15px;
}

/* ===== title ===== */
.m-title__type01 {
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 3.7rem;
  padding: 0 1.2em;
  line-height: 1.5;
  text-align: center;
}
.m-title__type01:before, .m-title__type01:after {
  content: "";
  position: absolute;
  top: .2em;
}
.m-title__type01:before {
  content: "＼";
  left: 0;
}
.m-title__type01:after {
  content: "／";
  right: 0;
}

.m-title__type02 {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}
.m-title__type02:before, .m-title__type02:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 60px;
  background-size: 100%;
  bottom: 0;
}
.m-title__type02:before {
  left: -52px;
  background-image: url(../images/ribbon01_l.png);
}
.m-title__type02:after {
  right: -52px;
  background-image: url(../images/ribbon01_r.png);
}
.m-title__type02 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #fff;
  background: #00af9e;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  padding: .2em 1em;
}

.m-title__type03 {
  display: inline-block;
  position: relative;
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 40px;
}
.m-title__type03:before {
  content: "";
  width: 162px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 160px;
  position: absolute;
  left: 50%;
  margin-left: -80px;
  bottom: 0;
}
.m-title__type03.black:before {
  background-image: url(../images/titlebar_b.svg);
}
.m-title__type03.white {
  color: #fff;
}
.m-title__type03.white:before {
  background-image: url(../images/titlebar_w.svg);
}

/* ===== btn ===== */
.m-btn__type01 {
    display: inline-block;
    color: #fff;
    font-size: 2rem;
    line-height: 80px;
    text-align: center;
    width: 500px;
    font-weight: bold;
    border-radius: 8px;
    transition: .3s;
    background: #ffa200;
}

.js-acTrigger {
  cursor: pointer;
}

.js-acHide {
  display: none;
}

@media only screen and (max-width: 768px) {
  /* ===== title ===== */
  .m-title__type01 {
    font-size: 2rem;
  }
  .m-title__type01:before, .m-title__type01:after {
    top: auto;
    bottom: -.2em;
  }
  .m-title__type02 {
    padding-bottom: 8px;
  }
  .m-title__type02:before, .m-title__type02:after {
    width: 41px;
    height: 35px;
  }
  .m-title__type02:before {
    left: -30px;
  }
  .m-title__type02:after {
    right: -30px;
  }
  .m-title__type02 span {
    font-size: 1.8rem;
    padding: .5em 1em;
  }
  .m-title__type03 {
    font-size: 2rem;
    padding-bottom: 24px;
  }
  .m-title__type03:before {
    width: 82px;
    height: 12px;
    background-size: 82px;
    margin-left: -41px;
  }
  /* ===== btn ===== */
  .m-btn__type01 {
    font-size: 1.6rem;
    line-height: 60px;
    width: 100%;
    max-width: 480px;
  }
}

/*------------------------------------------
  header
------------------------------------------*/
.page-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 100;
  padding-left: 30px;
  padding-right: 20px;
  background: #fff;
  line-height: 1.5;
}
.page-header__inner {
  position: relative;
  height: 100px;
  align-items: center;
}
.page-header .header-title__sub {
  font-size: 1.2rem;
}
.page-header .header-title__main {
  font-weight: bold;
  font-size: 3rem;
}
.page-header .header-contents {
  margin-left: auto;
  height: 100px;
  align-items: center;
}
.page-header .header-tel {
  margin-right: 20px;
}
.page-header .header-tel p {
  padding-left: 36px;
}
.page-header .header-tel__num {
  font-weight: bold;
  font-size: 3.2rem;
  position: relative;
}
.page-header .header-tel__num:before {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -13px;
  background: url(../images/ico-tel.svg);
  background-size: 100%;
}
.page-header .header-tel__text {
  font-size: 1.4rem;
}
.page-header .header-btn {
  height: 100px;
  align-items: flex-start;
}
.page-header .header-btn li {
  margin-right: 10px;
}
.page-header .header-btn li:last-child {
  margin-right: 0;
}
.page-header .header-btn .pc-btn {
  overflow: hidden;
  position: relative;
  color: #fff;
  max-width: 170px;
  width: 14vw;
  height: 75px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.3;
  border-radius: 0 0 14px 14px / 0 0 14px 14px;
  justify-content: center;
  align-items: center;
}
.page-header .header-btn .pc-btn > div {
  position: relative;
  z-index: 1;
  align-items: center;
}
.page-header .header-btn .pc-btn:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shineBtn 3s ease-in-out infinite;
          animation: shineBtn 3s ease-in-out infinite;
}
.page-header .header-btn .btn-text {
  padding-left: 10px;
}
.page-header .header-btn__mail .pc-btn {
  background: #ffa200;
}
.page-header .header-btn__line .pc-btn {
  background: #06c755;
}

@-webkit-keyframes shineBtn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: .5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .page-header .header-title__main {
    font-size: 2.8rem;
  }
  .page-header .header-tel__num {
    font-size: 3rem;
  }
  .page-header .header-btn {
    align-items: center;
  }
  .page-header .header-btn .pc-btn {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .page-header {
    padding: 0 10px;
  }
  .page-header__inner {
    height: 65px;
  }
  .page-header .header-title__sub {
    font-size: 1rem;
  }
  .page-header .header-title__main {
    font-size: 1.6rem;
  }
  .page-header .header-contents {
    height: 65px;
  }
  .page-header .header-btn {
    height: 65px;
  }
  .page-header .header-btn li {
    margin-right: 8px;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.page-footer {
  text-align: center;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
}
.page-footer__top {
  background: #fff;
  padding: 55px 20px;
}
.page-footer__bottom {
  position: relative;
  background: #333;
  color: #fff;
  padding: 40px 20px;
}
.page-footer__bottom a {
  color: #fff;
}
.page-footer .company-info {
  font-size: 1.8rem;
  margin-bottom: 25px;
}
.page-footer .company-info__logo {
  margin-top: 25px;
}
.page-footer .company-address p {
  margin-bottom: .5em;
}
.page-footer .company-address p:last-child {
  margin-bottom: 0;
}
.page-footer .footer-nav {
  justify-content: center;
  margin-bottom: 35px;
}
.page-footer .footer-nav li {
  line-height: 1.1;
  padding: 0 1em;
  border-right: 1px solid #fff;
}
.page-footer .footer-nav li:last-child {
  border-right: none;
}
.page-footer .footer-nav li a {
  text-decoration: underline;
}

.btn-pagetop {
  display: none;
  position: fixed;
  right: 40px;
  bottom: 180px;
  z-index: 10;
}
.btn-pagetop a {
  display: block;
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 50%;
  background: #333;
}
.btn-pagetop a:after {
  content: "";
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -4px;
  transform: rotate(-45deg);
  transform-origin: center;
}

@media only screen and (max-width: 768px) {
  .page-footer {
    font-size: 1.3rem;
  }
  .page-footer__top {
    padding: 30px 0;
  }
  .page-footer__bottom {
    padding: 30px 0;
  }
  .page-footer .company-info {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .page-footer .company-info__logo {
    margin-top: 15px;
  }
  .page-footer .footer-nav {
    margin-bottom: 20px;
  }
  .btn-pagetop {
    bottom: 130px;
    right: 15px;
  }
  .btn-pagetop a {
    width: 35px;
    height: 35px;
  }
  .btn-pagetop a:after {
    width: 8px;
    height: 8px;
    margin-left: -4px;
    margin-top: -3px;
  }
}

/*------------------------------------------
  form
------------------------------------------*/
.form-lead {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

.form-error {
  color: #d02626;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 86%;
  background: #fff;
  padding: 1.5em 2em;
}

.form-block {
  background: #fff;
  padding: 35px 40px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.form-block__agreement {
  margin: 60px 0;
}
.form-block__text .block-title {
  margin-top: 13px;
}
.form-block__confirm {
  margin-bottom: 60px;
}
.form-block__confirm table {
  width: 100%;
  max-width: 680px;
  margin: auto;
  text-align: left;
}
.form-block__confirm th {
  font-weight: bold;
  width: 12em;
}
.form-block__confirm th, .form-block__confirm td {
  padding-bottom: 1em;
}
.form-block:last-child {
  margin-bottom: 0;
}
.form-block .block-title {
  width: 220px;
  font-weight: bold;
  position: relative;
  line-height: 1.4;
}
.form-block .block-title .required {
  position: absolute;
  right: 0;
  top: 0px;
  font-size: 1.2rem;
  color: #fff;
  background: #ffa200;
  width: 50px;
  text-align: center;
  line-height: 26px;
}
.form-block .block-title .caution {
  font-size: 1.2rem;
}
.form-block .block-contents {
  width: calc(100% - 260px);
  margin-left: auto;
  font-size: 1.6rem;
}
.form-block .block-contents .error {
  font-size: 1.2rem;
  margin-top: .5em;
  color: #d02626;
  font-weight: bold;
}
.form-block input[type="text"] {
  background: #f1f1f1;
  height: 56px;
  width: 100%;
  font-size: 1.6rem;
  padding: 0 1em;
  outline-style: none;
}
.form-block textarea {
  background: #f1f1f1;
  width: 100%;
  font-size: 1.6rem;
  padding: 1em;
  outline-style: none;
  resize: none;
}
.form-block ::-moz-placeholder {
  color: #aaa;
}
.form-block :-ms-input-placeholder {
  color: #aaa;
}
.form-block ::-ms-input-placeholder {
  color: #aaa;
}
.form-block ::placeholder {
  color: #aaa;
}
.form-block input[type=radio], .form-block input[type=checkbox] {
  display: none;
}
.form-block .radio, .form-block .checkbox {
  box-sizing: border-box;
  position: relative;
  display: block;
  padding-left: 35px;
  vertical-align: middle;
  cursor: pointer;
}
.form-block .radio-list li {
  margin-right: 60px;
}
.form-block .radio-list li:last-child {
  margin-right: 0;
}
.form-block .checkbox-list li {
  width: 32%;
  margin-right: 2%;
  margin-top: 20px;
}
.form-block .checkbox-list li:nth-child(1), .form-block .checkbox-list li:nth-child(2), .form-block .checkbox-list li:nth-child(3) {
  margin-top: 0;
}
.form-block .checkbox-list li:nth-child(3n) {
  margin-right: 0;
}
.form-block .radio:before, .form-block .checkbox:before {
  z-index: 1;
}
.form-block .radio:after, .form-block .checkbox:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -14px;
  width: 26px;
  height: 26px;
  background: #f1f1f1;
  content: "";
}
.form-block .radio:after {
  border-radius: 50%;
}
.form-block .radio:before {
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00af9e;
  content: "";
  opacity: 0;
}
.form-block input[type=radio]:checked + .radio:before {
  opacity: 1;
}
.form-block .checkbox:before {
  position: absolute;
  top: 50%;
  left: 9px;
  display: block;
  margin-top: -8px;
  width: 5px;
  height: 10px;
  border-right: 4px solid #00af9e;
  border-bottom: 4px solid #00af9e;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}
.form-block input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
.form-block .date-wrap {
  margin-bottom: 10px;
}
.form-block .date-wrap:last-child {
  margin-bottom: 0;
}
.form-block .date-box {
  width: 56%;
  max-width: 330px;
  display: table;
  box-sizing: border-box;
}
.form-block .date-box:last-child {
  width: 40%;
  margin-left: 4%;
  max-width: 230px;
}
.form-block .date-box:last-child .box-title {
  width: 3em;
}
.form-block .date-box .box-title {
  display: table-cell;
  vertical-align: top;
  font-weight: bold;
  width: 6em;
  padding-top: .8em;
}
.form-block .date-box .box-contents {
  display: table-cell;
  vertical-align: top;
  position: relative;
}
.form-block .date-input {
  background: #f1f1f1;
}
.form-block .date-input:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: #666 url(../images/ico-calendar.svg) no-repeat center;
  background-size: 25px;
}
.form-block .date-input input[type="text"] {
  position: relative;
  z-index: 1;
  background: none;
}
.form-block .selectbox {
  overflow: hidden;
  position: relative;
  background: #f1f1f1;
}
.form-block .selectbox:after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 3px solid #666;
  border-bottom: 3px solid #666;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -7px;
}
.form-block .selectbox select {
  outline-style: none;
  height: 56px;
  width: 120%;
  padding: 0 1em;
  z-index: 1;
  position: relative;
}

.form-btn {
  text-align: center;
}
.form-btn input, .form-btn a {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  height: 80px;
  text-align: center;
  width: 500px;
  font-weight: bold;
  border-radius: 8px;
  transition: .3s;
}
.form-btn input:hover, .form-btn a:hover {
  opacity: .7;
}
.form-btn a {
  height: auto;
  padding: 1em 0;
}
.form-btn .btn-entry, .form-btn a {
  background: #ffa200;
}
.form-btn .btn-back {
  background: #888;
  margin-bottom: 2em;
}

.agreement-text {
  height: 200px;
  text-align: left;
}
.agreement-text__inner {
  padding-right: 25px;
}
.agreement-text h3 {
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1em;
}
.agreement-text .lead {
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: bold;
}
.agreement-text .title {
  margin-bottom: 0;
  font-size: 1.6rem;
}
.agreement-text ul:last-child, .agreement-text p:last-child {
  margin-bottom: 0;
}
.agreement-text p {
  font-size: 1.4rem;
  margin-bottom: 1.5em;
}
.agreement-text ul {
  list-style: disc outside none;
  padding-left: 30px;
  margin-bottom: 30px;
}
.agreement-text li {
  font-size: 1.6rem;
}

.jspContainer {
  overflow: hidden;
  position: relative;
}

.jspPane {
  position: absolute;
}

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: red;
}

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: red;
}

.jspCap {
  display: none;
}

.jspHorizontalBar .jspCap {
  float: left;
}

.jspTrack {
  background: #e6e6e6;
  position: relative;
}

.jspDrag {
  background: #666;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
}

.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag {
  float: left;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .form-block .date-wrap {
    margin-bottom: 20px;
  }
  .form-block .date-box {
    width: 100%;
    max-width: 400px;
  }
  .form-block .date-box:last-child {
    width: 100%;
    margin-left: 0;
    padding-left: 6em;
    max-width: 100%;
    margin-top: 15px;
  }
  .form-block .selectbox {
    width: 180px;
  }
  .form-block .checkbox-list li {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .form-block .checkbox-list li:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 768px) {
  .form-lead {
    font-size: 1.3rem;
  }
  .form-block {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .form-block__agreement {
    margin: 30px 0;
  }
  .form-block__text .block-title {
    margin-top: 0;
  }
  .form-block__confirm {
    margin-bottom: 30px;
  }
  .form-block__confirm th, .form-block__confirm td {
    display: block;
    width: 100%;
  }
  .form-block__confirm th {
    padding-bottom: 0;
  }
  .form-block .block-title {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 1em;
  }
  .form-block .block-title .required {
    position: static;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 1.3rem;
    width: 35px;
    line-height: 18px;
  }
  .form-block .block-title .caution {
    font-size: 1.3rem;
    font-weight: normal;
  }
  .form-block .block-contents {
    width: 100%;
    font-size: 1.5rem;
  }
  .form-block input[type="text"] {
    height: 40px;
    font-size: 1.5rem;
  }
  .form-block textarea {
    font-size: 1.5rem;
  }
  .form-block .radio-list li {
    margin-right: 40px;
  }
  .form-block .date-box .box-title {
    padding-top: .5em;
  }
  .form-block .date-input:after {
    width: 40px;
    height: 40px;
    background-size: 21px;
  }
  .form-block .selectbox {
    width: 150px;
  }
  .form-block .selectbox:after {
    right: 14px;
  }
  .form-block .selectbox select {
    height: 40px;
  }
  .form-btn input, .form-btn a {
    font-size: 1.6rem;
    height: 60px;
    width: 100%;
    max-width: 480px;
  }
  .form-btn a {
    height: auto;
  }
  .form-btn .btn-back {
    margin-bottom: 1em;
  }
  .agreement-text {
    height: 280px;
  }
  .agreement-text__inner {
    padding-right: 15px;
  }
  .agreement-text h3 {
    font-size: 1.7rem;
  }
  .agreement-text .lead {
    font-size: 1.6rem;
  }
  .agreement-text .title {
    font-size: 1.4rem;
  }
  .agreement-text li {
    font-size: 1.4rem;
  }
}

/*------------------------------------------
  contents
------------------------------------------*/
.wrapper {
  padding-top: 100px;
  overflow: hidden;
}
.wrapper.is-active .page-section01 .mv-text:after {
  width: 0;
  transition: width cubic-bezier(.215, .61, .355, 1) .5s .5s;
}

.page-section {
  padding: 80px 0;
  position: relative;
}
.page-section .section-inner {
  max-width: 1000px;
}
.page-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.page-section .section-header .header-lead {
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: .5em;
}

.page-section01 {
  padding: 20px 0 0;
  color: #fff;
  font-weight: bold;
  background: #00af9e;
  z-index: 1;
}
.page-section01:before {
  content: "";
  width: 60%;
  height: 174px;
  position: absolute;
  left: 0;
  bottom: 20px;
  background: url(../images/bg-mv.png) repeat-x center;
  background-size: auto 100%;
}
.page-section01 .section-inner {
  z-index: 1;
  position: relative;
  max-width: 1400px;
  box-sizing: border-box;
  margin: auto;
  align-items: center;
}
.page-section01 .mv-contents {
  padding-left: 50px;
}
.page-section01 .mv-text {
  font-size: 4.6rem;
  line-height: 1.5;
  position: relative;
}
.page-section01 .mv-text:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #00af9e;
}
.page-section01 .mv-text01 {
  margin-bottom: .2em;
}
.page-section01 .mv-text02 span {
  display: inline-block;
  position: relative;
  font-size: 6rem;
}
.page-section01 .mv-text02 span:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -5px;
}
.page-section01 .mv-text03 {
  font-size: 4rem;
}
.page-section01 .mv-text03 strong {
  font-size: 6rem;
  display: inline-block;
  background: #fff;
  line-height: 1.2;
  padding: .1em .2em;
  border-radius: 14px;
}
.page-section01 .mv-btn {
  padding-left: 10px;
  margin-top: 30px;
}
.page-section01 .mv-btn li {
  display: table;
  background: #ffa200;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  text-align: center;
  margin-right: 30px;
}
.page-section01 .mv-btn li p {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1.4;
  padding-top: .8em;
}
.page-section01 .mv-btn li span {
  font-size: 200%;
}
.page-section01 .mv-image {
  width: 621px;
  margin-left: auto;
  margin-right: -20px;
  margin-bottom: -40px;
  position: relative;
}

.page-section02 {
  padding: 45px 0 70px;
  background: url(../images/patt01.png) repeat;
}
.page-section02:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 90px 0 90px;
  border-color: #00af9e transparent transparent transparent;
  position: absolute;
  left: 50%;
  margin-left: -90px;
  bottom: -50px;
  z-index: 1;
}
.page-section02 .btn-entry {
  text-align: center;
  margin-bottom: 45px;
}
.page-section02 .section-header {
  height: 150px;
  justify-content: center;
  align-items: center;
  background: url(../images/ico-question.svg) no-repeat center;
  background-size: 86px;
  margin-bottom: 15px;
}
.page-section02 .item-list {
  margin-bottom: 50px;
  justify-content: space-between;
}
.page-section02 .item-list li {
  box-sizing: border-box;
  background: #fff;
  width: 23.5%;
  position: relative;
  border: 2px solid #333;
  border-radius: 20px;
  line-height: 1.5;
  padding: 1.4em;
}
.page-section02 .item-list li:before, .page-section02 .item-list li:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
}
.page-section02 .item-list li:before {
  background: #fff;
  height: 2px;
  width: 30px;
  bottom: -2px;
}
.page-section02 .item-list li:after {
  width: 33px;
  height: 30px;
  background-size: 33px;
  top: 100%;
}
.page-section02 .item-list .item01:before, .page-section02 .item-list .item02:before {
  left: 50%;
}
.page-section02 .item-list .item01:after, .page-section02 .item-list .item02:after {
  left: 50%;
  margin-left: 6px;
  background-image: url(../images/balloonicon_l.svg);
}
.page-section02 .item-list .item03:before, .page-section02 .item-list .item04:before {
  right: 50%;
}
.page-section02 .item-list .item03:after, .page-section02 .item-list .item04:after {
  right: 50%;
  margin-right: 6px;
  background-image: url(../images/balloonicon_r.svg);
}

.page-section03 {
  padding: 140px 0 0;
  background: url(../images/bg-sec03.jpg) no-repeat center bottom;
  background-size: cover;
}
.page-section03 .section-header {
  background: #fff;
  max-width: 760px;
  margin: auto;
  padding: 70px 0 40px;
  position: relative;
  border-radius: 20px;
}
.page-section03 .section-header:after {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -103px;
  width: 206px;
  height: 98px;
  background: url(../images/img02.png);
  background-size: 100%;
}
.page-section03 .section-title {
  margin-top: 20px;
}
.page-section03 .section-title span {
  display: inline-block;
  vertical-align: middle;
  font-size: 3.8rem;
  font-weight: bold;
}
.page-section03 .section-title .ico {
  width: 86px;
  line-height: 86px;
  border-radius: 50%;
  font-size: 5.8rem;
  color: #fff;
  margin-right: 3px;
}
.page-section03 .section-title .ico01 {
  background: #00af9e;
}
.page-section03 .section-title .ico02 {
  background: #ffa200;
}
.page-section03 .section-contents {
  position: relative;
  text-align: center;
  margin-top: -46px;
  padding-bottom: 355px;
}
.page-section03 .contents-catch {
  position: absolute;
  width: 483px;
  line-height: 74px;
  text-align: center;
  background: url(../images/bg-sec03-catch.png);
  background-size: 100%;
  left: 50%;
  margin-left: -241px;
  bottom: 60px;
  font-weight: bold;
  font-size: 2.6rem;
}

.page-section04 {
  background: #ccefec;
}
.page-section04 .section-header {
  margin-bottom: 20px;
}
.page-section04 .item-list {
  justify-content: space-between;
}
.page-section04 .item-list li {
  box-sizing: border-box;
  background: #fff;
  width: 23.5%;
  position: relative;
  border: 2px solid #333;
  border-radius: 20px;
  line-height: 1.5;
  padding: 55px 1.3em 1.5em;
  font-weight: bold;
  margin-top: 50px;
}
.page-section04 .item-list li:before {
  content: "";
  height: 2px;
  width: 106px;
  background: #fff;
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: -53px;
}
.page-section04 .item-list .item-icon {
  position: absolute;
  top: -26px;
  width: 100%;
  text-align: center;
  left: 0;
}

.page-section05 {
  background: url(../images/patt02.png) repeat;
}
.page-section05 .section-header {
  margin-bottom: 45px;
}
.page-section05 .section-title {
  color: #fff;
}
.page-section05 .section-contents {
  background: #fff;
  border-radius: 20px;
  padding: 55px 5%;
}
.page-section05 .contents-head {
  width: 100%;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.5em;
  text-align: center;
}
.page-section05 .contents-left {
  width: 42%;
}
.page-section05 .contents-left p {
  margin-bottom: 1.5em;
}
.page-section05 .contents-left p:last-child {
  margin-bottom: 0;
}
.page-section05 .contents-right {
  width: 52%;
  margin-left: auto;
}
.page-section05 .contents-foot {
  width: 100%;
  max-width: 820px;
  margin: 60px auto 0;
  position: relative;
  border: 2px solid #333;
  border-radius: 20px;
  background: url(../images/patt03.png) repeat;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 1em 1em 1em 226px;
  box-sizing: border-box;
}
.page-section05 .contents-foot:before {
  content: "";
  width: 104px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 90px;
  top: -2px;
}
.page-section05 .contents-foot:after {
  content: "";
  position: absolute;
  width: 132px;
  height: 155px;
  background: url(../images/img04.png);
  background-size: 100%;
  bottom: 0;
  left: 64px;
}

.page-section06 .section-header {
  margin-bottom: 65px;
}

.page-section06 .contents-head {
  width: 100%;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.5em;
  text-align: center;
}

.page-section06 .contents-left {
  width: 47.5%;
}

.page-section06 .contents-right {
  width: 48%;
  margin-left: auto;
}
.page-section06 .contents-right p {
  margin-bottom: 1.5em;
}
.page-section06 .contents-right p:last-child {
  margin-bottom: 0;
}

.page-section07 {
  background: #ccefec;
}
.page-section07 .section-header {
  margin-bottom: 40px;
}
.page-section07 .contents01 {
  margin-bottom: 20px;
}
.page-section07 .contents01 .contents-head {
  margin-bottom: 45px;
  font-weight: bold;
  text-align: center;
}
.page-section07 .contents01 .item-list {
  text-align: center;
  justify-content: center;
}
.page-section07 .contents01 .item-list li {
  width: 32%;
  padding: 0 3%;
  margin-bottom: 40px;
  box-sizing: border-box;
}
.page-section07 .contents01 .item-list .item-image {
  margin-bottom: 25px;
}
.page-section07 .contents01 .item-list .item-text {
  background: #fff;
  line-height: 1.6;
  border: 2px solid #333;
  position: relative;
  border-radius: 20px;
  padding: .8em 1em;
  align-items: center;
}
.page-section07 .contents01 .item-list .item-text:before {
  content: "";
  width: 18px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: -2px;
  left: 24%;
}
.page-section07 .contents01 .item-list .item-text:after {
  content: "";
  width: 2px;
  height: 28px;
  position: absolute;
  bottom: 100%;
  left: 24%;
  margin-left: -1px;
  margin-bottom: 2px;
  background: #333;
  transform: rotate(45deg);
  transform-origin: left bottom;
}
.page-section07 .contents01 .item-list .item-text > div {
  width: 100%;
}
.page-section07 .contents01 .item-list .item-text .pos {
  font-size: 88%;
}
.page-section07 .contents01 .item-list .item-text .name {
  font-weight: bold;
}
.page-section07 .contents01 .item-list .item-text .txt {
  font-size: 77%;
  margin-top: .5em;
}
.page-section07 .contents02 {
  background: #fff;
  border-radius: 20px;
  padding: 55px 5%;
}
.page-section07 .contents02 .contents-head {
  width: 100%;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.5em;
  text-align: center;
}
.page-section07 .contents02 .contents-left {
  width: 42%;
}
.page-section07 .contents02 .contents-left p {
  margin-bottom: 1.5em;
}
.page-section07 .contents02 .contents-left p:last-child {
  margin-bottom: 0;
}
.page-section07 .contents02 .contents-right {
  width: 52%;
  margin-left: auto;
}

.page-section08 .item-list {
  font-weight: bold;
  justify-content: space-between;
}
.page-section08 .item-list li {
  width: 48%;
}
.page-section08 .item-list .item-text {
  margin-top: 1em;
}

.page-section09 {
  background: #ccefec;
}
.page-section09 .section-contents {
  position: relative;
}
.page-section09 .section-contents:before, .page-section09 .section-contents:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 186px;
  height: 276px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.page-section09 .section-contents:before {
  left: 0;
  background-image: url(../images/img07.png);
}
.page-section09 .section-contents:after {
  right: 0;
  background-image: url(../images/img08.png);
}
.page-section09 .item-list {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: auto;
  justify-content: space-between;
}
.page-section09 .item-list li {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  border: 2px solid #333;
  border-radius: 20px;
  padding: 1.5em;
  width: 32%;
}
.page-section09 .item-list li:before, .page-section09 .item-list li:after {
  content: "";
  position: absolute;
}
.page-section09 .item-list li:before {
  width: 35px;
  height: 2px;
  background: #fff;
  top: -2px;
  left: 45px;
}
.page-section09 .item-list li:after {
  width: 28px;
  height: 20px;
  background: url(../images/ico-check.svg) no-repeat;
  background-size: 28px;
  top: -10px;
  left: 50px;
}

.page-section10 .item {
  margin-bottom: 45px;
}
.page-section10 .item:last-child {
  margin-bottom: 0;
}
.page-section10 .item:nth-child(odd) .item-text .title {
  padding: 1em .5em 1em 0;
}
.page-section10 .item:nth-child(odd) .item-text .title:before {
  right: 100%;
}
.page-section10 .item:nth-child(odd) .item-text .title:after {
  border-width: 0 30px 15px 0;
  border-color: transparent #008b7d transparent transparent;
  right: 100%;
}
.page-section10 .item:nth-child(odd) .item-text .text {
  padding-left: 8%;
}
.page-section10 .item:nth-child(even) .item-image {
  -ms-order: 2;
      order: 2;
}
.page-section10 .item:nth-child(even) .item-text {
  -ms-order: 1;
      order: 1;
}
.page-section10 .item:nth-child(even) .item-text .title {
  padding: 1em 0 1em 1em;
}
.page-section10 .item:nth-child(even) .item-text .title:before {
  left: 100%;
}
.page-section10 .item:nth-child(even) .item-text .title:after {
  border-width: 15px 30px 0 0;
  border-color: #008b7d transparent transparent transparent;
  left: 100%;
}
.page-section10 .item:nth-child(even) .item-text .text {
  padding-right: 8%;
}
.page-section10 .item-image {
  width: 47.5%;
}
.page-section10 .item-text {
  width: 52.5%;
  padding-top: 30px;
}
.page-section10 .item-text .title {
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
  background: #00af9e;
  position: relative;
  text-align: left;
  margin-bottom: 35px;
}
.page-section10 .item-text .title:before, .page-section10 .item-text .title:after {
  content: "";
  position: absolute;
}
.page-section10 .item-text .title:before {
  width: 30px;
  height: 100%;
  top: 0;
  background: #00af9e;
}
.page-section10 .item-text .title:after {
  width: 0;
  height: 0;
  border-style: solid;
  top: 100%;
}
.page-section10 .item-text .text p {
  margin-bottom: 1.5em;
}
.page-section10 .item-text .text p:last-child {
  margin-bottom: 0;
}
.page-section10 .item-text .text .name {
  font-size: 2rem;
  font-weight: bold;
}

.page-section11 {
  background: url(../images/patt02.png) repeat;
}
.page-section11 .section-header {
  margin-bottom: 30px;
}
.page-section11 .section-contents {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  margin: auto;
  box-sizing: border-box;
}
.page-section11 .btn-list {
  margin-bottom: 20px;
  text-align: center;
  justify-content: space-between;
}
.page-section11 .btn-list li {
  width: 47.5%;
}
.page-section11 .btn-list a {
  height: 80px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
}
.page-section11 .btn-list .btn-text {
  padding-left: .8em;
}
.page-section11 .btn-list .btn-mail a {
  background: #ffa200;
}
.page-section11 .btn-list .btn-line a {
  background: #06c755;
}
.page-section11 .info {
  justify-content: center;
  align-items: center;
}
.page-section11 .info-text {
  margin-left: 25px;
}
.page-section11 .info .title {
  font-size: 1.6rem;
  margin-bottom: .5em;
}
.page-section11 .info .tel {
  line-height: 1.1;
  align-items: center;
}
.page-section11 .info .tel-num {
  font-size: 3.2rem;
  font-weight: bold;
  padding-left: 36px;
  position: relative;
}
.page-section11 .info .tel-num:before {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -13px;
  background: url(../images/ico-tel.svg);
  background-size: 100%;
}
.page-section11 .info .tel-text {
  font-size: 1.4rem;
  padding-left: 1em;
}

.page-section12 {
  background: #f4f4f4;
}
.page-section12 .contents-head {
  width: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
.page-section12 .item-list {
  text-align: center;
  justify-content: space-between;
}
.page-section12 .item-list li {
  position: relative;
  box-sizing: border-box;
  width: 26.666%;
  padding-right: 6.666%;
}
.page-section12 .item-list li:last-child {
  width: 20%;
  padding-right: 0;
}
.page-section12 .item-list li:last-child:after {
  content: none;
}
.page-section12 .item-list li:after {
  content: "";
  width: 6.666%;
  height: 76%;
  position: absolute;
  right: 8%;
  top: 0;
  background: url(../images/ico-arrow01.png) no-repeat center;
  background-size: 100%;
}
.page-section12 .item-list .item-text {
  font-weight: bold;
  margin-top: 1em;
  line-height: 1.5;
}
.page-section12 .item-list .item-text .caution {
  font-weight: normal;
  font-size: 1.2rem;
}

.page-section13 {
  background: #ccefec;
}
.page-section13 .faq {
  margin-bottom: 15px;
  background: #fff;
  border-radius: 20px;
}
.page-section13 .faq:last-child {
  margin-bottom: 0;
}
.page-section13 .faq-question {
  font-weight: bold;
  font-size: 2rem;
  padding: 28px 95px 28px 30px;
  position: relative;
}
.page-section13 .faq-question:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  box-sizing: border-box;
  border-right: 3px solid #00af9e;
  border-bottom: 3px solid #00af9e;
  transform: rotate(45deg);
  right: 35px;
  top: 38px;
}
.page-section13 .faq-question.is-active:after {
  transform: rotate(-135deg);
  top: 40px;
}
.page-section13 .faq-question p {
  position: relative;
  padding-left: 75px;
}
.page-section13 .faq-question p:before {
  content: "Q";
  color: #fff;
  font-size: 2.4rem;
  position: absolute;
  left: 0;
  top: -.5em;
  text-align: center;
  width: 56px;
  line-height: 56px;
  background: #00af9e;
  border-radius: 50%;
}
.page-section13 .faq-answer {
  padding: 0 80px 28px 105px;
  font-size: 88%;
}
.page-section13 .faq-answer > div {
  padding-left: 40px;
  position: relative;
}
.page-section13 .faq-answer > div:before {
  content: "A.";
  font-weight: bold;
  font-size: 2.4rem;
  color: #ffa200;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
}
.page-section13 .faq-answer p {
  margin-bottom: 1.5em;
}
.page-section13 .faq-answer p:last-child {
  margin-bottom: 0;
}

.page-section14 .contents-image {
  margin-bottom: 40px;
}

.page-section14 .about {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 10px;
}
.page-section14 .about:last-child {
  margin-bottom: 0;
}
.page-section14 .about-title {
  width: 26%;
  text-align: center;
  font-weight: bold;
}
.page-section14 .about-text {
  width: 72%;
  margin-left: auto;
  font-size: 88%;
  align-items: center;
}
.page-section14 .about-text p {
  margin-bottom: 1em;
}
.page-section14 .about-text p:last-child {
  margin-bottom: 0;
}
.page-section14 .about-text .link {
  position: relative;
}
.page-section14 .about-text .link a {
  font-weight: bold;
}
.page-section14 .about-text .map {
  padding-left: 24px;
}
.page-section14 .about-text .map:before {
  content: "";
  width: 14px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  background: url(../images/ico-map.svg);
  background-size: 100%;
}
.page-section14 .about-text .map a {
  text-decoration: underline;
}
.page-section14 .about-text .tel {
  padding-left: 28px;
  font-size: 2.2rem;
}
.page-section14 .about-text .tel:before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  background: url(../images/ico-tel.svg);
  background-size: 100%;
}
.page-section14 .about-text .line-btn {
  margin-left: 45px;
}
.page-section14 .about-text .line-btn a {
  color: #fff;
  border-radius: 14px;
  font-weight: bold;
  height: 56px;
  width: 275px;
  background: #06c755;
  justify-content: center;
  align-items: center;
}
.page-section14 .about-text .line-btn p {
  margin-bottom: 0;
}
.page-section14 .about-text .line-btn .btn-text {
  margin-left: 14px;
}

.page-section15 {
  padding-top: 130px;
  background: url(../images/patt02.png) repeat;
}
.page-section15:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: url(../images/ico-form-title.png);
  background-size: 100%;
  left: 50%;
  top: -30px;
  margin-left: -60px;
}

@media only screen and (max-width: 1400px) {
  .page-section01:before {
    width: 60vw;
    height: 13.8vw;
    bottom: 1.58vw;
  }
  .page-section01 .section-inner {
    max-width: 100%;
    padding-left: 3.57vw;
  }
  .page-section01 .mv-contents {
    width: 54%;
    position: relative;
    padding-left: 0;
  }
  .page-section01 .mv-text {
    font-size: 3.28vw;
  }
  .page-section01 .mv-text01 {
    margin-bottom: .2em;
  }
  .page-section01 .mv-text02 span {
    font-size: 4.28vw;
  }
  .page-section01 .mv-text02 span:before {
    width: .7vw;
    height: .7vw;
    margin-left: -.35vw;
  }
  .page-section01 .mv-text03 {
    font-size: 2.85vw;
  }
  .page-section01 .mv-text03 strong {
    font-size: 4.28vw;
    line-height: 1.2;
    padding: .1em .8vw;
  }
  .page-section01 .mv-btn {
    padding-left: 10px;
    margin-top: 2.15vw;
  }
  .page-section01 .mv-btn li {
    width: 14.3vw;
    height: 14.3vw;
    margin-right: 2.15vw;
  }
  .page-section01 .mv-btn li p {
    font-size: 1.43vw;
    padding-top: .8em;
  }
  .page-section01 .mv-image {
    width: 46%;
  }
}

@media only screen and (max-width: 768px) {
  .wrapper {
    padding-top: 65px;
  }
  .page-section {
    padding: 40px 0;
  }
  .page-section .section-header {
    margin-bottom: 30px;
  }
  .page-section .section-header .header-lead {
    font-size: 1.6rem;
  }
  .page-section01 {
    padding: 0;
    text-align: center;
  }
  .page-section01:before {
    content: none;
  }
  .page-section01 .section-inner {
    padding-left: 0;
    top: 4vw;
    position: relative;
  }
  .page-section01 .mv-contents {
    width: 100%;
    z-index: 2;
  }
  .page-section01 .mv-text {
    font-size: 5.33vw;
    line-height: 1.5;
  }
  .page-section01 .mv-text02 {
    margin-bottom: .2em;
  }
  .page-section01 .mv-text02 span {
    font-size: 7.46vw;
  }
  .page-section01 .mv-text02 span:before {
    width: 1.06vw;
    height: 1.06vw;
    margin-left: -.53vw;
  }
  .page-section01 .mv-text03 {
    font-size: 5.33vw;
  }
  .page-section01 .mv-text03 strong {
    font-size: 7.46vw;
    padding: .1em .3em;
    border-radius: 10px;
  }
  .page-section01 .mv-btn {
    padding: 0;
    margin-top: 2.66vw;
    justify-content: center;
  }
  .page-section01 .mv-btn li {
    width: 22.66vw;
    height: 22.66vw;
    margin: 0 1.33vw;
  }
  .page-section01 .mv-btn li p {
    max-width: 80%;
    line-height: 1.3;
    font-size: 3.06vw;
  }
  .page-section01 .mv-btn li span {
    font-size: 5.06vw;
  }
  .page-section01 .mv-image {
    width: 100%;
    top: 0;
    margin: -17.86vw 0 0;
    text-align: center;
    background: url(../images/bg-mv-sp.png) no-repeat center top;
    background-size: 100%;
  }
  .page-section01 .mv-image img {
    width: 77.33vw;
    margin: auto;
  }
  .page-section02 {
    padding: 25px 0 40px;
  }
  .page-section02:after {
    border-width: 40px 45px 0 45px;
    margin-left: -45px;
    bottom: -20px;
  }
  .page-section02 .btn-entry {
    padding-top: 20px;
  }
  .page-section02 .section-header {
    height: 88px;
    background-size: 50px;
    margin-bottom: 10px;
  }
  .page-section02 .item-list {
    margin-bottom: 0;
    background: url(../images/img01.png) no-repeat center;
    background-size: 160px;
  }
  .page-section02 .item-list li {
    width: 47%;
    padding: .8em;
    border-width: 1px;
    border-radius: 14px;
    margin-top: 137px;
  }
  .page-section02 .item-list li:before {
    height: 1px;
    width: 16px;
    bottom: -1px;
  }
  .page-section02 .item-list li:after {
    width: 17px;
    height: 16px;
    background-size: 17px;
  }
  .page-section02 .item-list .item01, .page-section02 .item-list .item02 {
    margin-top: 0;
  }
  .page-section02 .item-list .item03:before, .page-section02 .item-list .item04:before {
    top: -1px;
  }
  .page-section02 .item-list .item03:after, .page-section02 .item-list .item04:after {
    top: auto;
    bottom: 100%;
    transform: rotate(180deg);
    right: 50%;
    margin-right: 6px;
  }
  .page-section02 .item-list .item01:after {
    margin-left: 3px;
  }
  .page-section02 .item-list .item02:before {
    left: auto;
    right: 50%;
  }
  .page-section02 .item-list .item02:after {
    left: auto;
    right: 50%;
    margin-right: 3px;
    background-image: url(../images/balloonicon_r.svg);
  }
  .page-section02 .item-list .item03:before {
    left: 50%;
  }
  .page-section02 .item-list .item03:after {
    left: 50%;
    margin-left: 3px;
  }
  .page-section02 .item-list .item04:after {
    margin-right: 3px;
    background-image: url(../images/balloonicon_l.svg);
  }
  .page-section03 {
    padding: 60px 0 0;
  }
  .page-section03 .section-inner {
    padding: 0;
  }
  .page-section03 .section-header {
    max-width: 80%;
    padding: 40px 0 25px;
    border-radius: 14px;
  }
  .page-section03 .section-header:after {
    top: -25px;
    margin-left: -52px;
    width: 104px;
    height: 49px;
  }
  .page-section03 .section-title {
    margin-top: 10px;
  }
  .page-section03 .section-title span {
    font-size: 2rem;
  }
  .page-section03 .section-title span:last-child {
    display: block;
  }
  .page-section03 .section-title .ico {
    width: 43px;
    line-height: 43px;
    font-size: 2.9rem;
    margin: 0 1.5px;
  }
  .page-section03 .section-contents {
    margin-top: -20px;
    padding-bottom: 180px;
  }
  .page-section03 .contents-catch {
    width: 252px;
    line-height: 39px;
    margin-left: -126px;
    bottom: 30px;
    font-size: 1.5rem;
  }
  .page-section04 .section-inner {
    padding: 0;
  }
  .page-section04 .section-header {
    margin-bottom: 15px;
  }
  .page-section04 .section-title:before, .page-section04 .section-title:after {
    top: .2em;
  }
  .page-section04 .section-contents {
    padding: 0 15px;
  }
  .page-section04 .item-list li {
    width: 47%;
    border-width: 1px;
    border-radius: 14px;
    padding: 35px .8em 1.5em;
    font-weight: bold;
    margin-top: 20px;
  }
  .page-section04 .item-list li:before {
    height: 1px;
    width: 54px;
    top: -1px;
    margin-left: -27px;
  }
  .page-section04 .item-list .item-icon {
    top: -13px;
  }
  .page-section04 .item-list .item-icon img {
    height: 37px;
  }
  .page-section05 .section-header {
    margin-bottom: 20px;
  }
  .page-section05 .section-title:before, .page-section05 .section-title:after {
    top: auto;
    bottom: -.2em;
  }
  .page-section05 .section-title:before {
    left: 50%;
    margin-left: -6.5em;
  }
  .page-section05 .section-title:after {
    right: 50%;
    margin-right: -6.5em;
  }
  .page-section05 .section-contents {
    border-radius: 14px;
    padding: 30px 20px;
  }
  .page-section05 .contents-head {
    font-size: 1.6rem;
    margin-bottom: 1em;
    -ms-order: 1;
        order: 1;
  }
  .page-section05 .contents-left {
    width: 100%;
    -ms-order: 3;
        order: 3;
  }
  .page-section05 .contents-right {
    width: 100%;
    margin-bottom: 20px;
    -ms-order: 2;
        order: 2;
  }
  .page-section05 .contents-foot {
    -ms-order: 4;
        order: 4;
    text-align: left;
    margin-top: 30px;
    border-width: 1px;
    border-radius: 14px;
    font-size: 1.5rem;
    padding: .8em .8em .8em 100px;
  }
  .page-section05 .contents-foot:before {
    width: 44px;
    height: 1px;
    left: 30px;
    top: -1px;
  }
  .page-section05 .contents-foot:after {
    width: 66px;
    height: 77.5px;
    left: 20px;
  }
  .page-section06 .section-header {
    margin-bottom: 25px;
  }
  .page-section06 .contents-head {
    font-size: 1.6rem;
    margin-bottom: 1em;
  }
  .page-section06 .contents-left {
    width: 100%;
    margin-bottom: 25px;
  }
  .page-section06 .contents-right {
    width: 100%;
  }
  .page-section07 .section-header {
    margin-bottom: 35px;
  }
  .page-section07 .contents01 {
    margin-bottom: 10px;
  }
  .page-section07 .contents01 .contents-head {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  .page-section07 .contents01 .item-list {
    justify-content: space-between;
  }
  .page-section07 .contents01 .item-list li {
    width: 47%;
    padding: 0;
    margin-bottom: 20px;
  }
  .page-section07 .contents01 .item-list .item-image {
    padding: 0 10px;
    margin-bottom: 10px;
  }
  .page-section07 .contents01 .item-list .item-text {
    height: auto !important;
    border-width: 1px;
    border-radius: 10px;
    padding: .8em .5em .5em;
  }
  .page-section07 .contents01 .item-list .item-text:before {
    width: 8px;
    height: 1px;
    top: -1px;
    left: 24%;
  }
  .page-section07 .contents01 .item-list .item-text:after {
    width: 1px;
    height: 14px;
    left: 24%;
    margin-bottom: 1px;
  }
  .page-section07 .contents01 .item-list .item-text > div {
    width: 100%;
  }
  .page-section07 .contents01 .item-list .item-text .pos {
    line-height: 1.3;
    margin-bottom: 5px;
  }
  .page-section07 .contents02 {
    border-radius: 14px;
    padding: 30px 20px;
  }
  .page-section07 .contents02 .contents-head {
    font-size: 1.6rem;
  }
  .page-section07 .contents02 .contents-left {
    width: 100%;
    -ms-order: 2;
        order: 2;
  }
  .page-section07 .contents02 .contents-right {
    width: 100%;
    margin-bottom: 25px;
    -ms-order: 1;
        order: 1;
  }
  .page-section08 .item-list li {
    width: 47%;
  }
  .page-section08 .item-list .item-text {
    line-height: 1.6;
  }
  .page-section09 .section-contents:before, .page-section09 .section-contents:after {
    width: 102px;
    height: 152px;
    top: 0;
  }
  .page-section09 .item-list li {
    border-width: 1px;
    border-radius: 14px;
    padding: 1em .8em .8em;
    width: 47%;
    line-height: 1.6;
    margin-top: 15px;
  }
  .page-section09 .item-list li:first-child {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    margin-top: 0;
  }
  .page-section09 .item-list li:first-child:before, .page-section09 .item-list li:first-child:after {
    content: none;
  }
  .page-section09 .item-list li:first-child > div {
    width: 47%;
    margin: auto;
    background: #fff;
    border-radius: 14px;
    padding: 1em .8em .8em;
    border: 1px solid #333;
    position: relative;
    box-sizing: border-box;
  }
  .page-section09 .item-list li:first-child > div:before, .page-section09 .item-list li:first-child > div:after {
    content: "";
    position: absolute;
  }
  .page-section09 .item-list li:first-child > div:before {
    width: 20px;
    height: 1px;
    background: #fff;
    top: -1px;
    left: 22px;
  }
  .page-section09 .item-list li:first-child > div:after {
    width: 20px;
    height: 14px;
    background: url(../images/ico-check.svg) no-repeat;
    background-size: 20px;
    top: -7px;
    left: 24px;
  }
  .page-section09 .item-list li:before {
    width: 20px;
    height: 1px;
    top: -1px;
    left: 22px;
  }
  .page-section09 .item-list li:after {
    width: 20px;
    height: 14px;
    background-size: 20px;
    top: -7px;
    left: 24px;
  }
  .page-section10 .item {
    margin-bottom: 35px;
  }
  .page-section10 .item:nth-child(odd) .item-text .title {
    padding: .8em 1em;
  }
  .page-section10 .item:nth-child(odd) .item-text .title:after {
    left: 0;
  }
  .page-section10 .item:nth-child(odd) .item-text .text {
    padding-left: 0;
  }
  .page-section10 .item:nth-child(even) .item-image {
    -ms-order: 2;
        order: 2;
  }
  .page-section10 .item:nth-child(even) .item-text {
    -ms-order: 1;
        order: 1;
  }
  .page-section10 .item:nth-child(even) .item-text .title {
    padding: .8em 1em;
  }
  .page-section10 .item:nth-child(even) .item-text .title:after {
    left: auto;
    right: 0;
  }
  .page-section10 .item:nth-child(even) .item-text .text {
    padding-right: 0;
  }
  .page-section10 .item-text {
    width: 100%;
    padding-top: 0;
  }
  .page-section10 .item-text .title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
  .page-section10 .item-text .title:before {
    content: none;
  }
  .page-section10 .item-text .text .name {
    font-size: 1.7rem;
    margin-bottom: 1em;
  }
  .page-section10 .item-text .image {
    margin-bottom: 15px;
  }
  .page-section11 .section-contents {
    border-radius: 14px;
    padding: 20px;
  }
  .page-section11 .btn-list {
    margin-bottom: 15px;
  }
  .page-section11 .btn-list a {
    height: auto;
    padding: 15px 0 10px;
    font-size: 1.6rem;
    border-radius: 10px;
  }
  .page-section11 .btn-list .btn-text {
    padding-left: 0;
    width: 100%;
  }
  .page-section11 .btn-list .btn-icon {
    margin-bottom: 5px;
  }
  .page-section11 .btn-list .btn-icon img {
    width: 40px;
  }
  .page-section11 .info {
    display: block;
    text-align: center;
  }
  .page-section11 .info-text {
    margin-left: 0;
  }
  .page-section11 .info .title {
    font-size: 1.5rem;
  }
  .page-section11 .info .tel {
    max-width: 200px;
    margin: auto;
    position: relative;
    text-align: left;
    padding: 5px 0 0 115px;
  }
  .page-section11 .info .tel:before {
    content: "";
    width: 55px;
    height: 45px;
    position: absolute;
    background: url(../images/img09.png) no-repeat;
    background-size: 55px;
    left: 45px;
    top: 50%;
    margin-top: -22px;
  }
  .page-section11 .info .tel-num {
    font-size: 2rem;
    padding-left: 22px;
  }
  .page-section11 .info .tel-num:before {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
  .page-section11 .info .tel-text {
    font-size: 1.2rem;
    padding-left: 22px;
    padding-top: 3px;
    width: 100%;
  }
  .page-section12 .contents-head {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .page-section12 .item-list {
    max-width: 480px;
    margin: auto;
  }
  .page-section12 .item-list li {
    width: 100%;
    padding-right: 0;
    display: flex;
    margin-bottom: 25px;
    align-items: center;
  }
  .page-section12 .item-list li:last-child {
    width: 100%;
    margin-bottom: 0;
  }
  .page-section12 .item-list li:after {
    width: 27px;
    height: 18px;
    left: 50%;
    margin-left: -13.5px;
    top: 100%;
    margin-top: 5px;
    background: url(../images/ico-arrow01-sp.png) no-repeat center;
    background-size: 100%;
  }
  .page-section12 .item-list .item-image {
    width: 145px;
  }
  .page-section12 .item-list .item-text {
    text-align: left;
    font-size: 1.6rem;
    width: calc(100% - 145px);
    margin-left: auto;
  }
  .page-section12 .item-list .item-text .caution {
    font-size: 1.3rem;
  }
  .page-section13 .faq {
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .page-section13 .faq-question {
    font-size: 1.6rem;
    padding: 20px 50px 20px 15px;
  }
  .page-section13 .faq-question:after {
    right: 20px;
    top: 25px;
  }
  .page-section13 .faq-question.is-active:after {
    top: 27px;
  }
  .page-section13 .faq-question p {
    padding-left: 50px;
  }
  .page-section13 .faq-question p:before {
    font-size: 1.7rem;
    top: -.2em;
    width: 35px;
    line-height: 35px;
  }
  .page-section13 .faq-answer {
    padding: 0 50px 20px 28px;
    font-size: 1.5rem;
  }
  .page-section13 .faq-answer > div {
    padding-left: 37px;
  }
  .page-section13 .faq-answer > div:before {
    font-size: 1.7rem;
    top: .2em;
  }
  .page-section13 .faq-answer p {
    margin-bottom: 1.5em;
  }
  .page-section13 .faq-answer p:last-child {
    margin-bottom: 0;
  }
  .page-section14 .contents-image {
    margin-bottom: 20px;
  }
  .page-section14 .about {
    border-radius: 10px;
    padding: 20px 15px;
  }
  .page-section14 .about-title {
    width: 100%;
    text-align: left;
    margin-bottom: .5em;
    font-size: 1.6rem;
  }
  .page-section14 .about-text {
    width: 100%;
    font-size: 1.5rem;
    justify-content: center;
  }
  .page-section14 .about-text .line-btn {
    margin: 0;
  }
  .page-section14 .about-text .line-btn a {
    max-width: 100%;
    border-radius: 10px;
    height: 50px;
  }
  .page-section14 .about-text .line-btn p {
    margin-bottom: 0;
  }
  .page-section14 .about-text .line-btn .btn-text {
    margin-left: 10px;
  }
  .page-section14 .about-text .line-btn .btn-icon img {
    width: 35px;
  }
  .page-section15 {
    padding-top: 65px;
  }
  .page-section15:before {
    width: 60px;
    height: 60px;
    top: -15px;
    margin-left: -30px;
  }
}