@charset "UTF-8";
blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
li,
main,
ol,
p,
pre,
td,
th,
ul {
  margin: 0;
  padding: 0;
}

table {
  font-size: 100%;
  font-family: inherit;
}

fieldset,
img {
  border: 0;
}

img,
svg,
video {
  vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 400;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

q:after,
q:before {
  content: "";
}

abbr,
acronym {
  border: 0;
}

input,
select,
textarea {
  font-size: 100%;
}

article,
aside,
figure,
footer,
header,
main,
nav,
picture,
section {
  display: block;
}

.clearfix:after,
.row:after {
  content: "";
  display: table;
  clear: both;
}

:root {
  --color-base: #2f2f2f;
  --color-theme: #006335;
  --color-yellow: #ffff00;
  --color-pink: #ff4e92;
  --bg-gray: #eff3f9;
  --border-base: #cfdee5;
  --base-width: 1120px;
  --base-min-width: 1160px;
  --pc-base-padding: 20px;
  --sp-base-padding: calc(15 / 375 * 100vw);
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-number: "Roboto", sans-serif;
  --font-weight: 500;
  --transition-duration: 0.3s;
  --transition: var(--transition-duration) ease-in-out;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html.no-scroll-behavior {
  scroll-behavior: auto;
}

body {
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.05em;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight);
  font-style: normal;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
*,
::after,
::before {
  box-sizing: border-box;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}

:where(a[href]) {
  color: var(--color-base);
  text-decoration: underline;
  outline: 0;
}

.a_reverse a[href],
a[href].a_reverse {
  text-decoration: none;
}

@media (hover) {
  :where(a[href]:hover) {
    text-decoration: none;
  }
  .a_reverse a[href]:hover,
  a[href].a_reverse:hover {
    text-decoration: underline;
  }
}
:where(img) {
  max-width: 100%;
  height: auto;
}

:where(button) {
  cursor: pointer;
}

:where(iframe) {
  max-width: 100%;
  vertical-align: middle;
}

.hidden {
  display: none;
}

#top {
  display: block;
}

@media screen and (min-width: 768px), print {
  ._sp {
    display: none !important;
  }
  ._pc_break {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
  }
  ._pc_hidden {
    position: relative;
    overflow: hidden;
    display: block;
    height: 0;
  }
}
@media screen and (max-width: 767px) {
  ._pc {
    display: none !important;
  }
  ._sp_break {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
  }
}
@media (hover) {
  body.init .basic_trs,
  body.init a,
  body.init a::after,
  body.init a::before,
  body.init button,
  body.init button::after,
  body.init button::before {
    -webkit-transition: color var(--transition), background var(--transition), border var(--transition), opacity var(--transition);
    transition: color var(--transition), background var(--transition), border var(--transition), opacity var(--transition);
  }
  body.init a svg {
    -webkit-transition: fill var(--transition);
    transition: fill var(--transition);
  }
}
.ff_num {
  font-family: var(--font-family-number);
  font-weight: 700;
}

.c_black,
a.c_black {
  color: #000;
}

.c_base,
a.c_base {
  color: var(--color-base);
}

.c_theme,
a.c_theme {
  color: var(--color-theme);
}

.c_yellow,
a.c_yellow {
  color: var(--color-yellow);
}

.c_pink,
a.c_pink {
  color: var(--color-pink);
}

._fwb {
  font-weight: 700;
}

._fwbb {
  font-weight: 900;
}

._fwn {
  font-weight: 400;
}

._fwm {
  font-weight: 500;
}

._wsnw {
  white-space: nowrap;
}

@media screen and (min-width: 768px), print {
  ._pc_wsnw {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  ._sp_wsnw {
    white-space: nowrap;
  }
}
._db {
  display: block;
}

._dib {
  display: inline-block;
}

@media screen and (min-width: 768px), print {
  [data-view*=sp] {
    display: none;
  }
  [data-view*=pc] {
    display: block;
  }
  ._pc_dib {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  [data-view*=sp] {
    display: block;
  }
  [data-view*=pc] {
    display: none;
  }
  ._sp_dib {
    display: inline-block;
  }
}
img._of {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

img._of.-bg {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: -1;
}

img._of.-top {
  -o-object-position: 50% 0;
  object-position: 50% 0;
}

@media (hover) {
  body.init a[href] .hv_op {
    -webkit-transition: opacity var(--transition);
    transition: opacity var(--transition);
  }
  .hv_op a[href]:hover,
  a[href].hv_op:hover,
  a[href]:hover .hv_op,
  button.hv_op:hover {
    opacity: 0.7;
  }
  .hv_op.a20 a[href]:hover,
  a[href].hv_op.a20:hover,
  a[href]:hover .hv_op.a20 {
    opacity: 0.8;
  }
  .hv_op.a10 a[href]:hover,
  a[href].hv_op.a10:hover,
  a[href]:hover .hv_op.a10 {
    opacity: 0.9;
  }
  .hv_op.a50 a[href]:hover,
  a[href].hv_op.a50:hover,
  a[href]:hover .hv_op.a50 {
    opacity: 0.5;
  }
}
a._target {
  display: block;
  position: relative;
  width: 1px;
  top: 0;
}

a._target.-pt {
  top: -40px;
}

a._target.-abs {
  position: absolute;
}

@media screen and (min-width: 768px), print {
  a._target.-pc_abs {
    position: absolute;
  }
  a#otoku3 {
    top: -70px;
  }
}
@media screen and (max-width: 767px) {
  a._target {
    top: 0;
  }
  a._target.-pt {
    top: -30px;
  }
}
@media screen and (min-width: 768px), print {
  ._w1024 {
    width: 1024px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  ._image {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  ._sp_pd {
    padding-left: var(--sp-base-padding) !important;
    padding-right: var(--sp-base-padding) !important;
  }
  ._sp_mg {
    margin-left: var(--sp-base-padding) !important;
    margin-right: var(--sp-base-padding) !important;
  }
  ._sp_full {
    margin-left: calc(var(--sp-base-padding) * -1) !important;
    margin-right: calc(var(--sp-base-padding) * -1) !important;
  }
  ._sp_full_l {
    margin-left: calc(var(--sp-base-padding) * -1) !important;
  }
  ._sp_full_r {
    margin-right: calc(var(--sp-base-padding) * -1) !important;
  }
}
.marker {
  position: relative;
  display: inline-block;
}

.marker::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 10%;
  height: 25%;
  background-color: var(--color-yellow);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  z-index: -1;
}

@media screen and (min-width: 768px), print {
  .page-wrapper {
    min-width: var(--base-min-width);
  }
}
.page-wrapper {
  position: relative;
}

@media screen and (min-width: 768px), print {
  .page-wrapper {
    min-width: var(--base-min-width);
  }
}
.sec-inner {
  position: relative;
}

@media screen and (min-width: 768px), print {
  .sec-inner {
    max-width: var(--base-width);
    margin-left: auto;
    margin-right: auto;
  }
}
#footer {
  position: relative;
  background-color: #2f2f2f;
  padding-bottom: 116px;
  color: #eaf3d1;
  font-size: 1.2rem;
}

#footer a {
  color: #eaf3d1;
}

#footer ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

#footer ul li + li::before {
  content: "｜";
  margin: 0 0.3em;
}

#footer small {
  display: block;
  font-size: 100%;
}

@media screen and (min-width: 768px), print {
  #footer .sec-inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    height: 76px;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 20px 0 76px;
    line-height: 1.5;
    text-align: center;
  }
  #footer ul {
    margin-bottom: 15px;
  }
  #footer ul li + li::before {
    content: "｜";
    margin: 0 0.3em;
  }
}
#pagetop {
  position: fixed;
  overflow: hidden;
  bottom: 145px;
  right: 30px;
  width: 56px;
  height: 0;
  padding-top: 54px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ff4d4d;
  border-radius: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 990;
}

#pagetop::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border-top: 2px solid #ff4d4d;
  border-left: 2px solid #ff4d4d;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.init #pagetop {
  -webkit-transition: background var(--transition), border var(--transition), opacity var(--transition-duration) ease-out;
  transition: background var(--transition), border var(--transition), opacity var(--transition-duration) ease-out;
}

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

@media print {
  #pagetop {
    display: none;
  }
}
@media (hover) {
  #pagetop:hover {
    background-color: #ff4d4d;
  }
  #pagetop:hover::after,
  #pagetop:hover::before {
    border-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #pagetop {
    right: var(--sp-base-padding);
    bottom: calc(var(--sp-base-padding) + 56px);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  #pagetop.abs {
    position: absolute;
    bottom: calc(100% + var(--sp-base-padding));
  }
}
.sec-title {
  position: relative;
  display: table;
  margin: 0 auto;
  padding: 0 70px;
  font-size: 4.6rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

.sec-title::after,
.sec-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 48px;
  height: 78px;
  background: url(../img/point-title.svg) no-repeat 50% 100%;
  background-size: 100%;
}

.sec-title::before {
  left: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.sec-title::after {
  right: 0;
}

.sec-title span {
  font-size: 5.9rem;
}

.sec-title .marker::after {
  height: 30%;
  bottom: 0;
  right: -10px;
}

.sec-title.-s {
  font-size: 3.6rem;
}

.sec-title.-s span {
  font-size: 4.6rem;
}

.sec-title.-s::after,
.sec-title.-s::before {
  width: 38px;
}

@media screen and (max-width: 767px) {
  .sec-title {
    padding: 0 calc(55px - var(--sp-base-padding));
    font-size: 2.5rem;
  }
  .sec-title span {
    font-size: 2.5rem;
  }
  .sec-title .marker::after {
    height: 40%;
  }
  .sec-title::after,
  .sec-title::before {
    width: 38px;
  }
  .sec-title::before {
    left: calc(var(--sp-base-padding) * -1);
  }
  .sec-title::after {
    right: calc(var(--sp-base-padding) * -1);
  }
  .sec-title.-s {
    font-size: 2.8rem;
    line-height: 1.3;
  }
  .sec-title.-s span {
    font-size: 3.2rem;
  }
}
.box_btn {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  max-width: 100%;
  width: 380px;
  height: 80px;
  padding-top: 2px;
  background-color: var(--color-theme);
  border: 2px solid var(--color-theme);
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: var(--font-weight);
  line-height: 1.5;
}

.box_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.box_btn .catch span {
  font-weight: 700;
}

.box_btn .title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
}

.box_btn .title .s {
  font-size: 1.6rem;
}

.box_btn.-outline {
  background-color: #fff;
  color: var(--color-theme);
}

.box_btn.-center {
  margin-left: auto;
  margin-right: auto;
}

