html {
  font-size: 100%;
  color: #333333;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #333333;
  display: inline-block;
}

li {
  list-style: none;
}

section {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  section {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 500px) {
  section {
    margin-bottom: 80px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 500px) {
  .container {
    padding: 0 10px;
  }
}

.section-ttl {
  text-align: center;
  line-height: 1;
  margin-bottom: 80px;
}
@media screen and (max-width: 500px) {
  .section-ttl {
    margin-bottom: 0;
  }
}
.section-ttl .section-ttl-en {
  font-size: 120px;
  font-weight: bold;
  letter-spacing: 0.5rem;
  color: rgba(100, 85, 82, 0.2);
}
@media screen and (max-width: 500px) {
  .section-ttl .section-ttl-en {
    font-size: 88px;
    letter-spacing: 0;
  }
}
.section-ttl .section-ttl-jp {
  font-size: 30px;
  color: #645552;
  margin-top: -50px;
}
@media screen and (max-width: 500px) {
  .section-ttl .section-ttl-jp {
    font-size: 18px;
    margin-top: -40px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

header h1 {
  margin: 15px 0;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  header h1 {
    margin: 10px 0;
  }
}
header h1 img {
  height: 70px;
}
@media screen and (max-width: 768px) {
  header h1 img {
    height: 50px;
  }
}

.fv {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 500px) {
  .fv {
    margin-bottom: 80px;
  }
}
.fv .bg-img {
  position: relative;
  height: calc(100Vh - 110px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .fv .bg-img {
    height: calc(100Vh - 70px);
  }
}
.fv .bg-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/mv.png);
  background-position: center;
  background-size: cover;
  opacity: 0.7;
  z-index: -1;
}
@media screen and (max-width: 500px) {
  .fv .bg-img::before {
    background-image: url(../img/mv-sp.png);
  }
}
.fv .bg-img .container {
  text-align: center;
}
.fv .bg-img .container h2,
.fv .bg-img .container img,
.fv .bg-img .container h3 {
  z-index: 1;
}
.fv .bg-img .container h2 {
  text-align: center;
  font-size: 88px;
  color: #372B28;
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  line-height: 6.5rem;
  letter-spacing: 0.5rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .fv .bg-img .container h2 {
    font-size: 44px;
    letter-spacing: 0.2rem;
    line-height: 1;
  }
}
.fv .bg-img .container h3 {
  font-size: 36px;
  color: #372B28;
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .fv .bg-img .container h3 {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 500px) {
  .fv .bg-img .container h3 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fv .bg-img .container img {
    scale: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .fv .bg-img .container img {
    scale: 1;
  }
}

.campaign {
  padding: 0 30px;
}
@media screen and (max-width: 500px) {
  .campaign {
    padding: 0 10px;
  }
}

.campaign-contents {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 150px;
  border: 5px solid #FFC300;
  padding: 50px;
  position: relative;
  color: #645552;
  background-color: rgba(246, 240, 226, 0.5);
}
@media screen and (max-width: 768px) {
  .campaign-contents {
    padding: 50px 30px;
  }
}
.campaign-contents::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid #FFC300;
  z-index: -1;
}
.campaign-contents .campaign-ttl {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .campaign-contents .campaign-ttl {
    font-size: 32px;
  }
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-ttl {
    font-size: 24px;
  }
}
.campaign-contents .campaign-ttl .br-sp {
  display: none;
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-ttl .br-sp {
    display: block;
  }
}
.campaign-contents .campaign-itm .item-name {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.campaign-contents .campaign-itm .item-name p {
  font-size: 32px;
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-itm .item-name p {
    font-size: 18px;
  }
}
.campaign-contents .campaign-itm .item-name span {
  flex-grow: 1;
  height: 3px;
  background-color: #FFC300;
  margin-left: 30px;
}
.campaign-contents .campaign-itm .campaign-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 20%;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .campaign-contents .campaign-itm .campaign-price {
    margin: 0 15%;
  }
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-itm .campaign-price {
    margin: 0 10%;
  }
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-itm .campaign-price .usually {
    font-size: 12px;
  }
}
.campaign-contents .campaign-itm .campaign-price .regular-price {
  font-size: 32px;
  margin-left: 10px;
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-itm .campaign-price .regular-price {
    font-size: 18px;
    margin-left: 5px;
  }
}
.campaign-contents .campaign-itm .campaign-price .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #d9d9d9;
  border-width: 15px 0px 15px 25.98px;
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-itm .campaign-price .triangle {
    border-width: 10px 0px 10px 15.98px;
  }
}
.campaign-contents .campaign-itm .campaign-price .discount {
  font-size: 88px;
  color: #F34B21;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-itm .campaign-price .discount {
    font-size: 48px;
  }
}
.campaign-contents .campaign-itm .campaign-price .yen {
  font-size: 48px;
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-itm .campaign-price .yen {
    font-size: 24px;
  }
}
.campaign-contents .campaign-itm .campaign-price .percent {
  font-size: 48px;
  margin-right: 20px;
}
@media screen and (max-width: 500px) {
  .campaign-contents .campaign-itm .campaign-price .percent {
    font-size: 24px;
  }
}
.campaign-contents .campaign-itm .first-month-fee {
  justify-content: center;
}
.campaign-contents .notes {
  margin-top: 50px;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .campaign-contents .notes {
    margin-top: 30px;
    font-size: 10px;
  }
}

.problem {
  margin-bottom: 0;
  background-color: rgba(100, 85, 82, 0.3);
}
.problem .container {
  width: 100%;
  min-height: 550px;
  display: grid;
  grid-template-rows: 70px 400px;
  grid-template-columns: 50% 1fr;
  padding: 80px 50px 0 50px;
}
@media screen and (max-width: 768px) {
  .problem .container {
    min-height: 650px;
    grid-template-rows: 50px 1fr 200px;
    grid-template-columns: 1fr;
    padding: 30px 20px 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .problem .container {
    min-height: 550px;
    grid-template-rows: 1fr 50% 200px;
  }
}
.problem .container .problem-ttl {
  grid-row: 1/2;
  grid-column: 1/3;
  font-size: 36px;
  color: #372B28;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .problem .container .problem-ttl {
    grid-row: 1/2;
    grid-column: 1/1;
    text-align: center;
    font-size: 24px;
  }
}
.problem .container img {
  grid-row: 2/3;
  grid-column: 1/2;
  height: 300px;
  align-self: end;
  justify-self: center;
}
@media screen and (max-width: 768px) {
  .problem .container img {
    grid-row: 3/4;
    grid-column: 1/1;
    height: 200px;
  }
}
.problem .container .problem-right {
  grid-row: 2/3;
  grid-column: 2/3;
}
@media screen and (max-width: 768px) {
  .problem .container .problem-right {
    grid-row: 2/3;
    grid-column: 1/1;
    align-self: center;
  }
}
.problem .container .problem-item {
  padding: 15px 30px;
  margin-bottom: 20px;
  background-color: #E5F2EF;
  border-radius: 20px/30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .problem .container .problem-item {
    margin: 0 80px 20px 80px;
  }
}
@media screen and (max-width: 500px) {
  .problem .container .problem-item {
    margin: 0 0 20px 0;
    padding: 10px 20px;
    font-size: 12px;
  }
}
.problem .container .problem-item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #e5f2ef transparent transparent;
  border-width: 11px 34px 6px 0px;
  position: absolute;
  bottom: 7px;
  left: -25px;
  transform: rotate(-30deg);
}
@media screen and (max-width: 768px) {
  .problem .container .problem-item::before {
    border-color: #e5f2ef transparent transparent transparent;
    border-width: 20px 0px 0px 30px;
    bottom: -13px;
    left: 15%;
    transform: rotate(-10deg);
  }
}

.solution {
  background-image: url(../img/triangle-1.png);
  background-position: center bottom;
  background-size: 100%;
  text-align: center;
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .solution {
    background-size: 120%;
  }
}
@media screen and (max-width: 500px) {
  .solution {
    background-size: 120%;
    padding: 30px 0;
    margin-bottom: 30px;
  }
}
.solution .solution-ttl {
  font-size: 36px;
  margin-bottom: 80px;
}
@media screen and (max-width: 500px) {
  .solution .solution-ttl {
    font-size: 20px;
    margin-bottom: 40px;
    background-size: 120%;
  }
}
@media screen and (max-width: 500px) {
  .solution .solution-text {
    font-size: 12px;
  }
}

.point .point-wrapper .point-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 500px) {
  .point .point-wrapper .point-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.point .point-wrapper .point-item .point-img {
  position: relative;
  width: 48%;
  height: 280px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 500px) {
  .point .point-wrapper .point-item .point-img {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.point .point-wrapper .point-item .point-img .point-photo {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.point .point-wrapper .point-item .point-img .point-no {
  position: absolute;
  top: -50px;
  left: 15px;
}
@media screen and (max-width: 500px) {
  .point .point-wrapper .point-item .point-img .point-no {
    scale: 0.7;
    left: -15px;
  }
}
.point .point-wrapper .point-item .point-content {
  width: 48%;
}
@media screen and (max-width: 500px) {
  .point .point-wrapper .point-item .point-content {
    width: 100%;
  }
}
.point .point-wrapper .point-item .point-content .point-heading {
  font-size: 28px;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .point .point-wrapper .point-item .point-content .point-heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .point .point-wrapper .point-item .point-content .point-text {
    font-size: 12px;
  }
}
.point .point-wrapper .point1 {
  margin-top: 50px;
}
@media screen and (max-width: 500px) {
  .point .point-wrapper .point2 .point-img,
  .point .point-wrapper .point4 .point-img {
    order: 1;
  }
  .point .point-wrapper .point2 .point-content,
  .point .point-wrapper .point4 .point-content {
    order: 2;
  }
}

.voice .container {
  background-image: url(../img/voice-bg.png);
  padding: 100px 50px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 500px) {
  .voice .container {
    padding: 50px 0;
  }
}
@media screen and (max-width: 500px) {
  .voice .container .section-ttl {
    margin-bottom: 30px;
  }
}
.voice .container .voice-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  position: relative;
}
.voice .container .voice-items .voice-item {
  width: 48%;
  border: 3px solid #8B8B8B;
  border-radius: 50px;
  padding: 50px;
  background-color: #FFF;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 890px) {
  .voice .container .voice-items .voice-item {
    width: 100%;
    margin: 0;
    padding: 30px 50px;
  }
}
@media screen and (max-width: 500px) {
  .voice .container .voice-items .voice-item {
    width: 100%;
    padding: 30px 20px;
    margin: 0 15px 30px 15px;
  }
}
.voice .container .voice-items .voice-item .personal {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
@media (max-width: 890px) {
  .voice .container .voice-items .voice-item .personal {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .voice .container .voice-items .voice-item .personal {
    margin-bottom: 20px;
  }
}
.voice .container .voice-items .voice-item .personal img {
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #E9D8D8;
  height: 140px;
  margin-right: 30px;
}
@media screen and (max-width: 500px) {
  .voice .container .voice-items .voice-item .personal img {
    margin-right: 10px;
    height: 100px;
  }
}
.voice .container .voice-items .voice-item .personal .personal-detail {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 500px) {
  .voice .container .voice-items .voice-item .personal .personal-detail {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .voice .container .voice-items .voice-item .voice-text {
    font-size: 14px;
  }
}
.voice .container .voice-items .slick-dots {
  bottom: 10px;
}

@media screen and (max-width: 500px) {
  .price .section-ttl {
    margin-bottom: 50px;
  }
}
.price .price-plan {
  display: flex;
  justify-content: space-between;
}
.price .price-plan .plan-item {
  width: 31%;
  padding: 50px 20px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, rgba(240, 128, 127, 0.3) 0%, rgba(255, 105, 179, 0.3) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .price .price-plan .plan-item {
    width: 33.3%;
    padding: 20px 5px;
    margin-bottom: 10px;
    box-shadow: none;
    border-right: 1px solid #FFF;
  }
}
.price .price-plan .plan-item .plan-upper .rank {
  font-size: 32px;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .price .price-plan .plan-item .plan-upper .rank {
    font-size: 18px;
  }
}
.price .price-plan .plan-item .plan-upper .bronze {
  color: #AC6B25;
}
.price .price-plan .plan-item .plan-upper .silver {
  color: #8B8B8B;
}
.price .price-plan .plan-item .plan-upper .gold {
  color: #DAA521;
}
.price .price-plan .plan-item .plan-upper .times {
  background-color: #FFF;
  padding: 5px 30px;
  font-size: 20px;
  border-radius: 999px;
}
@media screen and (max-width: 500px) {
  .price .price-plan .plan-item .plan-upper .times {
    background-color: transparent;
    font-size: 16px;
    padding: 0;
  }
}
.price .price-plan .plan-item .plan-upper .plan-detail {
  margin-top: 30px;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .price .price-plan .plan-item .plan-upper .plan-detail {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .price .price-plan .plan-item .plan-lower {
    margin-top: 20px;
  }
}
.price .price-plan .plan-item .plan-lower .price {
  font-size: 36px;
  color: #F34B21;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .price .price-plan .plan-item .plan-lower .price {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.price .price-plan .plan-item .plan-lower .price .yen {
  font-size: 20px;
  margin-left: 5px;
}
@media screen and (max-width: 500px) {
  .price .price-plan .plan-item .plan-lower .price .yen {
    font-size: 14px;
  }
}
.price .price-plan .plan-item .plan-lower .price-time {
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .price .price-plan .plan-item .plan-lower .price-time {
    font-size: 12px;
  }
}
.price .tax {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .price .tax {
    font-size: 12px;
  }
}

.flow {
  position: relative;
}
@media screen and (max-width: 500px) {
  .flow {
    background: #FFF;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(238, 174, 202, 0.5) 95%, rgb(255, 255, 255) 100%);
  }
}
@media screen and (max-width: 500px) {
  .flow .section-ttl {
    margin-bottom: 50px;
  }
}
.flow .flow-wrapper {
  display: flex;
  z-index: 10;
}
.flow .flow-wrapper .flow-left {
  width: 40%;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 150px;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .flow .flow-wrapper .flow-left {
    display: none;
  }
}
.flow .flow-wrapper .flow-left .flow-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.flow .flow-wrapper .flow-left .flow-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
}
.flow .flow-wrapper .flow-left .flow-img img.active {
  opacity: 1;
}
.flow .flow-wrapper .flow-right {
  width: 60%;
}
@media screen and (max-width: 500px) {
  .flow .flow-wrapper .flow-right {
    width: 100%;
  }
}
.flow .flow-wrapper .flow-right .flow-item {
  margin: 0 30px 50px 50px;
  padding: 30px 60px 30px 60px;
  background-color: #E5F2EF;
  border-radius: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow .flow-wrapper .flow-right .flow-item {
    margin: 0 0 50px 10px;
    padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  .flow .flow-wrapper .flow-right .flow-item {
    margin: 0 0 50px 0;
    padding: 20px;
  }
}
.flow .flow-wrapper .flow-right .flow-item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #e5f2ef transparent transparent transparent;
  border-width: 30px 100px 0px 100px;
}
.flow .flow-wrapper .flow-right .flow-item:last-child::after {
  display: none;
}
.flow .flow-wrapper .flow-right .flow-item .step-no {
  font-size: 14px;
}
.flow .flow-wrapper .flow-right .flow-item .step-ttl {
  font-size: 18px;
  margin-bottom: 10px;
}
.flow .flow-wrapper .flow-right .flow-item .step-text {
  font-size: 14px;
}

@media screen and (max-width: 500px) {
  .faq .section-ttl {
    margin-bottom: 50px;
  }
}
.faq .faq-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.faq .faq-wrapper .faq-img {
  width: 48%;
  position: sticky;
  top: 50px;
}
@media screen and (max-width: 500px) {
  .faq .faq-wrapper .faq-img {
    display: none;
  }
}
.faq .faq-wrapper .faq-items {
  width: 47%;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  .faq .faq-wrapper .faq-items {
    width: 100%;
  }
}
.faq .faq-wrapper .faq-items .details-summary summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #A6C9C3;
  cursor: pointer;
}
.faq .faq-wrapper .faq-items .details-summary summary::-webkit-details-marker {
  display: none;
}
.faq .faq-wrapper .faq-items .details-summary summary::before {
  content: "Q";
  margin-right: 20px;
  font-size: 20px;
  color: #F0807F;
}
.faq .faq-wrapper .faq-items .details-summary summary::after {
  content: "";
  height: 10px;
  width: 10px;
  border-bottom: 3px solid #A6C9C3;
  border-right: 3px solid #A6C9C3;
  transform: translateY(-25%) rotate(45deg);
  transition: transform 0.3s;
  margin-left: auto;
}
.faq .faq-wrapper .faq-items .details-summary p {
  display: flex;
  justify-content: space-between;
  transform: translateY(-10px);
  padding: 10px 20px;
  margin-bottom: 10px;
  transition: transform 1s, opacity 0.5s;
}
.faq .faq-wrapper .faq-items .details-summary p::before {
  content: "A";
  margin-right: 20px;
  font-size: 20px;
  color: #FFC300;
}
.faq .faq-wrapper .faq-items .details-summary[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.access .access-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .access .access-wrapper {
    flex-direction: column;
  }
}
.access .access-wrapper .map {
  width: 60%;
  height: 400px;
  z-index: 10;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .access .access-wrapper .map {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 500px) {
  .access .access-wrapper .map {
    height: 300px;
    margin-top: 50px;
  }
}
.access .access-wrapper .map iframe {
  width: 100%;
  height: 100%;
}
.access .access-wrapper .info {
  width: 60%;
  padding: 200px 10% 150px 20%;
  background-color: rgba(246, 240, 226, 0.5);
  margin-left: -200px;
}
@media screen and (max-width: 768px) {
  .access .access-wrapper .info {
    width: calc(100% - 100px);
    margin-left: 100px;
    padding: 30px;
  }
}
@media screen and (max-width: 500px) {
  .access .access-wrapper .info {
    width: calc(100% - 40px);
    margin-left: 40px;
  }
}
.access .access-wrapper .info .info-content .logo {
  max-height: 50px;
  margin: 0 0 30px 10px;
}
@media screen and (max-width: 500px) {
  .access .access-wrapper .info .info-content .logo {
    height: 30px;
    margin-bottom: 20px;
  }
}
.access .access-wrapper .info .info-content .address {
  margin: 0 0 20px 10px;
}
@media screen and (max-width: 500px) {
  .access .access-wrapper .info .info-content .address {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.access .access-wrapper .info .info-content .station {
  margin: 0 0 50px 10px;
}
@media screen and (max-width: 500px) {
  .access .access-wrapper .info .info-content .station {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.access .access-wrapper .info .info-content .sns img {
  margin: 0 20px 0 10px;
}
@media screen and (max-width: 500px) {
  .access .access-wrapper .info .info-content .sns img {
    scale: 0.7;
    margin-right: 0;
  }
}

footer {
  background-color: #E8D8D8;
  text-align: center;
  padding-bottom: 130px;
}
@media screen and (max-width: 500px) {
  footer {
    padding-bottom: 100px;
  }
}
footer .cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-bottom: 10px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .cta p {
  position: relative;
  color: #F34B21;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: bolder;
}
@media screen and (max-width: 500px) {
  footer .cta p {
    font-size: 10px;
  }
}
footer .cta p::before {
  content: "";
  height: 50px;
  width: 1px;
  background-color: #F34B21;
  position: absolute;
  top: 0;
  left: -30px;
  transform: rotate(-30deg);
}
@media screen and (max-width: 500px) {
  footer .cta p::before {
    height: 35px;
    left: -20px;
  }
}
footer .cta p::after {
  content: "";
  height: 50px;
  width: 1px;
  background-color: #F34B21;
  position: absolute;
  top: 0;
  right: -30px;
  transform: rotate(30deg);
}
@media screen and (max-width: 500px) {
  footer .cta p::after {
    height: 35px;
    right: -20px;
  }
}
footer .cta a {
  display: block;
  background: #64D441;
  background: linear-gradient(180deg, rgb(100, 212, 65) 0%, rgb(52, 110, 34) 100%);
  border-radius: 20px;
  padding: 10px 200px;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  footer .cta a {
    padding: 10px 100px;
  }
}
@media screen and (max-width: 500px) {
  footer .cta a {
    padding: 5px 50px;
    font-size: 10px;
  }
}
footer .cta a span {
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  footer .cta a span {
    font-size: 14px;
  }
}
footer img {
  height: 80px;
}
@media screen and (max-width: 500px) {
  footer img {
    height: 50px;
  }
}
footer .copyright {
  font-size: 12px;
}
@media screen and (max-width: 500px) {
  footer .copyright {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */