@charset "UTF-8";
.hide {
  display: none;
}

.block {
  display: block;
}

@media screen and (max-width: 1270px) {
  .pc-hide {
    display: none;
  }
  .pc-block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab-hide {
    display: none;
  }
  .tab-block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp-hide {
    display: none !important;
  }
  .sp-block {
    display: block;
  }
}
.popup {
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
}

@keyframes anime1 {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.smooth {
  animation-name: smoothAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 19%, 0) skewY(7deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
.header-flex {
  z-index: 999;
  top: 0;
  width: 100%;
  background-color: #fff;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
@media screen and (max-width: 480px) {
  .header-flex {
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1270px) {
  .header-flex h1 {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .header-flex h1 {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .header-flex h1 {
    width: 60%;
  }
}
.header-flex .header-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1270px) {
  .header-flex .header-right .header-line {
    display: none;
  }
}
@media screen and (max-width: 1270px) {
  .header-flex .header-right .header-tel {
    display: none;
  }
}
.header-flex .header-right .header-tel {
  margin: 0 16px;
}

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

.shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.shine:hover::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #35C5F6;
  transition: all 0.6s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.openbtn {
  position: relative;
  z-index: 9999;
  background: #35C5F6;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
}

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
  height: 2px;
  background: #fff;
  width: 62%;
  left: 10px;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
  left: 11px;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .openbtn span:nth-of-type(2) {
    top: 17.5px;
  }
}
@media screen and (max-width: 480px) {
  .openbtn span:nth-of-type(2) {
    top: 14px;
  }
}

.openbtn span:nth-of-type(3) {
  top: 36px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.hide {
  display: none;
}

.block {
  display: block;
}

@media screen and (max-width: 1270px) {
  .pc-hide {
    display: none;
  }
  .pc-block {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab-hide {
    display: none;
  }
  .tab-block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .sp-hide {
    display: none !important;
  }
  .sp-block {
    display: block;
  }
}
.popup {
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
}

@keyframes anime1 {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.smooth {
  animation-name: smoothAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 19%, 0) skewY(7deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
.header-flex {
  z-index: 999;
  top: 0;
  width: 100%;
  background-color: #fff;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
@media screen and (max-width: 480px) {
  .header-flex {
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1270px) {
  .header-flex h1 {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .header-flex h1 {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .header-flex h1 {
    width: 60%;
  }
}
.header-flex .header-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1270px) {
  .header-flex .header-right .header-line {
    display: none;
  }
}
@media screen and (max-width: 1270px) {
  .header-flex .header-right .header-tel {
    display: none;
  }
}
.header-flex .header-right .header-tel {
  margin: 0 16px;
}

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

.shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.shine:hover::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #35C5F6;
  transition: all 0.6s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.openbtn {
  position: relative;
  z-index: 9999;
  background: #35C5F6;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
}

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
  height: 2px;
  background: #fff;
  width: 62%;
  left: 10px;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
  left: 11px;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .openbtn span:nth-of-type(2) {
    top: 17.5px;
  }
}
@media screen and (max-width: 480px) {
  .openbtn span:nth-of-type(2) {
    top: 14px;
  }
}

.openbtn span:nth-of-type(3) {
  top: 36px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  line-height: 1.5;
  font-family: "Noto Sans JP", -apple-sysytem, BlinkMacSystemFont, "ヒラギノ角ゴ ProN", "Hiragino Sans", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
    line-height: 1.5rem;
  }
}

.wrap {
  width: 78.125vw;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1270px) {
  .wrap {
    width: auto;
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }
}

.ttl {
  font-size: 32px !important;
  font-weight: 900;
}
@media screen and (max-width: 480px) {
  .ttl {
    font-size: 18px !important;
    line-height: 2rem;
  }
}

.atn {
  color: #008DCF;
}

.atn_red {
  color: #E81F3B;
}

@media screen and (max-width: 1270px) {
  img {
    width: 100%;
  }
}

.mainvisual {
  background-image: url(/img/main_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 670px;
  position: relative;
  margin-top: 88px;
}
@media screen and (max-width: 1270px) {
  .mainvisual {
    background-image: none;
    margin-top: 117px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual {
    margin-top: 91.58px;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual {
    margin-top: 66px;
  }
}
.mainvisual .main_img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1270px) {
  .mainvisual .main_img {
    position: static;
    transform: translateX(0);
  }
}
.mainvisual .main_cta {
  display: none;
  width: 47%;
}
@media screen and (max-width: 480px) {
  .mainvisual .main_cta {
    display: block;
    position: absolute;
    top: 28.462vw;
    right: 4.615vw;
    background-color: #fff;
    padding: 6px;
  }
}
.mainvisual .main_cta .main_mail {
  padding-bottom: 8px;
}
.mainvisual .main_check {
  display: none;
  width: 50%;
}
@media screen and (max-width: 480px) {
  .mainvisual .main_check {
    display: block;
    position: absolute;
    right: 2.564vw;
    top: 51.282vw;
  }
}

.about {
  padding: 80px 0;
  background: url(/img/bg.jpg);
  position: relative;
}
@media screen and (max-width: 1270px) {
  .about {
    padding: 80px 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .about {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1270px) {
  .about h2 {
    display: flex;
    justify-content: center;
  }
}
.about .about_flex {
  display: flex;
  padding-top: 64px;
  color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 1270px) {
  .about .about_flex {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  .about .about_flex {
    padding-top: 24px;
  }
}
.about .about_flex .about_txt {
  padding-right: 24px;
  color: #000;
}
@media screen and (max-width: 1270px) {
  .about .about_flex .about_txt {
    padding-right: 0;
    padding-top: 32px;
    text-align: center;
  }
}
.about .about_flex p {
  padding-bottom: 32px;
}
@media screen and (max-width: 480px) {
  .about .about_flex p {
    padding-bottom: 16px;
    font-size: 16px;
  }
}
.about .about_flex .about_img img {
  border-radius: 32px;
  width: 100%;
}
.about::after {
  content: "";
  position: absolute;
  bottom: -49px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 125px 0 125px;
  border-color: #35C5F6 transparent transparent transparent;
}

#introduction {
  background: url(/img/introduction_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0 160px;
  position: relative;
}
@media screen and (max-width: 1270px) {
  #introduction {
    padding: 80px 32px 0;
  }
}
@media screen and (max-width: 480px) {
  #introduction {
    background-position: 0;
    padding: 40px 8px 0 8px;
  }
}
#introduction .introduction_inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
#introduction .introduction_inner h2 {
  padding-bottom: 64px;
}
@media screen and (max-width: 1270px) {
  #introduction .introduction_inner h2 {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  #introduction .introduction_inner h2 {
    padding-bottom: 24px;
  }
}
#introduction .introduction_inner p {
  font-size: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 480px) {
  #introduction .introduction_inner p {
    font-size: 14px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 1270px) {
  #introduction .introduction_flex {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  #introduction .introduction_flex {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
#introduction .introduction_flex .flex_left {
  width: 60%;
}
@media screen and (max-width: 480px) {
  #introduction .introduction_flex .flex_left {
    width: calc(50% - 5px);
  }
}
#introduction .introduction_flex .introducition_pcIllust {
  width: 40%;
}
@media screen and (max-width: 480px) {
  #introduction .introduction_flex .introducition_pcIllust {
    width: calc(50% - 5px);
  }
}
#introduction .introduction_illust {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 10%;
}
@media screen and (max-width: 1270px) {
  #introduction .introduction_illust {
    display: none;
  }
}

.kainds {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #35C5F6;
}
@media screen and (max-width: 480px) {
  .kainds {
    padding: 40px 0 8px;
  }
}
.kainds h2 {
  text-align: center;
}
.kainds .kainds_flex {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .kainds .kainds_flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .kainds .kainds_flex {
    padding-top: 32px;
  }
}
.kainds .kainds_flex li {
  padding-left: 3.906vw;
}
@media screen and (max-width: 480px) {
  .kainds .kainds_flex li {
    padding-left: 0;
  }
}
.kainds .kainds_flex li:nth-child(1) {
  padding-left: 0;
}
.kainds .kainds_flex li p {
  padding-top: 16px;
}
@media screen and (max-width: 480px) {
  .kainds .kainds_flex li p {
    padding-bottom: 32px;
    font-size: 18px;
    text-align: center;
  }
}

.kainds02 {
  padding: 80px 0;
  background: url(/img/bg.jpg);
  text-align: center;
}
@media screen and (max-width: 480px) {
  .kainds02 {
    padding: 40px 0;
  }
}
.kainds02 .kainds_txt {
  font-size: 24px;
  padding-top: 24px;
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 480px) {
  .kainds02 .kainds_txt {
    padding-top: 16px;
    font-size: 18px;
  }
}
.kainds02 .kainds_txt::after {
  content: "";
  background: url(/img/kainds_img.png) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -80%;
  right: -12%;
  width: 350px;
  height: 223px;
}
@media screen and (max-width: 1270px) {
  .kainds02 .kainds_txt::after {
    content: none;
  }
}
.kainds02 .kainds_flex2 {
  display: flex;
  padding-top: 24px;
  justify-content: center;
}
.kainds02 .kainds_flex2 li {
  padding-left: 40px;
}
.kainds02 .kainds_flex2 li:nth-child(1) {
  padding-left: 0;
}
.kainds02 .kainds_flex2 li p {
  padding-top: 16px;
}

.cta {
  background: url(/img/cta_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.cta .cta_flex {
  padding-top: 40px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1270px) {
  .cta .cta_flex {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .cta .cta_flex {
    padding: 40px 16px 24px;
  }
}
.cta .cta_flex .cta_right {
  padding-left: 24px;
}
@media screen and (max-width: 1270px) {
  .cta .cta_flex .cta_right {
    padding: 0;
  }
}
.cta .cta_flex .cta_right .cta_banner {
  padding-top: 16px;
}
@media screen and (max-width: 1270px) {
  .cta .cta_flex .cta_right .cta_banner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .cta .cta_flex .cta_right .cta_banner {
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 1270px) {
  .cta .cta_flex .cta_right .cta_banner a {
    width: 50%;
  }
}
@media screen and (max-width: 1270px) {
  .cta .cta_flex .cta_left {
    display: none;
  }
}

#reason {
  background-color: #35C5F6;
  padding: 24px 0;
  text-align: center;
}
@media screen and (max-width: 1270px) {
  #reason {
    padding: 24px 32px;
  }
}
@media screen and (max-width: 480px) {
  #reason {
    padding: 24px 16px;
  }
}

.reason_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1270px) {
  .reason_flex {
    flex-direction: column;
  }
}
.reason_flex .reason_img {
  width: 50%;
}
@media screen and (max-width: 1270px) {
  .reason_flex .reason_img {
    width: 100%;
  }
}
.reason_flex .reason_img img {
  width: 100%;
}
.reason_flex .reason_txt {
  padding: 0 100px;
  width: 50%;
}
@media screen and (max-width: 1270px) {
  .reason_flex .reason_txt {
    padding-top: 46px;
    padding-bottom: 64px;
    padding-right: 32px;
    padding-left: 116px;
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .reason_flex .reason_txt {
    padding-left: 16px;
    padding-bottom: 40px;
    padding-right: 16px;
  }
}
.reason_flex .reason_txt h3 {
  position: relative;
}
@media screen and (max-width: 1270px) {
  .reason_flex .reason_txt h3 {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .reason_flex .reason_txt h3 {
    width: auto;
    margin-left: 24px;
  }
}
.reason_flex .reason_txt h3::before {
  content: "";
  background: url(/img/point_bubble.png) no-repeat;
  background-position: center;
  background-size: contain;
  width: 68px;
  height: 68px;
  position: absolute;
  left: -80px;
  top: -30px;
}
@media screen and (max-width: 480px) {
  .reason_flex .reason_txt h3::before {
    width: 50px;
    height: 50px;
    left: -32px;
    top: -40px;
  }
}
.reason_flex .reason_txt p {
  padding-top: 16px;
}
.reason_flex .reason_txt p span {
  background: linear-gradient(to bottom, #fff 0%, #fff 51%, #fff 52%, rgba(242, 240, 11, 0.8) 100%);
}

.reason_flex2 {
  flex-direction: row-reverse;
  background-color: #35C5F6;
}
@media screen and (max-width: 1270px) {
  .reason_flex2 {
    flex-direction: column;
  }
}
.reason_flex2 .reason_txt {
  color: #fff;
}
.reason_flex2 .reason_txt p span {
  font-weight: 900;
  background: linear-gradient(to bottom, #35C5F6 0%, #35C5F6 51%, #35C5F6 52%, rgba(242, 240, 11, 0.8) 100%);
}

#recommend {
  background-color: #35C5F6;
  padding: 24px 0;
  text-align: center;
}
@media screen and (max-width: 1270px) {
  #recommend {
    padding: 24px 32px;
  }
}
@media screen and (max-width: 480px) {
  #recommend {
    padding: 24px 16px;
  }
}

.recommend_contents {
  background: url(/img/recommend_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.recommend_contents .recommend_flex {
  padding: 40px 0 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .recommend_contents .recommend_flex {
    flex-direction: column;
    padding: 64px 0 40px;
  }
}
.recommend_contents .recommend_flex li {
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 300px;
  border-radius: 50%;
  border: solid 3px #fff;
  width: calc(33.33333% - 40px);
}
@media screen and (max-width: 1270px) {
  .recommend_contents .recommend_flex li {
    width: calc(50% - 40px);
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .recommend_contents .recommend_flex li {
    width: 80%;
  }
}
@media screen and (max-width: 1270px) {
  .recommend_contents .recommend_flex li img {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .recommend_contents .recommend_flex li img {
    width: 65%;
  }
}
.recommend_contents .recommend_flex li:nth-child(n+4) {
  margin-top: 40px;
}
@media screen and (max-width: 1270px) {
  .recommend_contents .recommend_flex li:nth-child(n+4) {
    margin-top: 0;
  }
}
.recommend_contents .recommend_flex li::before {
  content: "";
  background: url(/img/Check.png) no-repeat;
  background-position: center;
  background-size: contain;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}

#flow {
  padding: 24px 0;
  text-align: center;
}
@media screen and (max-width: 1270px) {
  #flow {
    padding: 24px 32px;
  }
  #flow img {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  #flow {
    padding: 24px 16px;
  }
  #flow img {
    width: 80%;
  }
}

.flow_contents {
  background-color: #35C5F6;
  background-image: url(/img/flow_bg.png);
  padding: 40px 0 80px;
}
@media screen and (max-width: 480px) {
  .flow_contents {
    padding-bottom: 40px;
  }
}
.flow_contents .flow .flow_top {
  text-align: center;
  margin-bottom: -126px;
}
@media screen and (max-width: 1270px) {
  .flow_contents .flow .flow_top img {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .flow_contents .flow .flow_top {
    margin-bottom: -64px;
  }
}
.flow_contents .flow .flow_btm {
  background-color: #fff;
  padding: 166px 190px 80px;
}
@media screen and (max-width: 768px) {
  .flow_contents .flow .flow_btm {
    padding: 166px 64px 80px;
  }
}
@media screen and (max-width: 480px) {
  .flow_contents .flow .flow_btm {
    padding: 80px 24px 40px;
  }
}
.flow_contents .flow .flow_btm .flow_btm_ttl {
  text-align: center;
  padding-bottom: 32px;
}
.flow_contents .allow {
  text-align: center;
  margin: 80px 0;
}
@media screen and (max-width: 1270px) {
  .flow_contents .allow img {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .flow_contents .allow img {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .flow_contents .allow {
    margin: 40px 0;
  }
}
.flow_contents .youtube_area {
  padding-top: 80px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .flow_contents .youtube_area {
    padding-top: 40px;
  }
}
.flow_contents .youtube_area .youtube {
  padding-top: 40px;
}
.flow_contents .youtube_area .youtube iframe {
  width: 100%;
  height: 566px;
}
@media screen and (max-width: 480px) {
  .flow_contents .youtube_area .youtube iframe {
    height: 250px;
  }
}
@media screen and (max-width: 480px) {
  .flow_contents .youtube_area .youtube {
    padding-top: 24px;
  }
}

#possible {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(/img/bg.jpg) repeat;
}
@media screen and (max-width: 480px) {
  #possible {
    padding: 40px 0 48px;
  }
}
@media screen and (max-width: 480px) {
  #possible .wrap {
    padding: 0;
  }
}
#possible .possible_contents {
  background: url(/img/possible_bg.png);
  padding: 32px;
}
@media screen and (max-width: 480px) {
  #possible .possible_contents {
    padding: 24px 16px;
  }
}
#possible .possible_contents .possible_ttl {
  text-align: center;
  color: #fff;
  text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.2823529412);
}
#possible .possible_contents .possible_ttl span {
  color: #F2F00B;
}
#possible .possible_contents .possible_area {
  margin: 24px 0;
  padding: 24px 64px;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  #possible .possible_contents .possible_area {
    padding: 24px 24px;
  }
}
#possible .possible_contents .possible_area p {
  font-size: 24px;
  line-height: 3rem;
}
@media screen and (max-width: 480px) {
  #possible .possible_contents .possible_area p {
    font-size: 16px;
    line-height: 2rem;
  }
}
#possible .possible_contents .possible_area .possible_area_btm {
  margin-top: 32px;
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #possible .possible_contents .possible_area .possible_area_btm {
    margin-top: 16px;
    font-size: 18px;
  }
}

