/* CSS Document */
/* common */
@import url(destyle.css);
/*@import url(inherit.css);*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&display=swap");
.spbr {
  display: none;
}
@media screen and (max-width: 768px) {
  .spbr {
    display: inline;
  }
}
.pcbr {
  display: inline;
}
@media screen and (max-width: 768px) {
  .pcbr {
    display: none;
  }
}

.cp-PageTop.smoothScroll {
    display: none!important;
}
dl dd{
	margin-left: 0;
}


body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4D4D4D;
  text-align: justify;
  font-feature-settings: "palt";
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  body {
    letter-spacing: 0;
  }
}

p, .section06 li dd, .section05 dd {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  font-feature-settings: normal;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  p, .section06 li dd, .section05 dd {
    text-align: initial;
    font-feature-settings: initial;
  }
}

.linkbtn, .section05_linkbtn, .section07_linkbtn {
  display: flex;
  flex-flow: row;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .linkbtn, .section05_linkbtn, .section07_linkbtn {
    gap: 5px;
  }
}
.linkbtn li, .section05_linkbtn li, .section07_linkbtn li {
  margin: 0;
  padding: 0;
  border-radius: 6px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}
.linkbtn li:hover, .section05_linkbtn li:hover, .section07_linkbtn li:hover {
  transform: scale(1.05);
}
.linkbtn li a, .section05_linkbtn li a, .section07_linkbtn li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .linkbtn li a, .section05_linkbtn li a, .section07_linkbtn li a {
    font-weight: 500;
    font-size: 14px;
  }
}
.linkbtn li a:hover, .section05_linkbtn li a:hover, .section07_linkbtn li a:hover {
  text-decoration: none;
}
.linkbtn li:nth-child(1), .section05_linkbtn li:nth-child(1), .section07_linkbtn li:nth-child(1) {
  background-color: #E10021;
}
.linkbtn li:nth-child(1) ::before, .section05_linkbtn li:nth-child(1) ::before, .section07_linkbtn li:nth-child(1) ::before {
  content: url(../img/icon_shiryou.svg);
  margin: 4px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .linkbtn li:nth-child(1) ::before, .section05_linkbtn li:nth-child(1) ::before, .section07_linkbtn li:nth-child(1) ::before {
    margin-right: 5px;
  }
}
.linkbtn li:nth-child(2), .section05_linkbtn li:nth-child(2), .section07_linkbtn li:nth-child(2) {
  background-color: #F56500;
}
.linkbtn li:nth-child(2) ::before, .section05_linkbtn li:nth-child(2) ::before, .section07_linkbtn li:nth-child(2) ::before {
  content: url(../img/icon_toiawase.svg);
  margin: 4px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .linkbtn li:nth-child(2) ::before, .section05_linkbtn li:nth-child(2) ::before, .section07_linkbtn li:nth-child(2) ::before {
    margin-right: 5px;
  }
}

header {
  max-width: 1000px;
  height: 62px;
  margin-inline: auto;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  header {
    padding: 0 3vw;
  }
}

@media screen and (max-width: 768px) {
  .headleft img {
    width: 88px;
    height: 30px;
  }
}

.headright li, .footbtn .linkbtn li, .footbtn .section05_linkbtn li, .footbtn .section07_linkbtn li {
  width: 200px;
  height: 46px;
}
@media screen and (max-width: 768px) {
  .headright li, .footbtn .linkbtn li, .footbtn .section05_linkbtn li, .footbtn .section07_linkbtn li {
    width: auto;
    padding: 10px;
  }
}

body {
  background: top center repeat-y url(../img/back_main.jpg);
  background-size: cover;
  background-attachment: fixed;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body {
    background-attachment: initial;
  }
}

.mainvisual {
  height: 891px;
  background:  url(../img/mainvisual_back.png?2) top center no-repeat;
  background-size: 1980px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    background-image: url(../img/mainvisual_back_sp.png?2);
    background-size: 100%;
    height: 112vw;
  }
}
.mainvisual h1{
  opacity: 0;
  cursor: default;
    position: absolute;
}

.section01 {
  text-align: center;
  padding-top: 0;
  margin-top: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section01 {
    clip: rect(0, auto, auto, 0);
  }
  .section01::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: top center repeat-y url(../img/back_main.jpg);
    background-size: cover;
    z-index: -1;
  }
}
.section01 h2 {
  line-height: 1.1;
  color: #66871E;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .section01 h2 {
    font-size: 40px;
  }
}
.section01 span {
  font-size: 23px;
  color: #4D4D4D;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section01 span {
    font-size: 20px;
  }
}
.section01_list {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  flex-flow: row;
  flex-wrap: wrap;
  gap: 60px 50px;
  margin-top: 60px;
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .section01_list {
    width: 92vw;
    max-width: none;
    gap: 25px;
  }
}
.section01_list li {
  width: 470px;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .section01_list li {
    width: 85vw;
    max-width: 500px;
    padding: 4vw;
  }
}
.section01_list img {
  height: 200px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .section01_list img {
    height: 150px;
  }
}
.section01_list h3 {
  font-size: 28px;
  font-weight: 500;
  color: #745237;
}
@media screen and (max-width: 768px) {
  .section01_list h3 {
    font-size: 25px;
    line-height: 1.2;
  }
}
.section01_list p, .section01_list .section06 li dd, .section06 li .section01_list dd, .section01_list .section05 dd, .section05 .section01_list dd {
  text-align: left;
  font-weight: 300;
  font-feature-settings: "palt";
  line-height: 1.5625;
  margin-top: 13px;
}

.section02 {
  background-image: url(../img/section02_back.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.section02 ::before {
  display: block;
  content: url(../img/icon_arrow_dot.svg);
  text-align: center;
  position: relative;
  top: -35px;
}
.section02_wrap {
  height: 100%;
  padding: 0 5%;
}
.section02_wrap ::before {
  content: none;
}
.section02 h2 {
  text-align: center;
  font-size: 27px;
  line-height: 1.5;
  font-weight: 700;
  margin: 90px auto 150px;
  padding: 40px 80px;
  border-radius: 115px;
  -webkit-backdrop-filter: brightness(150%) blur(20px) opacity(0.95);
          backdrop-filter: brightness(150%) blur(20px) opacity(0.95);
}
@media screen and (max-width: 1050px) {
  .section02 h2 {
    font-size: 23px;
    margin: 5vw 3vw 10vw 3vw;
    padding: 25px;
    border-radius: 10px;
  }
}
.section02 h2 span {
  color: #CF152B;
}

.section03 {
  padding: 0 5%;
}
.section03_wrap {
  max-width: 1040px;
  margin: 90px auto;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section03_wrap {
    padding: 26px 0;
  }
}
.section03 img {
  width: 100%;
  height: auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .section03 img {
    margin-top: 20px;
  }
}
.section03 h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2162162162;
  color: #66871E;
}
@media screen and (max-width: 768px) {
  .section03 h2 {
    font-size: 27px;
    padding: 0 3vw;
  }
}
.section03 p, .section03 .section06 li dd, .section06 li .section03 dd, .section03 .section05 dd, .section05 .section03 dd {
  font-size: 21px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section03 p, .section03 .section06 li dd, .section06 li .section03 dd, .section03 .section05 dd, .section05 .section03 dd {
    width: 78.1333333333vw;
    margin-top: 20px;
    margin-inline: auto;
    text-align: center;
    font-size: 18px;
  }
}
.section03 span {
  font-weight: 700;
}

.fc_emerald {
  color: #269F7A;
}

.fc_orange {
  color: #FB6019;
}

.section04 {
  background-image: url(../img/section04_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 70px 3% 100px 3%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section04 {
    padding-bottom: 50px;
  }
}
.section04_wrap {
  max-width: 1040px;
  margin: 37px auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: brightness(150%) blur(50px);
          backdrop-filter: brightness(150%) blur(50px);
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 1050px) {
  .section04_wrap {
    gap: 25px;
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  .section04_wrap {
    flex-wrap: wrap;
    width: 92vw;
    flex-direction: column;
    padding: 34px 27px;
  }
  .section04_wrap ::before {
    content: none;
  }
}
.section04 h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .section04 h2 {
    font-size: 35px;
  }
}
.section04 li {
  flex-basis: 289px;
  text-align: left;
  flex-grow: 1;
}
.section04 img {
  width: 100%;
  border-radius: 10px;
}
.section04 h3 {
  font-size: 25px;
  border-bottom: solid 1px #707070;
  margin-top: 9px;
}
.section04 h4 {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .section04 h4 {
    font-weight: normal;
  }
}
.section04 p, .section04 .section06 li dd, .section06 li .section04 dd, .section04 .section05 dd, .section05 .section04 dd {
  font-weight: 300;
  line-height: 1.5;
  margin-top: 20px;
  text-justify: auto;
}
@media screen and (max-width: 768px) {
  .section04 p, .section04 .section06 li dd, .section06 li .section04 dd, .section04 .section05 dd, .section05 .section04 dd {
    font-weight: normal;
  }
}

.section05 {
  background-image: url(../img/section05_back.jpg);
  background-size: cover;
  background-position: center top;
  background-attachment: local;
  padding: 0 5% 120px;
}
@media screen and (max-width: 768px) {
  .section05 {
    background-size: cover;
  }
}
.section05_wrap {
  max-width: 1040px;
  margin-inline: auto;
}
.section05 h2 {
  text-align: center;
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .section05 h2 {
    padding-top: 60px;
  }
}
.section05 h2 img {
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  .section05 h2 img {
    width: 53.3333333333vw;
  }
}
.section05_img {
  width: 370px;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 1050px) {
  .section05_img {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .section05_img {
    width: 85.3333333333vw;
    margin-bottom: 25px;
    margin-inline: auto;
  }
}
.section05_wrap li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row-reverse;
  margin-top: 100px;
  gap: 30px;
}
@media screen and (max-width: 1050px) {
  .section05_wrap li {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .section05_wrap li {
    margin-top: 60px;
    flex-flow: column;
    gap: 0;
  }
}
.section05_wrap li:nth-child(2n) {
  flex-flow: row;
}
@media screen and (max-width: 768px) {
  .section05_wrap li:nth-child(2n) {
    flex-flow: column;
  }
}
.section05_wrap li:nth-child(1) {
  color: #B6CE32;
}
.section05_wrap li:nth-child(2) {
  color: #78AADB;
}
.section05_wrap li:nth-child(3) {
  color: #EE9691;
}
.section05_wrap li:nth-child(4) {
  color: #42B79C;
}
.section05_wrap li:nth-child(5) {
  color: #EBB202;
}
.section05 dl {
  max-width: 630px;
}
.section05 dt {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2571428571;
}
@media screen and (max-width: 768px) {
  .section05 dt {
    font-size: 26px;
  }
}
.section05 dt img {
  width: 57px;
  height: auto;
}
.section05 dd {
  margin-top: 16px;
  margin-left: 0;
  color: #4D4D4D;
}
@media screen and (max-width: 768px) {
  .section05 dd {
    font-size: 14px;
  }
}
.section05_contact {
  text-align: center;
  width: 100%;
  margin-inline: auto;
  margin-top: 100px;
}
.section05_contact::before {
  display: block;
  max-width: 100%;
  content: url(../img/section05_foot.svg);
  border-bottom: solid 2px #397632;
}
@media screen and (max-width: 768px) {
  .section05_contact::before {
    content: "";
    background-image: url(../img/section05_foot.svg);
    background-size: 100%;
    background-position: bottom;
    height: 50px;
  }
}
.section05_contact p, .section05_contact .section06 li dd, .section06 li .section05_contact dd, .section05_contact .section05 dd, .section05 .section05_contact dd {
  font-size: 30px;
  line-height: 1.2857142857;
  font-weight: 700;
  color: #397632;
}
@media screen and (max-width: 768px) {
  .section05_contact p, .section05_contact .section06 li dd, .section06 li .section05_contact dd, .section05_contact .section05 dd, .section05 .section05_contact dd {
    font-size: 17px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.section05_contact p::before, .section05_contact .section06 li dd::before, .section06 li .section05_contact dd::before, .section05_contact .section05 dd::before, .section05 .section05_contact dd::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 25px 0 25px;
  border-color: #397632 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .section05_contact p::before, .section05_contact .section06 li dd::before, .section06 li .section05_contact dd::before, .section05_contact .section05 dd::before, .section05 .section05_contact dd::before {
    border-width: 20px 20px 0 20px;
    padding-bottom: 25px;
  }
}
.section05_linkbtn, .section07_linkbtn {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .section05_linkbtn, .section07_linkbtn {
    align-items: center;
    flex-flow: column;
  }
}
.section05_linkbtn li, .section07_linkbtn li {
  font-size: 20px;
  width: 230px;
  height: 75px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .section05_linkbtn li, .section07_linkbtn li {
    margin-top: 10px;
    height: 60px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .section05_linkbtn li a, .section07_linkbtn li a {
    font-size: 20px;
    gap: 10px;
  }
}

.section06 {
  background-image: url(../img/section06_back.png);
  background-size: cover;
  background-position: center;
  padding: 113px 5% 120px 5%;
}
@media screen and (max-width: 768px) {
  .section06 {
    background-attachment: fixed;
    padding: 60px 50px;
  }
}
.section06_wrap {
  max-width: 1040px;
  background-color: #fff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  margin-inline: auto;
  padding: 40px;
}
.section06_wrap ::after {
  display: block;
  content: "";
  width: 208px;
}
.section06 h2 {
  font-size: 35px;
  font-weight: 700;
  color: #CF152B;
  text-align: center;
  border-bottom: solid 1px #CF152B;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .section06 h2 {
    font-size: 30px;
  }
}
.section06 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  margin-top: 30px;
}
.section06 li {
  flex-basis: 208px;
  flex-shrink: 1;
}
.section06 li img {
  width: 80%;
  margin: 5% 10%;
  padding: 4px;
}
@media screen and (max-width: 768px) {
  .section06 li img {
    width: 53.3333333333vw;
    margin: auto;
  }
}
.section06 li dt {
  font-size: 21px;
  color: #745237;
  text-align: center;
}
.section06 li dd {
  line-height: 1.4;
  margin-top: 12px;
}

.section07 {
  background-image: url(../img/section07_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 96px;
  padding-bottom: 82px;
  padding-left: calc(50% - 520px);
}
.section07_wrap {
  max-width: 567px;
}
@media screen and (max-width: 1050px) {
  .section07_wrap {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .section07_wrap {
    max-width: none;
    width: 92vw;
    margin-inline: auto;
  }
}
.section07 h2 {
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  height: 60px;
  background-color: #66871E;
  border-radius: 10px;
  padding: 1px;
}
@media screen and (max-width: 1050px) {
  .section07 h2 {
    max-width: 590px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .section07 h2 {
    font-size: 30px;
    height: auto;
  }
}
.section07 table {
  width: 516px;
  margin-top: 50px;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #707070;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .section07 table {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
  }
}
.section07 table th,
.section07 table td {
  font-weight: 300;
  padding: 13px 37px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .section07 table th,
.section07 table td {
    padding: 14px;
    font-weight: normal;
  }
}
.section07 table th {
  border-right: 1px solid #707070;
}
.section07 table tr {
  background-color: #fff;
}
.section07 table tr:nth-child(2n) {
  background-color: #EFEFEF;
}
.section07 table tr:last-child th,
.section07 table tr:last-child td {
  border-bottom: none;
}
.section07 p, .section07 .section05 dd, .section05 .section07 dd, .section07 .section06 li dd, .section06 li .section07 dd {
  text-align: center;
  font-size: 14px;
  margin-top: 27px;
}
.section07_contact p, .section07_contact .section05 dd, .section05 .section07_contact dd, .section07_contact .section06 li dd, .section06 li .section07_contact dd {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3333333333;
  color: #CF152B;
}
@media screen and (max-width: 768px) {
  .section07_contact p, .section07_contact .section05 dd, .section05 .section07_contact dd, .section07_contact .section06 li dd, .section06 li .section07_contact dd {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.section07_linkbtn li {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .section07_linkbtn li {
    margin-top: 10px;
  }
}

.section08 {
  background-image: url(../img/section08_back.png);
  background-size: cover;
  background-position: center;
  padding: 130px 3%;
}
@media screen and (max-width: 768px) {
  .section08 {
    background-attachment: fixed;
    padding: 100px 5vw;
  }
}
.section08 h2 {
  display: inline-block;
  background-color: #3367CD;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  padding: 5px 45px;
  border-radius: 20px 20px 0 0;
  position: relative;
  top: -66px;
}
@media screen and (max-width: 768px) {
  .section08 h2 {
    font-size: 30px;
    padding: 6px 12px;
    border-radius: 10px 10px 0 0;
    top: -54px;
  }
}
.section08_wrap {
  max-width: 1040px;
  margin-inline: auto;
  border: 2px solid #3367CD;
  border-radius: 20px;
  background-color: #fff;
  padding: 0 5% 100px;
}
@media screen and (max-width: 768px) {
  .section08_wrap {
    padding: 0 6vw 8vw 6vw;
  }
}
.section08_wrap div {
  max-width: 600px;
	width: calc( 100% - 202px );
}
.section08 ul {
  max-width: 810px;
  margin: 10px auto;
}
.section08 li {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.section08 img {
  width: 182px;
  height: auto;
}
.section08 h3 {
  font-size: 28px;
  font-weight: 700;
  color: #3367CD;
  border-bottom: 2px dotted #3367CD;
  padding-bottom: 10px;
}
.section08 h3 span {
  font-size: 20px;
  color: #707070;
}
.section08 p, .section08 .section05 dd, .section05 .section08 dd, .section08 .section06 li dd, .section06 li .section08 dd {
  padding-top: 10px;
}

.section_faq {
  background-color: #F0F2E9;
  padding: 86px 5vw;
}
.section_faq h2 {
  font-size: 30px;
  font-weight: 500;
  color: #66871E;
  display: block;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: solid 2px #66871E;
}
.section_faq dl {
  max-width: 930px;
  margin: 0 auto 15px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 1px 1px 3px;
}
.section_faq dl dt {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #083D6A;
  min-height: 48px;
  padding: 10px 30px 10px 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section_faq dl dt {
    min-height: initial;
    align-items: center;
    margin: 10px 0;
  }
}
.section_faq dl dt p, .section_faq dl dt .section05 dd, .section05 .section_faq dl dt dd, .section_faq dl dt .section06 li dd, .section06 li .section_faq dl dt dd {
  margin: 20px 0;
}
.section_faq dl dt::before {
  content: url(../img/faq_icon_q.svg);
  margin: 15px 15px 10px 21px;
}
@media screen and (max-width: 768px) {
  .section_faq dl dt::before {
    margin: 10px 10px;
  }
}
.section_faq dl dt::after {
  content: url(../img/faq_icon_open.svg);
  margin-left: auto;
  padding-left: 10px;
  width: 25px;
}
.section_faq dl .faq_close::after {
  content: url(../img/faq_icon_close.svg);
  margin-left: auto;
  width: 25px;
}
.section_faq dl dd {
  display: flex;
  align-items: center;
  color: #191919;
  padding: 0 55px 25px 85px;
  display: none;
  background: url(../img/faq_icon_a.svg) top no-repeat;
  background-position: 20px 10px;
}
@media screen and (max-width: 768px) {
  .section_faq dl dd {
    padding-left: 68px;
    background-position: 10px 10px;
  }
}
.section_faq dl dd p, .section_faq dl dd .section05 dd, .section05 .section_faq dl dd dd, .section_faq dl dd .section06 li dd, .section06 li .section_faq dl dd dd {
  margin-bottom: 10px;
}
.section_faq dl dd a {
  color: #CF152B;
}
.section_faq .is-open dd {
  display: block;
}

.section_foot {
  min-height: 230px;
  background-color: #fff;
  margin-bottom: -62px;
  padding-top: 110px;
  text-align: center;
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .section_foot {
    font-size: 19px;
    margin: inherit 5vw;
    padding-top: 90px;
  }
}

.footspacer {
  height: 100px;
  background-color: #fff;
}

.footbtn {
  width: 100%;
  height: 62px;
  position: sticky;
  bottom: 0;
  z-index: 100;
  opacity: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.footbtn ul {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}
.footbtn .linkbtn, .footbtn .section05_linkbtn, .footbtn .section07_linkbtn {
  justify-content: center;
}
.footbtn .linkbtn li, .footbtn .section05_linkbtn li, .footbtn .section07_linkbtn li {
  width: 50%;
  max-width: 300px;
}

.is-visible {
  animation-name: fadeUpAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
    overflow: hidden;
}

.fadeIn {
  transition: all 0.8s;
  transform: translateY(80px);
  opacity: 0;
}

.fadeIn.active {
  transform: translateY(0);
  opacity: 1;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=lpstyle.css.map */


