@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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

/* ============================
  basic
=============================*/
* {
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #2f2f2f;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.71;
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: calc(26 / 750 * 100vw);
  }
}

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

a {
  text-decoration: none;
}

.f-Family02 {
  font-family: 'Noto Serif JP', serif;
}

.f-Family03 {
  font-family: 'Barlow', sans-serif;
}

.main {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  .main {
    min-width: 1100px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .main {
    max-width: 100%;
  }
}

.container {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: 1100px;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - (10px * 2));
  }
}

.clearfix * {
  zoom: 1;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.hide {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

@media (min-width: 768px) {
  .for-pc {
    display: block;
  }
}

@media (max-width: 767px) {
  .for-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .for-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .for-sp {
    display: block;
  }
}

.f-family01 {
  font-family: 'Roboto Slab', serif;
  letter-spacing: 0.01em;
}

.f-colorBlue {
  display: inline;
  color: #62c4dd;
}

.f-colorPink {
  display: inline;
  color: #ee306b;
}

.f-size22 {
  display: inline;
}

@media (min-width: 768px) {
  .f-size22 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .f-size22 {
    font-size: calc(36 / 750 * 100vw);
  }
}

.f-size40 {
  display: inline;
}

@media (min-width: 768px) {
  .f-size40 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .f-size40 {
    font-size: calc(56 / 750 * 100vw);
  }
}

.f-size44 {
  display: inline;
}

@media (min-width: 768px) {
  .f-size44 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .f-size44 {
    font-size: calc(66 / 750 * 100vw);
  }
}

.f-size48 {
  display: inline;
}

@media (min-width: 768px) {
  .f-size48 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .f-size48 {
    font-size: calc(96 / 750 * 100vw);
  }
}

.f-size50 {
  display: inline;
}

@media (min-width: 768px) {
  .f-size50 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .f-size50 {
    font-size: calc(60 / 750 * 100vw);
  }
}

.f-w600 {
  display: inline;
  font-weight: 600;
}

/* ============================
  Header
=============================*/
.header {
  display: block;
  position: relative;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .header-inner {
    width: 1100px;
    height: 80px;
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    width: 100%;
    height: calc(80 / 750 * 100vw);
  }
}

.header-logo {
  display: block;
  background: url(../img/logo.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .header-logo {
    width: 328px;
    height: 65px;
  }
}

@media (max-width: 767px) {
  .header-logo {
    width: calc(328 / 750 * 100vw);
    height: calc(62 / 750 * 100vw);
  }
}

/* ============================
  main-visual
=============================*/
.mv {
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: right;
  background-image: url(../img/mv_bg.jpg);
  background-size: cover;
}

.mv-inner {
  position: relative;
  display: block;
  height: 100%;
  margin: auto;
  padding-left: 10px;
  background-repeat: no-repeat;
  background-image: url(../img/mv-img.png);
  background-size: contain;
}

@media (min-width: 768px) {
  .mv-inner {
    width: 1100px;
    height: 540px;
    background-position: right bottom;
  }
}

@media (max-width: 767px) {
  .mv-inner {
    width: 100%;
    height: calc(640 / 750 * 100vw);
    background-position: right -22% bottom 0%;
    background-size: 66%;
  }
}

.mv-ttl {
  display: block;
}

@media (min-width: 768px) {
  .mv-ttl {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .mv-ttl {
    padding-top: calc(50 / 750 * 100vw);
  }
}

.mv-head {
  position: relative;
  display: table;
  background-color: #faf665;
  font-family: 'Kosugi Maru', sans-serif;
}

@media (min-width: 768px) {
  .mv-head {
    height: 50px;
    margin-top: 10px;
    padding: 5px 15px;
    font-size: 28px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .mv-head {
    height: calc(70 / 750 * 100vw);
    margin-top: 10px;
    padding: 0 calc(15 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
    line-height: calc(70 / 750 * 100vw);
  }
}

.mv-head::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #faf665;
}

@media (min-width: 768px) {
  .mv-head::after {
    border-width: 25px 0px 25px 15px;
  }
}

@media (max-width: 767px) {
  .mv-head::after {
    border-width: calc(35 / 750 * 100vw) 0px calc(35 / 750 * 100vw) calc(20 / 750 * 100vw);
  }
}

.mv-main {
  display: block;
  color: #0095cc;
  font-weight: 700;
  line-height: 1;
  -moz-text-shadow: 3px 3px 0px #94e6fd;
  -webkit-text-shadow: 3px 3px 0px #94e6fd;
  -ms-text-shadow: 3px 3px 0px #94e6fd;
  text-shadow: 3px 3px 0px #94e6fd;
}

@media (min-width: 768px) {
  .mv-main {
    margin-top: 20px;
    font-size: 68px;
  }
}

@media (max-width: 767px) {
  .mv-main {
    margin-top: calc(20 / 750 * 100vw);
    font-size: calc(72 / 750 * 100vw);
    line-height: 1.20;
  }
}

.mv p {
  display: block;
  color: #636363;
  font-weight: 500;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .mv p {
    margin-top: 20px;
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .mv p {
    margin-top: calc(20 / 750 * 100vw);
    font-size: calc(40 / 750 * 100vw);
    text-shadow: 2px 2px 1px rgba(255, 255, 255, 0.23), -2px 2px 1px rgba(255, 255, 255, 0.23), 2px -2px 1px rgba(255, 255, 255, 0.23), -2px -2px 1px rgba(255, 255, 255, 0.23), 2px 0px 1px rgba(255, 255, 255, 0.23), 0px 2px 1px rgba(255, 255, 255, 0.23), -2px 0px 1px rgba(255, 255, 255, 0.23), 0px -2px 1px rgba(255, 255, 255, 0.23);
  }
}

.mv-bottom {
  background-color: #4fb6d3;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .mv-bottom {
    height: 70px;
    font-size: 22px;
    line-height: 70px;
  }
}

@media (max-width: 767px) {
  .mv-bottom {
    padding: 10px 0;
    font-size: calc(32 / 750 * 100vw);
  }
}

/* ============================
	info
=============================*/
.info {
  display: block;
  padding: 30px 0;
  background: #f2fcff;
}

.info > div {
  margin: auto;
}

@media (min-width: 768px) {
  .info > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1000px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .info > div {
    display: grid;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .info > div picture {
    flex-shrink: 0;
    width: 400px;
    margin-left: 25px;
  }
}

@media (max-width: 767px) {
  .info > div picture {
    width: 60%;
    margin: auto;
    padding-right: 10px;
    order: 2;
  }
}

.info-txt {
  text-align: center;
}

@media (min-width: 768px) {
  .info-txt {
    flex-shrink: 0;
    width: 528px;
    margin-right: 40px;
    padding: 55px 0;
  }
}

@media (max-width: 767px) {
  .info-txt {
    width: 100%;
    margin: auto;
    order: 1;
  }
}

@media all and (-ms-high-contrast: none) {
  .info-txt {
    background: url(../img/info_txt.png) no-repeat center/contain;
  }
}

@-moz-document url-prefix() {
  .info-txt {
    background: url(../img/info_txt.png) no-repeat center/contain;
  }
}

.info-txt > span {
  position: relative;
  display: inline-block;
  margin: auto;
  background-color: #ff8098;
  border-radius: 35px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .info-txt > span {
    width: 228px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .info-txt > span {
    height: calc(54 / 750 * 100vw);
    padding: 0 20px;
    font-size: calc(34 / 750 * 100vw);
    line-height: calc(54 / 750 * 100vw);
  }
}

@media all and (-ms-high-contrast: none) {
  .info-txt > span {
    display: none;
  }
}

@-moz-document url-prefix() {
  .info-txt > span {
    display: none;
  }
}

.info-txt > span::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #ff8098 transparent transparent transparent;
}

@media (min-width: 768px) {
  .info-txt > span::after {
    border-width: 14px 15px 0 15px;
  }
}

@media (max-width: 767px) {
  .info-txt > span::after {
    border-width: calc(20 / 750 * 100vw) calc(28 / 750 * 100vw) 0 calc(28 / 750 * 100vw);
  }
}

@media all and (-ms-high-contrast: none) {
  .info-txt > span::after {
    display: none;
  }
}

@-moz-document url-prefix() {
  .info-txt > span::after {
    display: none;
  }
}

.info-txt h2 {
  position: relative;
  color: #13aad4;
  font-weight: 600;
  line-height: 1.3;
  z-index: 0;
}

@media (min-width: 768px) {
  .info-txt h2 {
    margin-top: 25px;
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .info-txt h2 {
    margin-top: 15px;
    font-size: calc(46 / 750 * 100vw);
  }
}

@media all and (-ms-high-contrast: none) {
  .info-txt h2 {
    display: none;
  }
}

@-moz-document url-prefix() {
  .info-txt h2 {
    display: none;
  }
}

.info-txt h2 > span {
  background-size: 3px 3px;
  background-color: #9de4ff;
  background-image: radial-gradient(#ffffff 25%, transparent 40%), radial-gradient(#ffffff 25%, transparent 40%);
  background-position: 0 0, 3px 3px;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: -3px -3px 0 #13aad4;
}

.info-txt h2 > span > span {
  display: inline-block;
  z-index: 0;
}

@media (min-width: 768px) {
  .info-txt h2 > span > span {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .info-txt h2 > span > span {
    font-size: calc(54 / 750 * 100vw);
    background-size: 3px 3px;
    background-color: #9de4ff;
    background-image: radial-gradient(#ffffff 25%, transparent 40%), radial-gradient(#ffffff 25%, transparent 40%);
    background-position: 0 0, 3px 3px;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: -3px -3px 0 #13aad4;
  }
}

.info-txt h2 > span > span::after {
  content: '';
  position: relative;
  display: block;
  width: 100%;
  background-color: #fff09b;
  z-index: -1;
}

@media (min-width: 768px) {
  .info-txt h2 > span > span::after {
    top: -14px;
    height: 14px;
  }
}

@media (max-width: 767px) {
  .info-txt h2 > span > span::after {
    top: calc(-20 / 750 * 100vw);
    height: calc(20 / 750 * 100vw);
  }
}

.info .btn {
  position: relative;
  display: block;
  margin: 10px auto 0;
  background-color: #3ab383;
  border-radius: 5px;
  box-shadow: 0px 6px 0px 0px #217c58;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  transition: .3s;
}

@media (min-width: 768px) {
  .info .btn {
    width: 600px;
    height: 80px;
    font-size: 22px;
    line-height: 80px;
  }
}

@media (max-width: 767px) {
  .info .btn {
    width: 80%;
    height: calc(100 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
    line-height: calc(100 / 750 * 100vw);
  }
}

.info .btn::before, .info .btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.info .btn::before {
  background: url(../img/info_btn_icon.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .info .btn::before {
    left: 65px;
    width: 30px;
    height: 21px;
  }
}

@media (max-width: 767px) {
  .info .btn::before {
    left: calc(65 / 750 * 100vw);
    width: calc(30 / 750 * 100vw);
    height: calc(21 / 750 * 100vw);
  }
}

.info .btn::after {
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .info .btn::after {
    right: 65px;
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 767px) {
  .info .btn::after {
    right: calc(65 / 750 * 100vw);
    width: calc(12 / 750 * 100vw);
    height: calc(12 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .info .btn:hover {
    box-shadow: 0px 0px 0px 0px #217c58;
    transform: translateY(6px);
    opacity: .7;
  }
}

/* ==========================================================
  Section
=====*/
.section-ttl {
  position: relative;
  display: block;
  text-align: center;
}

@media (min-width: 768px) {
  .section-ttl {
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
  .section-ttl {
    padding-top: 60px;
  }
}

.section-ttl-catch {
  display: table;
  margin: auto;
  background-color: #ffffff;
  border: solid 2px #4fb6d3;
  border-radius: 35px;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .section-ttl-catch {
    width: 474px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .section-ttl-catch {
    height: calc(60 / 750 * 100vw);
    padding: 0 20px;
    font-size: calc(28 / 750 * 100vw);
    line-height: calc(60 / 750 * 100vw);
  }
}

.section-ttl-main {
  display: block;
  color: #52b7d4;
  font-weight: 700;
  line-height: 1.44;
}

@media (min-width: 768px) {
  .section-ttl-main {
    margin: 20px auto;
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .section-ttl-main {
    margin: 15px auto;
    font-size: calc(44 / 750 * 100vw);
  }
}

.section-ttl-main.b-water {
  position: relative;
  padding-bottom: 20px;
}

.section-ttl-main.b-water::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background: url(../img/section_ttl_icon.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .section-ttl-main.b-water::after {
    width: 19px;
    height: 31px;
  }
}

@media (max-width: 767px) {
  .section-ttl-main.b-water::after {
    width: calc(38 / 750 * 100vw);
    height: calc(62 / 750 * 100vw);
  }
}

/* ==========================================================
  worry
=====*/
.worry {
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .worry {
    width: 900px;
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .worry {
    width: calc(100% - (10px * 2));
    padding: 40px 0;
  }
}

.worry h2 {
  display: table;
  margin: auto;
  padding: 20px 10px;
  border-top: solid 2px #cccccc;
  border-bottom: solid 2px #cccccc;
  font-weight: 600;
  line-height: 1.52;
  text-align: center;
}

@media (min-width: 768px) {
  .worry h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .worry h2 {
    font-size: calc(34 / 750 * 100vw);
  }
}

.worry h2 > span {
  display: block;
}

@media (min-width: 768px) {
  .worry h2 > span {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .worry h2 > span {
    font-size: calc(30 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .worry-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    margin: 40px auto;
  }
}

@media (max-width: 767px) {
  .worry-block {
    margin: 20px auto;
  }
}

.worry ol {
  list-style: none;
}

@media (min-width: 768px) {
  .worry ol {
    flex-shrink: 0;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .worry ol {
    width: 96%;
    margin: auto;
  }
}

.worry ol li {
  position: relative;
  font-weight: 600;
}

@media (min-width: 768px) {
  .worry ol li {
    padding-left: 34px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .worry ol li {
    padding-left: calc(50 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
  }
}

.worry ol li:not(:first-child) {
  margin-top: 20px;
}

.worry ol li::before, .worry ol li::after {
  content: '';
  position: absolute;
}

@media (min-width: 768px) {
  .worry ol li::before, .worry ol li::after {
    top: 8px;
  }
}

@media (max-width: 767px) {
  .worry ol li::before, .worry ol li::after {
    top: calc(10 / 750 * 100vw);
  }
}

.worry ol li::before {
  left: 0;
  display: block;
  border: solid 2px #333333;
}

@media (min-width: 768px) {
  .worry ol li::before {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 767px) {
  .worry ol li::before {
    width: calc(26 / 750 * 100vw);
    height: calc(26 / 750 * 100vw);
  }
}

.worry ol li::after {
  display: block;
  border-top: solid 5px #4fb6d3;
  border-right: solid 5px #4fb6d3;
  transform: rotate(135deg);
}

@media (min-width: 768px) {
  .worry ol li::after {
    top: 8px;
    left: 4px;
    width: 18px;
    height: 8px;
  }
}

@media (max-width: 767px) {
  .worry ol li::after {
    top: calc(10 / 750 * 100vw);
    left: calc(6 / 750 * 100vw);
    width: calc(26 / 750 * 100vw);
    height: calc(14 / 750 * 100vw);
  }
}

.worry picture {
  position: relative;
}

@media (min-width: 768px) {
  .worry picture {
    flex-shrink: 0;
    width: 370px;
    height: 244px;
  }
}

@media (max-width: 767px) {
  .worry picture {
    display: block;
    width: 80%;
    margin: 40px auto 0;
  }
}

.worry picture::before, .worry picture::after {
  content: '';
  position: absolute;
  background: url(../img/worry_question.png) no-repeat center/contain;
}

.worry picture::before {
  transform: rotate(-15deg);
}

@media (min-width: 768px) {
  .worry picture::before {
    top: 10px;
    left: -20px;
    width: 38px;
    height: 56px;
  }
}

@media (max-width: 767px) {
  .worry picture::before {
    top: calc(10 / 750 * 100vw);
    left: calc(-20 / 750 * 100vw);
    width: calc(76 / 750 * 100vw);
    height: calc(112 / 750 * 100vw);
  }
}

.worry picture::after {
  transform: rotate(10deg);
}

@media (min-width: 768px) {
  .worry picture::after {
    bottom: -20px;
    right: 10px;
    width: 67px;
    height: 98px;
  }
}

@media (max-width: 767px) {
  .worry picture::after {
    bottom: calc(-20 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    width: calc(107 / 750 * 100vw);
    height: calc(157 / 750 * 100vw);
  }
}

/* ==========================================================
  campaign
=====*/
.campaign {
  display: block;
  margin: 0 auto;
  padding-bottom: 40px;
  background-color: #f9feff;
}

.campaign-txt {
  text-align: center;
}

@media (min-width: 768px) {
  .campaign-txt {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .campaign-txt {
    padding-top: 40px;
  }
}

.campaign-txt > span {
  display: inline;
  color: #ff8098;
  font-weight: 600;
}

@media (min-width: 768px) {
  .campaign-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    margin-top: 60px;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .campaign-block {
    display: block;
    margin-top: 70px;
  }
}

.campaign-block > div {
  position: relative;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .campaign-block > div {
    flex-shrink: 0;
    width: 530px;
    height: 536px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div {
    width: 100%;
    margin: auto;
    padding-bottom: 20px;
  }
}

.campaign-block > div[data-num="01"] {
  background-color: #f5f5f5;
}

.campaign-block > div[data-num="01"]::after {
  content: '';
  position: absolute;
  margin: auto;
  background: url(../img/campaign_arrow.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .campaign-block > div[data-num="01"]::after {
    top: 0;
    bottom: 0;
    right: -36px;
    width: 34px;
    height: 62px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div[data-num="01"]::after {
    bottom: calc(-94 / 750 * 100vw);
    left: 0;
    right: 0;
    width: calc(51 / 750 * 100vw);
    height: calc(93 / 750 * 100vw);
    transform: rotate(90deg);
  }
}

.campaign-block > div[data-num="01"] > span {
  background-color: #24608e;
}

.campaign-block > div[data-num="02"] {
  background-color: #e7f9ff;
}

@media (max-width: 767px) {
  .campaign-block > div[data-num="02"] {
    margin-top: calc(140 / 750 * 100vw);
  }
}

.campaign-block > div[data-num="02"] > span {
  background-color: #4fb6d3;
}

.campaign-block > div > span {
  position: relative;
  display: table;
  margin: auto;
  text-align: center;
  border-radius: 35px;
  color: #ffffff;
  font-weight: 600;
}

@media (min-width: 768px) {
  .campaign-block > div > span {
    top: -22.5px;
    height: 45px;
    padding: 0 20px;
    font-size: 20px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div > span {
    top: calc(-40 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
    line-height: calc(80 / 750 * 100vw);
  }
}

.campaign-block > div ol {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  list-style: none;
}

@media (min-width: 768px) {
  .campaign-block > div ol {
    height: 350px;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol {
    height: calc(450 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }
}

.campaign-block > div ol::after {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  margin: auto;
}

.campaign-block > div ol[data-num="01"]::after {
  left: 0;
  right: 0;
  display: block;
  background: url(../img/campaign_before_img.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="01"]::after {
    width: 127px;
    height: 171px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="01"]::after {
    width: calc(178 / 750 * 100vw);
    height: calc(239 / 750 * 100vw);
  }
}

.campaign-block > div ol[data-num="01"] li {
  position: absolute;
  display: table;
  background: url(../img/campaign_before_balloon.png) no-repeat center/contain;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="01"] li {
    width: 202px;
    height: 154px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="01"] li {
    width: calc(263 / 750 * 100vw);
    height: calc(200 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
  }
}

.campaign-block > div ol[data-num="01"] li:nth-child(1) {
  top: 0;
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="01"] li:nth-child(1) {
    left: 50px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="01"] li:nth-child(1) {
    left: calc(30 / 750 * 100vw);
  }
}

.campaign-block > div ol[data-num="01"] li:nth-child(2) {
  top: 0;
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="01"] li:nth-child(2) {
    right: 50px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="01"] li:nth-child(2) {
    right: calc(30 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="01"] li:nth-child(3) {
    bottom: 30px;
    left: 10px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="01"] li:nth-child(3) {
    bottom: calc(30 / 750 * 100vw);
    left: calc(10 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="01"] li:nth-child(4) {
    bottom: 30px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="01"] li:nth-child(4) {
    bottom: calc(30 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
  }
}

.campaign-block > div ol[data-num="01"] li span {
  display: table-cell;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="02"] {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="02"] {
    padding-top: calc(30 / 750 * 100vw);
  }
}

.campaign-block > div ol[data-num="02"]::after {
  background: url(../img/campaign_after_img.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="02"]::after {
    right: 30px;
    width: 143px;
    height: 194px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="02"]::after {
    right: calc(20 / 750 * 100vw);
    width: calc(200 / 750 * 100vw);
    height: calc(272 / 750 * 100vw);
  }
}

.campaign-block > div ol[data-num="02"] li {
  position: relative;
  display: table;
  background-color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="02"] li {
    width: 328px;
    min-height: 80px;
    margin-left: 30px;
    padding: 10px 25px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="02"] li {
    width: calc(418 / 750 * 100vw);
    min-height: calc(100 / 750 * 100vw);
    margin-left: calc(30 / 750 * 100vw);
    padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}

.campaign-block > div ol[data-num="02"] li:not(:first-child) {
  margin-top: 20px;
}

.campaign-block > div ol[data-num="02"] li::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/campaign_after_check.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .campaign-block > div ol[data-num="02"] li::before {
    left: -15px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767px) {
  .campaign-block > div ol[data-num="02"] li::before {
    left: calc(-22 / 750 * 100vw);
    width: calc(42 / 750 * 100vw);
    height: calc(42 / 750 * 100vw);
  }
}

.campaign-block > div ol[data-num="02"] li span {
  display: table-cell;
  vertical-align: middle;
}

.campaign-block > div p {
  text-align: center;
}

.campaign-block > div p .b {
  font-weight: 600;
}

.campaign-block > div p .p {
  color: #ee306b;
}

/* ============================
  reasons
=============================*/
.reasons {
  display: block;
  margin: 0 auto;
}

.reasons-box {
  position: relative;
  display: block;
}

@media (min-width: 768px) {
  .reasons-box {
    margin: 60px auto 0;
  }
}

@media (max-width: 767px) {
  .reasons-box {
    margin: calc(70 / 750 * 100vw) auto 0;
  }
}

@media (min-width: 768px) {
  .reasons-box[data-num="01"] {
    margin-top: 90px;
  }
}

@media (max-width: 767px) {
  .reasons-box[data-num="01"] {
    margin-top: calc(130 / 750 * 100vw);
  }
}

.reasons-box::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background: url(../img/reasons_ttl_icon.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .reasons-box::before {
    width: 34px;
    height: 64px;
  }
}

@media (max-width: 767px) {
  .reasons-box::before {
    width: calc(51 / 750 * 100vw);
    height: calc(96 / 750 * 100vw);
  }
}

.reasons-heading {
  position: relative;
  display: table;
  width: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  z-index: -1;
}

@media (min-width: 768px) {
  .reasons-heading {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .reasons-heading {
    height: calc(340 / 750 * 100vw);
    padding: calc(80 / 750 * 100vw) 0;
  }
}

@media (min-width: 768px) {
  .reasons-heading[data-num="01"] {
    background-image: url(../img/reasons_heading_01.jpg);
  }
}

@media (max-width: 767px) {
  .reasons-heading[data-num="01"] {
    background-image: url(../img/reasons_heading_01@sp.jpg);
  }
}

@media (min-width: 768px) {
  .reasons-heading[data-num="02"] {
    background-image: url(../img/reasons_heading_02.jpg);
  }
}

@media (max-width: 767px) {
  .reasons-heading[data-num="02"] {
    background-image: url(../img/reasons_heading_02@sp.jpg);
  }
}

@media (min-width: 768px) {
  .reasons-heading[data-num="03"] {
    background-image: url(../img/reasons_heading_03.jpg);
  }
}

@media (max-width: 767px) {
  .reasons-heading[data-num="03"] {
    background-image: url(../img/reasons_heading_03@sp.jpg);
  }
}

.reasons-heading .-num {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background-color: #ffffff;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  z-index: 1;
}

@media (min-width: 768px) {
  .reasons-heading .-num {
    top: -212px;
    width: 300px;
    height: 300px;
    padding-top: 220px;
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .reasons-heading .-num {
    top: calc(-220 / 750 * 100vw);
    width: calc(300 / 750 * 100vw);
    height: calc(300 / 750 * 100vw);
    padding-top: calc(230 / 750 * 100vw);
    font-size: calc(54 / 750 * 100vw);
  }
}

.reasons-heading .-txt {
  display: table-cell;
  color: #ffffff;
  font-weight: 500;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .reasons-heading .-txt {
    padding-top: 40px;
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .reasons-heading .-txt {
    padding-top: 20px;
    font-size: calc(38 / 750 * 100vw);
    line-height: 1.35;
  }
}

.reasons-body {
  margin: auto;
}

@media (min-width: 768px) {
  .reasons-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    width: 900px;
    margin-top: 90px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .reasons-body {
    display: grid;
    width: calc(100% - (10px * 2));
    margin-top: calc(90 / 750 * 100vw);
    margin-bottom: calc(70 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .reasons-body picture {
    flex-shrink: 0;
    width: 395px;
    height: 288px;
  }
}

@media (max-width: 767px) {
  .reasons-body picture {
    display: block;
    width: 80%;
    margin: auto;
    order: 1;
  }
}

.reasons-body .note {
  margin-top: 20px;
  text-align: justify;
}

@media (min-width: 768px) {
  .reasons-body .note {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .reasons-body .note {
    font-size: calc(20 / 750 * 100vw);
    order: 4;
  }
}

@media (min-width: 768px) {
  .reasons-txt {
    flex-shrink: 0;
    width: 470px;
  }
}

@media (max-width: 767px) {
  .reasons-txt {
    display: block;
    width: 100%;
    margin: auto;
    order: 2;
  }
}

.reasons-txt h3 {
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .reasons-txt h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .reasons-txt h3 {
    margin-top: 30px;
    font-size: calc(32 / 750 * 100vw);
    text-align: center;
  }
}

.reasons-txt p {
  margin-top: 10px;
  text-align: justify;
}

.reasons-about {
  width: 100%;
  list-style: none;
}

@media (min-width: 768px) {
  .reasons-about {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 60px auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .reasons-about {
    display: block;
    margin: 0 auto 40px;
    order: 3;
  }
}

@media (min-width: 768px) {
  .reasons-about li {
    flex-shrink: 0;
    width: 435px;
  }
}

@media (max-width: 767px) {
  .reasons-about li {
    width: 100%;
    margin-top: 30px;
  }
}

.reasons-about li h4 {
  display: block;
  background-color: #bfe6f3;
  border-radius: 35px;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-about li h4 {
    height: 50px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .reasons-about li h4 {
    padding: 10px 0;
  }
}

.reasons-about li h4 .sup {
  position: relative;
  top: -0.1em;
  font-size: 70%;
  vertical-align: top;
}

.reasons-about li picture {
  display: block;
  width: 100%;
  margin: 20px auto;
}

@media (min-width: 768px) {
  .reasons-about li picture {
    height: 256px;
  }
}

.reasons-about li > p {
  text-align: justify;
}

.reasons-about li > p .sup {
  position: relative;
  top: -0.1em;
  font-size: 70%;
  vertical-align: top;
}

.reasons-about li .note {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .reasons-about li .note {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .reasons-about li .note {
    font-size: calc(20 / 750 * 100vw);
  }
}

.reasons-price {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .reasons-price {
    margin: 90px auto 0;
  }
}

@media (max-width: 767px) {
  .reasons-price {
    margin: calc(90 / 750 * 100vw) auto 0;
    order: 3;
  }
}

.reasons-price h3 {
  line-height: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-price h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .reasons-price h3 {
    font-size: calc(42 / 750 * 100vw);
  }
}

.reasons-price h3 .sup {
  position: relative;
  left: -1.9em;
  margin-right: -1.9em;
  font-size: 50%;
  vertical-align: top;
}

@media (min-width: 768px) {
  .reasons-price h3 .sup {
    top: 0.6em;
  }
}

@media (max-width: 767px) {
  .reasons-price h3 .sup {
    top: 1.0em;
  }
}

@media (min-width: 768px) {
  .reasons-price h3 .sup::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 80%;
    display: block;
    width: 65px;
    height: 65px;
    margin: auto;
    background: url(../img/price_balloon.png) no-repeat center/contain;
  }
}

.reasons-price h3 .t-ul {
  display: inline-block;
  position: relative;
}

.reasons-price h3 .t-ul::after {
  content: '';
  position: relative;
  display: block;
  width: 100%;
  background-color: #fff09b;
  z-index: -1;
}

@media (min-width: 768px) {
  .reasons-price h3 .t-ul::after {
    top: -8px;
    height: 14px;
  }
}

@media (max-width: 767px) {
  .reasons-price h3 .t-ul::after {
    top: calc(-8 / 750 * 100vw);
    height: calc(14 / 750 * 100vw);
  }
}

@media (max-width: 767px) {
  .reasons-price h3 .t-ul::before {
    content: '';
    position: absolute;
    bottom: 62%;
    right: 86%;
    display: block;
    width: 65px;
    height: 65px;
    margin: auto;
    background: url(../img/price_balloon@sp.png) no-repeat center/contain;
  }
}

.reasons-price > ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px auto 0;
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}

.reasons-price > ol li {
  flex-shrink: 0;
  border-radius: 5px;
  text-align: center;
}

.reasons-price > ol li[data-num="01"] {
  border: solid 3px #c4eaf8;
}

@media (min-width: 768px) {
  .reasons-price > ol li[data-num="01"] {
    width: 388px;
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .reasons-price > ol li[data-num="01"] {
    width: calc(340 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .reasons-price > ol li[data-num="01"] > div {
    height: 68px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .reasons-price > ol li[data-num="01"] > div {
    height: calc(150 / 750 * 100vw);
    font-size: calc(21 / 750 * 100vw);
  }
}

.reasons-price > ol li[data-num="01"] > div.top {
  border-bottom: dotted 2px #c4eaf8;
}

.reasons-price > ol li[data-num="02"] {
  border: solid 3px #ff6788;
}

@media (min-width: 768px) {
  .reasons-price > ol li[data-num="02"] {
    width: 452px;
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .reasons-price > ol li[data-num="02"] {
    width: calc(362 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .reasons-price > ol li[data-num="02"] > div {
    height: 84px;
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .reasons-price > ol li[data-num="02"] > div {
    height: calc(150 / 750 * 100vw);
    font-size: calc(21 / 750 * 100vw);
  }
}

.reasons-price > ol li[data-num="02"] > div.top {
  border-bottom: dotted 2px #ff6788;
}

.reasons-price > ol li h4 {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .reasons-price > ol li h4 {
    height: 60px;
    font-size: 20px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .reasons-price > ol li h4 {
    padding: 5px 0;
    font-size: calc(28 / 750 * 100vw);
  }
}

.reasons-price > ol li h4[data-num="01"] {
  background-color: #caeff9;
}

.reasons-price > ol li h4[data-num="02"] {
  background-color: #ff87a1;
  color: #ffffff;
  font-weight: 500;
}

.reasons-price > ol li > div {
  display: table;
  width: 100%;
  margin: auto;
}

.reasons-price > ol li > div p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

@media (max-width: 767px) {
  .reasons-price > ol li > div p {
    line-height: 1.32;
  }
}

@media (min-width: 768px) {
  .reasons-price > ol li > div p .ml-5 {
    margin-left: 5px;
  }
}

@media (max-width: 767px) {
  .reasons-price > ol li > div p .ml-5 {
    margin-left: calc(5 / 750 * 100vw);
  }
}

.reasons-price > ol li > div p .value {
  position: relative;
  top: -0.5em;
  display: inline-block;
  background-color: #ff87a1;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-price > ol li > div p .value {
    width: 55px;
    height: 55px;
    margin-right: 5px;
    font-size: 18px;
    line-height: 55px;
  }
}

@media (max-width: 767px) {
  .reasons-price > ol li > div p .value {
    width: calc(60 / 750 * 100vw);
    height: calc(60 / 750 * 100vw);
    margin-right: calc(5 / 750 * 100vw);
    font-size: calc(20 / 750 * 100vw);
    line-height: calc(60 / 750 * 100vw);
  }
}

.reasons-price > p {
  position: relative;
  padding: 10px 0;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-price > p {
    margin-top: 40px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .reasons-price > p {
    margin-top: 30px;
    font-size: calc(30 / 750 * 100vw);
  }
}

.reasons-price > p::before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 45px 48px 0 48px;
  border-color: #fff29c transparent transparent transparent;
  z-index: -1;
}

.reasons-price > span {
  position: relative;
  display: block;
  margin: auto;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-price > span {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .reasons-price > span {
    font-size: calc(66 / 750 * 100vw);
  }
}

.reasons-price > span::before, .reasons-price > span::after {
  content: '';
  display: inline-block;
  margin: auto;
}

.reasons-price > span::before {
  position: relative;
  background: url(../img/price_ship_icon.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .reasons-price > span::before {
    top: 3px;
    width: 51px;
    height: 32px;
    margin-right: 5px;
  }
}

@media (max-width: 767px) {
  .reasons-price > span::before {
    top: calc(5 / 750 * 100vw);
    width: calc(77 / 750 * 100vw);
    height: calc(48 / 750 * 100vw);
    margin-right: calc(5 / 750 * 100vw);
  }
}

.reasons-price > span::after {
  position: absolute;
  left: 0;
  right: 0;
  background: url(../img/price_ship_line.png) no-repeat center/cover;
  z-index: -1;
}

@media (min-width: 768px) {
  .reasons-price > span::after {
    bottom: 5px;
    width: 278px;
    height: 15px;
  }
}

@media (max-width: 767px) {
  .reasons-price > span::after {
    bottom: calc(10 / 750 * 100vw);
    width: calc(491 / 750 * 100vw);
    height: calc(28 / 750 * 100vw);
  }
}

.reasons-price > span .sup {
  position: relative;
  top: 1em;
  font-size: 30%;
  vertical-align: top;
}

@media (max-width: 767px) {
  .reasons-price > span .sup {
    left: -0.7em;
  }
}

@media (min-width: 768px) {
  .reasons .price-sample {
    width: 1100px;
    margin: 0 auto 110px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample {
    width: calc(100% - (10px * 2));
    margin: 0 auto 90px;
  }
}

.reasons .price-sample-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  background-color: #f1f9fa;
}

@media (min-width: 768px) {
  .reasons .price-sample-box {
    padding: 50px 30px 30px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample-box {
    padding: calc(60 / 750 * 100vw) calc(20 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}

.reasons .price-sample h4 {
  position: absolute;
  left: 0;
  right: 0;
  display: table;
  margin: auto;
  background-color: #59bdd8;
  border-radius: 35px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons .price-sample h4 {
    top: -21px;
    width: 248px;
    height: 42px;
    font-size: 20px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample h4 {
    top: calc(-32 / 750 * 100vw);
    width: calc(373 / 750 * 100vw);
    height: calc(62 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
    line-height: calc(64 / 750 * 100vw);
  }
}

.reasons .price-sample-txt {
  text-align: center;
}

@media (min-width: 768px) {
  .reasons .price-sample-txt {
    flex-shrink: 0;
    width: 550px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample-txt {
    width: 100%;
  }
}

.reasons .price-sample-txt p {
  line-height: 1.38;
}

.reasons .price-sample-txt p.mt-15 {
  display: block;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .reasons .price-sample-txt p.mt-15 {
    font-size: calc(25 / 750 * 100vw);
    line-height: 1.88;
  }
}

.reasons .price-sample-txt .tag {
  border: solid 1px #222222;
  border-radius: 35px;
}

@media (min-width: 768px) {
  .reasons .price-sample-txt .tag {
    display: inline-block;
    margin-right: 6px;
    padding: 2px 18px 3px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample-txt .tag {
    display: table;
    margin: auto;
    padding: 0 20px;
  }
}

.reasons .price-sample ol {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .reasons .price-sample ol {
    width: 440px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample ol {
    width: 100%;
  }
}

.reasons .price-sample ol li {
  background-color: #ffffff;
  border-radius: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons .price-sample ol li {
    height: 140px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample ol li {
    width: calc(200 / 750 * 100vw);
    height: calc(242 / 750 * 100vw);
  }
}

.reasons .price-sample ol li:not(:last-child) {
  position: relative;
}

.reasons .price-sample ol li:not(:last-child)::after {
  position: absolute;
  content: '+';
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  background-color: #59bdd8;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}

@media (min-width: 768px) {
  .reasons .price-sample ol li:not(:last-child)::after {
    right: -22px;
    width: 32px;
    height: 32px;
    font-size: 28px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample ol li:not(:last-child)::after {
    right: calc(-46 / 750 * 100vw);
    width: calc(56 / 750 * 100vw);
    height: calc(56 / 750 * 100vw);
    font-size: calc(46 / 750 * 100vw);
    line-height: calc(50 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .reasons .price-sample ol li:nth-child(1) {
    width: 126px;
  }
}

@media (min-width: 768px) {
  .reasons .price-sample ol li:nth-child(2) {
    width: 110px;
  }
}

@media (min-width: 768px) {
  .reasons .price-sample ol li:nth-child(3) {
    width: 178px;
  }
}

.reasons .price-sample ol li > p {
  display: table;
  width: 100%;
  font-weight: 600;
}

@media (min-width: 768px) {
  .reasons .price-sample ol li > p {
    height: 42px;
    padding: 10px;
    line-height: 1.28;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample ol li > p {
    height: calc(100 / 750 * 100vw);
    padding: calc(10 / 750 * 100vw);
    line-height: 1.16;
  }
}

.reasons .price-sample ol li > p span {
  display: table-cell;
  vertical-align: middle;
}

.reasons .price-sample ol li > div {
  width: 100%;
}

@media (min-width: 768px) {
  .reasons .price-sample ol li > div {
    display: table;
    height: 78px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample ol li > div {
    display: block;
    width: 80%;
    height: calc(130 / 750 * 100vw);
    margin: auto;
  }
}

.reasons .price-sample ol li > div p {
  font-size: 14px;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons .price-sample ol li > div p {
    display: table-row;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample ol li > div p {
    display: block;
  }
}

.reasons .price-sample ol li > div picture {
  vertical-align: middle;
}

@media (min-width: 768px) {
  .reasons .price-sample ol li > div picture {
    display: table-cell;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample ol li > div picture {
    display: block;
  }
  .reasons .price-sample ol li > div picture img {
    display: block;
    max-height: calc(110 / 750 * 100vw);
    margin: auto;
    object-fit: contain;
  }
}

.reasons .price-sample .note {
  display: block;
  margin-top: 20px;
  text-align: justify;
}

@media (min-width: 768px) {
  .reasons .price-sample .note {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .reasons .price-sample .note {
    font-size: calc(20 / 750 * 100vw);
  }
}

.reasons-plan {
  width: 100%;
}

@media (min-width: 768px) {
  .reasons-plan {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    margin: 60px auto 0;
  }
}

@media (max-width: 767px) {
  .reasons-plan {
    display: block;
    margin: calc(30 / 750 * 100vw) auto 0;
    order: 3;
  }
}

@media (min-width: 768px) {
  .reasons-plan > li {
    flex-shrink: 0;
    width: 435px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li {
    width: 100%;
    margin-top: 30px;
  }
}

.reasons-plan > li > h3 {
  background-color: #bfe6f3;
  border-radius: 35px;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-plan > li > h3 {
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > h3 {
    padding: 5px 0;
    font-size: calc(34 / 750 * 100vw);
  }
}

.reasons-plan > li > p {
  display: block;
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-plan > li > p {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > p {
    font-size: calc(28 / 750 * 100vw);
  }
}

.reasons-plan > li > p .sup {
  position: relative;
  top: 1em;
  font-size: 30%;
  vertical-align: top;
}

.reasons-plan > li > ul {
  position: relative;
  width: 100%;
  background-color: #f1f9fa;
}

@media (min-width: 768px) {
  .reasons-plan > li > ul {
    margin-top: 30px;
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul {
    margin-top: 20px;
    padding: calc(80 / 750 * 100vw) calc(20 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}

.reasons-plan > li > ul::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
}

.reasons-plan > li > ul[data-num="01"]::after {
  /* background: url(../img/reasons_plan_img_01.png) no-repeat center/contain; */
}

@media (min-width: 768px) {
  .reasons-plan > li > ul[data-num="01"]::after {
    width: 107px;
    height: 121px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul[data-num="01"]::after {
    width: calc(161 / 750 * 100vw);
    height: calc(182 / 750 * 100vw);
  }
}

.reasons-plan > li > ul[data-num="01"] li > span {
  background: url(../img/reasons_plan_ttl_01.png) no-repeat center/contain;
}

.reasons-plan > li > ul[data-num="02"]::after {
  background: url(../img/reasons_plan_img_02.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .reasons-plan > li > ul[data-num="02"]::after {
    width: 119px;
    height: 128px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul[data-num="02"]::after {
    width: calc(179 / 750 * 100vw);
    height: calc(192 / 750 * 100vw);
  }
}

.reasons-plan > li > ul[data-num="02"] li > span {
  background: url(../img/reasons_plan_ttl_02.png) no-repeat center/contain;
}

.reasons-plan > li > ul > li {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .reasons-plan > li > ul > li {
    padding: 40px 15px 20px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul > li {
    padding: calc(60 / 750 * 100vw) calc(20 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .reasons-plan > li > ul > li:not(:first-child) {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul > li:not(:first-child) {
    margin-top: 50px;
  }
}

@media (min-width: 768px) {
  .reasons-plan > li > ul > li:nth-child(2) {
    height: 208px;
  }
}

.reasons-plan > li > ul > li > span {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  font-weight: 600;
  line-height: 1.10;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-plan > li > ul > li > span {
    top: -30px;
    width: 62px;
    height: 62px;
    padding: 13px 0;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul > li > span {
    top: calc(-55 / 750 * 100vw);
    width: calc(110 / 750 * 100vw);
    height: calc(110 / 750 * 100vw);
    padding: calc(22 / 750 * 100vw) 0;
    font-size: calc(26 / 750 * 100vw);
  }
}

.reasons-plan > li > ul > li > span > span {
  display: block;
  font-weight: 600;
  line-height: 1.10;
}

@media (min-width: 768px) {
  .reasons-plan > li > ul > li > span > span {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul > li > span > span {
    font-size: calc(38 / 750 * 100vw);
  }
}

.reasons-plan > li > ul > li h4 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: dashed 1px #333333;
  color: #59bdd8;
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-plan > li > ul > li h4 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul > li h4 {
    font-size: calc(38 / 750 * 100vw);
  }
}

.reasons-plan > li > ul > li h4 .sup {
  position: relative;
  top: 1em;
  color: #333333;
  font-size: 30%;
  vertical-align: top;
}

.reasons-plan > li > ul > li p {
  text-align: justify;
}

@media (min-width: 768px) {
  .reasons-plan > li > ul > li p.last {
    padding-right: 75px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul > li p.last {
    padding-right: calc(140 / 750 * 100vw);
  }
}

.reasons-plan > li > ul > li p .sup {
  position: relative;
  top: 1em;
  font-size: 30%;
  vertical-align: top;
}

.reasons-plan > li > ul > li > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}

.reasons-plan > li > ul > li > div .lft {
  flex-shrink: 0;
  width: 44%;
}

.reasons-plan > li > ul > li > div .rgt {
  flex-shrink: 0;
  width: 56%;
}

.reasons-plan > li > ul > li > div .rgt .sup {
  position: relative;
  top: 1em;
  font-size: 30%;
  vertical-align: top;
}


.reasons-plan > li > ul > li > div .rgt::before {
  content: '▶';
  display: inline-block;
}

@media (min-width: 768px) {
  .reasons-plan > li > ul > li > div .rgt::before {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .reasons-plan > li > ul > li > div .rgt::before {
    margin-right: calc(10 / 750 * 100vw);
  }
}

.reasons-plan > li > ul > li > div .rgt > span {
  display: inline;
  color: #ee306b;
}

/* ============================
  scene
=============================*/
.scene {
  display: block;
}

@media (min-width: 768px) {
  .scene {
    margin: 20px auto 0;
  }
}

@media (max-width: 767px) {
  .scene {
    margin: 30px auto 0;
  }
}

@media (min-width: 768px) {
  .scene-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    width: 900px;
    margin: 60px auto;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .scene-body {
    display: grid;
    width: 100%;
    margin: 30px auto;
  }
}

@media (min-width: 768px) {
  .scene-body > div {
    flex-shrink: 0;
    width: 470px;
  }
}

@media (max-width: 767px) {
  .scene-body > div {
    width: 100%;
    margin-top: 20px;
    order: 2;
  }
}

.scene-body > div h3 {
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .scene-body > div h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .scene-body > div h3 {
    font-size: calc(32 / 750 * 100vw);
    text-align: center;
  }
}

.scene-body > div p {
  margin-top: 10px;
  text-align: justify;
}

.scene-body > picture {
  border: solid 2px #bfe6f3;
}

@media (min-width: 768px) {
  .scene-body > picture {
    flex-shrink: 0;
    width: 395px;
    height: 288px;
  }
}

@media (max-width: 767px) {
  .scene-body > picture {
    width: 80%;
    margin: 30px auto 0;
    order: 1;
  }
}

@media (min-width: 768px) {
  .scene ol {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    width: 900px;
    margin: 40px auto;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .scene ol {
    display: block;
    width: 90%;
    margin: auto;
  }
}

.scene ol li {
  background-color: #f1f9fa;
}

@media (min-width: 768px) {
  .scene ol li {
    flex-shrink: 0;
    width: 440px;
    margin-top: 20px;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .scene ol li {
    width: 100%;
    margin: 20px auto 0;
    padding: 20px;
  }
}

.scene ol li picture {
  display: block;
}

@media (min-width: 768px) {
  .scene ol li picture {
    width: 100%;
    height: 238px;
  }
}

@media (max-width: 767px) {
  .scene ol li picture {
    width: 80%;
    margin: auto;
  }
}

.scene ol li span {
  display: block;
  margin-top: 10px;
  color: #4fb6d3;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .scene ol li span {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .scene ol li span {
    font-size: calc(32 / 750 * 100vw);
  }
}

.scene ol li p {
  display: block;
  margin-top: 10px;
  text-align: justify;
}

/* ============================
	qanda
=============================*/
.qanda {
  display: block;
}

@media (min-width: 768px) {
  .qanda {
    margin: 0 auto 90px;
  }
}

@media (max-width: 767px) {
  .qanda {
    margin: 0 auto 60px;
  }
}

.qanda-list {
  display: block;
  margin: 60px auto 0;
  list-style: none;
}

@media (min-width: 768px) {
  .qanda-list {
    width: 800px;
  }
}

@media (max-width: 767px) {
  .qanda-list {
    width: 100%;
  }
}

.qanda-list > li {
  position: relative;
  width: 100%;
  border: solid 1px #4fb6d3;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .qanda-list > li {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .qanda-list > li {
    margin-bottom: 20px;
  }
}

.qanda-q {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  font-weight: 700;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 768px) {
  .qanda-q {
    padding: 15px 50px;
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  .qanda-q {
    padding: calc(30 / 750 * 100vw) calc(60 / 750 * 100vw);
  }
}

.qanda-q::before {
  content: 'Q';
  position: absolute;
  display: block;
  margin: auto;
  color: #4fb6d3;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .qanda-q::before {
    top: 15px;
    left: 20px;
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .qanda-q::before {
    top: calc(26 / 750 * 100vw);
    left: calc(20 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }
}

.qanda-q p::before, .qanda-q p::after {
  content: '';
  position: absolute;
  display: block;
  margin: auto;
  transition: .3s;
  z-index: 1;
}

@media (min-width: 768px) {
  .qanda-q p::before, .qanda-q p::after {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 767px) {
  .qanda-q p::before, .qanda-q p::after {
    top: calc(36 / 750 * 100vw);
    right: calc(20 / 750 * 100vw);
  }
}

.qanda-q p::before {
  background-color: #4fb6d3;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .qanda-q p::before {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 767px) {
  .qanda-q p::before {
    width: calc(34 / 750 * 100vw);
    height: calc(34 / 750 * 100vw);
  }
}

.qanda-q p::after {
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(135deg);
}

@media (min-width: 768px) {
  .qanda-q p::after {
    top: 20px;
    right: 21px;
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 767px) {
  .qanda-q p::after {
    top: calc(46 / 750 * 100vw);
    right: calc(31 / 750 * 100vw);
    width: calc(8 / 750 * 100vw);
    height: calc(8 / 750 * 100vw);
  }
}

.qanda-q.open p::after {
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .qanda-q.open p::after {
    top: 22px;
  }
}

@media (max-width: 767px) {
  .qanda-q.open p::after {
    top: calc(48 / 750 * 100vw);
    right: calc(30 / 750 * 100vw);
  }
}

.qanda-a {
  position: relative;
  display: none;
  border-top: dashed 1px #4fb6d3;
  text-align: justify;
}

@media (min-width: 768px) {
  .qanda-a {
    padding: 20px 50px;
  }
}

@media (max-width: 767px) {
  .qanda-a {
    padding: calc(30 / 750 * 100vw) calc(60 / 750 * 100vw);
  }
}

.qanda-a::before {
  content: 'A';
  position: absolute;
  display: block;
  color: #ee306b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .qanda-a::before {
    top: 15px;
    left: 20px;
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .qanda-a::before {
    top: calc(26 / 750 * 100vw);
    left: calc(20 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }
}

.qanda-a p {
  text-align: justify;
}

.qanda-a p a {
  color: #333333;
  text-decoration: underline;
  word-break: break-all;
}

.qanda-a span {
  font-weight: 600;
}

.qanda-a > ol {
  list-style: none;
}

@media (min-width: 768px) {
  .qanda-a > ol {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .qanda-a > ol {
    margin-top: 20px;
  }
}

.qanda-a > ol li {
  position: relative;
}

@media (min-width: 768px) {
  .qanda-a > ol li {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .qanda-a > ol li {
    padding-left: calc(40 / 750 * 100vw);
  }
}

.qanda-a > ol li::before {
  content: '●';
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================
	Footer
=============================*/
footer {
  background-color: #ffffff;
}

@media (min-width: 768px) {
  footer {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  footer {
    padding: calc(45 / 750 * 100vw) 0;
  }
}

footer .footer-copyright {
  text-align: center;
}

@media (min-width: 768px) {
  footer .footer-copyright {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  footer .footer-copyright {
    font-size: calc(20 / 750 * 100vw);
  }
}
