@charset "UTF-8";
/* =========================================================
reset
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

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,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  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 {
  -webkit-text-decoration: normal;
  text-decoration: normal;
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

.bold {
  font-weight: bold;
}

.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.txt-bold {
  font-weight: bold;
}

.ui-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .ui-sp {
    display: block;
  }
}

.ui-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .ui-pc {
    display: none;
  }
}

.in-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .in-sp {
    display: inline;
  }
}

.in-pc {
  display: inline;
}

@media screen and (max-width: 767px) {
  .in-pc {
    display: none;
  }
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.d-i {
  display: inline;
}

.boxshadow-bl {
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.bg-gray {
  background-color: #F7F7F7;
}

.bg-blue {
  background-color: #445b8d;
}

.txt-blue {
  color: #445b8d;
}

.txt-pink{
  color: #e4007f;
}

.txt-min{
  font-family: "Noto Serif", serif!important;
}

.txt-link {
  color: #445b8d;
  text-decoration: underline;
  display: inline-block;
  transition: 0.2s;
}

.txt-link a:hover {
  opacity: 0.8;
}

/* =========================================================
Web fonts
========================================================= */
/* =========================================================
base
========================================================= */
html,
body {
  width: 100%;
  min-width: 1100px;
  height: auto;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {

  html,
  body {
    min-width: auto;
  }
}

body {
  letter-spacing: 0;
  background: #fff;
  font-family: "Noto Serif", serif;
  color: #000;
  font-weight: 400;
  min-width: 100%;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3.7333333333vw;

  }
}


img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  vertical-align: middle;
}

a {
  color: #333;
  display: block;
  text-decoration: none;
}

figure {
  line-height: 0;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.pc-ui {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-ui {
    display: none;
  }
}

.sp-ui {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-ui {
    display: block;
  }
}

.pc-in {
  display: inline;
}

@media screen and (max-width: 767px) {
  .pc-in {
    display: none;
  }
}

.sp-in {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-in {
    display: inline-block;
  }
}

.sp-inbl {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-inbl {
    display: inline-block;
  }
}

/* clearfix
--------------------------------------------------------- */
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* border-box
--------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


.btn {
  border: #303041 solid 1px;
  border-radius: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  height: 100px;
  width: 460px;
  position: relative;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .btn {
    width: calc(670 / 750 * 100vw);
    height: calc(132 / 750 * 100vw);
  }
}

.btn:hover {
  opacity: 0.8;
}

.btn.btn-s {
  width: 440px;

}

@media screen and (max-width: 767px) {
  .btn.btn-s {
    width: calc(630 / 750 * 100vw);
  }
}


.btn p {
  font-size: 20px;
  font-family: "Noto Serif", serif;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .btn p {
    font-size: calc(33 / 750 * 100vw);
  }
}

.btn .arrow {
  position: absolute;
  top: 45%;
  right: 40px;
  transform: translate(0%, -50%);
  width: 46px;
}

@media screen and (max-width: 767px) {
  .btn .arrow {
    width: calc(46 / 750 * 100vw);
    right: calc(48 / 750 * 100vw);
  }
}


.mv {
  width: 100%;
  height: 600px;
  margin: 190px auto 40px;
  background: url(../../images/subscription2/mv_pc.png) center center/1057px auto no-repeat, #f6f6f6;
}

@media screen and (max-width: 767px) {
  .mv {
    height: calc(1196 / 750 * 100vw);
    margin: calc(180 / 750 * 100vw) auto calc(40 / 750 * 100vw);
    background: url(../../images/subscription2/mv_sp.png) center top/100% auto no-repeat, #fff;
  }
}

.mv h1 {
  font-size: 0;
}


.btn-request {
  width: 460px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .btn-request {
    width: calc(670 / 750 * 100vw);
  }
}

.btn-baloon {
  display: inline-block;
  position: relative;
  background: #b89043;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  padding: 8px 20px;
  line-height: 1;
  margin: 0 auto 20px;
}

/* 下向きの三角（しっぽ） */
.btn-baloon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #b89043;
}

@media screen and (max-width: 767px) {
  .btn-baloon {
    padding: calc(8 / 750 * 100vw) calc(24 / 750 * 100vw);
    line-height: 1.5;
    margin-bottom: calc(25 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }

  /* 下向きの三角（しっぽ） */
  .btn-baloon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(-28 / 750 * 100vw);
    width: 0;
    height: 0;
    border: calc(16 / 750 * 100vw) solid transparent;
    border-top-color: #b89043;
  }
}
@media screen and (max-width: 767px) {
.btn-baloon.pc-in{
  display: none!important;
}
}

.nav-list {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

@media screen and (max-width: 767px) {
  .nav-list {
    width: calc(670 / 750 * 100vw);
    flex-wrap: wrap;
    margin: calc(56 / 750 * 100vw) auto calc(56 / 750 * 100vw);
  }
}

.nav-list-item {
  width: 256px;
  border-right: #989898 1px solid;
}

@media screen and (max-width: 767px) {
  .nav-list-item {
    width: 50%;
    border-right: #989898 1px solid;
  }
        .nav-list-item:first-child{
          order: 1;
        }
      .nav-list-item:nth-child(2) {
    order: 3;
    }
    .nav-list-item:nth-child(3) {
    order: 2;
    }
        .nav-list-item:last-child{
          order: 4;
        }
}

.nav-list-item:last-child {
  border-right: none;
}

@media screen and (max-width: 767px) {
 .nav-list-item:nth-child(3) {
    border-right: none;
        border-bottom: #989898 1px solid;
  }
  /*
  .nav-list-item:nth-child(2) {
    border-bottom: #989898 1px solid;
  }
*/
  .nav-list-item:first-child {
    border-bottom: #989898 1px solid;
  } 
}

.nav-list-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s;
  font-weight: 500;
  height: 46px;
}

@media screen and (max-width: 767px) {
  .nav-list-item a {
    gap: calc(30 / 750 * 100vw);
    height: calc(104 / 750 * 100vw);
    justify-content: flex-start;
    padding-left: calc(40 / 750 * 100vw);
  }
}

.nav-list-item a:hover {
  opacity: 0.8;
}

.nav-list-item a p {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 767px) {
  .nav-list-item a p {
    font-size: calc(24 / 750 * 100vw);
  }
}

.nav-list-item a .arrow {
  width: 24px;
}


@media screen and (max-width: 767px) {
  .nav-list-item a .arrow {
    width: calc(42 / 750 * 100vw);
  }
}


.common-ttl-wrap {
  text-align: center;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .common-ttl-wrap {
    margin-bottom: calc(56 / 750 * 100vw);
  }
}

.common-ttl-wrap .sub-ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #445b8d;
  font-weight: 500;
  font-size: 20px;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .common-ttl-wrap .sub-ttl {
    font-size: calc(26 / 750 * 100vw);
    padding-bottom: calc(24 / 750 * 100vw);
  }
}

.main-ttl {
  font-size: 28px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-bottom: 24px;
  position: relative;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .main-ttl {
    font-size: calc(26 / 750 * 100vw);
    padding-bottom: calc(24 / 750 * 100vw);
  }
}

.main-ttl .small{
  font-size: 28px;
}

@media screen and (max-width: 767px) {
.main-ttl .small{
  font-size: calc(26 / 750 * 100vw);
}
.main-ttl .sp-big{
  font-size: calc(32 / 750 * 100vw);
}
}

.main-ttl::after {
  content: "";
  width: 75px;
  height: 1px;
  display: block;
  background: #000;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: 0;
}

.bg-blue .main-ttl,
.bg-blue .sub-ttl {
  color: #fff;
}

.bg-blue .main-ttl::after {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .main-ttl::after {
    width: calc(95 / 750 * 100vw);
    height: calc(1 / 750 * 100vw);
  }
}