.mainvisual h2{
	opacity: 1;
}

.section08 li{
	justify-content: flex-start;
}

.slider-1 {
  width: 100%;
  display: flex;
  max-width: 100%;
  margin: auto;
}

.slider-1 li {
  height: auto;
  margin-right: 20px;
  margin-left: 20px;
}

.slider-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

.slick-dots {
  left: 50%;
  transform: translateX(-50%);
}

.section04_wrap{
    padding: 40px 30px;
    max-width: 90%;
}
.section04_wrap .img{
	border-radius: 20px;
	overflow: hidden;
}
.section04 h3{
    font-size: 24px;
    padding: 5px 0;
}
.slick-prev, .slick-next{
	width: 40px;
    height: auto;
    border-radius: 5px;
    background: #4d4d4d;
    transition: .3s;
    opacity: .95;
    top: 50%;
    padding: 40px 0;
    transform: translate(0, -50%);
}
.slick-prev {
    left: -55px;
}
.slick-next {
    right: -55px;
}
.slick-prev:before, .slick-next:before {
    content: "";
    position: absolute;
    top: 70%;
    display: block;
    color: #fff;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-color: #fff;
    content: "";
    vertical-align: middle;
    width: 1rem;
    height: 1rem;
    margin-top: -1rem;
}
.slick-prev:before {
    transform: translate(-50%, -50%) rotate(225deg);
    left: 55%;
}
.slick-next:before {
    transform: translate(-50%, -50%) rotate(45deg);
    left: 40%;
}
.slick-prev:hover, .slick-next:hover{
	opacity: .8;
	background: #4d4d4d;
}
.slick-prev:active, .slick-next:active{
	background: #4d4d4d;
}
.slick-prev:visited, .slick-next:visited{
	background: #4d4d4d;
}
.slick-prev:focus, .slick-next:focus{
	background: #4d4d4d;
}

