@charset "UTF-8";
body {
  color: #000;
  font-size: 19px;
  line-height: 33px;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 25px;
    line-height: 38px;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 4.16vw;
    line-height: 6vw;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.sm-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
@media screen and (max-width: 600px) {
  .sm-inner {
    padding: 0 3.33vw;
  }
}

.md-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
@media screen and (max-width: 600px) {
  .md-inner {
    padding: 0 3.33vw;
  }
}

.lg-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
@media screen and (max-width: 600px) {
  .lg-inner {
    padding: 0 3.33vw;
  }
}

.ac-color {
  color: #E80000;
}

.ac-bg {
  background: linear-gradient(to bottom, transparent 50%, #FFFF00 0);
}

.header {
  background: url(../img/fv-bg.png) no-repeat center center/cover;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .header {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .header {
    padding-bottom: 6.66vw;
  }
}

.header-inner {
  padding: 0 20px;
  max-width: 933px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .fv {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.fv-feature {
  display: block;
  width: 100%;
  max-width: 703px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv-feature {
    margin-top: -19vw;
  }
}

.btn-title {
  display: block;
  width: 100%;
  max-width: 437px;
  margin: 22px auto 0;
}
@media screen and (max-width: 600px) {
  .btn-title {
    width: 60%;
    margin-top: 3.66vw;
  }
}

.btn {
  display: block;
  max-width: 760px;
  margin: 10px auto 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 600px) {
  .btn {
    margin-top: 1vw;
  }
}
.btn:hover {
  opacity: 0.8;
}

.worry {
  padding: 40px 0 50px;
  background-color: #1D205B;
}
@media screen and (max-width: 600px) {
  .worry {
    padding: 6.66vw 0 8.33vw;
  }
}

.worry-inner {
  position: relative;
}
.worry-inner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -45px;
  width: 188px;
  height: 304px;
  background: url(../img/worry-man.png) no-repeat center center/contain;
}
@media screen and (max-width: 1000px) {
  .worry-inner::after {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .worry-inner::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .worry-title {
    width: 68.28125%;
    max-width: 437px;
    min-width: 250px;
    margin: 0 auto;
  }
}

.worry-list {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .worry-list {
    margin-top: 35px;
  }
}
@media screen and (max-width: 600px) {
  .worry-list {
    margin-top: 5.83vw;
  }
}

.worry-item {
  position: relative;
  padding: 20px 0 20px 50px;
  color: #fff;
  font-size: 29px;
  font-weight: bold;
  line-height: 36px;
}
@media screen and (max-width: 768px) {
  .worry-item {
    font-size: 27px;
  }
}
@media screen and (max-width: 600px) {
  .worry-item {
    padding: 3.33vw 0 3.33vw 8.33vw;
    font-size: 4.5vw;
    line-height: 6vw;
  }
}
.worry-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 30px;
  height: 30px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
}
@media screen and (max-width: 600px) {
  .worry-item::before {
    top: 4.16vw;
    width: 5vw;
    height: 5vw;
  }
}
.worry-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-size: 10px 1px;
  background-image: linear-gradient(to right, #fff, #fff 5px, transparent 5px, transparent 10px);
  background-repeat: repeat-x;
  background-position: left bottom;
}


.worry-item:last-child {
  padding-bottom: 0;
  background: none;
}
.worry-item:last-child::after {
  display: none;
}
.worry-item:nth-child(4) span::after {
  display: none;
}
.worry-item span {
  position: relative;
  display: block;
  z-index: 5;
}
.worry-item span::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .worry-item span::after {
    display: block;
    content: "";
    position: absolute;
    bottom: -50px;
    right: -20px;
    width: 150px;
    height: 242px;
    background: url(../img/worry-man.png) no-repeat center center/contain;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  .worry-item span::after {
    bottom: -8.33vw;
    right: -3vw;
    width: 25vw;
    height: 40.3vw;
  }
}

.test {
  padding: 60px 0 17px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .test {
    padding: 40px 0;
  }
}
@media screen and (max-width: 600px) {
  .test {
    padding: 6.66vw 0;
  }
}

.test-texts {
  margin-top: 23px;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .test-texts {
    margin-top: 3.83vw;
  }
}

.test-text span {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .test-text span {
    font-size: 29px;
  }
}
@media screen and (max-width: 600px) {
  .test-text span {
    font-size: 4.7vw;
  }
}
.test-text:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .test-text:not(:first-child) {
    margin-top: 7vw;
  }
}

.test-subtitle {
  max-width: 570px;
  margin: 42px auto 0;
}
@media screen and (max-width: 768px) {
  .test-subtitle {
    width: 75%;
  }
}
@media screen and (max-width: 600px) {
  .test-subtitle {
    margin-top: 5vw;
  }
}

.test-bottom-area {
  margin-top: 45px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .test-bottom-area {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .test-bottom-area {
    margin-top: 5vw;
  }
}

.test-bottom-text {
  width: calc(100% - 222px);
}
@media screen and (max-width: 768px) {
  .test-bottom-text {
    width: 100%;
  }
}
.test-bottom-text:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .test-bottom-text:not(:first-of-type) {
    margin-top: 7vw;
  }
}
.test-bottom-text:nth-of-type(2) {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .test-bottom-text:nth-of-type(4) {
    line-height: 48px;
  }
}
@media screen and (max-width: 600px) {
  .test-bottom-text:nth-of-type(4) {
    line-height: 6.5vw;
  }
}
.test-bottom-text:nth-of-type(4) span {
  background: linear-gradient(to bottom, #FFFF00 100%, #ffff00 100%);
}
.test-bottom-text:nth-of-type(5) span {
  border-bottom: 1px solid #000;
}
.test-bottom-text:nth-of-type(5) span span {
  font-weight: bold;
}
.test-bottom-text:nth-of-type(6) span {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .test-bottom-text:nth-of-type(6) span {
    font-size: 4.7vw;
  }
}
.test-bottom-text:nth-of-type(7) span {
  font-weight: bold;
}

.test-img {
  float: right;
  width: 222px;
}
@media screen and (max-width: 768px) {
  .test-img {
    width: 30%;
    min-width: 100px;
  }
}

.plan {
  padding: 60px 30px;
  background-color: #FFFFEA;
}
@media screen and (max-width: 768px) {
  .plan {
    padding: 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .plan {
    padding: 6.66vw 0;
  }
}

.plan-title {
  max-width: 474px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .plan-title {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .plan-title {
    width: 85%;
  }
}

.plan-text01 {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .plan-text01 {
    margin-top: 5vw;
  }
}

.plan-img {
  max-width: 620px;
  margin: 20px auto 0;
}
@media screen and (max-width: 600px) {
  .plan-img {
    margin-top: 3.33vw;
  }
}

.plan-text02 {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .plan-text02 {
    margin-top: 5vw;
  }
}

.plan-text03 {
  margin-top: 40px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .plan-text03 {
    margin-top: 6.66vw;
  }
}

.plan-texts {
  margin-top: 30px;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .plan-texts {
    margin-top: 5vw;
  }
}

.plan-text:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .plan-text:not(:first-child) {
    margin-top: 6.66vw;
  }
}
.plan-text:first-child span {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .plan-text:nth-child(3) {
    line-height: 48px;
  }
}
@media screen and (max-width: 600px) {
  .plan-text:nth-child(3) {
    line-height: 7vw;
  }
}
.plan-text:nth-child(3) span {
  background: linear-gradient(to bottom, #FFFF00 100%, #ffff00 100%);
}
.plan-text:last-child span {
  border-bottom: 1px solid #000;
}

.plan-example {
  max-width: 580px;
  margin: 30px auto 0;
}
@media screen and (max-width: 600px) {
  .plan-example {
    margin-top: 5vw;
  }
}

.result {
  padding: 60px 0 50px;
}
@media screen and (max-width: 600px) {
  .result {
    padding: 6.66vw 0;
  }
}

.result-title {
  max-width: 614px;
  margin: 0 auto;
}

.result-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .result-list {
    margin-top: 5vw;
  }
}

.result-item {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .result-item {
    width: 50%;
  }
}
.result-item:first-child {
  width: 480px;
}
@media screen and (max-width: 768px) {
  .result-item:first-child {
    width: 100%;
  }
}

.change {
  position: relative;
  padding: 55px 0 58px;
  background: url(../img/change-bg-pc.png) no-repeat center right/cover;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .change {
    background: url(../img/change-bg-pc.png) no-repeat;
    background-size: cover;
    background-position: center right 33%;
  }
}
@media screen and (max-width: 600px) {
  .change {
    padding: 6.66vw 0;
  }
}
.change::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.change-texts {
  margin-top: 45px;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .change-texts {
    margin-top: 5vw;
  }
}

.change-text {
  color: #fff;
  font-weight: 500;
}
.change-text:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .change-text:not(:first-child) {
    margin-top: 6.66vw;
  }
}
.change-text span {
  color: #000;
  background: linear-gradient(to bottom, #FFFF00 100%, #ffff00 100%);
}
@media screen and (max-width: 768px) {
  .change-text span {
    line-height: 48px;
  }
}
@media screen and (max-width: 600px) {
  .change-text span {
    line-height: 6.66vw;
  }
}

.change-bottom-img {
  max-width: 2000px;
  margin: 0 auto;
}

.reason {
  padding: 76px 0 63px;
  background: url(../img/reason-bg.png) no-repeat center center/cover;
  background-color: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .reason {
    padding: 60px 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .reason {
    padding: 6.66vw 0 7.2vw;
  }
}

.reason-title {
  max-width: 692px;
  margin: 0 auto;
}

.reason-list {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .reason-list {
    margin-top: 3.33vw;
  }
}

.reason-item {
  position: relative;
  padding-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .reason-item {
    padding-bottom: 9.66vw;
  }
}
.reason-item:not(:first-child) {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .reason-item:not(:first-child) {
    margin-top: 2.5vw;
  }
}
.reason-item:nth-child(2n) .reason-img {
  margin-left: auto;
}
.reason-item:nth-child(2n) .reason-text {
  left: 0;
}

.reason-img {
  width: 317px;
}
@media screen and (max-width: 600px) {
  .reason-img {
    width: 45%;
  }
}

.reason-text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 575px;
  padding: 25px 15px 10px 25px;
  background-color: #fff;
  box-shadow: 0 2px 5px gray;
  color: #1D205B;
  font-size: 29px;
  font-weight: bold;
  line-height: 38px;
}
@media screen and (max-width: 768px) {
  .reason-text {
    width: 500px;
    padding: 10px 15px 10px 10px;
    font-size: 26px;
    line-height: 35px;
  }
}
@media screen and (max-width: 600px) {
  .reason-text {
    width: 95%;
    padding: 2.7vw 1.66vw 2.3vw 2.7vw;
    font-size: 4.5vw;
    line-height: 5.5vw;
  }
}

.reason-number {
  font-size: 54px;
}
@media screen and (max-width: 768px) {
  .reason-number {
    font-size: 45px;
  }
}
@media screen and (max-width: 600px) {
  .reason-number {
    font-size: 6.66vw;
  }
}

.btn-area {
  margin-top: 55px;
}
@media screen and (max-width: 600px) {
  .btn-area {
    margin-top: 6.66vw;
  }
}

.voice {
  padding: 40px 0 70px;
  background-color: #1D205B;
}
@media screen and (max-width: 600px) {
  .voice {
    padding: 5vw 0 6.66vw;
  }
}

.voice-title {
  max-width: 436px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .voice-title {
    width: 70%;
  }
}

.voice-list {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .voice-list {
    display: none;
  }
}

.voice-list-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .voice-list-sp {
    display: block;
    margin-top: 3.33vw;
  }
}

.voice-item {
  display: flex;
  align-items: flex-start;
  padding: 30px 45px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .voice-item {
    flex-direction: column;
    align-items: center;
    padding: 25px 10px;
  }
}
@media screen and (max-width: 600px) {
  .voice-item {
    padding: 3.8vw 1.7vw 3.2vw;
  }
}
.voice-item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .voice-item:not(:first-child) {
    margin-top: 5vw;
  }
}

.voice-img {
  width: 197px;
}
@media screen and (max-width: 600px) {
  .voice-img {
    width: 40%;
    margin-top: 1.66vw;
  }
}

.voice-texts {
  width: calc(100% - 217px);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .voice-texts {
    width: 100%;
  }
}

.voice-subtitle {
  color: #1D205B;
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
}
@media screen and (max-width: 768px) {
  .voice-subtitle {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .voice-subtitle {
    font-size: 4.66vw;
    line-height: 5.33vw;
  }
}
.voice-subtitle .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .voice-subtitle .sp {
    display: block;
  }
}

.voice-tag {
  padding-bottom: 7px;
  margin-top: 15px;
  border-bottom: 3px solid #1D205B;
}
@media screen and (max-width: 600px) {
  .voice-tag {
    padding-bottom: 1.16vw;
    margin-top: 2.5vw;
    border-bottom: 0.5vw solid #1D205B;
  }
}
.voice-tag span {
  display: inline-block;
  padding: 3px 7px;
  background-color: #1D205B;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .voice-tag span {
    padding: 0.5vw 1.16vw;
  }
}

.voice-reason-text {
  margin-top: 10px;
  line-height: 27px;
}
@media screen and (max-width: 768px) {
  .voice-reason-text {
    line-height: 32px;
  }
}
@media screen and (max-width: 600px) {
  .voice-reason-text {
    margin-top: 1.66vw;
    line-height: 5.33vw;
  }
}

.voice-main-texts {
  margin-top: 17px;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .voice-main-texts {
    margin-top: 2.83vw;
  }
}

.voice-text:not(:first-child) {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .voice-text:not(:first-child) {
    margin-top: 5.83vw;
  }
}
.voice-text span {
  font-weight: 500;
}

.feature {
  padding: 60px 0;
  background: url(../img/reason-bg.png) no-repeat center center/cover;
  background-color: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .feature {
    padding: 40px 0;
  }
}
@media screen and (max-width: 600px) {
  .feature {
    padding: 6.66vw 0;
  }
}

.feature-title {
  max-width: 650px;
  margin: 0 auto;
}

.feature-list {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .feature-list {
    margin-top: 5vw;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border: 2px solid #1D205B;
}
@media screen and (max-width: 768px) {
  .feature-item {
    align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .feature-item {
    padding: 1.66vw;
  }
}
.feature-item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .feature-item:not(:first-child) {
    margin-top: 3.33vw;
  }
}

.feature-img {
  width: 204px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .feature-img {
    width: 143px;
  }
}
@media screen and (max-width: 600px) {
  .feature-img {
    width: 23.83vw;
  }
}

.feature-img02 {
  width: 100%;
  max-width: 193px;
}
@media screen and (max-width: 600px) {
  .feature-img02 {
    max-width: 32.16vw;
  }
}

.feature-img04 {
  width: 100%;
  max-width: 514px;
}
@media screen and (max-width: 768px) {
  .feature-img04 {
    max-width: 304px;
  }
}
@media screen and (max-width: 600px) {
  .feature-img04 {
    max-width: 50.66vw;
  }
}

.feature-img06 {
  width: 100%;
  max-width: 364px;
}
@media screen and (max-width: 600px) {
  .feature-img06 {
    max-width: 60.66vw;
  }
}

.feature-img08 {
  width: 100%;
  max-width: 377px;
}
@media screen and (max-width: 600px) {
  .feature-img08 {
    max-width: 62.83vw;
  }
}

.feature-img10 {
  width: 100%;
  max-width: 328px;
}
@media screen and (max-width: 600px) {
  .feature-img10 {
    max-width: 54.66vw;
  }
}

.feature-img12 {
  width: 100%;
  max-width: 417px;
}
@media screen and (max-width: 600px) {
  .feature-img12 {
    max-width: 69.5vw;
  }
}

.feature-texts {
  width: calc(100% - 229px);
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .feature-texts {
    width: 100%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .feature-texts {
    margin-left: 3.33vw;
  }
}

.feature-subtitle {
  padding-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .feature-subtitle {
    padding-bottom: 1.66vw;
  }
}

.feature-text {
  padding-top: 15px;
  border-top: 2px solid #1D205B;
}
@media screen and (max-width: 600px) {
  .feature-text {
    padding-top: 1.66vw;
    border-top: 0.33vw solid #1D205B;
  }
}

.yellow-arrow {
  width: 70%;
  max-width: 514px;
  margin: 15px auto 0;
}
@media screen and (max-width: 600px) {
  .yellow-arrow {
    margin-top: 2.5vw;
  }
}

.feature-bottom-area-pc {
  display: flex;
  margin-top: 15px;
}
@media screen and (max-width: 600px) {
  .feature-bottom-area-pc {
    display: none;
  }
}

.feature-bottom-area-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .feature-bottom-area-sp {
    display: block;
  }
}

.feature-bottom-left {
  width: calc(100% - 250px);
}

.feature-bottom-contents {
  display: flex;
  margin-top: 2.5vw;
}

.feature-bottom-title {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .feature-bottom-title {
    margin-top: 1.66vw;
  }
}

.feature-bottom-texts {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .feature-bottom-texts {
    margin-top: 0;
  }
}

.feature-bottom-text:last-child {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .feature-bottom-text:last-child {
    margin-top: 5vw;
  }
}
.feature-bottom-text span {
  font-weight: bold;
}

.feature-bottom-right {
  width: 240px;
  margin-left: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .feature-bottom-right {
    width: 30%;
    margin-left: auto;
  }
}

.step {
  padding: 55px 0;
  background-color: #FFFFEA;
}
@media screen and (max-width: 600px) {
  .step {
    padding: 6.66vw 0;
  }
}

.step-title {
  width: 100%;
  max-width: 382px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .step-title {
    width: 70%;
  }
}

.step-text {
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .step-text {
    margin-top: 4.16vw;
  }
}
.step-text .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .step-text .sp {
    display: block;
  }
}

.step-list {
  display: flex;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .step-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .step-list {
    margin-top: 5vw;
  }
}

.step-item {
  position: relative;
  width: 33.3333333333%;
  padding-top: 30px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .step-item {
    width: 100%;
    padding-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .step-item {
    padding-top: 3.33vw;
    padding-left: 1.66vw;
  }
}
.step-item:not(:first-child) {
  margin-left: 17px;
}
@media screen and (max-width: 768px) {
  .step-item:not(:first-child) {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 600px) {
  .step-item:not(:first-child) {
    margin-top: 5vw auto 0;
  }
}
.step-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  height: 100%;
  background: url(../img/step-border.png) no-repeat center center/contain;
}
@media screen and (max-width: 600px) {
  .step-item::before {
    width: 3.16vw;
  }
}
.step-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 49px;
  height: 13px;
}
@media screen and (max-width: 768px) {
  .step-item::after {
    width: 70px;
    height: 16px;
  }
}
@media screen and (max-width: 600px) {
  .step-item::after {
    width: 11.66vw;
    height: 2.66vw;
  }
}
.step-item:nth-child(1)::after {
  background: url(../img/step01.png) no-repeat center center/contain;
}
.step-item:nth-child(1) .step-item-title {
  width: 90%;
}
@media screen and (max-width: 768px) {
  .step-item:nth-child(1) .step-item-title {
    max-width: 370px;
  }
}
@media screen and (max-width: 600px) {
  .step-item:nth-child(1) .step-item-title {
    max-width: 61.66vw;
  }
}
.step-item:nth-child(2)::after {
  background: url(../img/step02.png) no-repeat center center/contain;
}
.step-item:nth-child(2) .step-item-title {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .step-item:nth-child(2) .step-item-title {
    max-width: 267px;
  }
}
@media screen and (max-width: 600px) {
  .step-item:nth-child(2) .step-item-title {
    max-width: 44.5vw;
  }
}
.step-item:nth-child(3)::after {
  background: url(../img/step03.png) no-repeat center center/contain;
}
.step-item:nth-child(3) .step-item-title {
  width: 88%;
}
@media screen and (max-width: 768px) {
  .step-item:nth-child(3) .step-item-title {
    max-width: 360px;
  }
}
@media screen and (max-width: 600px) {
  .step-item:nth-child(3) .step-item-title {
    max-width: 60vw;
  }
}

.step-item-title {
  width: 100%;
  margin: 0 auto;
}

.step-item-img {
  width: 90%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .step-item-img {
    margin-top: 10px;
  }
}
@media screen and (max-width: 600px) {
  .step-item-img {
    margin-top: 1.66vw;
  }
}

.step-item-texts {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .step-item-texts {
    margin-top: 15px;
  }
}
@media screen and (max-width: 600px) {
  .step-item-texts {
    margin-top: 2.5vw;
  }
}

.step-item-text:last-child {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .step-item-text:last-child {
    margin-top: 5vw;
  }
}

.effect {
  padding: 50px 0 60px;
  background: url(../img/effect-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 600px) {
  .effect {
    padding: 6.66vw 0;
  }
}

.effect-title {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.effect-top-img {
  margin-top: 25px;
}
@media screen and (max-width: 600px) {
  .effect-top-img {
    margin-top: 5vw;
  }
}

.effect-people-img {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .effect-people-img {
    margin-top: 3.33vw;
  }
}

.effect-subtitle {
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  margin-top: -40px;
}
@media screen and (max-width: 600px) {
  .effect-subtitle {
    margin-top: -6.66vw;
  }
}

.effect-btn-area {
  margin-top: 3.33vw;
}

@media screen and (max-width: 600px) {
  .effect-arrow {
    display: none;
  }
}

.schedule {
  padding: 60px 0;
  background: url(../img/schedule-bg.png) repeat center center/auto;
}
@media screen and (max-width: 600px) {
  .schedule {
    padding: 6.66vw 0;
  }
}

.schedule-title {
  position: relative;
  padding-bottom: 36px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .schedule-title {
    padding-bottom: 30px;
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .schedule-title {
    padding-bottom: 5vw;
    font-size: 6.66vw;
  }
}
.schedule-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 4px;
  background-color: #fff;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .schedule-title::after {
    width: 16.66vw;
    height: 0.66vw;
  }
}

.schedule-contents {
  padding: 45px 0 55px;
  margin-top: 40px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .schedule-contents {
    padding: 30px 0 40px;
    margin-top: 26px;
  }
}
@media screen and (max-width: 600px) {
  .schedule-contents {
    padding: 5vw 0 6.66vw;
    margin-top: 4.33vw;
  }
}

.schedule-contents-inner {
  padding: 0;
}

.schedule-subtitle {
  width: 95%;
  margin: 0 auto;
  background: url(../img/schedule-bg.png) repeat center center/auto;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  line-height: 60px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .schedule-subtitle {
    font-size: 6.33vw;
    line-height: 10vw;
  }
}

.hold-text {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hold-text {
    margin-top: 25px;
  }
}
@media screen and (max-width: 600px) {
  .hold-text {
    margin-top: 4.16vw;
  }
}
.hold-text .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .hold-text .sp {
    display: block;
  }
}

.schedule-days-wrap {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .schedule-days-wrap {
    margin-top: 3.33vw;
  }
}
.schedule-days-wrap:last-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .schedule-days-wrap:last-of-type {
    margin-top: 6.66vw;
  }
}

.schedule-days-title {
  position: relative;
  display: block;
  padding-bottom: 5px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .schedule-days-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .schedule-days-title {
    padding-bottom: 0.83vw;
    font-size: 5vw;
  }
}
.schedule-days-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 153px;
  height: 2px;
  background-color: #1D205B;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .schedule-days-title::after {
    width: 25.5vw;
    height: 0.33vw;
  }
}

