html {
  font-size: 0.78125vw;
  scroll-behavior: smooth;
}
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
body img {
  width: 100%;
}

header {
  position: fixed;
  background: #fff;
  z-index: 10;
  width: 100%;
  height: 7rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  header {
    width: 100vw;
  }
}
header .header_nav {
  display: flex;
  list-style: none;
  gap: 3rem;
  padding: 2.4rem 0;
  max-width: 112rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  header .header_nav {
    display: none;
  }
}
header .header_nav li a {
  color: #26251A;
  text-decoration: none;
  transition: 0.3s;
}
header .header_nav li a:hover {
  opacity: 0.7;
}
header .nav_btn_wrap {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  height: 100%;
}
@media (max-width: 767px) {
  header .nav_btn_wrap {
    width: 100%;
  }
}
header .nav_btn_wrap .nav_btn {
  width: 19rem;
  height: 100%;
}
@media (max-width: 767px) {
  header .nav_btn_wrap .nav_btn {
    width: 50%;
  }
}
header .nav_btn_wrap .nav_btn.nav_btn01 {
  background: #3A466F;
}
header .nav_btn_wrap .nav_btn.nav_btn02 {
  background: #BFA473;
}
header .nav_btn_wrap .nav_btn a {
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  transition: 0.3s;
  position: relative;
}
header .nav_btn_wrap .nav_btn a:after {
  content: "";
  position: absolute;
  height: 7px;
  width: 6px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
header .nav_btn_wrap .nav_btn a:hover {
  opacity: 0.7;
}
header .nav_btn_wrap .nav_btn a:hover:after {
  right: 8px;
}

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

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

section > .container {
  max-width: 108rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section > .container {
    max-width: calc(100vw - 20px);
  }
}
section > .container.container_s {
  max-width: 88rem;
}
@media (max-width: 767px) {
  section > .container.container_s {
    max-width: calc(100vw - 20px);
  }
}

.sec_top {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .sec_top {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row.reverse {
  flex-direction: row-reverse;
}

.h2 {
  margin-top: 0;
  margin-bottom: 4.6rem;
  font-family: "Noto Serif JP", serif;
  color: #3A466F;
  font-size: 4rem;
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
.h2:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #3A466F;
  bottom: 11px;
  left: 0;
  z-index: 1;
}
.h2 .en {
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
  background: #fff;
  width: fit-content;
  position: relative;
  z-index: 2;
  padding-right: 0.5em;
}

.sec_bg {
  background: #EDEFF3;
}
.sec_bg .h2 .en {
  background: #EDEFF3;
}

.sec_fv {
  position: relative;
  padding-top: 7rem;
}
.sec_fv .fv_copy {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .sec_fv .fv_copy {
    top: 10%;
    transform: none;
  }
}
.sec_fv .fv_copy h1 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 4.2rem;
  margin-bottom: 0.2em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .sec_fv .fv_copy h1 {
    font-size: 3rem;
  }
}
.sec_fv .fv_copy h1 .small {
  font-size: 3.6rem;
}
@media (max-width: 767px) {
  .sec_fv .fv_copy h1 .small {
    font-size: 2.6rem;
  }
}
.sec_fv .fv_copy .sub {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .sec_fv .fv_copy .sub {
    font-size: 1.6rem;
  }
}
.sec_fv .fv_copy .fv_box {
  background: #fff;
  padding: 1.4rem;
  border-bottom: 4px solid #BFA473;
  width: 26.8rem;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 767px) {
  .sec_fv .fv_copy .fv_box {
    margin-top: 23rem;
  }
}
.sec_fv .fv_copy .fv_box p {
  font-family: "Noto Serif JP", serif;
  color: #3A466F;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.sec_fv .fv_copy .fv_box p .large {
  font-size: 3.6rem;
}
.sec_fv .fv_copy .fv_box p .bg {
  background: linear-gradient(transparent 40%, #F2EADC 40%);
}

.sec_cpsm p {
  line-height: 2;
}
.sec_cpsm p:last-child {
  margin-bottom: 0;
}

.sec_course .course_top {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .sec_course .course_top {
    display: block;
  }
}
.sec_course .course_top .course_top_img {
  width: 33.8rem;
}
@media (max-width: 767px) {
  .sec_course .course_top .course_top_img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.sec_course .course_top .course_top_txt {
  width: 52rem;
}
@media (max-width: 767px) {
  .sec_course .course_top .course_top_txt {
    width: 100%;
  }
}
.sec_course .course_top .course_top_txt .h2 {
  margin-bottom: 2.4rem;
}
.sec_course .course_middle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.sec_course .course_middle a {
 color: #3A466F;
}
@media (max-width: 767px) {
  .sec_course .course_middle {
    text-align: left;
  }
}
.sec_course .course_bottom .course_bottom_item {
  background: #fff;
  padding: 2.4rem 4rem;
}
@media (max-width: 767px) {
  .sec_course .course_bottom .course_bottom_item {
    display: block;
    padding: 2.6rem 2rem;
  }
}
.sec_course .course_bottom .course_bottom_item:not(:last-child) {
  margin-bottom: 1.6rem;
}
.sec_course .course_bottom .course_bottom_item .course_bottom_logo {
  max-width: 18.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .sec_course .course_bottom .course_bottom_item .course_bottom_logo {
    max-width: 100%;
  }
}
.sec_course .course_bottom .course_bottom_item .course_bottom_logo .img {
  margin: 0;
}
@media (max-width: 767px) {
  .sec_course .course_bottom .course_bottom_item .course_bottom_logo .img {
    max-width: 18.4rem;
    margin: 0 auto;
  }
}
.sec_course .course_bottom .course_bottom_item .col_course_bottom_txt {
  max-width: 57.8rem;
  width: 100%;
}

.sec_outline .outline {
  margin-bottom: 8rem;
}
.sec_outline .outline .coutline_item {
  border: 1px solid #BFA473;
  border-bottom: 4px solid #BFA473;
  padding: 4.2rem 5.4rem;
}
@media (max-width: 767px) {
  .sec_outline .outline .coutline_item {
    display: block;
    padding: 2.6rem 2rem;
  }
}
.sec_outline .outline .coutline_item:not(:last-child) {
  margin-bottom: 3rem;
}
.sec_outline .outline .coutline_item .outline_img {
  width: 34.4rem;
}
@media (max-width: 767px) {
  .sec_outline .outline .coutline_item .outline_img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.sec_outline .outline .coutline_item .outline_img .img {
  margin: 0;
}
.sec_outline .outline .coutline_item .outline_txt {
  width: 57.6rem;
}
@media (max-width: 767px) {
  .sec_outline .outline .coutline_item .outline_txt {
    width: 100%;
  }
}
.sec_outline .outline .coutline_item .outline_txt h3 {
  font-family: "Noto Serif JP", serif;
  color: #3A466F;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .sec_outline .outline .coutline_item .outline_txt h3 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
  }
}
.sec_outline .outline .coutline_item .outline_txt h3 .num {
  background: #3A466F;
  color: #fff;
  width: 4.2rem;
  height: 4.2rem;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .sec_outline .outline .coutline_item .outline_txt h3 .num {
    width: 3.6rem;
    height: 3.6rem;
    min-width: 3.6rem;
  }
}
.sec_outline .outline .coutline_item .outline_txt p {
  line-height: 2;
  margin-bottom: 0;
}
.sec_outline .flow {
  max-width: 88rem;
  margin: 0 auto 11rem;
  background: #F6F6F6;
  padding: 6rem;
}
@media (max-width: 767px) {
  .sec_outline .flow {
    padding: 3rem 2.4rem 1rem;
    margin-bottom: 8rem;
  }
}
.sec_outline .flow .h2_s {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #3A466F;
  font-size: 3.2rem;
  padding-bottom: 0.4em;
  position: relative;
  margin-top: 0;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .sec_outline .flow .h2_s {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
  }
}
.sec_outline .flow .h2_s:after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 1px;
  background: #3A466F;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec_outline .flow > p {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .sec_outline .flow > p {
    text-align: left;
    margin-bottom: 4rem;
  }
}
.sec_outline .flow .flow_img {
  width: fit-content;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  padding-left: 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .sec_outline .flow .flow_img {
    padding-left: 3rem;
  }
}
.sec_outline .flow .flow_img:after {
  content: "";
  position: absolute;
  width: 0.2rem;
  height: 33rem;
  background: #3A466F;
  top: 2rem;
  left: 0;
}
@media (max-width: 767px) {
  .sec_outline .flow .flow_img:after {
    height: 30rem;
  }
}
.sec_outline .flow .flow_img .flow01 {
  font-size: 2.4rem;
  color: #3A466F;
  margin-top: 0;
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .sec_outline .flow .flow_img .flow01 {
    font-size: 2rem;
  }
}
.sec_outline .flow .flow_img .flow01:after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #3A466F;
  top: 1rem;
  left: -6rem;
}
@media (max-width: 767px) {
  .sec_outline .flow .flow_img .flow01:after {
    width: 2rem;
    height: 2rem;
    left: -3.9rem;
  }
}
.sec_outline .flow .flow_img .flow01 .bg {
  background: #3A466F;
  color: #fff;
  font-size: 2rem;
  padding: 0.2em 0.5em 0.3em;
  margin-right: 0.6em;
}
@media (max-width: 767px) {
  .sec_outline .flow .flow_img .flow01 .bg {
    font-size: 1.6rem;
  }
}
.sec_outline .flow .flow_img .flow02 {
  font-size: 1.8rem;
  color: #BFA473;
  margin-top: 0;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 767px) {
  .sec_outline .flow .flow_img .flow02 {
    font-size: 1.6rem;
  }
}
.sec_outline .flow .flow_img .flow02:after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #BFA473;
  top: 1rem;
  left: -5.5rem;
  z-index: 2;
}
@media (max-width: 767px) {
  .sec_outline .flow .flow_img .flow02:after {
    width: 1rem;
    height: 1rem;
    left: -3.4rem;
  }
}
.sec_outline .flow .flow_img .flow02 .small {
  font-family: "Noto Sans JP", sans-serif;
  color: #26251A;
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 1em;
}
@media (max-width: 767px) {
  .sec_outline .flow .flow_img .flow02 .small {
    font-size: 1rem;
  }
}
.sec_outline .slider .h3 {
  font-family: "Noto Serif JP", serif;
  color: #BFA473;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 0;
  position: relative;
}
@media (max-width: 767px) {
  .sec_outline .slider .h3 {
    font-size: 2.2rem;
  }
}
.sec_outline .slider .h3:after {
  content: "";
  position: absolute;
  height: 6rem;
  width: 1px;
  background: #BFA473;
  top: -7rem;
  left: 50%;
}
@media (max-width: 767px) {
  .sec_outline .slider .h3:after {
    height: 4rem;
    top: -5rem;
  }
}
.sec_outline .slider .slide .img {
  border: 1px solid #3A466F;
  padding: 0;
}