.section04 .inner {
    max-width: 1040px;
    margin: 0 auto;
}

.mainvisual {
    position: relative;
}
.mainvisual .inner{
	position: absolute;
	top: 130px;
	left: 50%;
	transform: translate(-50%, 0);
}

.mainvisual h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
    padding: 18px 0;
}
.mainvisual .arrow {
    height: 65px;
}
.mainvisual .h1{
    width: 710px;
	margin: 0 auto;
    padding: 19px 0;
}
.mainvisual .h1.pc{
	display: flex;
}
.mainvisual .h1.sp{
	display: none;
}
.mainvisual .h1 img{
    max-width:100%;
}
.mainvisual .arrow img{
    max-width:100%;
    height:100%;
}

@media screen and (max-width: 768px) {
	
.section08_wrap div{
    width: 100%;
}
	.section08 li{
	justify-content: center;
}
	.section04_wrap{
    padding: 30px 10px;
	max-width: 90%;
	}
	.section04_wrap .img {
    border-radius: 10px;
    overflow: hidden;
}
.slick-prev, .slick-next{
    width: 30px;
}
	.slick-prev {
    left: -30px;
}
	.slick-next {
    right: -30px;
}

	.mainvisual .inner{
		top: 12%;
	    width: calc(100% - 10px);
	}
	.mainvisual .h1{
		width: 95%;
    padding: 3% 0;
	}
	.mainvisual .h1.pc{
		display: none;
	}
.mainvisual .h1.sp{
	display: flex;
}
	.mainvisual h2 {
    width: 61%;
    margin: 0 auto;
    font-size: clamp(12px, 3vw, 24px);
    padding: 1% 0 5%;
}
	.mainvisual .arrow {
    height: auto;
    width: 5%;
    margin: 0 auto;
}
}