@charset "UTF-8";
/*--レスポンシブ--*/
/*--呼び出し例

.pc{
  display: block;
  @include mq("sp") {
    display: none;
  }
}

.sp{
  display: none;
  @include mq("sp") {
    display: block;
  }
}

--*/
/*--定義--*/
/*----共通部分----*/
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", sans-serif;
  font-weight: 300;
  color: #000;
  width: 100%;
  font-size: 0.9rem;
  background-color: white;
  margin: 0 auto;
}

.wrapper {
  margin: 0 10%;
}
@media screen and (max-width: 800px) {
  .wrapper {
    margin: 0 5%;
  }
}

/*---その他のjs設定---*/
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*--header--*/
header {
  display: flex;
  justify-content: space-between;
  background-color: #EF921D;
  height: 60px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  header h1 {
    flex-shrink: 1;
    width: 40%;
  }
}
header h1 img {
  height: 70%;
  padding: 1% 1%;
  margin-top: 3%;
  margin-left: 3%;
}
@media screen and (max-width: 800px) {
  header h1 img {
    vertical-align: middle;
    min-height: 50px;
  }
}
@media screen and (max-width: 500px) {
  header h1 img {
    width: 90%;
    object-fit: contain;
  }
}
header .action {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  header .action {
    flex-shrink: 2;
    width: 60%;
  }
}
header .pc {
  display: block;
  background-color: #F2EE2B;
  box-sizing: border-box;
}
header .pc p {
  font-size: 1.8vw;
  font-weight: bold;
  color: white;
  background-color: #EF921D;
}
header .pc a img {
  margin: 2% auto 0;
  height: 50px;
}
@media screen and (max-width: 800px) {
  header .pc {
    display: none;
  }
}
header .sp {
  display: none;
  background-color: #F2EE2B;
  width: 100%;
  height: 100%;
  text-align: center;
}
header .sp p {
  background-color: #EF921D;
}
header .sp a img {
  object-fit: contain;
  height: 100%;
}
@media screen and (max-width: 500px) {
  header .sp a img {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  header .sp {
    display: block;
  }
}

/*--top&top2--*/
#top img {
  width: 100%;
  vertical-align: bottom;
}
#top .pc {
  display: block;
}
@media screen and (max-width: 800px) {
  #top .pc {
    display: none;
  }
}
#top .sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #top .sp {
    display: block;
  }
}

#top2 {
  background-color: #EF921D;
  padding: 2% 0;
}
#top2 .wrapper .pc {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 800px) {
  #top2 .wrapper .pc {
    display: none;
  }
}
#top2 .wrapper .pc img {
  width: auto;
  height: 6vw;
}

/*--cta--*/
#cta img {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
#cta .pc {
  display: block;
  margin: 5%;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #cta .pc {
    display: none;
  }
}
#cta .sp {
  display: none;
}
#cta .sp img {
  margin: 5%;
  width: 90%;
}
@media screen and (max-width: 800px) {
  #cta .sp {
    display: block;
  }
}

/*--question--*/
#question {
  background-color: #1CA98A;
}
#question .wrapper img {
  width: 100%;
  padding: 7% 5%;
}
#question .wrapper .pc {
  display: block;
}
@media screen and (max-width: 800px) {
  #question .wrapper .pc {
    display: none;
  }
}
#question .wrapper .sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #question .wrapper .sp {
    display: block;
  }
}

/*--check--*/
#check {
  background-color: #000;
}
@media screen and (max-width: 800px) {
  #check {
    padding: 5% 0;
  }
}
#check .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #check .wrapper {
    display: block;
  }
}
#check .wrapper img {
  width: 30%;
}
@media screen and (max-width: 800px) {
  #check .wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}
#check .wrapper h2 {
  width: 60%;
}
@media screen and (max-width: 800px) {
  #check .wrapper h2 {
    width: 100%;
  }
}
#check .wrapper h2 img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  #check .wrapper h2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding-top: 5%;
  }
}