.schedule-days-list {
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .schedule-days-list {
    margin-top: 3.33vw;
  }
}

.schedule-area {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .schedule-area {
    margin-top: 50px;
  }
}
@media screen and (max-width: 600px) {
  .schedule-area {
    margin-top: 8.33vw;
  }
}


.schedule-content {
  font-size: 19px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .schedule-content {
    width: 100%;
    padding-right: 0;
    height: 60px;
    font-size: 27px;
    line-height: 60px;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .schedule-content {
    height: 10vw;
    font-size: 4.5vw;
    line-height: 10vw;
  }
}

.attention-list {
  margin-top: 27px;
}
@media screen and (max-width: 600px) {
  .attention-list {
    margin-top: 4.5vw;
  }
}

.attention-item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .attention-item:not(:first-child) {
    margin-top: 1.66vw;
  }
}
.attention-item span {
  color: #E80000;
}

.place-contents, .price-contents, .bring-contents {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .place-contents, .price-contents, .bring-contents {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .place-contents, .price-contents, .bring-contents {
    margin-top: 5vw;
  }
}

.place-text {
  text-align: center;
}
.place-text:first-child {
  position: relative;
  padding-bottom: 5px;
  font-size: 35px;
}
@media screen and (max-width: 600px) {
  .place-text:first-child {
    padding-bottom: 0.833vw;
    font-size: 5.83vw;
  }
}
.place-text:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 350px;
  height: 2px;
  background-color: #1D205B;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .place-text:first-child::after {
    width: 58.33vw;
    height: 0.33vw;
  }
}
.place-text:last-child {
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .place-text:last-child {
    margin-top: 3.33vw;
  }
}