@media (hover) {
  a[href].box_btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .box_btn {
    width: 100%;
    height: 74px;
    font-size: 1.5rem;
  }
  .box_btn::after {
    right: 22px;
  }
}
.btn-block dt {
  margin-bottom: 30px;
  text-align: center;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .btn-block ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .btn-block dt {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .btn-block li {
    margin-top: 18px;
  }
}
.box_inner_btn {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  max-width: 100%;
  width: 195px;
  height: 38px;
  margin: 0 auto;
  background-color: var(--color-base);
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.box_inner_btn::after {
  content: "";
  position: absolute;
  bottom: calc(50% - 3px);
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.box_inner_btn.-l {
  width: 270px;
}

@media (hover) {
  a[href].box_inner_btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .box_inner_btn {
    width: 184px;
    height: 36px;
    font-size: 1.3rem;
  }
}
.box_btn_simple {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  max-width: 100%;
  height: 67px;
  background-color: var(--color-theme);
  border: 1px solid var(--color-theme);
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}

.box_btn_simple::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.box_btn_simple .-s {
  font-size: 1.4rem;
}

.box_btn_simple.-outline {
  background-color: #fff;
  color: var(--color-theme);
}

@media (hover) {
  a[href].box_btn_simple:hover {
    opacity: 0.7;
  }
}
.ribbon_box {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.ribbon_box::after,
.ribbon_box::before {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 30px solid var(--color-pink);
  -webkit-transform: skewY(-45deg);
  transform: skewY(-45deg);
  z-index: 5;
}

.ribbon_box::before {
  top: 60px;
  left: 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.ribbon_box::after {
  bottom: 60px;
  right: 0;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

@media screen and (max-width: 767px) {
  .ribbon_box::after,
  .ribbon_box::before {
    border-top-width: 20px;
  }
  .ribbon_box::before {
    top: 38px;
  }
  .ribbon_box::after {
    bottom: 38px;
  }
}
.basic_table {
  width: 100%;
}

.basic_table td,
.basic_table th {
  padding: 18px 25px;
  background-color: #fff;
  border: 1px solid var(--border-base);
}

.basic_table th {
  width: 30%;
  font-weight: 500;
  background-color: var(--bg-gray);
}

@media screen and (max-width: 767px) {
  .basic_table td,
  .basic_table th {
    padding: 10px 1em;
  }
}
.dot_li > li {
  position: relative;
  padding-left: 1em;
}

.dot_li > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.circle_li > li {
  position: relative;
  padding-left: 1em;
}

.circle_li > li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #005f8b;
  border-radius: 100%;
}

.parentheses_li > li {
  position: relative;
  padding-left: 2.8em;
}

.parentheses_li > li > span:first-child {
  position: absolute;
  top: 0;
  left: 0;
}

.parentheses_li_h > li {
  position: relative;
  padding-left: 1.6em;
}

.parentheses_li_h > li > span:first-child {
  position: absolute;
  top: 0;
  left: 0;
}

.parentheses_li_hh > li {
  position: relative;
  padding-left: 2.2em;
}

.parentheses_li_hh > li > span:first-child {
  position: absolute;
  top: 0;
  left: 0;
}

.point_li > li {
  position: relative;
  padding-left: 1.2em;
}

.point_li > li > span:first-child {
  position: absolute;
  top: 0;
  left: 0;
}

.sp_point_li .notes_inline_anchor {
  color: var(--color-pink);
}

@media screen and (max-width: 767px) {
  .sp_point_li > li {
    position: relative;
    padding-left: 1.2em;
  }
  .sp_point_li > li > span:first-child {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.square_li > li {
  position: relative;
  padding-left: 0.8em;
}

.square_li > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 5px;
  height: 5px;
  background-color: #14143c;
}

@media screen and (max-width: 767px) {
  .square_li > li::before {
    top: 0.6em;
  }
}
.num_li {
  margin-left: 1.8em;
  list-style: decimal;
}

.alphabet_li {
  margin-left: 1.8em;
  list-style: lower-latin;
}

.mt_li > li + li {
  margin-top: 0.8em;
}

@media screen and (max-width: 767px) {
  .sp_mt_li > li + li {
    margin-top: 0.8em;
  }
}
.inline_li > li {
  display: inline-block;
  margin-right: 0.3em;
}

.sec-header {
  position: relative;
  font-weight: 700;
}

.sec-header .btns {
  margin-bottom: 40px;
}

.sec-header .btns li {
  margin-bottom: 20px;
}

.sec-header .lead {
  margin-bottom: 15px;
  color: var(--color-theme);
  font-size: 1.4rem;
}

.sec-header .lead > span {
  padding: 0 0.7em 1px;
  background-color: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.sec-header .notes {
  max-width: 650px;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  letter-spacing: 0;
}

@media screen and (min-width: 768px), print {
  .sec-header {
    min-height: 810px;
    padding-bottom: 70px;
    background: #eaf3d1 url(../img/bg-header.png) no-repeat 50% 0;
    background-size: cover;
  }
  .sec-header .logo-ja {
    width: 136px;
    padding: 30px 0 80px;
    line-height: 1;
  }
  .sec-header h1 {
    margin-left: -40px;
    margin-left: clamp(-40px, -40px - (100vw - (100% + 110px)) * 0.3, -20px);
    margin-bottom: 54px;
  }
  .sec-header .imgs {
    position: absolute;
    right: -9px;
    top: 56px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .sec-header {
    padding-bottom: 35px;
    background: #eaf3d1 url(../img/bg-header_sp.png) no-repeat 50% 0;
    background-size: 100%;
    z-index: 2;
  }
  .sec-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 32vw;
    height: 13.8666666667vw;
    background: url(../img/bg-header_sp_2.png) no-repeat 50%;
    background-size: 100%;
    z-index: -1;
  }
  .sec-header .logo-ja {
    width: 106px;
    padding: 18px 0 30px;
    line-height: 1;
  }
  .sec-header .imgs,
  .sec-header h1 {
    margin-bottom: 40px;
  }
  .sec-header .lead {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .sec-header .lead > span {
    padding: 0 3px 1px;
  }
  .sec-header .notes {
    max-width: 100%;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.sec-campaign {
  padding: 60px 0 146px;
  background: url(../img/bg-sec_campaign.png) no-repeat center top;
  background-size: cover;
}

.sec-campaign .campaign-box {
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 30px 40px 40px;
  background-color: #ffe200;
}

.sec-campaign .campaign-box_title {
  margin-bottom: 30px;
  text-align: center;
}

.sec-campaign .campaign-box_inner {
  padding: 40px 0 34px;
  background-color: #fff;
}

.sec-campaign .campaign-box_prefix {
  margin-bottom: 34px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.08em;
}

.sec-campaign .campaign-box_prefix .o-emphasis {
  font-size: 2.8rem;
}

.sec-campaign .campaign-box_content {
  max-width: 860px;
  margin: 0 auto;
}

.sec-campaign .campaign-box_text {
  letter-spacing: 0.08em;
}

.sec-campaign .campaign-box_notes {
  margin-top: 20px;
}

.sec-campaign .campaign-box .marker {
  position: relative;
  z-index: 1;
}

.sec-campaign .notes_text.o-small {
  font-size: 1rem;
}

.sec-campaign .campaign-outline {
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.sec-campaign .campaign-outline_heading {
  width: 182px;
  height: 45px;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #e3e3e3;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.sec-campaign .campaign-outline_heading:not(:first-child) {
  border-top: 1px solid #fff;
}

.sec-campaign .campaign-outline_text {
  width: calc(100% - 182px);
  height: 45px;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 30px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.sec-campaign .campaign-outline_text:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
}

.sec-main {
  position: relative;
  padding-bottom: 100px;
  font-weight: 700;
  z-index: 2;
}

.sec-main .otoku-list {
  margin: 110px 0 60px;
}

.sec-main .otoku-list a {
  display: block;
  position: relative;
  text-decoration: none;
  background-color: #fff;
  color: var(--color-base);
  font-weight: 700;
  z-index: 2;
}

.sec-main .otoku-list a .title {
  position: absolute;
  top: -25px;
  left: 0;
  height: 78px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  padding: 0 20px 0 10px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  z-index: 2;
}

.sec-main .otoku-list a .title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--color-pink);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  z-index: -1;
}

.sec-main .otoku-list a .title .l {
  font-size: 2.4rem;
}

@media screen and (min-width: 768px), print {
  .sec-main {
    background: url(../img/bg-main.png) no-repeat 50% 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1920px) {
  .sec-main {
    background-size: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .sec-main::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: -50px;
    width: 812px;
    height: 60px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    z-index: -1;
  }
  .sec-main .otoku-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .sec-main .otoku-list li {
    width: 350px;
    background-color: #fff;
  }
  .sec-main .otoku-list a {
    padding-bottom: 80px;
    text-align: center;
  }
  .sec-main .otoku-list a .img {
    display: block;
    margin-bottom: 15px;
  }
  .sec-main .otoku-list a .place {
    display: block;
    height: 30px;
    text-align: center;
    line-height: 1.3;
  }
  .sec-main .otoku-list a .place span {
    font-weight: 400;
    font-size: 1.2rem;
  }
  .sec-main .otoku-list a .point {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    align-items: flex-end;
    margin-inline: auto;
    font-size: 3.5rem;
    letter-spacing: 0.1em;
  }
  .sec-main .otoku-list a .point::after {
    right: -10px;
    left: -10px;
    bottom: 5%;
  }
  .sec-main .otoku-list a .point .num {
    position: relative;
    top: 3px;
    font-size: 6.4rem;
    line-height: 1;
  }
  .sec-main .otoku-list a .point .prefix {
    text-align: left;
    margin-right: 0.5em;
    padding-bottom: 12px;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
  .sec-main .otoku-list a .point .prefix.-s {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    padding-bottom: 10px;
  }
  .sec-main .otoku-list a .point .-ss {
    font-size: 3rem;
    letter-spacing: 0;
  }
  .sec-main .otoku-list a .more {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .sec-campaign {
    padding: 40px 0 50px;
    background: url(../img/bg-sec_campaign_sp.png) no-repeat center top;
    background-size: cover;
  }
  .sec-campaign .campaign-box {
    margin-top: 20px;
    padding: 20px 15px 15px;
  }
  .sec-campaign .campaign-box_title {
    margin-bottom: 15px;
  }
  .sec-campaign .campaign-box_inner {
    padding: 15px 0 20px;
  }
  .sec-campaign .campaign-box_prefix {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  .sec-campaign .campaign-box_prefix .o-emphasis {
    font-size: 2rem;
  }
  .sec-campaign .campaign-box_content {
    max-width: calc(100% - 30px);
  }
  .sec-campaign .campaign-box_text {
    letter-spacing: 0.05em;
  }
  .sec-campaign .campaign-box_notes .notes_text.o-small {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .sec-campaign .campaign-outline {
    border-radius: 10px;
  }
  .sec-campaign .campaign-outline_heading {
    width: 6em;
    height: auto;
    font-size: 1.4rem;
  }
  .sec-campaign .campaign-outline_text {
    width: calc(100% - 6em);
    padding: 10px;
    height: auto;
    font-size: 1.4rem;
  }
  .sec-main {
    padding-top: 35px;
    padding-bottom: 65px;
    background: url(../img/bg-main_sp.png) no-repeat 50% 100%;
    background-size: 100%;
  }
  .sec-main .otoku-list {
    margin: 40px 0 40px;
  }
  .sec-main .otoku-list li + li {
    margin-top: 20px;
  }
  .sec-main .otoku-list a {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 var(--sp-base-padding);
  }
  .sec-main .otoku-list a .title {
    top: 0;
    width: 130px;
    height: 64px;
    padding: 0 10px 0 0;
    font-size: 1.5rem;
  }
  .sec-main .otoku-list a .title .l {
    font-size: 1.8rem;
  }
  .sec-main .otoku-list li:last-child a .title {
    font-size: 1.3rem;
  }
  .sec-main .otoku-list li:last-child a .title .l {
    font-size: 1.6rem;
    line-height: 1.1;
  }
  .sec-main .otoku-list a .img {
    width: calc(50% + 7px);
    padding-top: 45px;
  }
  .sec-main .otoku-list a .text {
    width: calc(50% - 7px - 10px);
    margin-left: auto;
    margin-right: -5px;
    padding-top: 20px;
    text-align: center;
  }
  .sec-main .otoku-list a .place {
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.3076923077;
    letter-spacing: 0;
  }
  .sec-main .otoku-list a .place span {
    font-size: 1.1rem;
  }
  .sec-main .otoku-list a .point {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    align-items: flex-end;
    margin-inline: auto;
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }
  .sec-main .otoku-list a .point::after {
    bottom: 5%;
    height: 16px;
  }
  .sec-main .otoku-list a .point .num {
    position: relative;
    top: 3px;
    font-size: 5.2rem;
    line-height: 1;
    letter-spacing: -5px;
    margin-right: 5px;
  }
  .sec-main .otoku-list a .point .prefix {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0;
    line-height: 1;
  }
  .sec-main .otoku-list a .point .-ss {
    position: relative;
    top: -5px;
    margin-top: -5px;
    font-size: 2.2rem;
    letter-spacing: 0;
  }
  .sec-main .otoku-list a .more {
    margin-top: 16px;
  }
}
.page-nav {
  background-color: #fff;
}

@media screen and (min-width: 768px), print {
  .page-nav {
    top: 0;
    z-index: 100;
  }
  .page-nav ul {
    display: -webkit-box;
    display: flex;
  }
  .page-nav li {
    width: 100%;
  }
  .page-nav a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 130px;
    padding-bottom: 30px;
    text-decoration: none;
    color: var(--color-base);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .page-nav a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    left: 5px;
    border-top: 6px solid var(--color-theme);
  }
  .page-nav a::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    height: 14px;
    background: url(../img/ico-arrow-b.svg) no-repeat 50%;
    background-size: 24px;
  }
  .page-nav a .catch {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) and (hover), print and (hover) {
  .page-nav a:hover {
    background-color: #f0f6f3;
    background-color: #ffc;
  }
}
@media screen and (max-width: 767px) {
  .page-nav {
    border-top: 6px solid var(--color-theme);
    border-bottom: 6px solid var(--color-theme);
  }
  .page-nav li + li::before {
    content: "";
    display: block;
    margin: 0 20px;
    border-top: 1px solid var(--color-theme);
  }
  .page-nav a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    height: 64px;
    padding: 0 20px;
    text-decoration: none;
    color: var(--color-base);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .page-nav a .catch {
    font-size: 1.3rem;
  }
  .page-nav a::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    width: 24px;
    background: url(../img/ico-arrow-b.svg) no-repeat 50%;
    background-size: 24px;
  }
}
.sec-benefits {
  position: relative;
  padding: 80px 0 100px;
  background: #fffdea no-repeat 50% 0;
  z-index: 2;
}

.benefits_ribbon_1 {
  margin-top: 65px;
  text-align: center;
}

.benefits_ribbon_1 .ribbon_box_inner {
  position: relative;
  padding: 20px 0 25px;
  background-color: #fffef4;
  border: 2px solid var(--color-pink);
  border-radius: 30px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  z-index: 2;
}

.benefits_ribbon_1 .lead {
  margin-bottom: 5px;
}

.benefits_ribbon_1 .present {
  font-size: 3rem;
}

.benefits_ribbon_1 .marker {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  margin-right: 20px;
  font-size: 5rem;
  line-height: 1.3;
}

.benefits_ribbon_1 .marker::after {
  bottom: 0;
  right: -10px;
  left: -10px;
}

.benefits_ribbon_1 .marker .prefix {
  font-size: 2.4rem;
  line-height: 1.1;
  text-align: center;
  padding-bottom: 10px;
}

.benefits_ribbon_1 .marker .prefix span {
  display: block;
}

.benefits_ribbon_1 .marker .ff_num {
  margin-right: 5px;
  font-size: 9.5rem;
  letter-spacing: -4px;
  line-height: 1;
}

.benefits_ribbon_1 .marker .ff_num span {
  font-size: 7rem;
}

.benefits_ribbon_1 .marker .unit {
  padding-bottom: 8px;
}

.benefits_ribbon_1 .txt {
  padding-bottom: 8px;
}

.benefits_ribbon_1 .txt span {
  font-size: 4.4rem;
}

.benefits_ribbon_1 .link {
  margin-top: 25px;
}

@media screen and (min-width: 768px), print {
  .sec-benefits {
    background-image: url(../img/bg-benefits.png);
  }
}
@media screen and (min-width: 768px) and (min-width: 1920px) {
  .sec-benefits {
    background-size: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .benefits_ribbon_1 .present {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .sec-benefits {
    padding: 40px 0 50px;
    background-image: url(../img/bg-benefits_sp.png);
    background-size: 100%;
  }
  .sec-benefits .sec-title {
    padding: 0 calc(55px - var(--sp-base-padding) - 15px);
  }
  .benefits_ribbon_1 {
    margin-top: 40px;
  }
  .benefits_ribbon_1 .ribbon_box_inner {
    padding: 20px 0 30px;
    font-size: 2rem;
    line-height: 1.3;
  }
  .benefits_ribbon_1 .lead {
    margin-bottom: 15px;
  }
  .benefits_ribbon_1 .present {
    font-size: 2.5rem;
    letter-spacing: 0;
  }
  .benefits_ribbon_1 .marker {
    display: -webkit-inline-box;
    display: inline-flex;
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 4.5rem;
  }
  .benefits_ribbon_1 .marker .prefix {
    font-size: 2.2rem;
  }
  .benefits_ribbon_1 .marker .ff_num {
    font-size: 8.4rem;
  }
  .benefits_ribbon_1 .marker .ff_num span {
    font-size: 6rem;
  }
  .benefits_ribbon_1 .txt {
    padding-bottom: 8px;
  }
  .benefits_ribbon_1 .txt span {
    font-size: 3rem;
  }
  .benefits_ribbon_1 .link {
    margin-top: 10px;
  }
}
.benefits_step li {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
}

.benefits_step li dt {
  padding: 8px 0 5px;
  background-color: #e3e3e3;
  border-radius: 30px 30px 0 0;
  text-align: center;
  color: var(--color-theme);
  font-size: 2.2rem;
  line-height: 1.3;
}

.benefits_step li dt span {
  font-size: 3rem;
}

.benefits_step li dd {
  padding: 20px 20px 30px;
}

.benefits_step .notes {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.benefits_step .btn_txt {
  text-align: center;
  font-weight: 700;
  color: var(--color-theme);
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0;
}

.benefits_step .btn {
  position: relative;
  padding-top: 30px;
}

.benefits_step .btn::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -18px;
  border-style: solid;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-top: 8px solid #cecece;
  border-bottom: 0;
}

@media screen and (min-width: 768px), print {
  .benefits_step {
    width: 840px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: 60px auto 0;
  }
  .benefits_step li {
    width: 270px;
  }
  .benefits_step li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    margin-top: -23px;
    border-style: solid;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-left: 35px solid var(--color-theme);
    border-right: 0;
  }
  .benefits_step .lead {
    min-height: 105px;
  }
  .benefits_step .btn_txt {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    justify-content: center;
    min-height: 85px;
  }
  .benefits_step .step3 .img {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .benefits_step {
    width: 81.3333333333vw;
    margin: 30px auto 0;
  }
  .benefits_step li {
    border-radius: 20px;
  }
  .benefits_step li + li {
    margin-top: 40px;
  }
  .benefits_step li + li::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border-style: solid;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 22px solid var(--color-theme);
    border-bottom: 0;
  }
  .benefits_step li dt {
    border-radius: 20px 20px 0 0;
  }
  .benefits_step li dd {
    padding: 15px 20px 20px;
    font-size: 1.6rem;
  }
  .benefits_step .notes {
    font-size: 1.6rem;
    line-height: 1.4285714286;
    letter-spacing: 0.08em;
  }
  .benefits_step .img {
    margin: 10px 0;
  }
  .benefits_step .btn_txt {
    margin: 0 -20px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .benefits_step .btn {
    padding-top: 50px;
  }
  .benefits_step .btn::before {
    top: 20px;
    margin-left: -35px;
    border-right-width: 35px;
    border-left-width: 35px;
    border-top-width: 16px;
  }
  .benefits_step .step2 dd {
    font-size: 2rem;
  }
}
.benefits_after {
  position: relative;
  padding: 30px 0 35px;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  z-index: 2;
}

.benefits_after::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -72px;
  margin-left: -23px;
  width: 46px;
  height: 92px;
  background: url(../img/ico-benefits-arrow.svg) no-repeat 50% 0;
  background-size: 100%;
}

.benefits_after .lead {
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefits_after .lead .c_pink {
  font-size: 2.1rem;
  line-height: 1.6;
}

.benefits_after .lead .c_pink .marker {
  margin-left: 0.3em;
  font-size: 3.3rem;
}

.benefits_after_table figcaption {
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.benefits_after_table_notes {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (min-width: 768px), print {
  .benefits_after {
    width: 840px;
    margin: 90px auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .benefits_after {
    width: 81.3333333333vw;
    margin: 80px auto 40px;
    padding: 20px 20px;
    border-radius: 20px;
    font-size: 1.6rem;
  }
  .benefits_after::before {
    top: -68px;
    margin-left: -15px;
    width: 30px;
  }
  .benefits_after .lead {
    margin-bottom: 10px;
  }
  .benefits_after .lead .c_pink {
    margin-top: 5px;
    font-size: 2rem;
  }
  .benefits_after .lead .c_pink .marker {
    margin-left: 0;
    font-size: 2.6rem;
  }
  .benefits_after_table figcaption {
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .benefits_after_table picture img {
    aspect-ratio: 803/1236;
  }
  .benefits_after_table_notes {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    text-align: left;
  }
  .sec-benefits .btn-block dt {
    font-size: 2.2rem;
  }
}
.benefits_ribbon_2 {
  margin-top: 60px;
  text-align: center;
}

.benefits_ribbon_2 .ribbon_box_inner {
  position: relative;
  padding: 15px 0 15px;
  background-color: #fffef4;
  border: 4px solid var(--color-theme);
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  z-index: 2;
}

.benefits_ribbon_2 .lead {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 5px;
}

.benefits_ribbon_2 .lead .ico {
  margin-right: 15px;
}

.benefits_ribbon_2 .present {
  margin: -20px 0 5px;
  font-size: 3rem;
}

.benefits_ribbon_2 .c_pink {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  margin-right: 10px;
  font-size: 5rem;
  line-height: 1.3;
}

.benefits_ribbon_2 .c_pink .ff_num {
  margin-right: 5px;
  font-size: 9.5rem;
  letter-spacing: -4px;
  line-height: 1;
}

.benefits_ribbon_2 .c_pink .ff_num span {
  font-size: 7rem;
}

.benefits_ribbon_2 .c_pink .unit {
  padding-bottom: 8px;
}

.benefits_ribbon_2 .txt {
  padding-bottom: 8px;
}

.benefits_ribbon_2 .txt .l {
  font-size: 4.4rem;
}

.benefits_ribbon_2 .txt .s {
  font-size: 2rem;
}

.benefits_ribbon_2 .notes {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.benefits_ribbon_2 .target {
  font-size: 1.6rem;
}

.benefits_ribbon_2 .target dt {
  padding: 0 20px;
  background-color: var(--color-base);
  border-radius: 100px;
  color: #fff;
}

@media screen and (min-width: 768px), print {
  .benefits_ribbon_2 .present {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .benefits_ribbon_2 .target {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .benefits_ribbon_2 {
    margin-top: 40px;
  }
  .benefits_ribbon_2 .ribbon_box_inner {
    padding: 30px 20px;
    border-width: 2px;
    font-size: 2rem;
    line-height: 1.4;
  }
  .benefits_ribbon_2 .lead {
    margin-bottom: 10px;
    text-align: left;
  }
  .benefits_ribbon_2 .lead .ico {
    width: 62px;
    flex-shrink: 0;
    margin-right: 5px;
  }
  .benefits_ribbon_2 .present {
    margin: 0 0 5px;
    font-size: 2.5rem;
    letter-spacing: 0;
  }
  .benefits_ribbon_2 .c_pink {
    display: -webkit-inline-box;
    display: inline-flex;
    margin-right: 0;
    font-size: 4.5rem;
  }
  .benefits_ribbon_2 .c_pink .ff_num {
    font-size: 8.4rem;
  }
  .benefits_ribbon_2 .c_pink .ff_num span {
    font-size: 6rem;
  }
  .benefits_ribbon_2 .c_pink .unit {
    padding-bottom: 8px;
  }
  .benefits_ribbon_2 .txt {
    display: inline;
    padding-bottom: 8px;
  }
  .benefits_ribbon_2 .txt .l {
    display: block;
    font-size: 3rem;
  }
  .benefits_ribbon_2 .txt .s {
    display: block;
  }
  .benefits_ribbon_2 .notes {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    text-align: left;
  }
  .benefits_ribbon_2 .target {
    margin-top: 20px;
    line-height: 1.5;
  }
  .benefits_ribbon_2 .target dt {
    display: inline-block;
    margin-bottom: 10px;
  }
}
.bg-plaid {
  background-image: url(../img/bg-plaid.png);
  background-position: 50% 0;
  background-size: 14px;
}

.sec-point {
  position: relative;
  padding: 100px 0 120px;
  font-weight: 700;
}

.sec-point::after,
.sec-point::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 15px;
  background: url(../img/bg-point.png) repeat-x 50%;
  background-size: auto 100%;
}

.sec-point::before {
  top: 0;
}

.sec-point::after {
  bottom: 0;
}

.point-title {
  position: relative;
  margin-bottom: 30px;
  padding-left: 120px;
  font-size: 5.2rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.point-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 98px;
  height: 98px;
  margin-top: -49px;
  background: url(../img/ico-p.png) no-repeat 50%;
  background-size: 100%;
}

.sec-point .lead {
  margin-bottom: 40px;
  padding-left: 120px;
  font-size: 1.8rem;
  line-height: 2.1666666667;
}

.point_ribbon_wrapper {
  position: relative;
  margin-bottom: 60px;
}

.point_ribbon_wrapper::before {
  content: "";
  position: absolute;
  right: 31px;
  top: -18px;
  width: 88px;
  height: 89px;
  background: url(../img/ico-p2.png) no-repeat 50% 0;
  background-size: 100%;
  pointer-events: none;
  z-index: 3;
}

.point_ribbon {
  text-align: center;
}

.point_ribbon .ribbon_box_inner {
  position: relative;
  padding: 40px 0 50px;
  background-color: #f2f2f2;
  border-radius: 30px;
  z-index: 2;
}

.point_ribbon .ribbon_box_inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #fff;
  border-radius: 21px;
  z-index: -1;
}

.point_ribbon .sec-title::after,
.point_ribbon .sec-title::before {
  width: 36px;
}

.point_ribbon .sec-title span {
  font-size: 3.6rem;
}

.point_ribbon .sec-title .marker::after {
  left: -10px;
}

.point_ribbon .sec-title .c_pink {
  display: inline-block;
  font-size: 4.6rem;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.point_ribbon .title_notes {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (min-width: 768px), print {
  .point_ribbon::after,
  .point_ribbon::before {
    border-top-width: 40px;
  }
  .point_ribbon::before {
    top: 70px;
  }
  .point_ribbon::after {
    bottom: 70px;
  }
  .point_ribbon .list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 878px;
    margin: 25px auto 0;
    line-height: 1.5;
  }
  .point_ribbon .list li {
    width: 266px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
  }
  .point_ribbon .list li .img {
    display: block;
    margin-bottom: 30px;
  }
  .point_ribbon .list li .notes {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-point {
    padding: 60px 0 60px;
  }
  .point-title {
    display: table;
    margin: 0 auto 30px;
    padding-left: 64px;
    font-size: 2.5rem;
  }
  .point-title::before {
    width: 54px;
    height: 54px;
    margin-top: -27px;
  }
  .sec-point .lead {
    margin-bottom: 40px;
    padding-left: 0;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }
  .point_ribbon_wrapper {
    margin-bottom: 40px;
  }
  .point_ribbon_wrapper::before {
    right: 54px;
    top: 3px;
    width: 55px;
  }
  .point_ribbon .ribbon_box_inner {
    padding: 40px 20px 40px;
  }
  .point_ribbon .ribbon_box_inner::before {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-width: 2px;
    border-radius: 26px;
  }
  .point_ribbon .sec-title::after,
  .point_ribbon .sec-title::before {
    bottom: -5px;
  }
  .point_ribbon .sec-title::before {
    left: -5px;
  }
  .point_ribbon .sec-title::after {
    right: -5px;
  }
  .point_ribbon .sec-title span {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .point_ribbon .sec-title .marker::after {
    height: 18px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }
  .point_ribbon .sec-title .c_pink {
    font-size: 2.4rem;
  }
  .point_ribbon .title_notes {
    margin-top: 15px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
  }
  .point_ribbon .list {
    margin-top: 15px;
  }
  .point_ribbon .list li {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    min-height: 105px;
    margin-top: 10px;
    padding: 10px 0 10px 10px;
    background-color: #fff;
    border-radius: 10px;
    font-size: 1.6rem;
    line-height: 1.5;
    white-space: nowrap;
  }
  .point_ribbon .list li .img {
    position: absolute;
    left: 10px;
    top: 50%;
    flex-shrink: 0;
    width: 114px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .point_ribbon .list li .img + span {
    position: relative;
    min-width: calc(100% - 114px);
    margin-left: auto;
    z-index: 2;
  }
  .point_ribbon .list li .notes {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0;
  }
  .sec-point .btn-block dt {
    font-size: 2.2rem;
  }
}
.sec-otoku {
  position: relative;
  padding: 80px 0 100px;
  background: #eaf3d1 no-repeat 50% 0;
  font-weight: 700;
  z-index: 1;
}

.otoku-contents {
  margin-top: 90px;
}

.otoku-contents section {
  position: relative;
  padding: 40px 30px 40px 40px;
  background-color: #fff;
  border-radius: 30px;
}

.otoku-contents section + section {
  margin-top: 64px;
}

.otoku-contents h3 {
  position: absolute;
  top: -25px;
  left: 0;
  height: 120px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  padding: 0 30px 0 20px;
  color: #fff;
  font-size: 3.1rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  z-index: 2;
}

.otoku-contents h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--color-pink);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  z-index: -1;
}

.otoku-contents h3 .l {
  font-size: 3.7rem;
}

.otoku-contents .title {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 5px;
  padding: 6px 0;
  background-color: var(--color-pink);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.5;
}

.otoku-contents .title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -20px;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 15px solid var(--color-pink);
  border-bottom: 0;
}

.otoku-contents .title .t {
  padding-top: 5px;
}

.otoku-contents .title .l {
  margin: 0 10px;
  font-size: 3.3rem;
}

.otoku-contents .title .l .ff_num {
  position: relative;
  display: inline-block;
  top: 3px;
  font-size: 150%;
  line-height: 1;
}

.otoku-contents .title .ss {
  margin-left: 0.5em;
  padding-top: 10px;
  font-size: 1.3rem;
  font-weight: 500;
}

.otoku-contents .otoku dt {
  font-size: 2.4rem;
  line-height: 1.25;
}

.otoku-contents .otoku dt span {
  font-size: 1.9rem;
}

.otoku-contents .otoku dd {
  position: relative;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  align-items: flex-end;
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  z-index: 2;
}

.otoku-contents .otoku dd::after {
  right: -10px;
  left: -10px;
  height: 24px;
  bottom: 4%;
}

.otoku-contents .otoku dd .num {
  position: relative;
  top: 5px;
  font-size: 8.8rem;
  line-height: 1;
  letter-spacing: -5px;
  margin-right: 5px;
}

.otoku-contents .otoku dd .prefix {
  display: inline-block;
  text-align: left;
  margin-right: 0.5em;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.otoku-contents .otoku dd .prefix.o-small {
  margin-right: 0;
  font-size: 1.8rem;
}

.otoku-contents .otoku dd .prefix.-s {
  padding-bottom: 15px;
}

.otoku-contents .otoku dd .-ss {
  font-size: 4.1rem;
  letter-spacing: 0;
}

.otoku-contents .link_box {
  margin-top: 25px;
  padding: 20px 30px;
  background-color: #f2f2f2;
}

.otoku-contents .link_box dt span {
  display: block;
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 500;
}

.otoku-contents .link_box dd ul {
  display: -webkit-box;
  display: flex;
}

.otoku-contents .link_box dd a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 186px;
  height: 60px;
  background-color: #fff;
  border: 1px solid var(--color-theme);
  border-radius: 100px;
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--color-theme);
}

.otoku-contents .link_box dd a.w {
  width: 250px;
}

.otoku-contents .link_box dd a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (hover) {
  .otoku-contents .link_box dd a:hover {
    opacity: 0.7;
  }
}
.otoku-contents .notes {
  padding-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}

.otoku-notes {
  padding-top: 30px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}

.sec-otoku .btn-block {
  margin-top: 60px;
}

@media screen and (min-width: 768px), print {
  .sec-otoku {
    background-image: url(../img/bg-otoku.png);
  }
  .otoku-contents section {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .otoku-contents section .img {
    width: 350px;
  }
  .otoku-contents section .content {
    width: 660px;
  }
  .otoku-contents .otoku {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .otoku-contents .otoku dt {
    padding-top: 20px;
  }
  .otoku-contents .otoku1 .otoku dd {
    margin-left: 50px;
  }
  .otoku-contents .otoku2 .otoku {
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .otoku-contents .otoku2 .otoku .otoku_heading._wide {
    width: 100%;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    letter-spacing: 0;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .c_pink._fwbb {
    display: inline-block;
    margin-left: -10px;
    font-size: 4.4rem;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .num {
    font-size: 8.6rem;
    letter-spacing: -5px;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .text-small {
    display: inline-block;
    font-size: 3.8rem;
    margin-left: -10px;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .text-small.o-xsmall {
    display: inline-block;
    font-size: 2.2rem;
    letter-spacing: 0;
    line-height: 1.1;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail_plus {
    font-size: 3rem;
    margin-bottom: 0.5em;
    margin-right: 5px;
  }
  .otoku-contents .otoku3 .otoku {
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 10px;
  }
  .otoku-contents .link_box {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .otoku-contents .otoku1 .link_box {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .otoku-contents .otoku1 .link_box ul {
    gap: 10px;
  }
  .otoku-contents .otoku2 .link_box {
    gap: 40px;
  }
  .otoku-contents .otoku3 {
    margin-top: 100px;
  }
  .otoku-contents .otoku3 h3 {
    height: 158px;
    top: -60px;
  }
  .otoku-contents .otoku3 .title {
    padding: 10px 20px;
    font-size: 2.2rem;
    line-height: 1.4545454545;
    text-align: center;
  }
  .otoku-contents .otoku3 .title .s {
    font-size: 1.6rem;
  }
  .otoku-contents .otoku3 .otoku {
    letter-spacing: 0;
  }
  .otoku-contents .otoku3 .notes {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .sec-otoku {
    position: relative;
    padding: 30px 0 60px;
    background-image: url(../img/bg-otoku_sp1.png), url(../img/bg-otoku_sp2.png);
    background-repeat: no-repeat;
    background-position: 0 0, 100% 100%;
    background-size: 100%;
  }
  .sec-otoku .sec-title {
    padding: 0 calc(50px - var(--sp-base-padding));
    letter-spacing: 0;
  }
  .otoku-contents {
    margin-top: 60px;
  }
  .otoku-contents section {
    padding: 20px;
    border-radius: 20px;
  }
  .otoku-contents section + section {
    margin-top: 44px;
  }
  .otoku-contents h3 {
    left: 20px;
    height: 64px;
    padding: 0 30px 0 20px;
    font-size: 1.6rem;
  }
  .otoku-contents h3 .l {
    font-size: 1.9rem;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail {
    display: block;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .prefix.o-small {
    font-size: 1.6rem;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .c_pink._fwbb {
    display: inline-block;
    margin-left: -5px;
    font-size: 3.4rem;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .num {
    font-size: 6.4rem;
    letter-spacing: -5px;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .text-small {
    display: inline-block;
    font-size: 2.8rem;
    margin-left: -10px;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail .text-small.o-xsmall {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.1;
    text-align: left;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail_plus {
    line-height: 1;
  }
  .otoku-contents .otoku2 .otoku .otoku_detail_plus_text {
    margin-right: 65px;
  }
  .otoku-contents .otoku3 h3 {
    font-size: 1.3rem;
  }
  .otoku-contents .otoku3 h3 .l {
    font-size: 1.6rem;
    line-height: 1.1;
  }
  .otoku-contents .img {
    margin-bottom: 20px;
  }
  .otoku-contents .img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 0;
    object-position: 50% 0;
    aspect-ratio: 700/460;
  }
  .otoku-contents .title {
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 6px 0;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }
  .otoku-contents .title::after {
    margin-left: -10px;
    border-right-width: 10px;
    border-left-width: 10px;
    border-top-width: 6px;
  }
  .otoku-contents .title .l {
    margin: 0 0 0 5px;
    font-size: 2rem;
  }
  .otoku-contents .title .l .ff_num {
    top: 2px;
    font-size: 130%;
  }
  .otoku-contents .title .ss {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    font-size: 1.2rem;
  }
  .otoku-contents .otoku3 .title {
    padding: 7px 10px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .otoku-contents .otoku3 .title .s {
    font-size: 1.2rem;
  }
  .otoku-contents .otoku {
    text-align: right;
  }
  .otoku-contents .otoku dt {
    font-size: 1.6rem;
    line-height: 1.25;
    text-align: left;
    white-space: nowrap;
  }
  .otoku-contents .otoku dt span {
    font-size: 1.4rem;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
  .otoku-contents .otoku dd {
    font-size: 2.9rem;
    margin-right: 10px;
  }
  .otoku-contents .otoku dd::after {
    right: -10px;
    left: -10px;
    height: 18px;
    bottom: 4%;
  }
  .otoku-contents .otoku dd .num {
    top: 3px;
    font-size: 5.2rem;
  }
  .otoku-contents .otoku dd .prefix {
    padding-bottom: 12px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .otoku-contents .otoku dd .prefix.-s {
    padding-bottom: 8px;
  }
  .otoku-contents .otoku dd .-ss {
    font-size: 2.2rem;
    padding-bottom: 3px;
  }
  .otoku-contents .link_box {
    margin-top: 15px;
    padding: 15px 10px 20px;
    background-color: #f2f2f2;
    text-align: center;
  }
  .otoku-contents .link_box dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .otoku-contents .link_box dt span {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  .otoku-contents .link_box dd ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .otoku-contents .link_box dd li {
    width: calc(50% - 5px);
  }
  .otoku-contents .link_box dd li:only-child {
    width: 100%;
  }
  .otoku-contents .link_box dd a {
    width: 100%;
    height: 45px;
    margin: 0 auto;
    font-size: 1.4rem;
  }
  .otoku-contents .link_box dd a::after {
    right: 10px;
  }
  .otoku-contents .otoku1 .link_box img {
    width: 55px;
  }
  .otoku-contents .otoku2 .link_box a {
    height: 60px;
  }
  .otoku-contents .otoku2 .link_box img {
    width: 180px;
  }
  .otoku-contents .notes {
    font-size: 1.2rem;
  }
  .otoku-notes {
    padding-top: 20px;
    font-size: 1.2rem;
  }
  .sec-otoku .btn-block {
    margin-top: 30px;
  }
  .sec-otoku .btn-block dt {
    font-size: 2.2rem;
  }
}
.sec-fee {
  position: relative;
  padding: 80px 0 100px;
}

.fee-title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 4rem;
  line-height: 1.3;
}

.fee-title-notes {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.fee-table {
  width: 100%;
  border: 2px solid #f1f1f1;
  border-radius: 30px;
  background-color: #fff;
  border-collapse: separate;
  line-height: 1.5;
}

.fee-table tr + tr > * {
  border-top: 2px solid #f1f1f1;
}

.fee-table th {
  width: 170px;
  background-color: #e3e3e3;
  color: var(--color-theme);
  font-weight: 700;
  text-align: center;
}

.fee-table tr:first-child th {
  border-top-left-radius: 28px;
}

.fee-table tr:last-child th {
  border-bottom-left-radius: 28px;
}

.fee-table td {
  padding: 12px 30px;
}

.first-year {
  margin-top: 40px;
}

.first-year h3 {
  margin-bottom: 20px;
  padding: 15px;
  background-color: var(--color-pink);
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
  color: #fff;
}

.first-year .box {
  position: relative;
  padding: 20px 0 35px;
  background-color: #fff;
  border: 2px dotted #aaa;
  border-radius: 30px;
  z-index: 2;
}

.first-year .box .lead {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.first-year .box .lead .c_pink {
  font-size: 2.4rem;
}

.first-year .box ul {
  display: table;
  margin: 0 auto;
  font-size: 1.4rem;
}

.first-year .box ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.3em;
}

.first-year .box ul li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

sup {
  font-size: 70%;
  vertical-align: top;
}

.first-year .result {
  max-width: 630px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 30px auto 0;
  padding: 20px 0 20px 40px;
  background-color: #f2f2f2;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.8235294118;
  border-radius: 10px;
}

.first-year .result::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -20px;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 15px solid #f2f2f2;
  border-top: 0;
}

.first-year .result .ico {
  width: 66px;
  flex-shrink: 0;
  margin-right: 20px;
}

.sec-fee .notes {
  padding-top: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}

.sec-fee .btn-block {
  padding-top: 60px;
}

.arrow_link {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  color: var(--color-theme);
}

.arrow_link .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: var(--color-theme);
}

.arrow_link .arrow::after {
  content: "";
  position: absolute;
  bottom: 50%;
  margin-bottom: -3px;
  right: 50%;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 768px), print {
  .sec-fee .sec-inner {
    width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .sec-fee {
    padding: 50px 0;
  }
  .fee-title {
    font-size: 2.5rem;
  }
  .fee-title-notes {
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .fee-table {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    border-radius: 20px;
  }
  .fee-table th {
    width: 90px;
    padding: 8px 0;
  }
  .fee-table tr:first-child th {
    border-top-left-radius: 18px;
  }
  .fee-table tr:last-child th {
    border-bottom-left-radius: 18px;
  }
  .fee-table td {
    padding: 8px 15px;
  }
  .first-year h3 {
    padding: 8px;
    font-size: 2.4rem;
  }
  .first-year .box {
    padding: 20px;
    border-radius: 20px;
  }
  .first-year .box .lead {
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .first-year .box .lead .c_pink {
    display: inline;
    font-size: 2rem;
    line-height: 1.4;
  }
  .first-year .box .lead .c_pink::after {
    content: none;
  }
  .first-year .box .lead .c_pink span {
    position: relative;
    display: inline-block;
  }
  .first-year .box .lead .c_pink span::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 5%;
    height: 35%;
    background-color: var(--color-yellow);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
    z-index: -1;
  }
  .first-year .box .lead .c_pink span:first-child {
    margin-top: 10px;
  }
  .first-year .box ul {
    display: block;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .first-year .result {
    margin-top: 25px;
    -webkit-box-align: start;
    align-items: start;
    padding: 20px 0 20px 20px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .first-year .result::before {
    margin-left: -15px;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 12px solid #f2f2f2;
  }
  .first-year .result .ico {
    width: 50px;
    flex-shrink: 0;
    margin-right: 10px;
  }
  .sec-fee .notes {
    font-size: 1.4rem;
  }
  .sec-fee .btn-block {
    padding-top: 40px;
  }
  .sec-fee .btn-block dt {
    font-size: 2.2rem;
  }
}
.sec-faq {
  position: relative;
  padding: 80px 0 100px;
  background-color: #f2f2f2;
}

.faq-title {
  margin-bottom: 50px;
  text-align: center;
  font-size: 4rem;
  line-height: 1.3;
}

.faq-category {
  margin-top: 60px;
}

.faq-category h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
  line-height: 1.5;
}

.faq-category .faq {
  margin-bottom: 10px;
}

.faq-category .faq h4 {
  position: relative;
  padding: 15px 60px 15px 85px;
  background: var(--color-theme) url(../img/ico-faq-q.png) no-repeat 25px;
  background-size: 33px;
  border-radius: 100px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.faq-category .faq h4::after,
.faq-category .faq h4::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 16px;
  margin-top: -1px;
  border-top: 2px solid #fff;
}

.faq-category .faq h4::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.init .faq-category .faq h4::after {
  -webkit-transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: opacity var(--transition), transform var(--transition);
  transition: opacity var(--transition), transform var(--transition), -webkit-transform var(--transition);
}

.faq-category .faq h4.open::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 0;
}

.faq-category .faq .a {
  overflow: hidden;
  height: 0;
  position: relative;
}

.init .faq-category .faq .a {
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}

.faq-category .faq .ainner {
  background: #fff url(../img/ico-faq-a.png) no-repeat 80px 25px;
  background-size: 33px;
  padding: 20px 60px 30px 130px;
  border-radius: 30px;
  margin-top: 6px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0;
}

.faq-category .faq .ainner > p + p {
  margin-top: 1.5em;
}

.faq-category .faq .ainner > .notes {
  font-size: 1rem;
  line-height: 1.6;
}

.faq-category .faq a {
  color: var(--color-theme);
}

.faq-category .faq .more {
  margin-top: 10px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-theme);
}

@media (hover) {
  .init .faq-category .faq h4 {
    -webkit-transition: opacity var(--transition);
    transition: opacity var(--transition);
  }
  .faq-category .faq h4:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .sec-faq {
    padding: 50px 0;
  }
  .faq-title {
    margin-bottom: 0;
    font-size: 2.5rem;
  }
  .faq-category {
    margin-top: 30px;
  }
  .faq-category h3 {
    font-size: 2rem;
  }
  .faq-category .faq {
    margin-bottom: 30px;
  }
  .faq-category .faq h4 {
    padding: 13px 50px 15px 80px;
    background-position: 25px 15px;
    background-size: 33px;
    border-radius: 15px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .faq-category .faq h4::after,
  .faq-category .faq h4::before {
    top: 30px;
    right: 20px;
  }
  .faq-category .faq .ainner {
    background-position: 25px 22px;
    padding: 20px 20px 20px 80px;
    border-radius: 15px;
    margin-top: 20px;
    line-height: 1.5;
  }
  .faq-category .faq .ainner > .notes {
    margin-left: -60px;
    font-size: 1.4rem;
  }
  .faq-category .faq .more {
    margin-top: 15px;
    text-align: left;
  }
}
.sec-notes {
  position: relative;
  padding: 100px 0;
  background-color: #fffdea;
  font-size: 1.4rem;
}

.sec-notes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50%;
}

.sec-notes .box {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 0 50px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--color-theme);
  border-radius: 30px;
  text-align: center;
  z-index: 2;
}

.sec-notes h2 {
  margin-bottom: 30px;
  font-size: 4rem;
  line-height: 1.5;
  color: var(--color-theme);
}

.sec-notes h2::after {
  right: -10px;
  left: -10px;
  bottom: 0;
  height: 20px;
}

.sec-notes li {
  margin-bottom: 0.3em;
}

.sec-notes .btn {
  margin-top: 30px;
}

.sec-notes .btn a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  max-width: 100%;
  width: 265px;
  height: 45px;
  margin: 0 auto;
  padding-right: 10px;
  background-color: var(--color-theme);
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.sec-notes .btn a::after,
.sec-notes .btn a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  background-color: var(--color-theme);
}

.sec-notes .btn a::before {
  -webkit-transform: translate(-3px, 3px);
  transform: translate(-3px, 3px);
}

.sec-information {
  padding: 80px 0 100px;
  background: url(../img/bg-sec_information.png) no-repeat center top;
  background-size: cover;
}
.sec-information_title {
  margin-bottom: 40px;
}
.sec-information_title span {
  font-size: 4rem;
}
.sec-information .sec-information_title::after, .sec-information .sec-information_title::before {
  width: 36px;
}
.sec-information_bnr {
  max-width: 860px;
  margin: 0 auto;
}
.sec-information_bnr_anchor {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .sec-information_bnr_anchor:hover {
    position: relative;
  }
  .sec-information_bnr_anchor:hover::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sec-information_bnr_anchor:hover {
    position: relative;
  }
  .sec-information_bnr_anchor:hover::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* link_modal */
.link_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow-y: auto; /* 縦スクロール対応 */
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.link_modal.is-active {
  opacity: 1;
}
.link_modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 625px;
  padding: 65px 20px 70px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.7);
}
.link_modal_close {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}
.link_modal_close_inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.link_modal_close_inner::before, .link_modal_close_inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.link_modal_close_inner::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.link_modal_close_inner::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.link_modal_text {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.link_modal_text .o-strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4583333333;
}
.link_modal_button {
  width: 145px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid #076335;
  background-color: #ffffff;
  color: #076335;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .link_modal_button:hover {
    background-color: #076335;
    color: #ffffff;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .link_modal_button:hover {
    background-color: #076335;
    color: #ffffff;
  }
}
.link_modal_button:not(:last-child) {
  margin-right: 20px;
}
.link_modal_button_wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

body.modal-open {
  overflow: hidden;
}

@media (hover) {
  .sec-notes .btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px), print {
  .sec-notes::before {
    background-image: url(../img/bg-notes.png);
  }
}
@media screen and (max-width: 767px) {
  .sec-notes {
    padding: 40px 20px 80px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .sec-notes::before {
    background-image: url(../img/bg-notes_sp.png);
    background-size: cover;
  }
  .sec-notes .box {
    padding: 30px 20px 35px;
    border-radius: 20px;
  }
  .sec-notes h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
  .sec-notes h2::after {
    bottom: -3px;
  }
  .sec-notes li {
    text-align: left;
  }
  .sec-notes .btn {
    margin-top: 20px;
  }
  .sec-information {
    padding: 60px 0;
    background: #ffffff;
  }
  .sec-information_title span {
    font-size: 2.5rem;
  }
  .link_modal_content {
    width: 92%;
  }
  .link_modal_text {
    font-size: 1.2rem;
  }
  .link_modal_text .o-strong {
    font-size: 2rem;
  }
  .link_modal_button:not(:last-child) {
    margin-right: 15px;
  }
}
.fix_bnr {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  opacity: 0;
  z-index: 999;
}

.init .fix_bnr {
  -webkit-transition: opacity var(--transition-duration) ease-out;
  transition: opacity var(--transition-duration) ease-out;
}

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

@media print {
  .fix_bnr {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .fix_bnr ul {
    height: 116px;
    -webkit-box-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .fix_bnr ul {
    height: 56px;
    display: -webkit-box;
    display: flex;
  }
  .fix_bnr li {
    width: 50%;
    margin: 0;
  }
  .fix_bnr .box_btn {
    height: 56px;
    border: 0;
    border-top: 1px solid var(--color-theme);
    border-radius: 0;
    font-size: 1.2rem;
  }
  .fix_bnr .box_btn .catch {
    font-size: 1.1rem;
  }
  .fix_bnr .box_btn .title {
    font-size: 1.4rem;
  }
  .fix_bnr .box_btn .title .s {
    font-size: 1rem;
  }
  .fix_bnr .box_btn::after {
    content: none;
    right: 5px;
    width: 6px;
    height: 6px;
  }
}