.service-inner {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {

  .service-inner {
    padding-bottom: calc(80 / 750 * 100vw);
  }
}

.kagi-ttl-wrap {
  text-align: center;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .kagi-ttl-wrap {
    margin-bottom: calc(48 / 750 * 100vw);
  }
}

.kagi-ttl-inner {
  border: #445b8d 1px solid;
  text-align: center;
  display: inline-block;
  padding: 0 0.7em;
  height: 48px;
}

@media screen and (max-width: 767px) {
  .kagi-ttl-inner {
    height: calc(118 / 750 * 100vw);
    border: #445b8d calc(1 / 750 * 100vw) solid;
  }
}

.kagi-ttl-inner div {
  background: #fff;
  display: inline-block;
  height: 50px;
  margin-top: -1px;
  padding: 0 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .kagi-ttl-inner div {
    height: calc(122 / 750 * 100vw);
    margin-top: calc(-4 / 750 * 100vw);
  }
}

.kagi-ttl-inner div p {
  font-family: "Noto Serif", serif;
  color: #445b8d;
  font-size: 26px;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .kagi-ttl-inner div p {
    font-size: calc(36 / 750 * 100vw);
    line-height: 1.25;
  }
}

.service-box {
  display: flex;
  width: 870px;
  margin: 0 auto;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .service-box {
    flex-direction: column-reverse;
    width: 100%;
    margin: 0 auto;
    gap: calc(48 / 750 * 100vw);
  }
}

.service-txt-sub-ttl {
  font-family: "Noto Serif", serif;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
  padding-bottom: 32px;
  margin-left: -12px;
}

@media screen and (max-width: 767px) {
  .service-txt-sub-ttl {
    font-size: calc(40 / 750 * 100vw);
    text-align: center;
    padding-bottom: calc(32 / 750 * 100vw);
    margin-left: 0;
    font-weight: 500;
  }
}

.service-txt {
  font-size: 16px;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .service-txt {
    font-size: calc(26 / 750 * 100vw);
    padding-bottom: calc(16 / 750 * 100vw);
    text-align: center;
    line-height: 1.5;
  }

  .service-box-img {
    width: calc(717 / 750 * 100vw);
  }
}

.merit {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .merit {
    padding: calc(56 / 750 * 100vw) 0;
  }
}



.merit-list-item {
  background: #fff;
  width: 1000px;
  margin: 0 auto 48px;
  position: relative;
  padding: 48px 0;
}

@media screen and (max-width: 767px) {
  .merit-list {
    margin-top: calc(80 / 750 * 100vw);
  }

  .merit-list-item {
    width: calc(710 / 750 * 100vw);
    margin: 0 auto calc(110 / 750 * 100vw);
    padding: calc(80 / 750 * 100vw) 0;
  }
}

.merit-list-item:last-child {
  margin: 0 auto;
}

.merit-list-icon {
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {

  .merit-list-icon {
    width: calc(240 / 750 * 100vw);
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
}

.merit-img {
  margin: 0 auto;
}

.merit01-img {
  width: 704px;
}


.merit02-img {
  width: 924px;
}

.merit03-img {
  width: 766px;
}

@media screen and (max-width: 767px) {
  .merit01-img {
    width: calc(659 / 750 * 100vw);
  }

  .merit02-img {
    width: calc(656 / 750 * 100vw);
  }

  .merit03-img {
    width: calc(637 / 750 * 100vw);
  }
}


.link-area {
  background: #eaeaea;
  padding: 64px 0;
}

@media screen and (max-width: 767px) {
  .link-area {
    padding: calc(32 / 750 * 100vw) 0 calc(40 / 750 * 100vw);
  }
}






.course {
  padding: 80px 0 0;
}

.course-box {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .course {
    padding: calc(56 / 750 * 100vw) 0 0;
  }

  .course-box {
    margin-bottom: calc(64 / 750 * 100vw);
  }
}



.course-sub-ttl {
  background: #445b8d;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: 400;
  padding: 0.7em 0;
  width: 1000px;
  margin: 0 auto 48px;
}

.course-thum-txt {
  font-family: "Noto Serif", serif;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.course-thum-txt span {
  font-size: 26px;
  font-weight: 500;
}

.course-thum {
  width: 382px;
  margin: 32px auto 48px;
}

@media screen and (max-width: 767px) {
  .course-sub-ttl {
    font-size: calc(32 / 750 * 100vw);
    padding: 0.4em 0;
    width: calc(670 / 750 * 100vw);
    margin: 0 auto calc(48 / 750 * 100vw);
  }

  .course-thum-txt {
    font-size: calc(40 / 750 * 100vw);
  }

  .course-thum-txt span {
    font-size: calc(32 / 750 * 100vw);
  }

  .course-thum {
    width: calc(491 / 750 * 100vw);
    margin: calc(40 / 750 * 100vw) auto calc(56 / 750 * 100vw);
  }
}


.course-about-box {
  display: flex;
  gap: 56px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .course-about-box {
    flex-direction: column;
    margin-left: calc(56 / 750 * 100vw);
    gap: calc(56 / 750 * 100vw);
  }

  .course-about-img01 {
    width: calc(613 / 750 * 100vw);
  }

  .course-about-img02 {
    width: calc(639 / 750 * 100vw);

  }

}


.course-delivery-box {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.course-delivery-box dl {
  width: 440px;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .course-delivery-box {
    gap: calc(32 / 750 * 100vw);
    flex-direction: column;
    align-items: center;
  }

  .course-delivery-box dl {
    width: calc(600 / 750 * 100vw);
    gap: calc(32 / 750 * 100vw);
  }
}

.course-delivery-box dl dt {
  border-radius: 50%;
  border: solid 1px #445b8d;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  font-size: 22px;
  color: #445b8d;
  width: 100px;
  height: 100px;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .course-delivery-box dl dt {
    width: calc(140 / 750 * 100vw);
    height: calc(140 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
    font-feature-settings: "palt";
  }

}

.course-delivery-box dl dd {
  width: 324px;
  font-size: 22px;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .course-delivery-box dl dd {
    width: calc(432 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }

}

.course-delivery-box dl dd .notes {
  font-size: 12px;
  line-height: 1.3;
  color: #707070;
  padding-top: 0.5em;
}

@media screen and (max-width: 767px) {
  .course-delivery-box dl dd .notes {
    font-size: calc(22 / 750 * 100vw);

  }

}

.line-ttl {
  display: flex;
  align-items: center;
  text-align: center;
  color: #445b8d;
  font-weight: 500;
  width: 734px;
  margin: 64px auto 32px;
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.line-ttl::before,
.line-ttl::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #445b8d;
  margin: 0 30px;
}

@media screen and (max-width: 767px) {
  .line-ttl {
    width: calc(730 / 750 * 100vw);
    margin: calc(56 / 750 * 100vw) auto calc(32 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }

  .line-ttl::before,
  .line-ttl::after {
    margin: 0 calc(32 / 750 * 100vw);
  }

}

.course-delivery-ex-table {
  width: 670px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .course-delivery-ex-table {
    width: calc(670 / 750 * 100vw);
    margin: 0 auto;
  }
}

.course-case-list-item {
  border: 1px solid #445b8d;
  position: relative;
  width: 1000px;
  margin: 0 auto 72px;
  padding: 48px 0;
}

@media screen and (max-width: 767px) {

  .course-case-list-item {
    width: calc(670 / 750 * 100vw);
    margin: 0 auto calc(100 / 750 * 100vw);
    padding: calc(48 / 750 * 100vw) 0 calc(64 / 750 * 100vw);
  }
}

.course-case-list-item-ttl {
  font-size: 32px;
  font-family: "Noto Serif", serif;
  color: #000;
  background: #fff;
  padding: 0 1em;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 0%;
}

@media screen and (max-width: 767px) {
  .course-case-list-item-ttl {
    font-size: calc(48 / 750 * 100vw);
  }
}

.case-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .case-ttl {
    gap: calc(32 / 750 * 100vw);
    margin-bottom: calc(48 / 750 * 100vw);
  }
}

.case-ttl-txt {
  font-size: 26px;
  font-family: "Noto Serif", serif;
  color: #445b8d;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .case-ttl-txt {
    font-size: calc(40 / 750 * 100vw);
    line-height: 1.3;
  }
}

.case-ttl-img {
  width: 70px;
}

@media screen and (max-width: 767px) {
  .case-ttl-img {
    width: calc(128 / 750 * 100vw);
  }
}

.course-case-list-item:nth-child(2) .case-ttl-img {
  width: 26px;
}

@media screen and (max-width: 767px) {
  .course-case-list-item:nth-child(2) .case-ttl-img {
    width: calc(47 / 750 * 100vw);
  }
}

.case-sub-ttl {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-bottom: 32px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .case-sub-ttl {
    font-size: calc(28 / 750 * 100vw);
    padding-bottom: calc(24 / 750 * 100vw);
  }
}

.case-sub-ttl span {
  font-size: 80%;
}

.course-case-innerbox {
  border: solid 1px #445b8d;
  width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .course-case-innerbox {
    width: calc(590 / 750 * 100vw);
  }
}

.course-case-innerbox-ttl {
  background: #445b8d;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  padding: 0.5em 0;
}

@media screen and (max-width: 767px) {
  .course-case-innerbox-ttl {
    font-size: calc(26 / 750 * 100vw);
  }
}

.course-case01-img {
  width: 843px;
  margin: 24px auto;
}

@media screen and (max-width: 767px) {
  .course-case01-img {
    width: calc(510 / 750 * 100vw);
    margin: calc(32 / 750 * 100vw) auto;
  }
}

.course-case02-img {
  width: 843px;
  margin: 24px auto;
}

@media screen and (max-width: 767px) {
  .course-case02-img {
    width: calc(510 / 750 * 100vw);
    margin: calc(32 / 750 * 100vw) auto;
  }
}


.course-case-innerbox-underbox {
  display: flex;
  align-items: center;
  width: 900px;
  margin: 48px auto 0;
  gap: 56px;
}

.course-case-innerbox-underbox-img {
  width: 412px;
  margin-left: -2px;
}

@media screen and (max-width: 767px) {
  .course-case-innerbox-underbox {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: calc(50 / 750 * 100vw);
    margin: calc(90 / 750 * 100vw) auto 0;
  }

  .course-case-innerbox-underbox-img {
    width: calc(556 / 750 * 100vw);
    margin-left: 0;
  }
}


.course-step-list {
  display: flex;
  width: 1000px;
  margin: 0 auto 40px;
  justify-content: space-between;
  align-items: stretch;
}

@media screen and (max-width: 767px) {
  .course-step-list {
    width: calc(670 / 750 * 100vw);
    flex-direction: column;
    margin: 0 auto calc(48 / 750 * 100vw);
  }
}

.course-step-list-item {
  width: 230px;
  border: 1px solid #445b8d;
  position: relative;
  padding: 32px 0 24px;
}

@media screen and (max-width: 767px) {
  .course-step-list-item {
    width: calc(670 / 750 * 100vw);
    margin-bottom: calc(80 / 750 * 100vw);
    padding: calc(48 / 750 * 100vw) 0 calc(40 / 750 * 100vw);
  }
  .course-step-list-item:last-child{
    margin-bottom: 0;
  }
}

.course-step-list-item-ttl {
  text-align: center;
  color: #445b8d;
  font-family: "Noto Serif", serif;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .course-step-list-item-ttl {
    font-size: calc(36 / 750 * 100vw);
    padding-bottom: calc(24 / 750 * 100vw);
    margin-bottom: calc(32 / 750 * 100vw);
  }
}

.course-step01-img {
  width: 212px;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .course-step01-img {
    width: calc(448 / 750 * 100vw);
    margin: 0 auto;
  }
}

.course-step-list-item-ttl::after {
  content: "";
  width: 68px;
  height: 1px;
  display: block;
  background: #445b8d;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .course-step-list-item-ttl::after {
    width: calc(93 / 750 * 100vw);
  }
}

.course-step-list-item .arrow {
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  right: -10px;
  display: inline-block;
  width: 8.3px;
  height: 20px;
}

.course-step-list-item .arrow::before,
.course-step-list-item .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 13px;
  height: 2px;
  border-radius: 9999px;
  background-color: #445b8d;
  transform-origin: calc(100% - 1px) 50%;
}


.course-step-list-item .arrow::before {
  transform: rotate(55deg);
}

.course-step-list-item .arrow::after {
  transform: rotate(-55deg);
}



@media screen and (max-width: 767px) {
  .course-step-list-item .arrow {
    position: relative;
    width: calc(48 / 750 * 100vw);
    height: calc(18 / 750 * 100vw);
    transform: translate(-100%, 100%);
    top: auto;
    right: auto;
    left: 50%;
    bottom: calc(-60 / 750 * 100vw);
  }

  .course-step-list-item .arrow::before,
  .course-step-list-item .arrow::after {
    width: calc(4 / 750 * 100vw);
    height: calc(30 / 750 * 100vw);
    transform-origin: 50% calc(100% - 0px);
  }

  .course-step-list-item .arrow::before {
    transform: rotate(55deg);
  }

  .course-step-list-item .arrow::after {
    transform: rotate(-55deg);
  }
}


.course-step02-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .course-step02-box {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.course-step02-img {
  width: 71px;
  margin: 24px auto 24px;
}

@media screen and (max-width: 767px) {
  .course-step02-img {
    width: calc(120 / 750 * 100vw);
    margin: 0 calc(48 / 750 * 100vw) 0 0;
  }
}

.course-step02-box-txt {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.course-step02-box-txt sup {
  font-size: 80%;
}

@media screen and (max-width: 767px) {
  .course-step02-box-txt {
    font-size: calc(28 / 750 * 100vw);
    text-align: left;
  }
}

.course-step02-box-txt .notes {
  color: #707070;
  font-size: 12px;
  width: 190px;
  font-feature-settings: "palt";
  text-align: left;
  margin: 8px auto 0;
}

.course-step02-box-txt .notes.ta-c {
  text-align: center;
}


@media screen and (max-width: 767px) {
  .course-step02-box-txt .notes {
    font-size: calc(24 / 750 * 100vw);
    width: calc(340 / 750 * 100vw);
  }
  .course-step02-box-txt .notes.ta-c {
    text-align: left;
  }
}

.course-step-under-txt-link {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 0px;
}

.course-step-under-txt-link a {
  color: #445b8d;
  text-decoration: underline;
  display: inline-block;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .course-step-under-txt-link {
    font-size: calc(28 / 750 * 100vw);
    padding-bottom: calc(0 / 750 * 100vw);
  }
}

.course-step-under-txt-link a:hover {
  opacity: 0.8;
}

.line-baloon-ttl{
  text-align: center;
  font-size: 24px;
  position: relative;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 767px) {
.line-baloon-ttl{
    font-size: calc(32 / 750 * 100vw);
}
}

.line-baloon-ttl-img{
  margin: 16px auto 48px;
  width: 579px;
  height: 13px;
  }

  @media screen and (max-width: 767px) {
  .line-baloon-ttl-img{
  margin: calc(8 / 750 * 100vw) auto calc(48 / 750 * 100vw);
  width: calc(461 / 750 * 100vw);
  height: calc(17 / 750 * 100vw);
  }
  }

  .delivery-ttl{
    font-size: 32px;
    text-align: center;
    padding-bottom: 40px;
  }
  @media screen and (max-width: 767px) {
    .delivery-ttl{
    font-size: calc(40 / 750 * 100vw);
    padding-bottom: calc(16 / 750 * 100vw);
  }
  }
    .delivery-ttl span{
    font-size: 80%;
    }

      .delivery-img-wrap{
      margin-bottom: calc(48 / 750 * 100vw);
      }

.delivery-img{
  width: 990px;
  margin: 0 auto;
}

  @media screen and (max-width: 767px) {
  .delivery-img-wrap{
    width: calc(640 / 750 * 100vw);
    overflow-x: scroll;
    margin: 0 auto calc(40 / 750 * 100vw);
  }
  .delivery-img{
    width: calc(1349 / 750 * 100vw);
    padding-bottom: calc(40 / 750 * 100vw);
  }
  }

  .change-box{
    width: 1000px;
    margin: 0 auto;
    border: #000 solid 1px;
    padding: 32px 0;
  }

    @media screen and (max-width: 767px) {
      .change-box{
      width: calc(630 / 750 * 100vw);
      padding: calc(40 / 750 * 100vw) 0;
      }
    }

  .change-box-ttl{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 32px;
    gap: 16px;
  }

      @media screen and (max-width: 767px) {
        .change-box-ttl{
            padding-bottom: calc(20 / 750 * 100vw);
    gap: calc(8 / 750 * 100vw);
        }
      }

  .change-box-ttl-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #445b8d;
    color: #fff;
    font-family: "Noto Serif", serif;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

    @media screen and (max-width: 767px) {
      .change-box-ttl-icon{
          width: calc(60 / 750 * 100vw);
          height: calc(60 / 750 * 100vw);
          font-size: calc(40 / 750 * 100vw);
      }
    }

    .change-box-ttl-txt{
      font-family: "Noto Serif", serif;
      font-size: 24px;
      text-align: center;
      border-bottom: 1px solid #000;
      padding-bottom: 8px;
    }
      @media screen and (max-width: 767px) {
    .change-box-ttl-txt{
          font-size: calc(32 / 750 * 100vw);
      border-bottom: 1px solid #000;
      padding-bottom: calc(8 / 750 * 100vw);
    }
      }

    .change-box-list{
      display: flex;
      justify-content: center;
      align-items: center;
    }
      @media screen and (max-width: 767px) {
        .change-box-list{
          flex-direction: column;
        }
      }
    .change-box-list-item{
      padding: 0 24px;
      position: relative;
    }
      @media screen and (max-width: 767px) {
          .change-box-list-item{
                padding: calc(8 / 750 * 100vw) 0;
          }
      }
    .change-box-list-item:last-child{
      display: flex;
      align-items: center;
    }

    .change-box-list-item p{
      text-align: center;
      line-height: 1.5;
      font-size: 16px;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 500;
        }
        @media screen and (max-width: 767px) {
    .change-box-list-item p{
          font-size: calc(26 / 750 * 100vw);
    }
      }

  .change-box-list-item .arrow {
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  right: 0px;
  display: inline-block;
  width: 8.3px;
  height: 20px;
}

  .change-box-list-item .arrow::before,
  .change-box-list-item .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 13px;
  height: 2px;
  border-radius: 9999px;
  background-color: #445b8d;
  transform-origin: calc(100% - 1px) 50%;
}

  .change-box-list-item .arrow::before {
  transform: rotate(55deg);
}

  .change-box-list-item .arrow::after {
  transform: rotate(-55deg);
}


@media screen and (max-width: 767px) {
  .change-box-list-item .arrow {
    position: relative;
    width: calc(48 / 750 * 100vw);
    height: calc(18 / 750 * 100vw);
    transform: translate(-100%, 0%);
    top: auto;
    right: auto;
    left: 50%;
    bottom: calc(0 / 750 * 100vw);
  }

  .change-box-list-item .arrow::before,
  .change-box-list-item .arrow::after {
    width: calc(2 / 750 * 100vw);
    height: calc(15 / 750 * 100vw);
    transform-origin: 50% calc(100% - 0px);
  }

  .change-box-list-item .arrow::before {
    transform: rotate(55deg);
  }

  .change-box-list-item .arrow::after {
    transform: rotate(-55deg);
  }
}
.change-box-list-item:last-child div p{
    text-align: left;
}
.change-box-list-item:last-child div p a{
  display: inline-block;
  overflow-wrap: break-word;
  word-break: break-all;
  text-align: left;
}
@media screen and (max-width: 767px) {
.change-box-txtbox{
  width:calc(400 / 750 * 100vw);
}
}

.change-box-list-item-img{
  width: 50px;
  margin-left: 8px;
}

@media screen and (max-width: 767px) {
  .change-box-list-item:last-child div p a{
  display: inline;
  }
.change-box-list-item-img{
  width: calc(98 / 750 * 100vw);
  margin-left: calc(32 / 750 * 100vw);
}
}

.voice{
  padding: 80px 0;
}

.voice-list{
  margin-bottom: 80px;
}

.voice-list-item{
  display: flex;
  gap: 24px;
  width: 750px;
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: #000 solid 1px;
  align-items: center;
}

.voice-list-item:nth-child(2n){
  flex-direction: row-reverse;
}

.voice-list-icon{
  width: 79px;

}

.voice-list-txtbox{
  width: 650px;
}

.voice-list-sub-ttl{
  font-size: 18px;
  padding-bottom: 0.5em;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.voice-list-txt{
  font-size: 14px;
  line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 767px) {
  .voice{
  padding: calc(100 / 750 * 100vw) 0;
}

.voice-list{
  margin-bottom: calc(100 / 750 * 100vw);
}

.voice-list-item{
  gap: calc(48 / 750 * 100vw);
  width: calc(632 / 750 * 100vw);
    border-bottom: #000 solid calc(1 / 750 * 100vw);
}
.voice-list-txtbox{
  width: calc(420 / 750 * 100vw);
}

.voice-list-sub-ttl{
  font-size:  calc(30 / 750 * 100vw);
}

.voice-list-txt{
  font-size: calc(26 / 750 * 100vw);
}
}

.voice-under-list{
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}


.voice-under-list-item{
  width: 470px;

}

@media screen and (max-width: 767px) {
  
.voice-under-list-item{
  width: 100%;
  margin-bottom: calc(100 / 750 * 100vw);
}
  
.voice-under-list-item:last-child{
  margin-bottom: 0;
}
.voice-under-list{
  width: 100%;
  flex-direction: column;
}

}
.voice-under-list-item .kagi-ttl-inner div {
  padding: 0 1em;
}

.voice-under-list-circlegraph-wrap{
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
.voice-under-list-circlegraph-wrap{
  gap: calc(48 / 750 * 100vw);
}
}
.voice-under-list-item .notes{
  text-align: center;
  font-size: 12px;
  color: #707070;
  padding-top: 1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
.voice-under-list-item .notes{
  font-size: calc(22 / 750 * 100vw);
}
}

.voice-under-list-item .kagi-ttl-inner div p {
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .voice-under-list-item .kagi-ttl-inner div p {
    font-size: calc(36 / 750 * 100vw);
    line-height: 1.25;
  }
}

.voice-under-list-circlegraph{
  width: 196px;
}

.voice-under-list-circlegraph-txt-box{
  width:246px;
}

.voice-under-list-circlegraph-txt-ttl{
  background-color: #445b8d;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.2em;
  padding: 0.4em;
  font-size: 20px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.voice-under-list-circlegraph-txt{
  font-size: 16px;
  line-height: 1.5;
  padding-top: 0.2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
.voice-under-list-circlegraph{
  width: calc(324 / 750 * 100vw);
}

.voice-under-list-circlegraph-txt-box{
  width:calc(340 / 750 * 100vw);
}

.voice-under-list-circlegraph-txt-ttl{
  font-size: calc(29 / 750 * 100vw);
  margin-bottom: 0.4em;
}

.voice-under-list-circlegraph-txt{
  font-size: calc(26 / 750 * 100vw);
}

}

.voice-under-badge-wrap p{
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .voice-under-badge-wrap p{
  font-size: calc(26 / 750 * 100vw);
  padding-bottom: 2em;
}
}

.voice-under-badge-img{
  width: 459px;
  margin: 0 auto 8px;
}

@media screen and (max-width: 767px) {
.voice-under-badge-img{
  width: calc(689 / 750 * 100vw);
    margin: 0 auto calc(40 / 750 * 100vw);
}
}

.notes-list dl{
  display: flex;
  width:410px;
  padding-bottom: 0.4em;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
.notes-list dl{
  text-align: left;
  width:calc(660 / 750 * 100vw);
}
}

.other{
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
.other{
  padding: calc(100 / 750 * 100vw) 0;
}
}

.other-box-wrap{
  text-align: center;
}

.other-box-baloon {
  display: inline-block;
  position: relative;
  background:  #445b8d;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 24px;
  padding: 12px 0px;
  line-height: 1;
  margin: 0 auto 40px;
  width: 360px;
  
}

/* 下向きの三角（しっぽ） */
.other-box-baloon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color:#445b8d;
}

@media screen and (max-width: 767px) {
  .other-box-baloon {
    padding: calc(8 / 750 * 100vw) calc(24 / 750 * 100vw);
    width: auto;
    line-height: 1.5;
    margin-bottom: calc(40 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }

  /* 下向きの三角（しっぽ） */
  .other-box-baloon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(-28 / 750 * 100vw);
    width: 0;
    height: 0;
    border: calc(16 / 750 * 100vw) solid transparent;
    border-top-color: #445b8d;
  }
}


.other-box-sub-txt{
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
   font-family: "Zen Kaku Gothic New", sans-serif;
   padding-bottom: 48px;
}


@media screen and (max-width: 767px) {
.other-box-sub-txt{
text-align: left;
font-size:calc(26 / 750 * 100vw);
padding: 0 calc(40 / 750 * 100vw);
padding-bottom:calc(48 / 750 * 100vw);
line-height: 1.6;
}
}


.other-box{
  display: flex;
  justify-content: center;
  gap: 64px;
}

.other-box01 .other-box-img:first-child{
  width: 460px;
}


.other-box01 .other-box-img:last-child{
  width: 390px;
}

@media screen and (max-width: 767px) {

.other-box{
  flex-direction: column;
  gap: calc(64 / 750 * 100vw);
  align-items: center;
}

.other-box01 .other-box-img:first-child{
  width: calc(610 / 750 * 100vw);
    margin: 0 auto;
}


.other-box01 .other-box-img:last-child{
  width: calc(554 / 750 * 100vw);
  margin: 0 0 0 calc(24 / 750 * 100vw);
}

}


.other-btn{
  line-height: 1.4;
  margin: 48px auto 0;
}


@media screen and (max-width: 767px) {
.other-btn{
  margin: calc(56 / 750 * 100vw) auto 0;
}

}

.other-box02-wrap{
  margin-top: 80px;
}

.other-box02{
  gap: 40px;
}

.other-box02 .other-box-img{
  width: 359px;

}

.other-box02 .other-box-txt-box{
  width: 580px;

}


.other-box02 .other-box-txt-box .other-box-sub-txt{
  text-align: left;
  padding-bottom: 1em;
}

.other-box02 .other-box-txt-box .other-btn{
  margin: 0;
}


@media screen and (max-width: 767px) {
.other-box02-wrap{
  margin-top: calc(80 / 750 * 100vw);
}

.other-box02{
  gap: calc(48 / 750 * 100vw);
  flex-direction: column;
}

.other-box02 .other-box-img{
  width: calc(455 / 750 * 100vw);

}

.other-box02 .other-box-sub-txt{
  padding-bottom: 0;
}

.other-box02 .other-box-txt-box{
  width: calc(660 / 750 * 100vw);
  text-align: left;
}
}


.faq{
  padding: 80px 0;
}


.faq-list-item{
  width: 750px;
  margin: 0 auto 40px;
  border: #000 solid 1px;
}

@media screen and (max-width: 767px) {
  .faq{
  padding: calc(80 / 750 * 100vw) 0;
}
.faq-list-item{
  width: calc(670 / 750 * 100vw);
  margin: 0 auto calc(56 / 750 * 100vw);
  border: #000 solid calc(1 / 750 * 100vw);
}
}

.faq-list-item-q-wrap{
  display: flex;
  align-items: center;
  padding: 20px 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
}

.faq-list-item-q-wrap .arrow{
transition: 0.2s;
}

.faq-list-item-q-wrap.is-open .arrow{
  transform: rotate(-180deg);
}

.faq-list-item-q-wrap .faq-icon{
  color: #445b8d;
  font-size: 18px;

   margin-right: 20px;
}

.faq-list-item-q-wrap .arrow{
  width: 40px;
  margin-left: auto;
}

.faq-list-item-q-wrap .faq-txt{
  font-size: 18px;
  font-weight: 500;
    color: #445b8d;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {

  .faq-list-item-q-wrap{
  padding: calc(32 / 750 * 100vw);
  /* align-items: flex-start; */
}

.faq-list-item-q-wrap .faq-icon{
  font-size:calc(28 / 750 * 100vw);
   margin-right: calc(48 / 750 * 100vw);
   /* margin-top: calc(8 / 750 * 100vw); */
}

.faq-list-item-q-wrap .faq-txt{
  font-size: calc(28 / 750 * 100vw);
  width: calc(460 / 750 * 100vw);
}
.faq-list-item-q-wrap .arrow{
  width: calc(60 / 750 * 100vw);
}
}

.faq-list-item-a-wrap{
  padding: 0px 30px;
  display: none;
}

.faq-list-item-a{
  display: flex;
  padding: 32px 0;
  border-top: 1px solid #282828;
  font-family: "Zen Kaku Gothic New", sans-serif;
}


.faq-list-item-a .faq-icon{
  color: #e4007f;
  font-size: 18px;

   margin-right: 20px;
}

.faq-list-item-a .faq-txt{
  width: 650px;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
.faq-list-item-a-wrap{
  padding: 0px calc(24 / 750 * 100vw);
}

.faq-list-item-a{
  padding: calc(32 / 750 * 100vw) 0 calc(32 / 750 * 100vw) calc(8 / 750 * 100vw);
    border-top: calc(1 / 750 * 100vw) solid #282828;
}

.faq-list-item-a .faq-icon{
  font-size: calc(28 / 750 * 100vw);
  margin-right:calc(32 / 750 * 100vw);
     margin-top: calc(8 / 750 * 100vw);
}

.faq-list-item-a .faq-txt{
  width: calc(540 / 750 * 100vw);
  font-size: calc(24 / 750 * 100vw);
}
}

.faq-txt a{
  display: inline;
}

.important{
  padding: 0px 0 80px;
}

.important-list{
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}


.important-list-item{
  width: 300px;
  margin-right: 48px;
  bottom: 40px;
   font-family: "Zen Kaku Gothic New", sans-serif;
}



.important-list-item:nth-child(3n){
  margin-right: 0;
}


@media screen and (max-width: 767px) {
.important-list{
  width: calc(630 / 750 * 100vw);
  flex-direction: column;
}

.important-list-item{
  width: calc(630 / 750 * 100vw);
  margin-right: 0;
  margin-bottom:calc(48 / 750 * 100vw);
}
}

.important-list-item-ttl{
  border: #445b8d solid 1px;
  border-radius: 20px;
  text-align: center;
  padding: 0.4em 0;
  color:#445b8d;
  font-size: 18px;
  margin-bottom: 0.8em;
  font-weight: 500;
}

.important-list-item dl{
  display: flex;
  gap: 8px;
  margin-bottom: 0.8em;
}

.important-list-item dl dt{
  width: 20px;
}


.important-list-item dl dd{
font-size: 14px;
width: 270px;
line-height: 1.5;
font-weight: 500;
font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
.important-list-item-ttl{
  font-size: calc(32 / 750 * 100vw);
}

.important-list-item dl{
  gap: calc(16 / 750 * 100vw);
}

.important-list-item dl dt{
  width: calc(42 / 750 * 100vw);
}


.important-list-item dl dd{
font-size: calc(26 / 750 * 100vw);
width: calc(580 / 750 * 100vw);
}
}

.pink-info-box{
  border: #e4007f 1px solid;
  width: 1000px;
  margin: 80px auto 48px;
  text-align: center;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
  color: #e4007f;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
.pink-info-box{
  width: calc(670 / 750 * 100vw);
  padding: calc(24 / 750 * 100vw) 0;
  font-size: calc(26 / 750 * 100vw);
    margin: calc(56 / 750 * 100vw) auto calc(56 / 750 * 100vw);
}
}


.info-acco-btn{
  background:#445b8d;
  color: #fff;
  font-size: 18px;
  width: 1000px;
  height: 80px;
  display: flex;
  padding: 0 124px;
 font-family: "Zen Kaku Gothic New", sans-serif;
  align-items: center;
  margin: 0 auto;
  cursor: pointer;

}

.info-acco-btn p{
margin: 0 auto;
 font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 767px) {
  .info-acco-btn{
  font-size: calc(34 / 750 * 100vw);
  width: calc(670 / 750 * 100vw);
  height: calc(130 / 750 * 100vw);
  padding:  0 calc(32 / 750 * 100vw);
}
}

.info-acco-cont{
  width: 1000px;
  margin: 0 auto;
   font-family: "Zen Kaku Gothic New", sans-serif;
   display: none;
}

.info-acco-cont-txt{
  border-bottom: 1px solid #000;
  font-size: 16px;
  padding: 40px 0;
  line-height: 1.7;
}

.info-acco-cont-txt .sub-ttl{
  font-size: 18px;
  font-weight: bold;
}

.info-acco-cont-txt p{
  padding-bottom: 0.8em;
}
.info-acco-cont-txt p a{
  display: inline;
}

.txt-bold{
  font-weight: bold;
}

@media screen and (max-width: 767px) {

.info-acco-cont{
  width: calc(670 / 750 * 100vw);
  margin: 0 auto;
}
.info-acco-cont-txt{
  border-bottom: 1px solid #000;
  font-size: calc(26 / 750 * 100vw);
  padding: calc(56 / 750 * 100vw) 0;
}

.info-acco-cont-txt .sub-ttl{
  font-size: calc(32 / 750 * 100vw);
}

}



.toggle{
    position: relative;
    box-sizing: border-box;
    transition: .5s;
    height: 32px;
    width: 32px;
    background: #fff;
    border-radius: 50%;
  }

  @media screen and (max-width: 767px) {
  .toggle{
        width: calc(40/750 * 100vw);
      height: calc(40/750 * 100vw);
  }
  }
  .toggle span::before,
  .toggle span::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 14px;
      height: 2px;
      vertical-align: middle;
      background: #445b8d;
      transition: .5s;
  }
  @media screen and (max-width: 767px) {
    .toggle span::before,
  .toggle span::after {
        width: calc(20/750 * 100vw);
        height: calc(4/750 * 100vw);
  }
  }
  .toggle span::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .is-open .toggle span::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .is-open .toggle span::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }



  .floating{
    background: #eaeaea;
    width: 100%;
    bottom: 0;
    position: fixed;
    padding: 32px 0 16px;
    opacity: 0;
    transition: 0.2s;
    z-index: 100;
  }
    .floating.show{
      display: block;
      opacity: 1;
    }
    @media screen and (max-width: 767px) {
      .floating{
      padding: calc(48/750 * 100vw) 0 calc(24/750 * 100vw);
      }
    }
  .floating .ta-c{
    position: relative;
  }
  .floating .btn-baloon{
    background: #000;
    color: #fff;
    position: absolute;
    left: 50%;
transform: translate(-50%, 0%);
top: -48px;
white-space: nowrap;
  }
    @media screen and (max-width: 767px) {
      .floating .btn-baloon{
      top: calc(-80/750 * 100vw);
      }
    }
    .floating .btn-baloon::after{
              border-top-color: #000;
    }












        .footer {
                  padding-bottom: 60px!important;
        width: calc(100% - 100px)!important;
    }


        @media screen and (max-width: 767px) {
                .footer {
        margin: 140px auto 0!important;
        padding-bottom: 40px!important;
        width: calc(100% - 60px)!important;
                }
        }