@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,
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

* {
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 14px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.section {
  padding: 10rem 4rem;
}

.mini-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6rem;
}

.marker {
  background: linear-gradient(transparent 70%, #9FE5FF 30%);
}

.sp-br {
  display: none;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 5rem 2rem;
  }

  .mini-title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }

  .pc-br {
    display: none;
  }
  
  .sp-br {
    display: block;
  }
}

.arrow {
  text-align: center;
  padding: 4rem;
  font-size: 1.8rem;
  background: #fff;
  position: relative;
  top: -1px;
}
.arrow a {
  text-decoration: none;
  color: #333;
}
.arrow a img {
  vertical-align: middle;
  margin-left: 1rem;
}


/*** ボタン ***/

.link-btn {
  max-width: 24rem;
  width: 100%;
  padding: 1.3rem 4rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 10rem;
  text-decoration: none;  
  background: #ED4063;
  border: 2px solid #ED4063;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}

.link-btn::before {
    content: "";
    background: url(../img/account_icon.svg) no-repeat center / contain;
    width: 2.4rem;
    height: 2.4rem;
}

.link-btn.inquiry {
  background: #fff;
  border: 2px solid #0099FF;
  color: #0099FF;
}

.link-btn.inquiry::before {
    content: "";
    background: url(../img/inquiry_icon.svg) no-repeat center / contain;
}

.btn-box {
  display: flex;
  gap: 2.5rem;
}

@media screen and (max-width: 767px) {
  .btn-box {
    flex-flow: column;
    align-items: center;
  }
}

/*** 波 ***/

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom {
    bottom: 0;
    top: auto;
    transform: scaleY(-1);
}

.wave svg {
    position: relative;
    display: block;
    width: calc(157% + 1.3px);
    height: 123px;
}

.wave .shape-fill {
    fill: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .wave svg {
    width: 145%;
    height: 50px;
  }
}


/*** MV ***/

.mv {
  margin-top: 6.7rem;
  position: relative;
}

.mv-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  background: #F5F7F9;
  display: flex;
  justify-content: center;
}

.mv .mv-box {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 3rem;
  position: relative;
  right: -4rem;
  z-index: 10;
}

.mv .mv_img {
  position: relative;
  left: -4rem;
  z-index: 1;
}

.mv .mv-box .btn-box,
.mv .mv-box .mv-text {
  padding-left: 5rem;
}

@media screen and (max-width: 1100px) {
  .mv .mv-box {
    gap: 1.6rem;
  }

  .mv .mv-box .btn-box,
  .mv .mv-box .mv-text {
    padding-left: 0;
  }

  .mv .mv-box .mv-text {
    width: 70%;
  }

  .mv .mv-box .link-btn {
    font-size: 1.6rem;
    max-width: 20rem;
    padding: 1rem 3rem;
  }
}

@media screen and (max-width: 767px) {
  .mv-wrap {
    flex-flow: column;
    padding-bottom: 2rem;
  }
  
  .mv .mv-box {
    right: 0;
    margin: 2rem 0;
  }
  
  .mv .mv_img {
    left: 0;
  }

  .mv .btn-box {
    gap: 1rem;
    padding-top: 1rem;
  }

  .mv .mv-box .mv-text {
    width: 90%;
    margin: 0 auto;
  }
}


/*** 業務が忙しい ***/

.busy-section {
  padding: 10rem 4rem 5rem;
  position: relative;
  background: #E5ECF2;
}