.price {
  background-color: #35C5F6;
  margin-top: 48px;
  padding: 16px;
}
.price .price_ttl {
  background-color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .price .price_ttl {
    font-size: 24px;
  }
}
.price .price_flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1270px) {
  .price .price_flex {
    align-items: flex-start;
    flex-direction: column;
  }
}
.price .price_flex .price_flex_content {
  color: #fff;
  font-size: 24px;
  width: 33.3333%;
}
@media screen and (max-width: 1270px) {
  .price .price_flex .price_flex_content {
    display: flex;
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 1270px) {
  .price .price_flex .price_flex_content .price_flex_top {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .price .price_flex .price_flex_content .price_flex_top {
    width: 60%;
    font-size: 18px;
  }
}
.price .price_flex .price_flex_content .price_flex_btm {
  text-align: end;
}
@media screen and (max-width: 1270px) {
  .price .price_flex .price_flex_content .price_flex_btm {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .price .price_flex .price_flex_content .price_flex_btm {
    width: 40%;
  }
}
@media screen and (max-width: 1270px) {
  .price .price_flex .price_flex_content .price_flex_btm img {
    width: 40%;
  }
}
@media screen and (max-width: 1270px) {
  .price .price_flex .price_flex_content .price_flex_btm.construction_price img {
    width: 100%;
  }
}
@media screen and (max-width: 1270px) {
  .price .price_flex .price_flex_content .price_flex_btm.ask_price img {
    width: 60%;
  }
}

#faq {
  padding: 24px 0;
  text-align: center;
}
@media screen and (max-width: 1270px) {
  #faq {
    padding: 24px 32px;
  }
}
@media screen and (max-width: 480px) {
  #faq {
    padding: 24px 16px;
  }
}