/*--shiroari--*/
#shiroari {
  background-color: #F2EE2B;
}
#shiroari .wrapper h2 {
  padding: 7% 10% 3%;
}
@media screen and (max-width: 800px) {
  #shiroari .wrapper h2 {
    padding: 7% 0 3%;
  }
}
#shiroari .wrapper h2 img {
  width: 100%;
}
#shiroari .wrapper .pc {
  margin-bottom: 5%;
}
#shiroari .wrapper .pc img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  #shiroari .wrapper .pc {
    display: none;
  }
}
#shiroari .wrapper .sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #shiroari .wrapper .sp {
    display: block;
    margin-bottom: 5%;
    text-align: center;
  }
  #shiroari .wrapper .sp img {
    width: 70%;
  }
}
#shiroari .wrapper .kouka {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  #shiroari .wrapper .kouka {
    display: block;
  }
}
#shiroari .wrapper .kouka .box {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #shiroari .wrapper .kouka .box {
    width: 100%;
    margin-bottom: 5%;
  }
}
#shiroari .wrapper .kouka .box img {
  width: 100%;
  vertical-align: top;
}
@media screen and (max-width: 800px) {
  #shiroari .wrapper .kouka .box img {
    width: 70%;
  }
}
#shiroari .wrapper .kouka .box p {
  color: white;
  font-weight: bold;
  font-size: 1.2vw;
  background-color: #000;
  padding: 5% 10%;
  text-align: left;
  line-height: 2vw;
}
@media screen and (max-width: 800px) {
  #shiroari .wrapper .kouka .box p {
    width: 70%;
    margin: 0 auto;
    line-height: 4vw;
    font-size: 3vw;
    line-height: 5vw;
  }
}
#shiroari .next {
  background-image: url(./img/next_bg.jpg);
  background-size: contain;
  background-position: bottom;
  text-align: center;
}
#shiroari .next img {
  width: 50%;
  padding: 7% 0 2%;
}
@media screen and (max-width: 800px) {
  #shiroari .next img {
    width: 80%;
    padding: 5% 0;
  }
}

/*--block--*/
#block {
  background-color: #F8F6E4;
  padding-bottom: 3%;
}
#block .wrapper {
  padding-top: 5%;
}
#block .wrapper h2 {
  text-align: center;
}
#block .wrapper h2 img {
  width: 100%;
  vertical-align: top;
}
#block ul li .title {
  display: flex;
  align-items: center;
}
#block ul li .title h3 {
  width: 70%;
  color: white;
  font-weight: bold;
  background-color: #1CA98A;
  font-size: 2.2vw;
  padding: 1% 5% 2% 15%;
  text-align: left;
  transform: skewX(-14deg);
  transform-origin: 100% 0;
}
@media screen and (max-width: 800px) {
  #block ul li .title h3 {
    font-size: 2.8vw;
  }
}
#block ul li .title h3 span {
  color: #F2EE2B;
  font-size: 3vw;
}
#block ul li .text {
  display: flex;
  margin: 2% 0 4% 10%;
}
#block ul li .text img {
  width: 10%;
}
#block ul li .text p {
  font-size: 1.4vw;
  font-weight: bold;
  margin: 1.4vw 0 0 2.5vw;
}
@media screen and (max-width: 800px) {
  #block ul li .text p {
    font-size: 2.2vw;
    margin-right: 5vw;
  }
}

/*--block--*/
#reason {
  margin-bottom: 8%;
}
#reason .wrapper h2 {
  text-align: center;
  margin: 13% 0 10%;
}
#reason .wrapper h2 img {
  width: 70%;
}
@media screen and (max-width: 800px) {
  #reason .wrapper h2 img {
    width: 100%;
  }
}
#reason .wrapper .pc {
  display: block;
}
@media screen and (max-width: 800px) {
  #reason .wrapper .pc {
    display: none;
  }
}
#reason .wrapper .pc img {
  width: 100%;
  margin-bottom: 5%;
}
#reason .wrapper .sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #reason .wrapper .sp {
    display: block;
  }
}
#reason .wrapper .sp img {
  width: 100%;
  margin-bottom: 5%;
}

