@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: 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;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

/* layout START */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  height: 100%;
  overflow-y: scroll;
  width: 100vw;
  margin: 0 auto;
  overflow-x: hidden;
}

header {
  width: 100%;
}

input,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: 900;
  -webkit-appearance: none;
  appearance: none;
}

select,
option {
  font-weight: 900;
}

select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
}

.anchor {
  display: block;
  margin-top: -50px;
  padding-top: 50px;
}

/* layout END */
/* templates START */
.footer {
  padding: 42px;
  background-color: #fff;
}
.footer__copyrights {
  font-family: Noto Sans JP;
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
}

.section-head {
  background-size: cover;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
.section-head__icon {
  margin-bottom: 10px;
}
.section-head__head-title {
  margin-bottom: 20px;
  font-size: 14px;
  color: #747779;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.section-head__head-sub-title {
  color: #165e83;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.5;
}

/* templates END */
/* components START */
.section-title {
  padding: 16px 0;
  margin: 0 -15px;
  display: block;
  background-color: #165e83;
  color: #fff;
  letter-spacing: 0.3em;
  text-align: center;
}
.section-title__main {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
}
.section-title__sub {
  margin-top: 15px;
  display: block;
  width: 100%;
  font-size: 28px;
  font-weight: 400;
}

.link-button {
  /*--水平方向 垂直方向 色--*/
  box-shadow: 4px 4px rgba(0, 0, 0, 0.16);
  position: relative;
  display: block;
  min-width: 327px;
  width: 100%;
  padding: 26px 24px;
  box-sizing: border-box;
  transition: 0.3s ease;
  background-color: #fff;
  border: #000 solid 4px;
  border-radius: 72px;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
  color: #000;
}
.link-button br {
  display: none;
}
.link-button:hover {
  color: #fff;
  background-color: #000;
}
.link-button:after {
  position: absolute;
  margin-top: 1px;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  width: 24px;
  height: 24px;
  background: url(../image/button_arrow.svg) top center no-repeat;
  background-size: contain;
}
.link-button:hover:after {
  background: url(../image/button_arrow_hover.svg) top center no-repeat;
}
.link-button--yellow {
  background-color: #fcff70;
}
.link-button--white {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .link-button {
    padding: 20px 16px;
    line-height: 1.25;
    font-size: 16px;
  }
  .link-button br {
    display: block;
  }
  .link-button:after {
    left: 16px;
    width: 18px;
    height: 18px;
  }
}
/* components END */
/* sections START */
.main-view-section__main-view {
  position: relative;
  padding: 50px 50px 130px;
  background: url(../image/MV_img.jpg) no-repeat top center;
  background-size: cover;
}
.main-view-section__main-view:before {
  content: "";
  width: 100%;
  height: 253px;
  left: 0;
  background: linear-gradient(90deg, #4fb4ff 2.67%, #00ffc2 45.95%);
  position: absolute;
  bottom: -1px;
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
}
.main-view-section__main-view:after {
  content: "";
  width: 100%;
  height: 137px;
  background-color: #0026ac;
  position: absolute;
  bottom: -1px;
  right: 0;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  z-index: 0;
}
.main-view-section__logo {
  width: 80px;
  height: 60px;
}
.main-view-section__main-view-typo {
  display: block;
  margin: auto;
  width: 100%;
}
.main-view-section__main-view-typo-01 {
  margin-top: 14px;
  max-width: 784px;
}
.main-view-section__main-view-typo-02 {
  margin-top: 55px;
  max-width: 958px;
}
.main-view-section__main-view-typo--sp {
  display: none;
}
.main-view-section__description {
  margin-top: 47px;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}
.main-view-section__description br {
  display: none;
}
.main-view-section__description br:nth-child(2) {
  display: block;
}
.main-view-section__mv-link {
  max-width: 448px;
  margin: 32px auto 0;
  z-index: 10;
}
.main-view-section__main-view-badge {
  position: absolute;
  z-index: 10;
  max-width: 228px;
  width: 17%;
  left: 75%;
}
.main-view-section__problem-section {
  padding: 23px 16px 16px;
  background: #0026ac;
}
.main-view-section__problems {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.main-view-section__problem {
  padding: 0 32px 24px;
  box-sizing: border-box;
  width: 100%;
  max-width: 312px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: center;
  color: #0026ac;
}
.main-view-section__problem-image {
  margin-bottom: 16px;
}
.main-view-section__title-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-view-section__titles {
  margin-top: 2px;
}
.main-view-section__sub-title {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
}
.main-view-section__title {
  color: #fff;
  font-family: Noto Sans JP;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-align: center;
}
.main-view-section__title br {
  display: none;
}
.main-view-section__solution {
  position: relative;
  padding: 172px 16px 64px;
  background: url(../image/polygon_bg.jpg);
  font-family: Noto Sans JP;
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0em;
  text-align: center;
}
.main-view-section__solution::before {
  content: "";
  width: 100%;
  height: 105px;
  background: #0026ac;
  position: absolute;
  top: -2px;
  left: 0;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
.main-view-section__color-bold {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: 0em;
  text-align: center;
  font-family: Noto Sans JP;
  display: inline-block;
  padding: 2px 8px 4px;
  background: #002ac0;
  color: #fff;
}
.main-view-section__arrows {
  display: block;
  margin: 56px auto 0;
}
.main-view-section__reasons-container {
  padding: 96px 16px 0;
  background: linear-gradient(to right top, #e1e5ff 0%, #e1e5ff 50%, #dce0f5 50%, #dce0f5 100%);
}
.main-view-section__reason-description {
  font-family: Noto Sans JP;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0em;
  text-align: center;
}
.main-view-section__reason-description br:nth-of-type(1), .main-view-section__reason-description br:nth-of-type(3), .main-view-section__reason-description br:nth-of-type(4) {
  display: none;
}
.main-view-section__reasons {
  margin-top: 57px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex: 0 0 80px;
  overflow-x: auto;
}
.main-view-section__reason {
  position: relative;
  padding: 72px 16px 0;
  min-width: 272px;
}
.main-view-section__reason--reverse {
  padding-top: 0;
  padding-bottom: 72px;
}
.main-view-section__reason-number {
  position: absolute;
  top: 0;
}
.main-view-section__reason-number--reverse {
  top: auto;
  bottom: 0;
}
.main-view-section__reason-content {
  max-width: 272px;
}
.main-view-section__reason-content-image {
  width: 100%;
}
.main-view-section__reason-body {
  min-height: 314px;
  box-sizing: border-box;
  padding: 24px 24px;
  margin-top: -2px;
  background-color: #000;
  color: #fff;
  width: 100%;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
}
.main-view-section__reason-title {
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 16px;
}
.main-view-section__link {
  max-width: 648px;
  margin: 56px auto 0;
  padding-bottom: 8px;
}

@media screen and (max-width: 1322px) {
  .main-view-section__reasons {
    justify-content: start;
  }
  .main-view-section__main-view-badge {
    width: 17%;
    left: 80%;
  }
}
@media screen and (max-width: 1015px) {
  .main-view-section__reasons {
    justify-content: start;
  }
  .main-view-section__main-view-badge {
    width: 17%;
    left: 85%;
  }
}
@media screen and (max-width: 865px) {
  .main-view-section__main-view {
    position: relative;
    padding: 23px 16px 104px;
    background: url(../image/MV_img.jpg) no-repeat top center;
    background-size: cover;
  }
  .main-view-section__main-view:before {
    height: 88px;
  }
  .main-view-section__main-view:after {
    height: 104px;
  }
  .main-view-section__logo {
    width: 64px;
    height: 46px;
  }
  .main-view-section__main-view-typo {
    display: none;
  }
  .main-view-section__main-view-typo-01 {
    margin-top: 34px;
    width: 68%;
    margin: 32px 0 0;
  }
  .main-view-section__main-view-typo-02 {
    margin-top: 48px;
  }
  .main-view-section__main-view-typo--sp {
    display: block;
  }
  .main-view-section__description {
    margin-top: 32px;
    font-size: 14px;
    line-height: 25px;
  }
  .main-view-section__description br {
    display: block;
  }
  .main-view-section__description br:nth-child(2) {
    display: none;
  }
  .main-view-section__main-view-badge {
    top: 55px;
    right: 4px;
    bottom: auto;
    left: auto;
    width: 40%;
  }
  .main-view-section__problem-section {
    padding-bottom: 24px;
  }
  .main-view-section__problems {
    margin-top: 32px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .main-view-section__title {
    font-size: 24px;
  }
  .main-view-section__sub-title {
    font-size: 14px;
  }
  .main-view-section__reasons {
    margin-top: 12px;
    gap: 12px;
  }
  .main-view-section__reason:first-child {
    margin-left: -16px;
  }
  .main-view-section__reason:last-child {
    margin-right: -16px;
  }
  .main-view-section__reasons-container {
    padding-bottom: 24px;
  }
  .main-view-section__reason-description {
    font-size: 24px;
    line-height: 1.75em;
  }
  .main-view-section__reason-description br:nth-of-type(1), .main-view-section__reason-description br:nth-of-type(3), .main-view-section__reason-description br:nth-of-type(4) {
    display: block;
  }
  .main-view-section__color-bold {
    font-size: 28px;
    line-height: 1.75em;
  }
  .main-view-section__color-bold--min {
    font-size: 22px;
  }
  .main-view-section__link {
    margin-top: 40px;
  }
  .main-view-section__solution {
    padding: 123px 16px 64px;
    font-size: 20px;
    line-height: 2.5em;
  }
  .main-view-section__solution::before {
    content: "";
    width: 100%;
    height: 56px;
    background: #0026ac;
    position: absolute;
    top: -2px;
    left: 0;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
  }
}
.features-section__type-container {
  position: relative;
}
.features-section__type {
  background: url(../image/polygon_bg.jpg);
  background-repeat: repeat;
  padding: 201px 16px 105px;
}
.features-section__type:before {
  content: "";
  width: 100%;
  height: 105px;
  background: #e1e5ff;
  position: absolute;
  top: -2px;
  left: 0;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
.features-section__price {
  margin-top: -105px;
  clip-path: polygon(0 0, 50% 15%, 100% 0, 100% 100%, 0 100%);
  padding: 184px 16px 88px;
  background: linear-gradient(to right top, #0026ac 0%, #0026ac 50%, #002ac0 50%, #002ac0 100%);
}
.features-section__title-container {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-section__titles {
  margin-top: 2px;
}
.features-section__sub-title {
  color: #002ac0;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
}
.features-section__sub-title--white {
  color: #fff;
}
.features-section__title {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-align: center;
}
.features-section__title br {
  display: none;
}
.features-section__title--white {
  color: #fff;
}
.features-section__title-image {
  margin-right: 24px;
  margin-left: -88px;
}
.features-section__description {
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
}
.features-section__type-items {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.features-section__type-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 563px;
  box-sizing: border-box;
  padding: 32px;
  border: 4px solid #002ac0;
  box-shadow: 8px 8px 0px 0px #002ac029;
}
.features-section__type-item--black {
  border-color: #000;
}
.features-section__type-badge {
  position: absolute;
  top: -68px;
  left: 24px;
  width: 120px;
  height: 120px;
}
.features-section__type-title {
  display: inline-block;
  font-family: Noto Sans JP;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0em;
  padding: 12px;
  color: #fff;
  background: #002ac0;
}
.features-section__type-title--black {
  background: #000;
}
.features-section__type-body {
  margin-top: 24px;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
}
.features-section__merit-title {
  margin-top: 80px;
  font-family: Noto Sans JP;
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0em;
  text-align: center;
  color: #002ac0;
}
.features-section__merit-title--color-bold {
  padding: 2px 8px 4px;
  background: #002ac0;
  color: #fff;
}
.features-section__merits {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.features-section__merit:nth-child(2), .features-section__merit:nth-child(3) {
  margin-top: 58px;
}
.features-section__merit-image {
  width: 100%;
}
.features-section__prices {
  display: flex;
  align-items: stretch;
  max-width: 1160px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.features-section__price-detail {
  box-sizing: border-box;
  width: 100%;
  min-height: 188px;
  max-width: 580px;
  background: #edf0ff;
  padding: 46px 12px 23px;
  font-family: Noto Sans JP;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.75em;
  letter-spacing: 0em;
  text-align: center;
  color: #002ac0;
}
.features-section__price-detail--min {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1em;
}
.features-section__price-detail::before {
  content: "";
  margin-right: 17px;
  margin-top: -10px;
  display: inline-block;
  width: 23px;
  height: 39px;
  background-image: url(../image/radio_mic_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.features-section__price-detail br:nth-of-type(1) {
  display: none;
}
.features-section__price-content-container {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  min-height: 188px;
}
.features-section__price-content {
  margin-top: 16px;
  box-sizing: border-box;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 900;
  line-height: 70px;
  letter-spacing: 0em;
  text-align: center;
}
.features-section__price-content--color-bold {
  font-family: Be Vietnam;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0em;
  text-align: center;
  font-size: 72px;
  color: #002ac0;
}
.features-section__supplement {
  margin-top: 32px;
  font-family: Noto Sans JP;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .features-section__type {
    background-color: #fff;
    padding: 176px 16px 105px;
  }
  .features-section__type:before {
    height: 56px;
  }
  .features-section__title-container {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .features-section__sub-title {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
  }
  .features-section__title {
    font-family: Noto Sans JP;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
  }
  .features-section__title br {
    display: block;
  }
  .features-section__title-image {
    margin: 0px;
    height: 60px;
  }
  .features-section__description {
    font-size: 20px;
  }
  .features-section__type-items {
    margin-top: 80px;
    flex-direction: column;
  }
  .features-section__type-badge {
    position: absolute;
    top: -72px;
    left: 0px;
    width: 112px;
  }
  .features-section__type-title {
    font-size: 26px;
  }
  .features-section__type-body {
    margin-top: 24px;
    font-size: 14px;
  }
  .features-section__merit-title {
    margin-top: 80px;
    font-size: 28px;
    line-height: 1.5em;
  }
  .features-section__merit-title br {
    display: none;
  }
  .features-section__merits {
    margin-top: 22px;
    gap: 25px;
    flex-wrap: wrap;
  }
  .features-section__merit:nth-child(2), .features-section__merit:nth-child(3) {
    margin-top: 0;
  }
  .features-section__merit-image {
    width: 155px;
  }
  .features-section__price-detail {
    font-size: 26px;
  }
  .features-section__price-content--color-bold {
    font-size: 56px;
  }
}
@media screen and (max-width: 767px) {
  .features-section__price {
    margin-top: -49px;
    clip-path: polygon(0 0, 50% 7%, 100% 0, 100% 100%, 0 100%);
    padding: 98px 16px 88px;
    background: linear-gradient(to right top, #0026ac 0%, #0026ac 50%, #002ac0 50%, #002ac0 100%);
  }
  .features-section__title-container {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .features-section__titles {
    margin-top: 2px;
  }
  .features-section__sub-title {
    color: #0e1222;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 900;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
  }
  .features-section__sub-title--white {
    color: #fff;
  }
  .features-section__title {
    color: #000;
    font-family: Noto Sans JP;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0em;
    text-align: center;
  }
  .features-section__title br {
    display: none;
  }
  .features-section__title--white {
    color: #fff;
  }
  .features-section__title-image {
    margin-right: 24px;
    margin-left: -88px;
  }
  .features-section__description {
    font-family: Noto Sans JP;
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: center;
  }
  .features-section__type-items {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  .features-section__type-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 563px;
    box-sizing: border-box;
    padding: 32px;
    border: 4px solid #002ac0;
    box-shadow: 8px 8px 0px 0px #002ac029;
  }
  .features-section__type-item--black {
    border-color: #000;
  }
  .features-section__type-badge {
    position: absolute;
    top: -68px;
    left: 24px;
  }
  .features-section__type-title {
    display: inline-block;
    font-family: Noto Sans JP;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    padding: 12px;
    color: #fff;
    background: #002ac0;
  }
  .features-section__type-title--black {
    background: #000;
  }
  .features-section__type-body {
    margin-top: 24px;
    font-family: Noto Sans JP;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
  }
  .features-section__merit-title {
    margin-top: 80px;
    font-family: Noto Sans JP;
    font-size: 40px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
    text-align: center;
    color: #002ac0;
  }
  .features-section__merit-title--color-bold {
    padding: 2px 8px 4px;
    background: #002ac0;
    color: #fff;
  }
  .features-section__merits {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 25px;
  }
  .features-section__merit:nth-child(2), .features-section__merit:nth-child(3) {
    margin-top: 58px;
  }
  .features-section__merit-image {
    width: 100%;
  }
  .features-section__prices {
    display: flex;
    max-width: 1160px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .features-section__price-detail {
    box-sizing: border-box;
    width: 100%;
    max-width: 580px;
    background: #edf0ff;
    padding: 23px 12px;
    font-family: Noto Sans JP;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.75em;
    letter-spacing: 0em;
    text-align: center;
    color: #002ac0;
  }
  .features-section__price-detail--min {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1em;
  }
  .features-section__price-content-container {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 580px;
    min-height: 167px;
  }
  .features-section__price-content {
    margin-top: 16px;
    box-sizing: border-box;
    font-family: Noto Sans JP;
    font-size: 20px;
    font-weight: 900;
    line-height: 70px;
    letter-spacing: 0em;
    text-align: center;
  }
  .features-section__price-content--color-bold {
    font-family: Be Vietnam;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
    text-align: center;
    font-size: 72px;
    color: #002ac0;
  }
  .features-section__supplement {
    margin-top: 32px;
    font-family: Noto Sans JP;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .features-section__type {
    background-color: #fff;
    padding: 136px 16px 105px;
  }
  .features-section__type:before {
    height: 56px;
  }
  .features-section__title-container {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .features-section__sub-title {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
  }
  .features-section__title {
    font-family: Noto Sans JP;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
  }
  .features-section__title br {
    display: block;
  }
  .features-section__title-image {
    margin: 0px;
    height: 60px;
  }
  .features-section__description {
    font-size: 16px;
    line-height: 1.75em;
  }
  .features-section__description br:nth-of-type(2) {
    display: none;
  }
  .features-section__type-items {
    margin-top: 80px;
    flex-direction: column;
  }
  .features-section__type-item {
    padding: 32px 16px;
  }
  .features-section__type-badge {
    position: absolute;
    top: -72px;
    left: 0px;
    width: 112px;
  }
  .features-section__type-title {
    font-size: 26px;
  }
  .features-section__type-body {
    margin-top: 24px;
    font-size: 14px;
  }
  .features-section__merit-title {
    margin-top: 80px;
    font-size: 26px;
    line-height: 1.5em;
  }
  .features-section__merit-title br {
    display: block;
  }
  .features-section__merits {
    margin-top: 22px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .features-section__merit:nth-child(2), .features-section__merit:nth-child(3) {
    margin-top: 0;
  }
  .features-section__merit-image {
    width: 165px;
  }
  .features-section__price-detail {
    font-size: 26px;
  }
  .features-section__price-detail::before {
    margin-left: -28px;
    margin-right: 4px;
  }
  .features-section__price-detail br:nth-of-type(1) {
    display: block;
  }
  .features-section__price-content--color-bold {
    font-size: 56px;
  }
}
.broadcast-area-section {
  background-color: #fff;
  padding: 96px 16px;
}
.broadcast-area-section__title-container {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.broadcast-area-section__titles {
  margin-top: 2px;
}
.broadcast-area-section__sub-title {
  color: #002ac0;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
}
.broadcast-area-section__sub-title--black {
  color: #000;
}
.broadcast-area-section__title {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-align: center;
}
.broadcast-area-section__title br {
  display: none;
}
.broadcast-area-section__title-image {
  margin-right: 24px;
  margin-left: -88px;
}
.broadcast-area-section__items {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
}
.broadcast-area-section__description {
  padding: 58px 0;
  background: url(../image/broadcast-area-background-map.svg) center center no-repeat;
  background-size: contain;
  font-family: Noto Sans JP;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: center;
}
.broadcast-area-section__color-bold {
  padding: 2px 8px 4px;
  background: #002ac0;
  color: #fff;
}
.broadcast-area-section__broadcaster-list-title {
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 16px;
}
.broadcast-area-section__broadcaster-table {
  padding: 24px 12px;
  background: #002ac0;
  color: #fff;
  font-family: Noto Sans JP;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
}
.broadcast-area-section__broadcasters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
}
.broadcast-area-section__broadcaster {
  min-width: 150px;
}
.broadcast-area-section__link {
  max-width: 648px;
  margin: 56px auto 0;
}

@media screen and (max-width: 767px) {
  .broadcast-area-section__title-container {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .broadcast-area-section__sub-title {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
  }
  .broadcast-area-section__title {
    font-family: Noto Sans JP;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
  }
  .broadcast-area-section__title br {
    display: block;
  }
  .broadcast-area-section__title-image {
    margin: 0px;
    height: 60px;
  }
  .broadcast-area-section__items {
    flex-direction: column;
  }
  .broadcast-area-section__description {
    font-size: 18px;
    line-height: 1.75em;
    text-align: left;
  }
  .broadcast-area-section__description br {
    display: none;
  }
  .broadcast-area-section__broadcaster-table {
    padding: 24px 16px;
  }
  .broadcast-area-section__link {
    margin-top: 40px;
  }
}
.case-study-section {
  background-color: #edf0ff;
  padding: 96px 24px;
}
.case-study-section__title-container {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.case-study-section__titles {
  margin-top: 2px;
}
.case-study-section__sub-title {
  color: #002ac0;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
}
.case-study-section__title {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-align: center;
}
.case-study-section__title br {
  display: none;
}
.case-study-section__title-image {
  margin-left: 24px;
  margin-right: -178px;
}
.case-study-section__description {
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
}
.case-study-section__items {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}
.case-study-section__item {
  border: 2px solid #000000;
  min-width: 456px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #00000033;
}
.case-study-section__item-title {
  padding: 16px 19px;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
}
.case-study-section__item-title--company {
  font-size: 18px;
}
.case-study-section__item-content {
  width: 100%;
  box-sizing: border-box;
  padding: 32px 24px;
}
.case-study-section__item-logo {
  padding: 11px 14px;
  display: block;
  margin: auto;
  margin-bottom: 32px;
}
.case-study-section__audio {
  display: block;
  width: 85%;
  margin: 16px auto 0;
}

@media screen and (max-width: 1438px) {
  .case-study-section__item {
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .case-study-section__title-container {
    flex-direction: column-reverse;
    margin-bottom: 24px;
  }
  .case-study-section__sub-title {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
  }
  .case-study-section__title {
    font-family: Noto Sans JP;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
  }
  .case-study-section__title br {
    display: block;
  }
  .case-study-section__title-image {
    margin: 0px;
    height: 60px;
  }
  .case-study-section__description {
    text-align: left;
    font-family: Noto Sans JP;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
  }
  .case-study-section__items {
    margin-top: 32px;
  }
  .case-study-section__item {
    width: 100%;
    min-width: auto;
    max-width: 456px;
  }
  .case-study-section__item-title {
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.message-section {
  background-color: #fff;
  background: url(../image/bg_maru_y_r.png) no-repeat right top 10%, url(../image/bg_maru_y_l.png) no-repeat left bottom 10%;
  padding: 120px 24px;
}
.message-section__title-container {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.message-section__titles {
  margin-top: 2px;
}
.message-section__sub-title {
  color: #002ac0;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
}
.message-section__title {
  color: #000;
  font-family: Noto Sans JP;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-align: center;
}
.message-section__title br {
  display: none;
}
.message-section__title-image {
  margin-right: 24px;
  margin-left: -125px;
}
.message-section__description {
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
}
.message-section__description br:nth-of-type(1), .message-section__description br:nth-of-type(3) {
  display: none;
}
.message-section__items {
  margin-top: 56px;
  display: flex;
  flex: 0 0 80px;
  justify-content: center;
}
.message-section__item-container {
  padding-top: 100px;
  margin-right: 24px;
  max-width: 288px;
}
.message-section__item {
  border: 2px solid #000000;
  background-color: #fff;
  min-width: 288px;
  box-sizing: border-box;
  padding: 40px 24px 24px 24px;
  position: relative;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  box-shadow: 8px 8px 0px 0px #d1d1d1;
}
.message-section__item:last-child {
  margin-right: 0;
}
.message-section__item-image {
  width: 120px;
  height: 120px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1388px) {
  .message-section__items {
    overflow-x: scroll;
    justify-content: start;
  }
}
@media screen and (max-width: 767px) {
  .message-section {
    background-position: right top 25%, left bottom 10%;
    background-size: 49%, 31%;
  }
  .message-section__title-container {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .message-section__sub-title {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
  }
  .message-section__title {
    font-family: Noto Sans JP;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
  }
  .message-section__title br {
    display: block;
  }
  .message-section__title-image {
    margin: 0px;
    height: 60px;
  }
  .message-section__description {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
  }
  .message-section__description br {
    display: block;
  }
  .message-section__description br:nth-of-type(1), .message-section__description br:nth-of-type(3) {
    display: block;
  }
  .message-section__items {
    margin-top: 32px;
  }
}
.qa-section {
  padding: 96px 24px;
  background: linear-gradient(to right top, #0026ac 0%, #0026ac 50%, #002ac0 50%, #002ac0 100%);
}
.qa-section__title-container {
  margin-bottom: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qa-section__titles {
  margin-top: 2px;
}
.qa-section__sub-title {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
}
.qa-section__title {
  color: #fff;
  font-family: Noto Sans JP;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-align: center;
}
.qa-section__title-image {
  margin-left: 24px;
  margin-right: -125px;
  width: 100%;
  max-width: 101px;
}
.qa-section__item-container {
  margin: 27px auto 0;
  padding: 32px;
  background: #edf0ff;
  max-width: 918px;
}
.qa-section__item-container:first-of-type {
  margin-top: 0;
}
.qa-section__item-title {
  display: flex;
  color: #002ac0;
  font-family: Noto Sans JP;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
}
.qa-section__item-title::before {
  content: "";
  margin-right: 24px;
  display: inline-block;
  width: 33px;
  min-width: 33px;
  height: 35px;
  background-image: url(../image/icon_q.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.qa-section__body {
  margin-top: 24px;
  padding: 24px 35px;
  background: #fff;
  border-radius: 20px;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .qa-section__title-container {
    flex-direction: column-reverse;
    margin-bottom: 24px;
  }
  .qa-section__sub-title {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
  }
  .qa-section__title {
    font-family: Noto Sans JP;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
  }
  .qa-section__title-image {
    margin: 0px;
    height: 60px;
  }
  .qa-section__item-container {
    margin-top: 24;
    padding: 24px;
  }
  .qa-section__item-title {
    font-size: 19px;
  }
  .qa-section__item-title::before {
    width: 26px;
    height: 28px;
    margin-right: 8px;
    margin-top: 4px;
  }
  .qa-section__body {
    padding: 20px 28px;
    font-size: 16px;
  }
}
/* TODO: SPの文字サイズ、パディング等の調整 */
.about-us-section__about {
  background: #fff;
  padding: 96px 24px;
}
.about-us-section__title {
  font-family: Noto Sans JP;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: center;
  color: #000;
}
.about-us-section__title br {
  display: none;
}
.about-us-section__color-bold {
  padding: 2px 8px 4px;
  background: #002ac0;
  color: #fff;
}
.about-us-section__logo-body {
  margin-top: 59px;
  display: flex;
  justify-content: center;
}
.about-us-section__logo {
  padding: 30px 70px 21px;
}
.about-us-section__logo-image {
  width: 100%;
}
.about-us-section__body-container {
  margin-left: 24px;
  max-width: 465px;
}
.about-us-section__body {
  font-family: Noto Sans JP;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
}
.about-us-section__body--white {
  color: #fff;
}
.about-us-section__contact {
  padding: 56px 24px;
  background: #002ac0;
  text-align: center;
}
.about-us-section__link {
  max-width: 648px;
  margin: 24px auto 0;
}

@media screen and (max-width: 767px) {
  .about-us-section__logo-body {
    flex-direction: column;
  }
  .about-us-section__title {
    font-size: 22px;
  }
  .about-us-section__title br {
    display: block;
  }
  .about-us-section__body-container {
    margin-left: 0;
  }
  .about-us-section__body {
    text-align: left;
    font-size: 12px;
    line-height: 1.77em;
  }
  .about-us-section__body br {
    display: none;
  }
  .about-us-section__body br:nth-of-type(2) {
    display: block;
  }
}
/* TODO: SPの文字サイズ、パディング等の調整 */
.bottom-section {
  background: #d8deff;
  padding: 56px 24px;
}
.bottom-section__body {
  font-family: Noto Sans JP;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 32px;
}
.bottom-section__link {
  max-width: 648px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bottom-section__body {
    font-size: 12px;
  }
}
/* sections END */