.faq {
  background: url(/img/faq_bg.png) repeat;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .faq {
    padding: 40px 0;
  }
}
.faq .faq_content {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: solid 2px #D2D2D2;
}
.faq .faq_content:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.faq .faq_content .question {
  display: flex;
  font-size: 32px;
  align-items: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .faq .faq_content .question {
    font-size: 18px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 1270px) {
  .faq .faq_content .question img {
    width: 75px;
  }
}
@media screen and (max-width: 480px) {
  .faq .faq_content .question img {
    width: 50px;
  }
}
.faq .faq_content .question p {
  padding-left: 32px;
}
@media screen and (max-width: 1270px) {
  .faq .faq_content .question p {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .faq .faq_content .question p {
    padding-left: 24px;
  }
}
.faq .faq_content .answer {
  display: flex;
  align-items: center;
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  .faq .faq_content .answer {
    font-size: 16px;
  }
}
@media screen and (max-width: 1270px) {
  .faq .faq_content .answer img {
    width: 75px;
  }
}
@media screen and (max-width: 480px) {
  .faq .faq_content .answer img {
    width: 50px;
  }
}
.faq .faq_content .answer p {
  width: 90%;
  padding-left: 32px;
}
@media screen and (max-width: 480px) {
  .faq .faq_content .answer p {
    padding-left: 24px;
  }
}

#voice {
  padding: 24px 0;
  text-align: center;
}
@media screen and (max-width: 1270px) {
  #voice {
    padding: 24px 32px;
  }
}
@media screen and (max-width: 480px) {
  #voice {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 1270px) {
  #voice img {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  #voice img {
    width: 90%;
  }
}