/*--flow--*/
#flow {
  background-color: #F2EE2B;
  padding-bottom: 5%;
}
#flow .next {
  background-image: none;
}
#flow .next img {
  width: 100%;
}
#flow .wrapper h2 {
  text-align: center;
}
#flow .wrapper h2 img {
  width: 45%;
  margin: 5% 0 3%;
}
#flow .wrapper .flow_all {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  #flow .wrapper .flow_all {
    flex-wrap: wrap;
  }
}
#flow .wrapper .flow_all li {
  width: 100%;
  list-style: none;
}
@media screen and (max-width: 800px) {
  #flow .wrapper .flow_all li {
    width: 25%;
    margin-bottom: 10%;
  }
}
#flow .wrapper .flow_all li img {
  width: 100%;
}
#flow .wrapper .flow_all .triangle {
  width: 0;
  height: 0;
  border-top: solid 1.5vw transparent;
  border-right: solid 1.5vw transparent;
  border-bottom: solid 1.5vw transparent;
  border-left: solid 1.5vw #000;
  margin: 9vw 0 0 1.1vw;
}
#flow .wrapper .flow_all .triangle:last-child {
  border-left: solid 1.5vw #F2EE2B;
}
@media screen and (max-width: 800px) {
  #flow .wrapper .flow_all .triangle {
    border-top: solid 3vw transparent;
    border-right: solid 3vw transparent;
    border-bottom: solid 3vw transparent;
    border-left: solid 3vw #000;
    margin: 20vw 0 0 1.1vw;
  }
}

/*--map--*/
#map {
  background-color: #EF921D;
  padding: 10% 0;
}
#map .wrapper {
  background-color: white;
  box-shadow: 4px 4px;
}
#map .wrapper h2 {
  text-align: center;
}
#map .wrapper h2 img {
  width: 18%;
  margin-top: 5%;
}
@media screen and (max-width: 800px) {
  #map .wrapper h2 img {
    width: 25%;
  }
}
#map .wrapper .area {
  display: flex;
  justify-content: space-around;
  padding: 2% 7% 7% 7%;
}
@media screen and (max-width: 800px) {
  #map .wrapper .area {
    display: block;
  }
}
#map .wrapper .area .group {
  width: 40%;
}
@media screen and (max-width: 800px) {
  #map .wrapper .area .group {
    width: 90%;
    margin: 0 auto;
  }
}
#map .wrapper .area .group title {
  display: block;
  color: white;
  font-size: 1.3vw;
  font-weight: bold;
  background-color: #EF921D;
  width: 5.5vw;
  text-align: center;
  margin: 0 auto 10%;
}
@media screen and (max-width: 800px) {
  #map .wrapper .area .group title {
    font-size: 3vw;
    width: 15vw;
  }
}
#map .wrapper .area .group img {
  width: 100%;
}

/*--voice--*/
#voice {
  background-color: #F8F6E4;
}
#voice .wrapper {
  padding: 7% 0;
}
#voice .wrapper h2 {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 3%;
}
#voice .wrapper h2 img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  #voice .wrapper h2 {
    width: 100%;
  }
}
#voice .wrapper .voice_list .voice_contain {
  margin: 0 auto 3%;
  padding: 0.7%;
  display: flex;
  background-color: white;
  box-shadow: 3px 3px #EF921D;
  border: solid 1px #000;
}
@media screen and (max-width: 800px) {
  #voice .wrapper .voice_list .voice_contain {
    margin-bottom: 5%;
  }
}
#voice .wrapper .voice_list .voice_contain .voice_item {
  width: 80%;
  padding: 2%;
}
@media screen and (max-width: 800px) {
  #voice .wrapper .voice_list .voice_contain .voice_item {
    width: 60%;
  }
}
#voice .wrapper .voice_list .voice_contain .voice_item .voice_title {
  display: flex;
  margin: 1% 0 2%;
  font-size: 1.35vw;
}
@media screen and (max-width: 800px) {
  #voice .wrapper .voice_list .voice_contain .voice_item .voice_title {
    font-size: 2.5vw;
  }
}
#voice .wrapper .voice_list .voice_contain .voice_item .voice_title .name {
  font-weight: bold;
  margin-right: 3%;
}
#voice .wrapper .voice_list .voice_contain .voice_item .voice_title .year {
  font-weight: bold;
  color: white;
  background-color: #000;
  padding: 0 1%;
}
#voice .wrapper .voice_list .voice_contain .voice_item .text {
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 2.2vw;
}
@media screen and (max-width: 800px) {
  #voice .wrapper .voice_list .voice_contain .voice_item .text {
    font-size: 2.1vw;
    line-height: 4vw;
    padding-top: 3vw;
  }
}
#voice .wrapper .voice_list .voice_contain .voice_img {
  width: 20%;
}
@media screen and (max-width: 800px) {
  #voice .wrapper .voice_list .voice_contain .voice_img {
    width: 40%;
    object-fit: cover;
  }
}
#voice .wrapper .voice_list .voice_contain .voice_img img {
  width: 100%;
  vertical-align: middle;
}
@media screen and (max-width: 800px) {
  #voice .wrapper .voice_list .voice_contain .voice_img img {
    height: 100%;
    object-fit: cover;
  }
}

/*--voice--*/
#QA {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(126deg, transparent, transparent 6px, rgb(253, 245, 234) 6px, rgb(253, 245, 234) 8px);
  padding-bottom: 3% 0 0;
  /*--cta_last--*/
}
#QA .wrapper .QA_title {
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .QA_title {
    width: 50%;
  }
}
#QA .wrapper .QA_title .triangle {
  text-align: center;
  padding: 15% 0 5%;
}
#QA .wrapper .QA_title .triangle img {
  width: 40%;
}
#QA .wrapper .QA_title h2 img {
  width: 100%;
  padding-bottom: 7%;
}
#QA .wrapper .s_section .accordion_area .accordion_one .ac_header {
  box-shadow: 3px 3px #EF921D;
  margin-bottom: 2.5%;
  background-color: white;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
}
#QA .wrapper .s_section .accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #faf2de;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .accordion_one {
    padding: 2%;
  }
}
#QA .wrapper .s_section .accordion_area .accordion_one .p-faq__headinner {
  font-weight: 400;
}
#QA .wrapper .s_section .accordion_area .accordion_one .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .accordion_one .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
}
#QA .wrapper .s_section .accordion_area .accordion_one .i_box:before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  border-top: 2px solid #000;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .accordion_one .i_box:before {
    width: 15px;
  }
}
#QA .wrapper .s_section .accordion_area .accordion_one .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  border-left: 2px solid #000;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .accordion_one .i_box:after {
    height: 15px;
    right: 7px;
  }
}
#QA .wrapper .s_section .accordion_area .accordion_one .open {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 0px;
  margin-bottom: 0;
  box-shadow: 3px 0px #EF921D;
}
#QA .wrapper .s_section .accordion_area .accordion_one .open .i_box:after {
  height: 0;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .accordion_one .p-faq__headinner {
    padding-left: 25px;
  }
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .accordion_one .p-faq__headinner:before {
    padding-left: 14px;
  }
}
#QA .wrapper .s_section .accordion_area .ac_inner {
  box-shadow: 3px 0px #EF921D;
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  box-sizing: border-box;
  background: white;
  margin-bottom: 2.5%;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .ac_inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}
#QA .wrapper .s_section .accordion_area .ac_inner .p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .ac_inner .p-faq__bodyinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
  }
}
#QA .wrapper .s_section .accordion_area .ac_inner .p-faq__bodyinner:before {
  position: absolute;
  left: 0;
  content: "A．";
  color: #EF921D;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  #QA .wrapper .s_section .accordion_area .ac_inner .p-faq__a-txt {
    font-size: 20px;
  }
}
#QA .cta_last img {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
#QA .cta_last .pc {
  display: block;
  text-align: center;
  padding: 3% 0;
}
#QA .cta_last .pc img {
  width: 90%;
}
@media screen and (max-width: 800px) {
  #QA .cta_last .pc {
    display: none;
  }
}
#QA .cta_last .sp {
  display: none;
}
#QA .cta_last .sp img {
  margin: 5%;
  width: 90%;
}
@media screen and (max-width: 800px) {
  #QA .cta_last .sp {
    display: block;
  }
}
#QA .cta_last .town img {
  max-width: none;
  vertical-align: bottom;
}

/*--footer--*/
footer {
  text-align: center;
  color: white;
  background-color: #EF921D;
  padding-bottom: 2%;
}
footer p {
  font-weight: bold;
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */