@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  color: #222;
  background-color: #fff;
  font-family: 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: .05em;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  h1,
  h2,
  h3,
  h4 {
    font-size: 1.4rem;
  }
}

table {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.8;
}

p,
li {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  p,
  li {
    font-size: 1.6rem;
  }
}

a {
  color: #333;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: #333;
    text-decoration: none;
  }
}

small {
  font-size: 0.8em;
}

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

input,
button,
textarea {
  font-family: 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  border: none;
  padding: 0 16px;
  height: 3em;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #E2E2E2;
}

@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    font-size: 1.3rem;
  }
}

textarea {
  border: none;
  padding: 16px;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #E2E2E2;
}

@media screen and (max-width: 767px) {
  textarea {
    font-size: 1.3rem;
  }
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="checkbox"] {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

hr {
  margin: 0;
  border: none;
  background-color: #E2E2E2;
  height: 1px;
}

button {
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1140px;
  }
}

.footerGlobal {
  background: radial-gradient(circle at 50% 0%, white 0%, #d6e9f2 100%);
  padding: 20px 20px;
}

@media screen and (min-width: 768px) {
  .footerGlobal {
    text-align: center;
    padding: 28px 0;
  }
}

.footerGlobal.-white {
  background: #fff;
}

.footerGlobal p {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .footerGlobal p {
    font-size: 1.1rem;
    margin-top: 14px;
  }
}

@media screen and (min-width: 768px) {
  .footerGlobal img {
    position: absolute;
    left: 20px;
  }
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .wrapper {
    width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal .modal-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.8);
}

.modal .modal-movie {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 960px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal .modal-movie-close {
  position: absolute;
  top: -40px;
  right: 20px;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (min-width: 768px) {
  .modal .modal-movie-close:hover {
    opacity: .7;
  }
}

.modal .modal-movie-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.modal .modal-movie-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.topMV {
  background: radial-gradient(circle at 50% 0%, white 0%, #d6e9f2 100%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

.topMV-logo {
  position: absolute;
  left: 20px;
  top: 20px;
}

@media screen and (min-width: 768px) {
  .topMV-logo {
    top: 30px;
  }
}

.topMV-pc {
  height: 750px;
}

.topMV-pc h1 {
  padding-top: 280px;
}

.topMV-pc h1 span {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.-start .topMV-pc h1 span {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.topMV-pc h1 span + span {
  margin-top: 20px;
}

.topMV-pc h1 span:nth-child(1) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

.topMV-pc h1 span:nth-child(2) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.topMV-pc figure img {
  height: 184px;
}

.topMV-pc figure span {
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translateX(110vw);
  transform: translateX(110vw);
}

.-start .topMV-pc figure span {
  -webkit-transform: translateX(0vw);
  transform: translateX(0vw);
}

.topMV-pc figure span:nth-child(1) {
  top: 80px;
  left: 515px;
}

.topMV-pc figure span:nth-child(2) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  top: 283px;
  left: 420px;
}

.topMV-pc figure span:nth-child(3) {
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
  top: 487px;
  left: 325px;
}

.topMV-sp {
  padding: 0 0 40px 0;
}

.topMV-sp h1 {
  margin: 40px 20px 0;
  max-width: 330px;
}

.topMV-sp h1 span {
  display: block;
}

.topMV-sp h1 span + span {
  margin-top: 15px;
  margin-left: -3px;
}

.topMV-sp figure {
  padding-top: 80px;
}

.topMV-sp figure img {
  width: 115vw;
  max-width: initial;
}

.topMV-sp figure span {
  display: block;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.topMV-sp figure span + span {
  margin-top: 15px;
}

.-start .topMV-sp figure span:nth-child(1), .-start
.topMV-sp figure span:nth-child(2), .-start
.topMV-sp figure span:nth-child(3) {
  -webkit-transform: translateX(0vw);
  transform: translateX(0vw);
}

.topMV-sp figure span:nth-child(1) {
  left: 20px;
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
}

.topMV-sp figure span:nth-child(2) {
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
  text-align: right;
  left: -20%;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.topMV-sp figure span:nth-child(3) {
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
  left: 20px;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}

.topMV-sp-title span {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, transform .5s ease;
  transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease;
}

.topMV-sp-title span:nth-child(2) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.topMV-sp-title.-show span {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.intro {
  background: radial-gradient(circle at 50% 0%, white 0%, #d6e9f2 100%);
  padding-top: 50px;
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .intro {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .intro {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.intro.-bottom {
  margin-top: 30px;
  padding-top: 20px;
  padding-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .intro.-bottom {
    margin-top: 100px;
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.intro h2 {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .intro h2 {
    padding-top: 80px;
  }
}

.intro h2 span {
  display: block;
}

@media screen and (max-width: 767px) {
  .intro h2 span:nth-child(1) img {
    width: 210px;
  }
}

@media screen and (max-width: 767px) {
  .intro h2 span:nth-child(2) img {
    width: 100%;
    max-width: 330px;
  }
}

.intro h2 span + span {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .intro h2 span + span {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .intro-card {
    margin: 0 -10px;
  }
}

@media screen and (min-width: 768px) {
  .intro-card {
    width: 610px;
    position: absolute;
    right: 0;
    top: -20px;
  }
}

.intro-text {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .intro-text {
    margin-top: 0px;
    margin-left: 60px;
    min-height: 580px;
  }
}

.intro-text p {
  font-weight: 600;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .intro-text p {
    font-size: 1.65rem;
  }
}

.intro-text p + p {
  margin-top: 1em;
}

.topCTA {
  margin-top: 40px;
}

.topCTA-frame {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .topCTA-frame {
    padding: 30px;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

.topCTA-frame + .topCTA-frame {
  margin-top: 30px;
}

.topCTA-frame p {
  font-size: 1.6rem;
}

.topCTA-frame p:nth-child(1) {
  font-size: 1.6rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .topCTA-frame p:nth-child(1) {
    font-size: 1.8rem;
  }
}

.topCTA-frame .topCTA-title {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 10px;
}

@media screen and (max-width: 374px) {
  .topCTA-frame .topCTA-title br.sp {
    display: none;
  }
}

.topCTA-frame .topCTA-cardLink {
  margin-top: 5px;
}

.topCTA-frame .topCTA-cardLink a {
  color: #00429D;
  font-weight: 600;
}

.topCTA-frame .topCTA-cardLink img {
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  top: -.1em;
}

.topCTA-frame .topCTA-text {
  margin-top: 12px;
}

.topCTA-frame .topCTA-button {
  background-color: #C2D968;
  color: #004730;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  padding: 8px 10px;
  display: inline-block;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
  background-image: url(/camp/newcard/assets/images/arrow-button.svg);
  background-position: right 15px top 50%;
  background-repeat: no-repeat;
  margin-top: 16px;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (max-width: 767px) {
  .topCTA-frame .topCTA-button {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
  .topCTA-frame .topCTA-button {
    background-position: right 30px top 50%;
    width: 370px;
    font-size: 2rem;
  }
}

.topCTA-frame .topCTA-button.-disable {
  padding: 22px 10px;
  background-image: none;
  pointer-events: none;
}

.topCTA-frame .topCTA-button.-entry {
  padding: 20px 10px;
}

.topCTA-frame .topCTA-button:hover {
  opacity: .8;
}

.topCTA-frame .topCTA-comingsoon {
  color: #004730;
  background-color: #fff;
  border: 2px solid #004730;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .topCTA-frame .topCTA-comingsoon {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
  .topCTA-frame .topCTA-comingsoon {
    width: 370px;
  }
}

.topCTA-frame .topCTA-note {
  font-size: 1.2rem;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .topCTA-frame .topCTA-note {
    font-size: 1.4rem;
  }
}

.topCTA-frame .topCTA-note + .topCTA-note {
  margin-top: 0;
}

.topCTA-frame.-a .topCTA-title {
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .topCTA-frame.-a .topCTA-title {
    font-size: 2.4rem;
  }
}

.topCTA-frame.-b .topCTA-title {
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .topCTA-frame.-b .topCTA-title {
    font-size: 2.8rem;
  }
}

.topMovie {
  margin-top: 40px;
  margin-bottom: -20px;
}

@media screen and (min-width: 768px) {
  .topMovie {
    text-align: center;
    width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 20px;
  }
}

.topMovie-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.topMovie-inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.topMovie .pc img {
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.topMovie .pc img:hover {
  opacity: .7;
}

.topMovie .sp .topMovie-playButton.-play {
  display: none;
}

.topMovie .sp .topMovie-playButton.-play + * {
  display: block;
}

.topMovie .sp .topMovie-inner {
  display: none;
}

.section {
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .section-text {
    padding: 20px;
  }
}

.section-text h3 {
  font-size: 1.8rem;
  margin-top: 20px;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .section-text h3 {
    margin-top: 24px;
    font-size: 2rem;
  }
}

.section-text h3 img {
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
  top: -.1em;
  width: 69px;
}

.section-text h3 + p {
  margin-top: 10px;
}

.section-text h3 > span {
  position: relative;
  display: inline-block;
}

.section-text h3 > span span {
  position: relative;
  z-index: 2;
}

.section-text h3 > span:after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background-color: #D6E9F2;
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: 1;
}

.section-text p {
  line-height: 1.8;
  font-size: 1.6rem;
}

.section-text p.section-text-note {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .section-text p.section-text-note {
    font-size: 1.4rem;
  }
}

.section-text p.section-text-startDate {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
}

.section-text p.section-text-startDate span {
  background-color: #004730;
  display: inline-block;
  padding: 0 5px;
}

.section-text p.section-text-startDate + h2 {
  margin-top: 12px;
}

.section-lead {
  margin-top: 100px;
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .section-lead {
    margin-top: 60px;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 767px) {
  .section-lead img {
    width: 270px;
  }
}

@media screen and (min-width: 768px) {
  .section-lead p {
    text-align: center;
  }
}

.section01 {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .section01 {
    margin-top: 70px;
    height: 480px;
  }
}

.section01-num {
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .section01-num {
    width: 30%;
    top: 36%;
  }
}

@media screen and (max-width: 767px) {
  .section01-photo {
    width: 87%;
  }
}

@media screen and (min-width: 768px) {
  .section01-photo {
    position: absolute;
    left: -100px;
    top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .section01-photo img {
    width: 100%;
    max-width: initial;
  }
}

@media screen and (min-width: 768px) {
  .section01-photo img {
    height: 400px;
  }
}

@media screen and (min-width: 768px) {
  .section01 .section-text {
    width: 500px;
    position: absolute;
    left: 580px;
    top: 110px;
  }
}

@media screen and (max-width: 767px) {
  .section01 .section-text h2 {
    max-width: 320px;
  }
}

.section02 {
  margin-top: 60px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .section02 {
    margin-top: 70px;
    height: 470px;
  }
}

.section02-num {
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .section02-num {
    left: 20px;
    width: 30%;
    top: 45%;
  }
}

@media screen and (max-width: 767px) {
  .section02-photo {
    width: 100%;
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .section02-photo {
    position: absolute;
    right: -340px;
    top: 0px;
  }
}

.section02-photo img {
  position: relative;
}

@media screen and (max-width: 767px) {
  .section02-photo img {
    width: 58%;
    max-width: initial;
  }
}

@media screen and (min-width: 768px) {
  .section02-photo img {
    height: 440px;
  }
}

.section02-photo:before {
  content: "";
  display: block;
  width: 100%;
  height: 90%;
  position: absolute;
  left: 10%;
  bottom: 0;
  background-color: #F4F7FA;
}

@media screen and (min-width: 768px) {
  .section02-photo:before {
    height: 400px;
    left: -300px;
  }
}

@media screen and (min-width: 768px) {
  .section02 .section-text {
    width: 500px;
    position: absolute;
    left: 70px;
    top: 130px;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .section02 .section-text h2 img {
    width: 300px;
  }
}

.section03 {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .section03 {
    margin-top: 100px;
    height: 520px;
  }
}

.section03-num {
  position: absolute;
  right: 15px;
  top: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .section03-num {
    width: 30%;
    top: 48%;
  }
}

@media screen and (max-width: 767px) {
  .section03-photo {
    width: 67%;
  }
}

@media screen and (min-width: 768px) {
  .section03-photo {
    position: absolute;
    left: -0px;
    top: 30px;
  }
}

.section03-photo img {
  position: relative;
}

@media screen and (max-width: 767px) {
  .section03-photo img {
    width: 100%;
    max-width: initial;
  }
}

@media screen and (min-width: 768px) {
  .section03-photo img {
    height: 440px;
  }
}

.section03-photo:before {
  content: "";
  display: block;
  width: 100vw;
  height: 90%;
  position: absolute;
  right: -28%;
  bottom: 0;
  background-color: #F4F7FA;
}

@media screen and (min-width: 768px) {
  .section03-photo:before {
    height: 400px;
    left: initial;
    right: -320px;
  }
}

@media screen and (min-width: 768px) {
  .section03 .section-text {
    width: 500px;
    position: absolute;
    left: 580px;
    top: 140px;
  }
}

@media screen and (max-width: 767px) {
  .section03 .section-text h2 {
    max-width: 200px;
  }
}

.section04 {
  margin-top: 60px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .section04 {
    margin-top: 80px;
    height: 440px;
  }
}

.section04-num {
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .section04-num {
    left: 20px;
    width: 30%;
    top: 45%;
  }
}

.section04-photo {
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .section04-photo {
    padding-bottom: 25px;
    width: 100%;
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .section04-photo {
    position: absolute;
    right: 40px;
    top: 0px;
  }
}

.section04-photo img {
  position: relative;
}

@media screen and (max-width: 767px) {
  .section04-photo img {
    width: 53%;
    max-width: initial;
    margin-right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .section04-photo img {
    height: 400px;
  }
}

.section04-photo:before {
  content: "";
  display: block;
  width: 100vw;
  height: 90%;
  position: absolute;
  left: 15%;
  bottom: 0px;
  background-color: #F4F7FA;
}

@media screen and (min-width: 768px) {
  .section04-photo:before {
    height: 400px;
    left: -360px;
  }
}

@media screen and (min-width: 768px) {
  .section04 .section-text {
    width: 500px;
    position: absolute;
    left: 70px;
    top: 130px;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .section04 .section-text h2 img {
    width: 300px;
  }
}

.tagline {
  text-align: center;
  padding: 60px 20px 80px 20px;
}

@media screen and (min-width: 768px) {
  .tagline {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .tagline-banner > img {
    width: 276px;
  }
}

.tagline-banner div {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .tagline-banner div {
    margin-top: 25px;
  }
}

.tagline-banner + * {
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .tagline-banner + * {
    margin-top: 100px;
  }
}

.tagline-banner a {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (min-width: 768px) {
  .tagline-banner a:hover {
    opacity: .8;
  }
}

.scrollAnimation-fade-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, transform .5s ease;
  transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease;
}

.scrollAnimation-fade-up.-show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.scrollAnimation-inner-fade-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, transform .5s ease;
  transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease;
}

.-show .scrollAnimation-inner-fade-up {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.scrollAnimation-delay-0 {
  -webkit-transition-delay: 0ms !important;
  transition-delay: 0ms !important;
}

.scrollAnimation-delay-100 {
  -webkit-transition-delay: 100ms !important;
  transition-delay: 100ms !important;
}

.scrollAnimation-delay-200 {
  -webkit-transition-delay: 200ms !important;
  transition-delay: 200ms !important;
}

.scrollAnimation-delay-300 {
  -webkit-transition-delay: 300ms !important;
  transition-delay: 300ms !important;
}

.scrollAnimation-delay-400 {
  -webkit-transition-delay: 400ms !important;
  transition-delay: 400ms !important;
}

.scrollAnimation-delay-500 {
  -webkit-transition-delay: 500ms !important;
  transition-delay: 500ms !important;
}

.scrollAnimation-delay-600 {
  -webkit-transition-delay: 600ms !important;
  transition-delay: 600ms !important;
}

.scrollAnimation-delay-700 {
  -webkit-transition-delay: 700ms !important;
  transition-delay: 700ms !important;
}

.scrollAnimation-delay-800 {
  -webkit-transition-delay: 800ms !important;
  transition-delay: 800ms !important;
}

.scrollAnimation-delay-900 {
  -webkit-transition-delay: 900ms !important;
  transition-delay: 900ms !important;
}

.scrollAnimation-delay-1000 {
  -webkit-transition-delay: 1000ms !important;
  transition-delay: 1000ms !important;
}

.cardTop {
  background: radial-gradient(circle closest-corner at 50% 0%, white 0%, #d6e9f2 100%);
  padding: 20px 0 40px 0;
}

@media screen and (min-width: 768px) {
  .cardTop {
    padding: 30px 0 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .cardTop {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cardTop h1 {
  text-align: center;
  margin-top: 30px;
  font-size: 2.6rem;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .cardTop h1 {
    margin-top: 40px;
    font-size: 4.2rem;
  }
}

.cardTop h1 span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .cardTop h1 span {
    font-size: 3rem;
  }
}

.cardTop h1 + p {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .cardTop h1 + p {
    margin-top: 35px;
    font-size: 1.6rem;
  }
}

.cardFlow {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .cardFlow {
    padding: 40px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cardFlow h2 {
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cardFlow h2 {
    font-size: 3.2rem;
  }
}

.cardFlow-steps {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .cardFlow-steps {
    margin-top: 40px;
  }
}

.cardFlow-steps li {
  text-align: center;
  border: 4px solid #D6E9F2;
  padding: 15px 10px 0;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .cardFlow-steps li {
    padding: 25px 0 0 0;
  }
}

.cardFlow-steps li + li {
  margin-top: 20px;
}

.cardFlow-steps h3 {
  font-size: 1.4rem;
}

.cardFlow-steps h3 em {
  font-size: 1.8rem;
}

.cardFlow-steps h4 {
  font-size: 2.4rem;
  display: inline-block;
  position: relative;
}

.cardFlow-steps h4:before {
  content: "";
  display: block;
  background-color: #D6E9F2;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
}

.cardFlow-steps h4 span {
  position: relative;
}

.cardFlow-body {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height .3s ease;
  transition: max-height .3s ease;
}

.cardFlow-body p em {
  font-weight: bold;
}

.cardFlow-body p:first-child {
  padding-top: 10px;
}

.cardFlow-note {
  font-size: 1.2rem;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .cardFlow-note {
    font-size: 1.4rem;
  }
}

.cardFlow-buttonAccodion {
  display: block;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
}

.cardFlow-buttonAccodion img {
  vertical-align: middle;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.cardFlow-buttonAccodion.-on img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cardList {
  background: radial-gradient(circle closest-corner at 50% 0%, white 0%, #d6e9f2 100%);
  padding: 40px 0 60px 0;
}

@media screen and (min-width: 768px) {
  .cardList {
    padding: 60px 0 60px 0;
    background: radial-gradient(circle closest-corner at 50% 0%, white 0%, #d6e9f2 100%);
  }
}

@media screen and (max-width: 767px) {
  .cardList {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cardList h2 {
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cardList h2 {
    font-size: 3.2rem;
  }
}

.cardList-title {
  margin-top: 40px;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cardList-title {
    margin-top: 60px;
    font-size: 2.4rem;
  }
}

.cardList-lead {
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .cardList-lead {
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .cardList-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -2%;
    padding: 0 60px;
  }
}

.cardList-cards li {
  background-color: #fff;
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 10px;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .cardList-cards li {
    width: 48%;
    margin-left: 2%;
    padding: 20px 20px;
    margin-top: 25px;
  }
}

.cardList-cards li img {
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.cardList-cards li > p {
  font-size: 1.1rem;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .cardList-cards li > p {
    font-size: 1.4rem;
  }
}

.cardList-cards li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #f00;
  position: absolute;
  left: 50%;
  top: 110px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

@media screen and (min-width: 768px) {
  .cardList-cards li:after {
    top: 140px;
  }
}

.cardList-cards h5 {
  font-size: 1.4rem;
  margin-top: 15px;
  line-height: 1.4;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (max-width: 767px) {
  .cardList-cards h5 {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media screen and (min-width: 768px) {
  .cardList-cards h5 {
    font-size: 2rem;
  }
}

.cardList-change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .cardList-change > div {
    width: 41%;
  }
}

.cardList-change p {
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (min-width: 768px) {
  .cardList-change p {
    font-size: 1.4rem;
  }
}

.cardList-change h4 {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .cardList-change h4 {
    font-size: 1.4rem;
  }
}

.cardList-change h4.-red {
  color: #CC0000;
}

.cardList-change h4.-red span {
  border-color: #CC0000;
}

.cardList-change h4 span {
  display: inline-block;
  border: 2px solid #222;
  padding: 3px 15px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 90px;
}

@media screen and (min-width: 768px) {
  .cardList-change h4 span {
    min-width: 120px;
  }
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.modal.-show {
  opacity: 1;
  pointer-events: auto;
}

.modal-bg {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.modal-close {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (min-width: 768px) {
  .modal-close {
    right: 20px;
    top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .modal-close:hover {
    opacity: .7;
  }
}

.modal-window {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  width: calc(100% - 40px);
}

@media screen and (min-width: 768px) {
  .modal-window {
    width: 1000px;
  }
}

.modal-window h2 {
  background-color: #D6E9F2;
  text-align: center;
  font-size: 2rem;
  padding: 15px 0;
  line-height: 1;
  border-radius: 10px 10px 0 0;
}

@media screen and (min-width: 768px) {
  .modal-window h2 {
    font-size: 3.2rem;
    padding: 24px 0;
  }
}

.modal-content {
  overflow: auto;
}

@media screen and (max-width: 767px) {
  .modal-content {
    height: 82vh;
    border-radius: 0 0 10px 10px;
  }
}

.modal-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 25px 20px;
}

@media screen and (max-width: 767px) {
  .modal-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .modal-cards {
    margin: 35px 55px;
  }
}

.modal-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .modal-card {
    -ms-flex-preferred-size: 47%;
    flex-basis: 47%;
  }
}

@media screen and (max-width: 767px) {
  .modal-card + .modal-card {
    margin-top: 25px;
  }
}

.modal-card figure {
  margin-top: auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .modal-card figure {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .modal-card figure img {
    max-height: 88px;
  }
}

@media screen and (min-width: 768px) {
  .modal-card figure img {
    height: 124px;
  }
}

.modal-card h4 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .modal-card h4 {
    margin-top: 20px;
  }
}

.modal-card h4 + p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .modal-card h4 + p {
    font-size: 2rem;
  }
}

.modal-bottom {
  background-color: #D6E9F2;
  padding: 25px 0;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.modal-bottom .modal-bottom-1 {
  display: none;
}

.modal-bottom .modal-bottom-2 {
  display: block;
}

@media screen and (max-width: 767px) {
  .modal-bottom {
    padding: 20px 20px;
  }
}

.modal-bottom.b1 .modal-bottom-1 {
  display: block;
}

.modal-bottom.b1 .modal-bottom-2 {
  display: none;
}

.modal-bottom-date p {
  font-weight: 600;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .modal-bottom-date p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .modal-bottom-date p + p {
    margin-top: 10px;
  }
}

.modal-bottom-date p em {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .modal-bottom-date p em {
    display: block;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .modal-bottom-date p em:after {
    content: "＞";
  }
  .modal-bottom-date p em:before {
    content: "＜";
  }
}

@media screen and (min-width: 768px) {
  .modal-bottom-date p span:before {
    content: '：';
  }
}

.cardCTAButton {
  text-align: center;
}

.cardCTAButton a {
  background-color: #C2D968;
  color: #004730;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  padding: 8px 5px;
  display: inline-block;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
  background-image: url(/camp/newcard/assets/images/arrow-button.svg);
  background-position: right 15px top 50%;
  background-repeat: no-repeat;
  margin-top: 10px;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media screen and (max-width: 767px) {
  .cardCTAButton a {
    width: 100%;
    max-width: 300px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
  .cardCTAButton a {
    background-position: right 30px top 50%;
    width: 370px;
    font-size: 2rem;
    padding: 10px;
  }
}

.cardCTAButton a:hover {
  opacity: .8;
}

.cardCTAButton p {
  font-size: 1.2rem;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .cardCTAButton p {
    font-size: 1.4rem;
  }
}

.cardCTAButton p + p {
  margin-top: 0;
}

.cardComingSoon {
  color: #004730;
  background-color: #fff;
  border: 2px solid #004730;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .cardComingSoon {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
  .cardComingSoon {
    width: 370px;
  }
}

.accordion-trigger {
  cursor: pointer;
}

.cardNav {
  background-color: #fff;
  padding: 20px 20px;
}

@media screen and (max-width: 767px) {
  .cardNav {
    margin-top: 30px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .cardNav {
    width: 850px;
    margin: 60px auto 0;
    padding: 30px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.cardNav h2 {
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cardNav h2 {
    font-size: 2.4rem;
  }
}

.cardNav ul {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .cardNav ul {
    display: inline-block;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .cardNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0px;
  }
}

.cardNav ul li {
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .cardNav ul li {
    margin-top: 6px;
  }
}

@media screen and (min-width: 768px) {
  .cardNav ul li:nth-child(odd) {
    width: 47%;
  }
}

@media screen and (min-width: 768px) {
  .cardNav ul li:nth-child(even) {
    width: 53%;
  }
}

.cardNav ul a {
  color: #00429D;
  text-decoration: none;
  font-weight: bold;
}

.cardNav ul a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .cardNav ul a {
    display: block;
    text-indent: -1.4em;
    padding-left: 1.4em;
    line-height: 1.9;
  }
}

/*
utils
---------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media print {
  .sp {
    display: none !important;
  }
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

@media screen and (min-width: 768px) {
  .mt-0-pc {
    margin-top: 0px !important;
  }
  .mt-5-pc {
    margin-top: 5px !important;
  }
  .mt-10-pc {
    margin-top: 10px !important;
  }
  .mt-15-pc {
    margin-top: 15px !important;
  }
  .mt-20-pc {
    margin-top: 20px !important;
  }
  .mt-25-pc {
    margin-top: 25px !important;
  }
  .mt-30-pc {
    margin-top: 30px !important;
  }
  .mt-35-pc {
    margin-top: 35px !important;
  }
  .mt-40-pc {
    margin-top: 40px !important;
  }
  .mt-45-pc {
    margin-top: 45px !important;
  }
  .mt-50-pc {
    margin-top: 50px !important;
  }
  .mt-55-pc {
    margin-top: 55px !important;
  }
  .mt-60-pc {
    margin-top: 60px !important;
  }
  .mt-65-pc {
    margin-top: 65px !important;
  }
  .mt-70-pc {
    margin-top: 70px !important;
  }
  .mt-75-pc {
    margin-top: 75px !important;
  }
  .mt-80-pc {
    margin-top: 80px !important;
  }
  .mt-85-pc {
    margin-top: 85px !important;
  }
  .mt-90-pc {
    margin-top: 90px !important;
  }
  .mt-95-pc {
    margin-top: 95px !important;
  }
  .mt-100-pc {
    margin-top: 100px !important;
  }
}

.color-red {
  color: #D80000 !important;
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.align-center {
  text-align: center !important;
}

@media screen and (min-width: 768px) {
  .align-center-pc {
    text-align: center !important;
  }
}

.relative {
  position: relative !important;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}