.voice_wrap {
  background-color: #35C5F6;
  background-image: url(/img/flow_bg.png);
  padding: 40px 0 80px;
}
@media screen and (max-width: 480px) {
  .voice_wrap {
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .voice_wrap .wrap {
    padding: 0;
  }
}
.voice_wrap .voice_youtube iframe {
  width: 100%;
  height: 550px;
}
@media screen and (max-width: 480px) {
  .voice_wrap .voice_youtube iframe {
    height: 250px;
  }
}
.voice_wrap .voice_txt {
  background-color: #fff;
  padding: 32px 13.9% 48px;
}
@media screen and (max-width: 480px) {
  .voice_wrap .voice_txt {
    padding: 24px 16px 32px;
  }
}
.voice_wrap .voice_txt h3 {
  font-size: 24px;
  color: #008DCF;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  .voice_wrap .voice_txt h3 {
    line-height: 2.5rem;
    margin-bottom: 16px;
  }
}
.voice_wrap .voice_txt p {
  margin-top: 24px;
  line-height: 2rem;
}

.greet {
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .greet {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.greet::before {
  content: "";
  background-color: #F1F4F8;
  width: 100%;
  height: 1000px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 1270px) {
  .greet::before {
    height: 1300px;
  }
}
.greet .greet_contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1270px) {
  .greet .greet_contents {
    flex-direction: column;
  }
}
.greet .greet_contents .greet_img {
  position: relative;
}
@media screen and (max-width: 1270px) {
  .greet .greet_contents .greet_img {
    width: 80%;
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .greet .greet_contents .greet_img {
    width: auto;
  }
}
.greet .greet_contents .greet_img .profile {
  color: #fff;
  background-color: #35C5F6;
  display: inline-block;
  padding: 16px;
  position: absolute;
  top: 440px;
  left: -24px;
}
@media screen and (max-width: 1270px) {
  .greet .greet_contents .greet_img .profile {
    top: 457px;
    left: -151px;
  }
}
@media screen and (max-width: 480px) {
  .greet .greet_contents .greet_img .profile {
    left: auto;
    top: auto;
    right: -16px;
    bottom: -32px;
  }
}
.greet .greet_contents .greet_txt {
  padding-left: 24px;
}
@media screen and (max-width: 1270px) {
  .greet .greet_contents .greet_txt {
    padding-left: 0;
    padding-top: 32px;
  }
}
@media screen and (max-width: 480px) {
  .greet .greet_contents .greet_txt {
    padding-top: 56px;
  }
}
.greet .greet_contents .greet_txt h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  .greet .greet_contents .greet_txt h3 {
    font-size: 24px;
    line-height: 2rem;
  }
}
.greet .greet_contents .greet_txt p {
  margin-top: 16px;
}
.greet .greet_contents .greet_txt .greet_atention {
  font-size: 24px;
  color: #E81F3B;
  line-height: 2rem;
}

#company {
  background: url(/img/faq_bg.png) repeat;
  padding: 80px 0;
}
@media screen and (max-width: 480px) {
  #company {
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  #company .wrap {
    padding: 0;
  }
}
#company .company_wrap {
  background-color: #fff;
  padding: 40px 100px;
}
@media screen and (max-width: 768px) {
  #company .company_wrap {
    padding: 32px;
  }
}
@media screen and (max-width: 480px) {
  #company .company_wrap {
    padding: 24px 16px;
  }
}
#company .company_wrap h3 {
  font-weight: 900;
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  #company .company_wrap h3 {
    font-size: 18px;
  }
}
#company .company_wrap .company_profile {
  margin-top: 32px;
}
@media screen and (max-width: 480px) {
  #company .company_wrap .company_profile {
    margin-top: 24px;
  }
}
#company .company_wrap .company_profile dl {
  display: flex;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  #company .company_wrap .company_profile dl {
    flex-direction: column;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  #company .company_wrap .company_profile dl {
    margin-top: 16px;
  }
}
#company .company_wrap .company_profile dl dt {
  font-size: 18px;
  font-weight: 900;
  width: 25%;
  padding-left: 8px;
  padding-bottom: 8px;
  border-bottom: solid 1px #D8D8D8;
}
@media screen and (max-width: 768px) {
  #company .company_wrap .company_profile dl dt {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  #company .company_wrap .company_profile dl dt {
    font-size: 16px;
  }
}
#company .company_wrap .company_profile dl dd {
  width: 75%;
  padding-left: 8px;
  padding-bottom: 8px;
  margin-left: 24px;
  border-bottom: solid 1px #D8D8D8;
}
@media screen and (max-width: 768px) {
  #company .company_wrap .company_profile dl dd {
    width: auto;
    margin-top: 16px;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  #company .company_wrap .company_profile dl dd {
    font-size: 14px;
  }
}
#company .company_wrap .company_profile dl .address {
  margin-bottom: 24px;
}
#company .company_wrap .company_koujipro {
  display: flex;
  margin-top: 32px;
}
@media screen and (max-width: 480px) {
  #company .company_wrap .company_koujipro {
    margin-top: 16px;
    flex-direction: column-reverse;
  }
}
#company .company_wrap .company_koujipro .koujipro_txt {
  width: 46%;
}
@media screen and (max-width: 480px) {
  #company .company_wrap .company_koujipro .koujipro_txt {
    width: auto;
    padding-top: 24px;
  }
}
#company .company_wrap .company_koujipro .koujipro_img {
  width: 54%;
  padding-left: 80px;
}
@media screen and (max-width: 480px) {
  #company .company_wrap .company_koujipro .koujipro_img {
    padding-left: 0;
    width: auto;
  }
}
#company .company_wrap .company_koujipro .koujipro_img img {
  width: 100%;
}

footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}/*# sourceMappingURL=style.css.map */