.busy-section::before {
  content: '';
  position: absolute;
  bottom: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9rem 49vw 0 49vw;
  border-color: #E5ECF2 transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

.busy-section .busy-section-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.busy-section .busy-section-box h2 {
  font-size: 3.6rem;
  font-weight: 700;
}

.busy-section .busy-section-box h2 .big {
  font-size: 6.4rem;
}

.busy-section .busy-section-box h2 .sub {
  font-size: 2.4rem;
}

.busy-section .busy-section-box ul {
  margin-top: 3.6rem;
  background: #fff;
  padding: 4rem;
  border-radius: 3rem;
  font-size: 2rem;
  font-weight: 500;
}

.busy-section .busy-section-box ul li {
  background: url(../img/busy-check.svg) no-repeat;
  background-position: left center;
  padding-left: 4rem;
}

.busy-section .busy-section-box ul li + li {
  margin-top: 1.5rem;
}

.busy-section .busy-section-box ul li span {
  background: #9FE5FF;
}


@media screen and (max-width: 767px) {
  .busy-section {
    padding: 5rem 2rem 5rem;
  }

  .busy-section::before {
    border-width: 4rem 48vw 0 48vw;
  }

  .busy-section .busy-section-box {
    flex-flow: column;
    gap: 2rem;
  }

  .busy-section .busy-section-box h2 {
    font-size: 2.8rem;
    width: fit-content;
    margin: 0 auto;
  }

  .busy-section .busy-section-box h2 .big {
    font-size: 5rem;
  }
  
  .busy-section .busy-section-box h2 .sub {
    font-size: 1.8rem;
  }
  .busy-section .busy-section-box ul {
    font-size: 1.6rem;
  }
}

/*** UPSHARE ***/

.upshare-section {
  text-align: center;
  padding: 19rem 4rem 10rem;
  overflow: hidden;
}

.upshare-section .upshare-campaign {
  background: url(../img/upshare_back_01.webp) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4rem 2rem;
  border-radius: 5rem;
  margin: 0 auto;
  max-width: 100rem;
  height: 63.2rem;
  position: relative;
}

.upshare-section .upshare-campaign::before {
  content: url(../img/upshare_back_03.webp);
  position: absolute;
  left: -103rem;
  top: -5rem;
}

.upshare-section .upshare-campaign::after {
  content: url(../img/upshare_back_02.webp);
  position: absolute;
  right: -103rem;
  top: 5rem;
}

.upshare-section .upshare-text {
  background: #ffffff;
  padding: 4rem 2rem 2rem;
  border-radius: 5rem;
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
}

.upshare-section .upshare-text .campaign {
  font-size: 2rem;
  font-weight: 700;
  background: #9FE5FF;
  padding: 0 1rem;
  width: fit-content;
  text-align: center;
  margin: 1rem auto;
}

.upshare-section .upshare-text h2 {
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.upshare-section .upshare-text h2:after {
  content: url(../img/upshare_kirakira.svg);
  position: absolute;
  width: 7.4rem;
  height: 6rem;
  top: -1rem;
  right: 1rem;
}

.upshare-section .upshare-text h2 .big{
  line-height: 6rem;
  display: block;
  margin: 2rem 0 2rem;
}

.upshare-section .upshare-text h2 .marker {
  font-size: 6rem;
}

.upshare-section .upshare-text h2 .mini {
  font-size: 2.6rem;
}

.upshare-section .upshare-text h2 .mini .red {
  font-size: 3.6rem;
  color: #E60012;
}

.upshare-section .upshare-text .rank {
  font-size: 1.4rem;
  line-height: 2.6rem;
  background: #eee;
  border-radius: 3rem;
  padding: 2.5rem 2rem 2.5rem;
  margin-top: 3rem;
  width: 100%;
}

.upshare-section > p {
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

@media screen and (max-width: 1100px) {
  .upshare-section .upshare-campaign::before,.upshare-section .upshare-campaign::after {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .upshare-section {
    padding: 9rem 2rem 5rem;
  }

  .upshare-section .upshare-text {
    background: rgba(255, 255, 255, 0.9);
  }

  .upshare-section .upshare-campaign {
    padding: 2rem;
    height: auto;
    background-position: 15% 50%;
  }

  .upshare-section .upshare-text .campaign {
    font-size: 1.6rem;
  }

  .upshare-section .upshare-text h2 {
    font-size: 2.4rem;
  }

  .upshare-section .upshare-text h2 .big {
    line-height: 4rem;
  }

  .upshare-section .upshare-text h2 .marker {
    font-size: 3rem;
  }
  
  .upshare-section .upshare-text h2:after {
    scale: 0.7;
    right: -2rem;
  }

  .upshare-section .upshare-text h2 .mini {
    font-size: 2rem;
  }

  .upshare-section .upshare-text h2 .mini .red {
    font-size: 3rem;
  }
}


/*** POINT ***/

.point-section {
  text-align: center;
  padding: 0 0 2rem;
  background: #fff;
  position: relative;
  bottom: -1px;
  z-index: 10;
}

.point-section .point-title {
  background: linear-gradient(#daf5ff, #b3dbfb);
  border-radius: 5rem;
  overflow: hidden;
}

.point-section .mini-title {
  background: url(../img/point-title.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 6rem 4rem 10rem;
  margin: 0;
}

.point-section .point-wrap {
  padding: 0 4rem;
  background: url(../img/point_back.webp)no-repeat;
  background-position: center;
}

@media screen and (max-width: 1100px) {
  .point-section .mini-title {
    background-size: 100% 90%;
  }
  
  .point-section .point-wrap {
    background: none;
  }
}

.point-section .point-box {
  padding: 8rem 0;
  position: relative;
  top: -6rem;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  max-width: 100rem;
  margin: 0 auto;
  border-radius: 5rem;
}

.point-section .point-box h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 3.6rem 0;
}

.point-section .point-box .point01 {
  border-bottom: 6px solid #9FE5FF;
  padding: 0 4rem 1.2rem;
}

.point-section .point-box .point01 h3 + picture{
  padding-top: 2rem;
  display: block;
}

.point-section .point-box .point01 h4 {
  font-size: 3rem;
  font-weight: 700;
  margin: 4rem 0;
}

.point-section .point-box .point01 h4 span{
  font-size: 4rem;
}

.point-section .point-box h4 + p {
  font-size: 2rem;
  font-weight: 500;
}

.point-section .point-box .note {
  font-size: 1.2rem;
  color: #999;
  text-align: right;
  margin-top: 8rem;
  position: relative;
  right: -2.8rem
}

/*point02*/

.point-section .point-box .point02 {
  border-bottom: 6px solid #9FE5FF;
  padding: 8rem 0;
}

.point-section .point-box .point02 h3 + p{
  font-size: 2rem;
  font-weight: 500;
  line-height: 4rem;
}

.point-section .point-box .point02 .point02-box {
  display: flex;
  margin-top: 9rem;
}

.point-section .point-box .point02 .point02-box div {
  position: relative;
}

.point-section .point-box .point02 .point02-box div h4 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -1.5rem;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(319deg, #32bff4, #0f7ca6);
  width: fit-content;
  padding: .2rem 2.5rem;
  border-radius: 5rem;
}

.point-section .point-box .point02 .point02-box div p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  max-width: 33.5rem;
  border-radius: 2rem 2rem 0 0;
  font-size: 2rem;
  font-weight: 700;
}

.point-section .point-box .point02 .point02-box div p::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 7px;
  height: 65%;
  border-radius: 5px;
  background: #9FE5FF;
}

.point-section .point-box .point02 .point02-box .up h4 {
  background: linear-gradient(319deg, #f0767f, #f54351);
}

.point-section .point-box .point02 .point02-box .up p::before {
  background: #FD99A1;
}

.point-section .point-arrow {
  margin: 6rem 0;
}

.point-section .start {
  font-size: 2.8rem;
  font-weight: 700;
}


/*point03*/

.point-section .point-box .point03 {
  background: url(../img/point_kami.webp) no-repeat;
  background-size: contain;
  padding: 8rem 2rem 2rem;
}

.point-section .point-box .point03 p {
  font-weight: 500;
}

.point-section .point-box .point03 .zero {
  width: fit-content;
  margin: 6rem auto 4rem;
  position: relative;
  left: -1.2rem;
}

.point-section .point-box .point03 .zero::before {
  content: "基本設定は";
  font-size: 4rem;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  left: -8rem;
}

.point-section .point-box .point03 .zero::after {
  content: "円";
  font-size: 6.4rem;
  font-weight: 700;
  position: absolute;
  right: -2rem;
  bottom: 0;
}



@media screen and (max-width: 767px) {
  .point-section {
    padding: 0;
  }

  .point-section .mini-title {
    background-size: 130% 100%;
    padding: 3rem 2rem 8rem;
    margin: 0;
  }

  .point-section .point-wrap {
    padding: 0 2rem;
  }

  .point-section .point-box {
    top: -6rem;
    padding: 4rem 0;
  }

  .point-section .point-box h3 {
    font-size: 2.2rem;
    margin: 3.6rem 0;
  }

  .point-section .point-box .point01 {
    padding: 0 2rem 1.2rem;
  }

  .point-section .point-box .point01 h4 {
    font-size: 2.2rem;
    margin: 2rem 0;
  }

  .point-section .point-box .point01 h4 span {
    font-size: 3.2rem;
  }

  .point-section .point-box .note {
    margin-top: 4rem;
    right: -0.5rem;
  }

  .point-section .point-box .point02 {
    padding: 4rem 0;
  }

  .point-section .point-box .point02 h3 + p {
    font-size: 1.6rem;
    line-height: 3rem;
    padding: 0 2rem;
  }

  .point-section .point-box .point02 .point02-box {
    margin-top: 5rem;
    flex-flow: column;
  }

  .point-section .point-box .point02 .point02-box div h4 {
    font-size: 1.8rem;
  }

  .point-section .point-box .point02 .point02-box div p {
    font-size: 1.6rem;
    padding: 2rem 2rem 4rem 2rem;
    position: relative;
    bottom: 2rem;
  }

  .point-section .point-arrow {
    margin: 0 0 3rem 0;
  }

  .point-section .start {
    font-size: 2rem;
  }

  .point-section .point-box .point03 .zero {
    width: 70%;
    left: 0;
    margin: 3rem auto 4rem;
  }

  .point-section .point-box .point03 .zero::before {
    font-size: 2rem;
    bottom: 11px;
    left: -4rem;
  }

  .point-section .point-box .point03 .zero::after {
    font-size: 5.4rem;
    right: -4rem;
  }

  .point-section .point-box .point03 {
    padding: 4rem 2rem 2rem;
  }
}

/*** details ***/

.details-section {
  background: linear-gradient(0deg, #b3dbfb, #ace8ff);
  text-align: center;
  position: relative;
  padding: 15rem 4rem;
}

.details-section .details-section_box {
  background: #ffffff;
  border-radius: 5rem;
  max-width: 100rem;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.details-section .details-section_box .mini-title {
  margin-bottom: 3rem;
}

.details-section .details-section_box .mini-title + p {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.btn-box-after {
  text-align: center;
}

.details-section .option {
  margin: 6rem auto 0;
  max-width: 66.8rem;
}



@media screen and (max-width: 767px) {
  .details-section {
    padding: 6rem 2rem;
  }

  .details-section .details-section_box {
    padding: 3rem 2rem;
  }

  .details-section .details-section_box .mini-title + p {
    font-size: 1.6rem;
  }

  .btn-box-after {
    position: relative;
    overflow: auto;
  }

  .btn-box-after img {
    max-width: 60rem;
    padding-right: 2rem;
  }

  .details-section .option {
    margin-top: 3rem;
  }
}





/*** COST ***/

.cost-section {
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  box-sizing: content-box;
  background: #fff;
  position: relative;
  top: -1px;
}

.cost-section .cost_box {
  width: 52rem;
}

.cost-section h2 {
  font-size: 2.8rem;
  text-align: left;
  margin-bottom: 3rem;
}

.cost-section .big {
  font-size: 4.8rem;
  color: #8ADCFA;
}

.cost-section .cost_box p {
  font-weight: 500;
  margin-bottom: 6rem;
  font-size: 1.8rem;
}

.cost-section .cost-img_box img {
  border-radius: 5rem;
  flex-shrink: 0;
  width: 40rem;
}

@media screen and (max-width: 1000px) {
  .cost-section .cost-img_box img {
    width: 35rem;
  }
}

@media screen and (max-width: 767px) {
  .cost-section {
    flex-flow: column-reverse;
  }

  .cost-section h2 {
    font-size: 2rem;
    width: fit-content;
    margin: 0 auto 3rem;
  }

  .cost-section .big {
    font-size: 4rem;
  }

  .cost-section .cost_box {
    width: 100%;
  }

  .cost-section .cost_box p {
    margin-bottom: 3rem;
    font-size: 1.6rem;
  }

  .cost-section .cost-img_box {
    text-align: center;
  }

  .cost-section .cost-img_box img {
    width: 70%;
  }
}


/*** FAQ ***/

.faq-section {
  background: linear-gradient(90deg, #f6f6f6, #e5e5e5);
  border-radius: 5rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .10)
}

.faq-section h2 span{
  font-weight: 700;
  font-size: 6.4rem;
}

.faq-section h3 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 6rem 0 4rem;
}

.faq-section .inquiry {
  margin: 0 auto;
}

.faq-section dl div {
  background: #fff;
  max-width: 100rem;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 2rem 2rem 2rem 4rem;
  position: relative;
}

.faq-section dl div + div {
  margin: 2rem auto 0;
}

.faq-section dl div::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 65%;
    border-radius: 5px;
    background: #9FE5FF;
}

.faq-section dl dt,
.faq-section dl dd {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.faq-section dl dd {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.faq-section dl dt::before,
.faq-section dl dd::before {
  content: 'Q';
  font-size: 3.2rem;
  font-weight: 700;
  padding-right: 2rem;
}

.faq-section dl dd::before {
  content: 'A';
}

@media screen and (max-width: 767px) {
  .faq-section h2 span{
    font-size: 4.4rem;
  }

  .faq-section h3 {
    font-size: 2rem;
    margin: 4rem 0 4rem;
}

.faq-section dl dt, .faq-section dl dd {
    font-size: 1.6rem;
}
}


/*** FLOW ***/

.flow-section {
  background: linear-gradient(90deg, #edfaff, #abe7fd);
  border-radius: 0 0 5rem 5rem;
  position: relative;
  z-index: 9;
  top: -10rem;
  padding: 20rem 4rem 10rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .10)
}

.flow-section ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 100rem;
  margin: 0 auto;
  column-gap: 9.5rem;
  row-gap: 6rem;
  text-align: center;
  font-weight: 500;
}

.flow-section ul li {
  width: calc(25% - 9.5rem * 3 / 4);
}

.flow-section ul li div {
  position: relative;
  padding-bottom: 1.5rem;
}

.flow-section ul li div::after {
  content: url(../img/flow_arrow.svg);
  position: absolute;
  top:0;
  bottom:0;
  right: -5rem;
  margin:auto 0;
  width: 1rem;
  height: 3.9rem;
}

.flow-section ul li:last-child div::after,
.flow-section ul li:nth-child(4) div::after{
  content: none;
}

@media screen and (max-width: 767px) {
  .flow-section {
    padding: 10rem 2rem 5rem;
    top: -5rem;
  }

  .flow-section ul {
    column-gap: 2rem;
    row-gap: 3rem;
    font-size: 1.4rem;
  }

  .flow-section ul li {
    width: calc(33.33% - 2rem * 2 / 3);
  }
  
  .flow-section ul li:nth-child(4) div::after{
    content: url(../img/flow_arrow.svg);
  }

  .flow-section ul li div::after {
    right: -1.5rem;
    scale: .9;
  }

  .flow-section ul li:nth-child(3n) div::after {
    content: none;
  }
}


/*** 夏のセール ***/
.sale-section {
  border-radius: 0 0 5rem 5rem;
  position: relative;
  z-index: 8;
  top: -20rem;
  padding: 20rem 4rem 10rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .10);
  margin-bottom: -20rem;
}

.sale-summer_box {
  text-align: center;
}

.sale-section .note {
    font-size: 1.4rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 4rem 0 0 0;
}

.sale-section .note p + p {
    margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .sale-section {
    padding: 10rem 0 5rem 2rem;
    top: -10rem;
    margin-bottom: -10rem;
  }

  .sale-section .mini-title{
    padding-right: 2rem;
  }

  .sale-summer_box {
    position: relative;
    overflow: auto;
  }

  .sale-summer_box img {
    max-width: 60rem;
    padding-right: 2rem;
  }

  .sale-section .note {
    padding: 4rem 2rem 0 0;
  }

  .details-section .sale-summer_box img {
    padding-right:0 ;
  }
}


/*** campaign概要 ***/

.summary {
  text-align: center;
}

.summary .title-box {
  background: linear-gradient(#ace8ff, #50bce4);
  padding: .5rem;
  width: fit-content;
  margin: 0 auto;
  border-radius: 2.5rem;
  position: relative;
  bottom: -2rem;
  z-index: 10;
}

.summary .title-box h2 {
  background: linear-gradient(90deg, #79cceb, #4da5eb);
  width: fit-content;
  border-radius: 2rem;
  color: #fff;
  padding: 1rem 8rem 1.3rem;
  margin: 0 auto;
  font-size: 3.2rem;
  font-weight: 700;
  border: 1rem solid #fff;
}

.summary .summary-box {
  max-width: 100rem;
  margin: 0 auto;
  padding: 6rem 4rem;
  border-radius: 5rem;
  background: url(../img/summary_box_top.svg),url(../img/summary_box_center.svg),url(../img/summary_box_bottom.svg),#F8F8F8;
  background-position: top,center,bottom;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.summary .summary-box dl {
  font-size: 1.8rem;
  text-align: left;
}

.summary .summary-box > dl {
  margin-top: 4rem;
}

.summary .summary-box dt {
  background: linear-gradient(#ace8ff, #b3dbfb);
  font-weight: 700;
  border-radius: 1rem;
  padding: 0.5rem 2rem;
}

.summary .summary-box dd {
  padding: 2rem 2rem 0 2rem;
}

.summary .summary-box dl h3 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.summary .summary-box dl h4 {
  font-weight: 700;
  margin: 3rem 0 1.5rem;
}

.summary .summary-box .deadline {
  display: flex;
  gap: 2rem;
}

.summary .summary-box .deadline dl {
  width: calc(50% - 2rem * 1 / 2);
}

.summary .summary-box dl ul li {
  background: url(../img/summary_circle.svg)no-repeat;
  background-position: left top 1rem;
  padding-left: 2rem;
}

.summary .summary-box dl ul li + li {
  margin-top: 1rem;
}

.summary .summary-box .under {
  text-decoration: underline;
  text-underline-offset: .3rem;
}

.summary .summary-box .mail h3 {
  display: flex;
  gap: 1rem;
  align-self: center;
  margin-bottom: 0.5rem;
}

.summary .summary-box .mail h3 img {
  height: fit-content;
  padding-top: 0.6rem;
}

.summary .summary-box .mail dd > div {
  margin-left: 2.5rem;
}

.summary .summary-box .big {
  font-weight: 700;
}

.summary .summary-box .small {
  font-size: 1.6rem;
}

.summary .summary-box .mail-box {
  display: flex;
  column-gap: 4rem;
  margin-top: 2rem;
}

.summary .summary-box .note {
  font-size: 1.6rem;
}




@media screen and (max-width: 767px) {
  .summary .title-box {
    border-radius: 1.5rem;
    bottom: -1.5rem;
  }

  .summary .title-box h2 {
    border-radius: 1rem;
    padding: .5rem 4rem .8rem;
    font-size: 2.4rem;
    border: .5rem solid #fff;
  }

  .summary .summary-box {
    padding: 4rem 2rem;
    border-radius: 3rem;
    background: url(../img/summary_box_top_sp.svg),url(../img/summary_box_center_sp.svg),url(../img/summary_box_bottom_sp.svg),#F8F8F8;
    background-position: top,center,bottom;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .summary .summary-box dl {
    font-size: 1.4rem;
  }

  .summary .summary-box > dl {
    margin-top: 2rem;
  }
  
  .summary .summary-box dd {
    padding: 1rem 0 0;
  }

  .summary .summary-box dl h3 {
    font-size: 1.6rem;
  }
  
  .summary .summary-box .mail-box {
    flex-flow: column;
    gap: 2rem;
  }
  
  .summary .summary-box .note {
    font-size: 1.2rem;
  }
  
  .summary .summary-box dl ul li {
    background-position: left top .7rem;
    padding-left: 1.5rem;
  }

  .summary .summary-box .small {
    font-size: 1.4rem;
  }
}










/*** 最適なはじめかた ***/

.end_contents {
  padding: 0 4rem 10rem 4rem;
  text-align: center;
}

.end_contents img {
  border-radius: 5rem;
  margin-bottom: 6rem;
}

.end_contents .marker {
  font-size: 4rem;
}

.end_contents .btn-box {
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .end_contents {
    padding: 0 2rem 5rem 2rem;
  }

  .end_contents .mini-title {
    font-size: 2.2rem;
  }

  .end_contents img {
    border-radius: 3rem;
    margin-bottom: 4rem;
  }

  .end_contents .marker {
    font-size: 3rem;
  }
}



.Footer {
  margin: 80px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .Footer {
    margin: 40px 0;
  }
}
.Footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.Footer_nelogo {
  margin: 0 auto 30px;
}
.Footer_tel {
  margin: 0 auto 70px;
}
.Footer_copyrights {
  margin-bottom: 54px;
  letter-spacing: 1px;
  font-size: 11px;
}

.footer__links--ne-policy a {
  color: #09f;
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
