@charset "UTF-8";

/* ===================================================================== */
/* Main Visual * /
/* ===================================================================== */
#main-visual {
  width: 100%;
  height: 95vh;
  position: relative;
  top: 0;
  left: 0;
  padding-top: 120px;
  background: #000;
}

#main-visual::before,
#main-visual::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
#main-visual::before {
  background: url(../images/main_visual.jpg) no-repeat center center;
  background-size: cover;
}

#main-visual .container {
  position: relative;
  z-index: 1;
}

.main-catch {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: auto;
}

.main-catch h1 {
  text-align: justify;
  text-align-last: justify;
  line-height: 1.2;
  letter-spacing: .5rem;
  color: #009550;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 2.4rem;
  font-weight: bold;
  white-space: pre;
  text-shadow: 0 0 10px white, 0 0 10px white;
}

.main-catch h1 span.catch1,
.main-catch h1 span.catch2,
.main-catch h1 span.catch3 {
  display: block;
}
.main-catch h1 span.catch1 {
  padding-bottom: .2rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.main-catch h1 span.catch2 {
  font-size: 1.6rem;
}
.main-catch h1 span.catch3 {
  font-size: 5rem;
}

@media only screen and (max-width: 940px) {
  .main-catch {
    width: 80%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    text-align: center;
  }

  .main-catch h1 {
    font-size: 3.6vw;
  }
}

@media only screen and (max-width: 640px) {
  #main-visual::before {
    background: url(../images/main_visual.jpg) no-repeat center right 10%;
  }

  .main-catch {
    width: 90%;
  }

  .main-catch h1 {
    font-size: 4vw;
  }
}

@media only screen and (max-width: 460px) {
  .main-catch {
    width: 100%;
  }

  .main-catch h1 {
    font-size: 4.5vw;
  }
}

/* ===================================================================== */
/* Intro * /
/* ===================================================================== */
#intro {
  padding-bottom: 0;
  position: relative;
  z-index: 0;
}
#intro::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#intro .container {
  position: relative;
}
#intro .container::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/worry_image.jpg") no-repeat center right;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#intro .title-2 {
  width: 60%;
  color: #53575f;
}

.worry-list {
  margin-bottom: 6rem;
}

.worry-list li {
  display: -webkit-flex;
  -webkit-flex-flow: column nowrap;
  -webkit-justify-content: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 60%;
  color: #fff;
  font-size: 1.35rem;
  font-weight: bold;
  text-align: center;
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: #53575f;
  position: relative;
}

.worry-list li::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  background: url("../images/icon_sweat.svg") no-repeat center center;
  position: absolute;
  top: 0;
  left: 5%;
  bottom: 0;
  margin: auto;
  opacity: .2;
}

.worry-list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -9px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #53575f;
}

@media only screen and (min-width: 981px) {
  #intro .sp_br {
    display: none;
  }
}

@media only screen and (max-width: 980px) {
  #intro {
    overflow: hidden;
  }

  #intro .container::before {
    left: 10%;
  }
}

@media only screen and (max-width: 640px) {
  #intro .container::before {
    background-size: 80%;
    top: 40%;
  }

  #intro .title-2 {
    width: 100%;
  }

  .worry-list {
    margin-bottom: 70%;
  }

  .worry-list li {
    width: 100%;
  }

  .worry-list li::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: -9px;
    border-width: 10px 10px 0 10px;
    border-color: #53575f transparent transparent transparent;
  }
}

/* ===================================================================== */
/* Solution * /
/* ===================================================================== */
#solution {
  padding-top: 0;
}

.solution-point {
  list-style-type: none;
}

.solution-point li {
  width: 31.3333%;
  margin-right: 3%;
  position: relative;
}

.solution-point li:last-child {
  margin-right: 0;
}

.solution-point li {
  counter-increment: num;
}

.solution-point li::before {
  content: counter(num, decimal-leading-zero);
  color: rgba(232, 181, 0, .8);
  font-size: 4.5rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  top: -4rem;
  left: 1rem;
}

.solution-point li p {
  width: 90%;
  height: 200px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 1.2rem 1.5rem 1.5rem;
  box-sizing: border-box;
  background: rgba(232, 181, 0, .9);
  margin: -3rem auto 0;
  position: relative;
}

@media only screen and (max-width: 1120px) {
  .solution-point.flex-L {
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-flex-flow: row wrap;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
  }

  .solution-point li {
    width: 48%;
    margin-bottom: 5rem;
  }

  .solution-point li:nth-child(2) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 740px) {
  .solution-point {
    padding: 0 6rem;
  }

  .solution-point li {
    width: 100%;
    margin-right: 0;
  }
}

@media only screen and (max-width: 560px) {
  .solution-point {
    padding: 0 3rem;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 460px) {
  .solution-point {
    padding: 0 1.5rem;
  }
}

/* ===================================================================== */
/* QR Function * /
/* ===================================================================== */
#merit {
  padding-top: 0;
  position: relative;
}

#merit .title-1 {
  background: #009550;
  margin-bottom: 2rem;
}
#merit .title-1::after {
  border-color: #009550 transparent transparent transparent;
}

.merit-list {
  -webkit-justify-content: space-around;
  -webkit-align-items: center;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  position: relative;
}
.merit-list::before {
  content: "";
  width: 100%;
  height: 50%;
  background: #f4f4f4;
  position: absolute;
  left: 0;
  bottom: 0;
}

.merit-list.flex-R {
  margin-bottom: 3rem;
}

.merit-list .img-box {
  width: 400px;
}
.merit-list.flex-L .img-box {
  margin-right: 5%;
}
.merit-list.flex-R .img-box {
  margin-left: 5%;
}