.access-map {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .access-map {
    margin-top: 3.33vw;
  }
}

.iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 52.8947368421%;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.price-total {
  text-align: center;
}

.bring-contents {
  display: flex;
}
@media screen and (max-width: 768px) {
  .bring-contents {
    flex-direction: column;
  }
}

.bring-item {
  width: 370px;
  border: 1px solid #1D205B;
}
@media screen and (max-width: 768px) {
  .bring-item {
    width: 100%;
  }
}
.bring-item:last-child {
  margin-left: 22px;
}
@media screen and (max-width: 768px) {
  .bring-item:last-child {
    margin-top: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .bring-item:last-child {
    margin-top: 3.33vw;
  }
}

.bring-parent {
  height: 53px;
  background-color: #1D205B;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  line-height: 53px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .bring-parent {
    height: 8.83vw;
    font-size: 5.33vw;
    line-height: 8.83vw;
  }
}

.bring-child {
  padding: 15px;
  margin-top: 2px;
}
@media screen and (max-width: 600px) {
  .bring-child {
    padding: 2.5vw;
    margin-top: 0.33vw;
  }
}

.bring-child-text:first-child {
  color: #1D205B;
  font-size: 23px;
  font-weight: bold;
  line-height: 31px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bring-child-text:first-child {
    font-size: 30px;
    line-height: 37px;
  }
}
@media screen and (max-width: 600px) {
  .bring-child-text:first-child {
    font-size: 5vw;
    line-height: 6.16vw;
  }
}
.bring-child-text:last-child {
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .bring-child-text:last-child {
    margin-top: 1.66vw;
  }
}