.sec_plan .plan_main {
  align-items: stretch;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .sec_plan .plan_main {
    display: block;
  }
}
.sec_plan .plan_main .plan_item {
  background: #fff;
  border: 1px solid #3A466F;
  padding: 0 0 2.4rem;
  position: relative;
  width: 42.5rem;
}
@media (max-width: 767px) {
  .sec_plan .plan_main .plan_item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sec_plan .plan_main .plan_item:not(:last-child) {
    margin-bottom: 7rem;
  }
}
.sec_plan .plan_main .plan_item .top {
  position: absolute;
  width: 27.2rem;
  background: #BFA473;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
  left: 50%;
  top: -5rem;
  transform: translateX(-50%);
  padding: 0.2em 0;
}
.sec_plan .plan_main .plan_item .top:after {
  content: "";
  position: absolute;
  background: #BFA473;
  width: 16px;
  height: 8px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 95%);
}
.sec_plan .plan_main .plan_item .head {
  background: #3A466F;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  width: 100%;
  margin-top: 0;
  line-height: 1.2;
  padding: 1.2rem 0;
}
.sec_plan .plan_main .plan_item .head .small {
  font-size: 1.8rem;
}
.sec_plan .plan_main .plan_item .cnt {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .sec_plan .plan_main .plan_item .cnt {
    padding: 0 2rem;
  }
}
.sec_plan .plan_main .plan_item .cnt .cnt_head {
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec_plan .plan_main .plan_item .cnt .price {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: #3A466F;
  margin-top: 0;
  line-height: 1;
}
.sec_plan .plan_main .plan_item .cnt .price .small {
  font-weight: 500;
  font-size: 1.6rem;
}
.sec_plan .plan_main .plan_item .cnt .price .large {
  font-size: 8rem;
}
.sec_plan .plan_main .plan_item .cnt .sub {
  text-align: center;
  font-size: 1.2rem;
  margin-top: -1rem;
}
.sec_plan .plan_main .plan_item .cnt .bg {
  background: #EDEFF3;
  padding: 2rem 1.2rem;
  height: 16rem;
  box-sizing: border-box;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sec_plan .plan_main .plan_item .cnt .bg {
    height: auto;
  }
}
.sec_plan .plan_bottom {
  background: #fff;
  padding: 2rem;
}
.sec_plan .plan_bottom .head {
  font-size: 2rem;
  color: #3A466F;
  font-weight: bold;
  margin-top: 0;
  text-align: center;
  position: relative;
  padding-bottom: 0.8em;
}
.sec_plan .plan_bottom .head:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/head_bd.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38.1rem;
  height: 1rem;
}
@media (max-width: 767px) {
  .sec_plan .plan_bottom .head:after {
    width: 100%;
  }
}
.sec_plan .plan_bottom p {
  text-align: center;
  margin-bottom: 0;
}
.sec_plan .plan_bottom p .bg {
  background: linear-gradient(transparent 40%, #F2EADC 40%);
}

.sec_cv {
  background: #3A466F;
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
@media (max-width: 767px) {
  .sec_cv {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.sec_cv .h2_cv {
  color: #fff;
  text-align: center;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  margin-top: 0;
}
@media (max-width: 767px) {
  .sec_cv .h2_cv {
    font-size: 2.3rem;
  }
}
.sec_cv p {
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .sec_cv p {
    font-size: 1.5rem;
  }
}
.sec_cv .btn_flex {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4.6rem;
}
@media (max-width: 767px) {
  .sec_cv .btn_flex {
    display: block;
  }
}
.sec_cv .btn_flex .btn {
  width: 38rem;
  height: 10rem;
}
@media (max-width: 767px) {
  .sec_cv .btn_flex .btn {
    width: 100%;
    height: 8rem;
  }
}
.sec_cv .btn_flex .btn:not(:last-child) {
  margin-bottom: 2rem;
}
.sec_cv .btn_flex .btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  border: 1px solid #fff;
  position: relative;
  transition: 0.3s;
  text-align: center;
    line-height: 1.3;
}
.sec_cv .btn_flex .btn a:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 8px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.sec_cv .btn_flex .btn a:hover {
  opacity: 0.8;
}
.sec_cv .btn_flex .btn a:hover:after {
  right: 13px;
}
.sec_cv .btn_flex .btn.btn01 a {
  background: #fff;
  color: #26251A;
}
.sec_cv .btn_flex .btn.btn01 a:after {
  background: #26251A;
}
.sec_cv .btn_flex .btn.btn02 a {
  background: #BFA473;
  color: #fff;
}
.sec_cv .cv_attention {
  text-align: left;
    font-size: 1.2rem;
    max-width: 79rem;
    margin: 0 auto;
}
@media (max-width: 767px) {
  .sec_cv .cv_attention {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}

.sec_voices .h2 {
  margin-left: auto;
  margin-right: auto;
}
.sec_voices .voices_item {
  background: #fff;
  padding: 2.4rem 12rem;
}
@media (max-width: 767px) {
  .sec_voices .voices_item {
    display: block;
    padding: 2.4rem;
  }
}
.sec_voices .voices_item .voices_ic {
  width: 14.2rem;
}
@media (max-width: 767px) {
  .sec_voices .voices_item .voices_ic {
    width: 100%;
  }
}
.sec_voices .voices_item .voices_ic .img {
  margin: 0;
}
@media (max-width: 767px) {
  .sec_voices .voices_item .voices_ic .img {
    width: 14rem;
    margin: 0 auto 1rem;
  }
}
.sec_voices .voices_item .voice_txt {
  width: 46rem;
}
@media (max-width: 767px) {
  .sec_voices .voices_item .voice_txt {
    width: 100%;
  }
}
.sec_voices .voices_item .voice_txt .main {
  margin-top: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: bold;
}
.sec_voices .voices_item .voice_txt .sub {
  margin-bottom: 0;
}
.sec_voices .voices_item:not(:last-child) {
  margin-bottom: 2.4rem;
}

.sec_faq .faq .faq_q {
  background: #EDEFF3;
  padding: 1.2em;
  padding-left: 4em;
  position: relative;
}
.sec_faq .faq .faq_q:after {
  content: "Q";
  position: absolute;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  color: #3A466F;
  top: 1rem;
  left: 2rem;
  line-height: 1;
}
.sec_faq .faq .faq_q p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #3A466F;
}
.sec_faq .faq .faq_a {
  padding: 1.2em;
  padding-left: 4em;
  position: relative;
}
.sec_faq .faq .faq_a:after {
  content: "A";
  position: absolute;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  color: #BFA473;
  top: 1.2rem;
  left: 2rem;
  line-height: 1;
}
.sec_faq .faq .faq_a p {
  margin: 0;
}

.side_bnr_wrap {
  position: fixed;
  width: 20.4rem;
  height: 17rem;
  bottom: 2rem;
  right: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 50;
}
@media (max-width: 767px) {
  .side_bnr_wrap {
    width: 19rem;
    height: 16rem;
  }
}
.side_bnr_wrap.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.side_bnr_wrap .side_bnr {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #BFA473, #755A28);
  border: 1px solid #BFA473;
  padding: 0.3rem;
  text-decoration: none;
  transition: 0.3s;
}
.side_bnr_wrap .side_bnr:hover {
  opacity: 0.8;
}
.side_bnr_wrap .side_bnr .txt {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  margin-top: 0.6rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .side_bnr_wrap .side_bnr .txt {
    font-size: 1.5rem;
    margin-top: 0;
  }
}
.side_bnr_wrap .side_bnr .txt:after {
  content: "";
  position: absolute;
  background: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.4rem;
  height: 1rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .side_bnr_wrap .side_bnr .txt:after {
    width: 14.4rem;
  }
}
.side_bnr_wrap .side_bnr .attention {
        font-size: 0.85rem;
    color: #fff;
    text-align: center;
    display: block;
    margin-top: -0.5rem;
}
/*# sourceMappingURL=style.css.map */