.merit-list .img-box img {
  border-radius: 50%;
}

.merit-list ul {
  list-style-type: none;
}

.merit-list li {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}

.merit-list li span {
  border-bottom: 3px solid #f6c826;
}

.merit-list li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  color: #009550;
  font-weight: normal;
  position: absolute;
  top: 0;
  left: 0;
}

#merit .addition {
  text-align: center;
  margin-bottom: 5rem;
}

#merit .cv-btn {
  text-align: center;
}
#merit .cv-btn a {
  width: 50%;
  min-width: 360px;
  font-size: 1.2rem;
}

@media only screen and (max-width: 640px) {
  .merit-list {
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .merit-list::before {
    background: transparent;
  }

  .merit-list.flex-R {
    margin-bottom: 0;
  }

  .merit-list .img-box {
    margin-bottom: 1.6rem;
  }
  .merit-list.flex-L .img-box {
    margin-right: 0;
  }
  .merit-list.flex-R .img-box {
    margin-left: 0;
  }
}

@media only screen and (max-width: 520px) {
  #merit .cv-btn a {
    width: 90%;
    min-width: 100%;
  }
}

@media only screen and (max-width: 420px) {
  #merit .addition {
    text-align: left;
  }
}

/* ===================================================================== */
/* Flow * /
/* ===================================================================== */
#flow .title-2 {
  margin-bottom: 3rem;
}

.flow-list {
  width: 60%;
  margin: 0 auto;
}

.flow-list ol {
  list-style-type: none;
}

.flow-list li {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-flex-flow: row nowrap;
  display: flex;
  justify-content: flex-start;
  flex-flow: row nowrap;
  border-bottom: 1px solid #009550;
  margin-bottom: 2rem;
  position: relative;
}

.flow-list li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #009550;
  z-index: 1;
}

.flow-list li span {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-flex-flow: column nowrap;
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  background: #009550;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 2rem;
  letter-spacing: 0;
  line-height: 1.2;
}
.flow-list li span em {
  font-size: 1.6em;
  font-style: normal;
}

.flow-list li > div {
  padding: 1rem 2rem;
}

.flow-list li h3 {
  color: #009550;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: .5rem;
}

.flow-list li p {
  line-height: 1.5;
}

@media only screen and (max-width: 940px) {
  .flow-list {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .flow-list {
    width: 100%;
  }
}

/* ===================================================================== */
/* Price * /
/* ===================================================================== */
#price .title-2 {
  margin-bottom: 3rem;
}

#price table {
  width: 60%;
  margin: 0 auto 3rem;
}

#price table caption {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  background: #009550;
  padding: 1rem .5rem;
}

#price table tr {
  border: 1px solid #009550;
}

#price table td {
  padding: 1rem .5rem;
}

#price table {
  text-align: center;
}

@media only screen and (max-width: 940px) {
  #price table {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  #price table {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  #price table td {
    font-size: .8em;
    letter-spacing: 0;
  }
}

/* ===================================================================== */
/* Closing * /
/* ===================================================================== */
#closing {
  background: transparent;
  position: relative;
}

#closing::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .8);
  position: absolute;
  top: 0;
  left: 0;
}

#closing .container {
  position: relative;
}

#closing h2 span.catch1,
#closing h2 span.catch2,
#closing h2 span.catch3 {
  display: block;
}
#closing h2 span.catch1 {
  font-size: .7em;
  font-weight: 500;
}
#closing h2 span.catch3 {
  font-size: 1.5em;
}

#closing .text-box {
  text-align: center;
}

#closing .cv-btn {
  text-align: center;
}

#closing .cv-btn a {
  width: 50%;
  min-width: 360px;
}

@media only screen and (max-width: 940px) {
  #closing h2 {
    font-size: 3.6vw;
  }
}

@media only screen and (max-width: 640px) {
  #closing h2 {
    font-size: 4vw;
  }
}

@media only screen and (max-width: 520px) {
  #closing .cv-btn a {
    width: 90%;
    min-width: 100%;
  }
}

@media only screen and (max-width: 460px) {
  #closing h2 {
    font-size: 4.5vw;
  }

  #closing .text-box {
    font-size: 3.2vw
  }
}

/* ===================================================================== */
/* campaign * /
/* ===================================================================== */
#campaign h2 img {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
#campaign p {
  margin-bottom: 2rem;
}

.campaign_content {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

dl.campaign_dl {
  padding: 2rem;
  border: 2px solid #fff;
}
dl.campaign_dl dd {
  margin-bottom: 1rem;
}
dl.campaign_dl dd:last-child {
  margin-bottom: 0;
}
dl.campaign_dl dd ul {
  list-style-position: inside;
}
dl.campaign_dl dd ul li {
  margin-left: 1.2rem;
  margin-bottom: .5rem;
  text-indent: -1.2rem;
}
dl.campaign_dl dd ul li:last-child {
  margin-bottom: 0;
}

/* ===================================================================== */
/* floating_action_button * /
/* ===================================================================== */
#fab {
  position: fixed;
  bottom: 0rem;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255,255,255,0.8);
  text-align: center;
}
#fab a:hover {
  border-bottom: none;
  opacity: .8;
}
#fab a {
  line-height: 0;
  color: #fff;
}
#fab a img {
  display: block;
  width: 100%;
  max-width: 375px;
  margin: 1rem auto;
}
#fab a img:hover {
  opacity: .8;
}

@media screen and (max-width: 767px) {
  #fab a img {
    margin: 0;
    padding: 1rem;
  }
}