.attempt {
  padding: 50px 0 30px;
  background-color: #F4F4F4;
}
@media screen and (max-width: 600px) {
  .attempt {
    padding: 6.66vw 0;
  }
}

.attempt-title {
  position: relative;
  padding-bottom: 36px;
  color: #1D205B;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .attempt-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media screen and (max-width: 600px) {
  .attempt-title {
    padding-bottom: 5vw;
    font-size: 6.66vw;
    line-height: 8.33vw;
  }
}
.attempt-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 4px;
  background-color: #1D205B;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .attempt-title::after {
    height: 0.66vw;
  }
}

.attempt-text {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .attempt-text {
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .attempt-text {
    margin-top: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .attempt-text br {
    display: none;
  }
}

.attempt-img {
  width: 100%;
  max-width: 639px;
  margin: 27px auto 0;
}
@media screen and (max-width: 600px) {
  .attempt-img {
    margin-top: 4.7vw;
  }
}

.summary {
  padding: 50px 0;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .summary {
    padding: 6.66vw 0;
  }
}

.summary-title {
  width: 100%;
  max-width: 173px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .summary-title {
    width: 35%;
  }
}

.summary-img {
  width: 100%;
  margin-top: 28px;
}
@media screen and (max-width: 600px) {
  .summary-img {
    margin-top: 4.7vw;
  }
}

.summary-texts {
  margin-top: 40px;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .summary-texts {
    margin-top: 5vw;
  }
}

.summary-text:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .summary-text:not(:first-child) {
    margin-top: 5vw;
  }
}
.summary-text:nth-child(2) span {
  background: linear-gradient(to bottom, #FFFF00 100%, #ffff00 100%);
}

.cta {
  padding: 55px 0;
  background: url(../img/cta-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 600px) {
  .cta {
    padding: 6.66vw 0;
  }
}

.cta-btn-area {
  margin-top: 0;
}

.cta-title {
  margin-top: 0;
}

.cta-btn {
  margin-top: 0;
}

.contact {
  padding: 66px 0 24px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 40px 0 24px;
  }
}
@media screen and (max-width: 600px) {
  .contact {
    padding: 6.66vw 0;
  }
}

.contact-title {
  width: 100%;
  max-width: 233px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .contact-title {
    width: 40%;
  }
}

.contact-text {
  margin-top: 22px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .contact-text {
    margin-top: 3.66vw;
  }
}
.contact-text br {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact-text br {
    display: block;
  }
}

.contact-contents {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .contact-contents {
    margin-top: 5.2vw;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  height: 70px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact-item {
    height: auto;
    padding: 10px 0;
  }
}
@media screen and (max-width: 600px) {
  .contact-item {
    align-items: flex-start;
    padding: 1.66vw 0;
  }
}
.contact-item:nth-child(2n) {
  background-color: #F7F7F7;
}

.contact-item-parent {
  width: 250px;
  padding-left: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .contact-item-parent {
    width: 220px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 600px) {
  .contact-item-parent {
    width: 36.66vw;
    padding-left: 2.5vw;
  }
}

.contact-item-child {
  width: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
  .contact-item-child {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 600px) {
  .contact-item-child {
    width: calc(100% - 100px);
  }
}
.contact-item-child .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact-item-child .sp {
    display: block;
  }
}

.link {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .link {
    margin-top: 5vw;
  }
}

.link-item {
  position: relative;
}
.link-item:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 1px;
  height: 100%;
  background-color: #000;
  transform: translateY(-50%);
}
.link-item:last-child {
  margin-left: 20px;
}

.footer {
  padding: 28px 0;
  background-color: #201963;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 15px 0;
  }
}