/*=============================================
 common
=============================================*/
body {
  position: relative;
}
/* pc/sp */
.is-pc {
  display: block;
}
.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
/* color */
:root {
  --yellow-color: #f0eb9c;
  --beige-color: #ede8de;
  --brown-color: #bfac88;
  --pink-color: #ddbbb1;
  --red-color: #d14138;
  --blue-color: #50b5c5;
  --white-color: #fff;
  --gray-color: #f8f7f6;
  --black-color: #222222;
  --black2-color: #000;
  --notice-color: #e70b11;
}
.font-lato {
  font-family: 'Lato', Osaka, '游ゴシック', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo,
    'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: bold;
  letter-spacing: 0.08em;
}
/* .pr2023 h2,.pr2023 h3{
  font-family: 'Lato','Noto Sans JP', Osaka, "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  letter-spacing: 0.04em;
} */

/*=============================================
  共通要素
=============================================*/
.pr2023 {
  color: #222222;
  letter-spacing: 0.1em;
  position: relative;
}
.pr2023 .container {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 40px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .container {
    padding: 0 calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .container {
    padding: 0 calc(24 / 375 * 100vw);
  }
}
.pr2023 .container.lg {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .container.lg {
    padding: 0;
  }
}
.u-txt--marker {
  background: linear-gradient(transparent 80%, var(--yellow-color) 80%);
}
/* button */
.c-btn a {
  align-items: center;
  background: var(--red-color);
  color: var(--white-color) !important;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 0 auto;
  position: relative;
  padding: 40px;
  transition: 0.7s ease-in-out;
  width: 563px;
}
.c-btn a::before,
.c-btn a::after {
  content: '';
  background-color: var(--brown-color);
  position: absolute;
  transition: 0.2s ease 0s;
}
.c-btn a::before {
  bottom: -20px;
  right: -18px;
  width: 100%;
  height: 6px;
}
.c-btn a::after {
  top: 20px;
  right: -18px;
  width: 6px;
  height: 100%;
}

.c-btn a:hover::before {
  width: 0%;
}

.c-btn a:hover::after {
  height: 0%;
}

.c-btn a:hover {
  text-decoration: none;
}
.u-btn__arrow::after {
  content: '';
  background-image: url(../images/icon/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  width: 56px;
  height: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .container {
    padding: 0 calc(40 / 1200 * 100vw);
  }
  .c-btn a {
    font-size: calc(24 / 1200 * 100vw);
    padding: calc(40 / 1200 * 100vw);
    width: calc(576 / 1200 * 100vw);
  }
  .c-btn a::before {
    bottom: calc(-16 / 1200 * 100vw);
    right: calc(-17 / 1200 * 100vw);
    height: calc(6 / 1200 * 100vw);
  }
  .c-btn a::after {
    top: calc(10 / 1200 * 100vw);
    right: calc(-17 / 1200 * 100vw);
    width: calc(6 / 1200 * 100vw);
  }
  .u-btn__arrow::after {
    width: calc(56 / 1200 * 100vw);
    height: calc(24 / 1200 * 100vw);
    right: calc(24 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: calc(21 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) 0 calc(46 / 375 * 100vw);
    justify-content: center;
    width: 100%;
  }
  .c-btn a::before {
    bottom: calc(-13 / 375 * 100vw);
    right: calc(-13 / 375 * 100vw);
    height: 6px;
  }
  .c-btn a::after {
    top: calc(13 / 375 * 100vw);
    right: calc(-13 / 375 * 100vw);
    width: 6px;
  }
  .u-btn__arrow::after {
    top: auto;
    right: 0;
    bottom: calc(21 / 375 * 100vw);
    left: 0;
    width: calc(32 / 375 * 100vw);
    height: calc(14 / 375 * 100vw);
  }
}
.c-buttonArea {
  margin-top: 40px;
  display: flex;
  column-gap: 56px;
  justify-content: center;
}
.c-buttonArea__btn {
  text-align: center;
}
.c-buttonArea__btn a {
  border: 6px solid var(--red-color);
  background: var(--white-color);
  color: var(--black-color);
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 auto;
  padding: 18px 0;
  position: relative;
  width: 320px;
  transition: 0.7s ease-in-out;
}
.c-buttonArea__btn a .font-lato {
  font-weight: 900;
}
.c-buttonArea__btn a::before,
.c-buttonArea__btn a::after {
  content: '';
  background-color: var(--brown-color);
  position: absolute;
  transition: 0.2s ease 0s;
}
.c-buttonArea__btn a::before {
  bottom: -16px;
  right: -17px;
  width: 100%;
  height: 6px;
}
.c-buttonArea__btn a::after {
  top: 10px;
  right: -17px;
  width: 6px;
  height: 100%;
}

.c-buttonArea__btn a:hover::before {
  width: 0%;
}

.c-buttonArea__btn a:hover::after {
  height: 0%;
}
.c-buttonArea__btn a:hover {
  text-decoration: none;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-buttonArea {
    margin-top: calc(40 / 1200 * 100vw);
    display: flex;
    column-gap: calc(56 / 1200 * 100vw);
    justify-content: center;
  }
  .c-buttonArea__btn {
    /* margin: calc(40 / 1200 *100vw) auto; */
  }
  .c-buttonArea__btn a {
    font-size: calc(16 / 1200 * 100vw);
    padding: calc(24 / 1200 * 100vw) 0;
    width: calc(320 / 1200 * 100vw);
  }
  .c-buttonArea__btn a::before {
    bottom: calc(-16 / 1200 * 100vw);
    right: calc(-17 / 1200 * 100vw);
    height: calc(6 / 1200 * 100vw);
  }
  .c-buttonArea__btn a::after {
    top: calc(10 / 1200 * 100vw);
    right: calc(-17 / 1200 * 100vw);
    width: calc(6 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .c-buttonArea {
    margin-top: calc(40 / 375 * 100vw);
    flex-direction: column;
    column-gap: 0;
    row-gap: calc(36 / 375 * 100vw);
    justify-content: center;
  }
  .c-buttonArea__btn {
    text-align: center;
    margin: 0;
  }
  .c-buttonArea__btn a {
    border: calc(4 / 375 * 100vw) solid var(--red-color);
    background: var(--white-color);
    color: var(--black-color);
    display: block;
    font-size: calc(17 / 375 * 100vw);
    letter-spacing: 0.1em;
    margin: 0 auto;
    padding: calc(18 / 375 * 100vw) 0;
    position: relative;
    width: 100%;
    transition: 0.7s ease-in-out;
  }
  .c-buttonArea__btn a::before,
  .c-buttonArea__btn a::after {
    content: '';
    background-color: var(--brown-color);
    position: absolute;
    transition: 0.2s ease 0s;
  }
  .c-buttonArea__btn a::before {
    bottom: calc(-16 / 375 * 100vw);
    right: calc(-16 / 375 * 100vw);
    height: 6px;
    width: 100%;
  }
  .c-buttonArea__btn a::after {
    top: calc(13 / 375 * 100vw);
    right: calc(-16 / 375 * 100vw);
    width: 6px;
    height: 100%;
  }
  .c-buttonArea__btn a:hover::before {
    width: 0%;
  }
  .c-buttonArea__btn a:hover::after {
    height: 0%;
  }
  .c-buttonArea__btn a:hover {
    text-decoration: none;
  }
}

/*=============================================
 追従ボタン
=============================================*/
.u-fixedBottom {
  background-color: #f50d2f;
  position: sticky;
  top: calc(100% - 150px);
  left: calc(100% - 150px);
  text-align: center;
  width: 120px;
  z-index: 100;
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}
.u-fixedBottom.is-show {
  visibility: visible;
  opacity: 1;
}
.u-fixedBottom a {
  color: var(--white-color);
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
  position: relative;
  padding: 24px 17px 48px 17px;
}
.u-fixedBottom .u-btn__arrow {
  position: relative;
}
.u-fixedBottom .u-btn__arrow::after {
  content: '';
  background-image: url(../images/icon/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  right: 0;
  top: calc(100% + 18px);
  left: 0;
  width: 28px;
  height: 23px;
}

.u-fixedBottom:hover {
  opacity: 0.7;
}
.u-fixedBottom a::before,
.u-fixedBottom a::after {
  content: '';
  background-color: var(--brown-color);
  position: absolute;
}
.u-fixedBottom a::before {
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 3px;
}
.u-fixedBottom a::after {
  top: 10px;
  right: -10px;
  width: 3px;
  height: 100%;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .u-fixedBottom {
    top: calc(100% - calc(150 / 1200 * 100vw));
    left: calc(100% - calc(150 / 1200 * 100vw));
    width: calc(120 / 1200 * 100vw);
  }
  .u-fixedBottom a {
    font-size: calc(18 / 1200 * 100vw);
    padding: calc(24 / 1200 * 100vw) calc(17 / 1200 * 100vw) calc(48 / 1200 * 100vw)
      calc(17 / 1200 * 100vw);
  }
  .u-fixedBottom .u-btn__arrow::after {
    top: calc(100% + calc(18 / 1200 * 100vw));
    width: calc(28 / 1200 * 100vw);
    height: calc(23 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .u-fixedBottom {
    top: calc(100% - calc(220 / 768 * 100vw));
    left: calc(100% - calc(220 / 768 * 100vw));
    width: calc(184 / 768 * 100vw);
  }
  .u-fixedBottom a {
    font-size: calc(26 / 768 * 100vw);
    padding: calc(32 / 768 * 100vw) calc(22 / 768 * 100vw) calc(74 / 768 * 100vw)
      calc(22 / 768 * 100vw);
  }
  .u-fixedBottom .u-btn__arrow::after {
    bottom: -60%;
    width: calc(28 / 375 * 100vw);
    height: calc(12 / 375 * 100vw);
  }

  .u-fixedBottom a::before {
    bottom: calc(-10 / 375 * 100vw);
    right: calc(-10 / 375 * 100vw);
  }
  .u-fixedBottom a::after {
    top: calc(10 / 375 * 100vw);
    right: calc(-10 / 375 * 100vw);
  }
}

/*=============================================
  連番ラベル（丸）
=============================================*/
.u-num--round {
  background: var(--notice-color);
  border-radius: 50%;
  color: var(--white-color);
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.u-num--round.-gold {
  background: #bfac88;
}
.u-num--round.-small {
  width: 18px;
  height: 18px;
  font-size: 11px;
  line-height: 18px;
  text-indent: 0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .u-num--round {
    font-size: calc(14 / 1200 * 100vw);
    line-height: calc(24 / 1200 * 100vw);
    width: calc(24 / 1200 * 100vw);
    height: calc(24 / 1200 * 100vw);
  }
  .u-num--round.-small {
    font-size: calc(11 / 1200 * 100vw);
    line-height: calc(18 / 1200 * 100vw);
    width: calc(18 / 1200 * 100vw);
    height: calc(18 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .u-num--round {
    font-size: calc(12 / 375 * 100vw);
    line-height: calc(20 / 375 * 100vw);
    width: calc(20 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
  }
  .u-num--round.-small {
    font-size: calc(10 / 375 * 100vw);
    line-height: calc(16 / 375 * 100vw);
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
  }
}

/*=============================================
  KV
=============================================*/
.pr2023-mv {
  margin-top: -120px;
  position: relative;
}
.pr2023-mv-btn {
  background-color: #ffad35;
  position: absolute;
  bottom: 20px;
  right: 34px;
  text-align: center;
  width: 250px;
  z-index: 100;
}
.pr2023-mv-btn a {
  color: var(--white-color);
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
  position: relative;
  padding: 24px 38px 47px;
}
.pr2023-mv-btn .u-btn__arrow {
  position: relative;
}
.pr2023-mv-btn .u-btn__arrow::after {
  content: '';
  background-image: url(../images/icon/arrow_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  right: auto;
  left: calc(50% - 22px);
  top: calc(100% + 16px);
  transform: translateX(-50%);
  width: 12px;
  height: 18px;
}

.pr2023-mv-btn:hover {
  transition: all 0.3s;
  opacity: 0.7;
}
.pr2023-mv-btn a::before,
.pr2023-mv-btn a::after {
  content: '';
  background-color: var(--brown-color);
  position: absolute;
  transition: 0.2s ease 0s;
}
.pr2023-mv-btn a::before {
  top: calc(100% + 7px);
  right: -10px;
  width: 100%;
  height: 3px;
}
.pr2023-mv-btn a::after {
  top: 10px;
  right: -10px;
  width: 3px;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023-mv {
    margin-top: calc(-120 / 1200 * 100vw);
  }
  .pr2023-mv-btn {
    bottom: calc(20 / 1200 * 100vw);
    right: calc(34 / 1200 * 100vw);
    width: calc(250 / 1200 * 100vw);
  }
  .pr2023-mv-btn a {
    font-size: calc(20 / 1200 * 100vw);
    padding: calc(24 / 1200 * 100vw) calc(38 / 1200 * 100vw) calc(47 / 1200 * 100vw);
  }
  .pr2023-mv-btn .u-btn__arrow::after {
    left: calc(50% - calc(22 / 1200 * 100vw));
    top: calc(100% + calc(12 / 1200 * 100vw));
    width: calc(12 / 1200 * 100vw);
    height: calc(18 / 1200 * 100vw);
  }
  .pr2023-mv-btn a::before {
    top: calc(100% + calc(7 / 1200 * 100vw));
    right: calc(-10 / 1200 * 100vw);
    width: 100%;
    height: calc(3 / 1200 * 100vw);
  }
  .pr2023-mv-btn a::after {
    top: calc(10 / 1200 * 100vw);
    right: calc(-10 / 1200 * 100vw);
    width: calc(3 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023-mv {
    margin-top: calc(-92 / 375 * 100vw);
  }
  .pr2023-mv-btn {
    bottom: calc(153 / 375 * 100vw);
    right: calc(30 / 375 * 100vw);
    width: auto;
  }
  .pr2023-mv-btn a {
    font-size: calc(13 / 375 * 100vw);
    padding: calc(11 / 375 * 100vw) calc(18 / 375 * 100vw) calc(29 / 375 * 100vw);
  }
  .pr2023-mv-btn .u-btn__arrow::after {
    left: calc(50% - calc(2 / 375 * 100vw));
    top: calc(100% + calc(3 / 375 * 100vw));
    width: calc(12 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
    margin: 0;
  }
  .pr2023-mv-btn a::before {
    top: calc(100% + calc(7 / 375 * 100vw));
    right: calc(-10 / 375 * 100vw);
    width: 100%;
    height: calc(3 / 375 * 100vw);
  }
  .pr2023-mv-btn a::after {
    top: calc(10 / 375 * 100vw);
    right: calc(-10 / 375 * 100vw);
    width: calc(3 / 375 * 100vw);
  }
}
/*=============================================
  なぜ、NISAがいいの？
=============================================*/
.pr2023 .whyNISA {
  background-color: #f8f7f6;
  padding-top: 120px;
}

.pr2023 .whyNISA-inner {
  display: flex;
}
.pr2023 .whyNISA-inner .imgArea {
  margin-right: 6.25%;
  max-width: 720px;
  width: 53%;
}
.pr2023 .whyNISA-inner .txtArea {
  flex: 1;
  margin-right: 11.8%;
}
.pr2023 .whyNISA-inner .txtArea .whyNISA-ttl {
  font-size: 40px;
  font-weight: 700;
}
.pr2023 .whyNISA-inner .txtArea .whyNISA-txt {
  margin-top: 48px;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .pr2023 .whyNISA {
    padding-top: calc(120 / 1440 * 100vw);
  }
  .pr2023 .whyNISA-inner .imgArea {
    margin-right: calc(80 / 1440 * 100vw);
    width: calc(720 / 1440 * 100vw);
  }
  .pr2023 .whyNISA-inner .txtArea {
    margin-right: calc(150 / 1440 * 100vw);
  }
  .pr2023 .whyNISA-inner .txtArea .whyNISA-ttl {
    font-size: calc(40 / 1440 * 100vw);
  }
  .pr2023 .whyNISA-inner .txtArea .whyNISA-txt {
    margin-top: calc(48 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .whyNISA {
    padding-top: calc(48 / 375 * 100vw);
  }
  .pr2023 .whyNISA-inner {
    flex-direction: column-reverse;
  }
  .pr2023 .whyNISA-inner .imgArea {
    margin-right: 0;
    margin-top: calc(40 / 375 * 100vw);
    width: calc(331 / 375 * 100vw);
  }
  .pr2023 .whyNISA-inner .txtArea {
    margin: 0 auto;
    width: calc(327 / 375 * 100vw);
  }
  .pr2023 .whyNISA-inner .txtArea .whyNISA-ttl {
    font-size: calc(28 / 375 * 100vw);
    text-align: center;
  }
  .pr2023 .whyNISA-inner .txtArea .whyNISA-txt {
    margin-top: calc(40 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    font-weight: 700;
  }
}

/*=============================================
　　　イントロ
=============================================*/
.pr2023 .intro {
  background-color: #f8f7f6;
  padding-top: 60px;
}
.pr2023 .intro-inner {
  background-color: #f2eee7;
  letter-spacing: 0.08em;
  line-height: 2.2;
  padding: 40px 60px;
}
.pr2023 .intro-title {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.pr2023 .intro-txt {
  font-size: 20px;
  letter-spacing: 0.1em;
}
.pr2023 .intro-message {
  display: grid;
  row-gap: 9px;
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
}
.pr2023 .intro-message .intro-message__sub {
  font-size: 24px;
}
.pr2023 .intro-message .intro-message__main {
  font-size: 30px;
}
.pr2023 .intro-message .intro-message__main em {
  color: #e8541e;
  font-style: normal;
}
.pr2023 .intro-boxItems {
  margin-top: 25px;
  display: flex;
  gap: 0 24px;
  justify-content: center;
}
.pr2023 .intro-boxItems .intro-boxItem {
  padding: 10px 10px 20px;
  width: 360px;
  background-color: #fff;
  border-radius: 17px;
}
.pr2023 .intro-boxItems .intro-boxItem__title {
  margin-bottom: 18px;
  padding: 7px;
  background-color: #e8541a;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
}
.pr2023 .intro-boxItem__image {
  margin: 0 auto;
}
.pr2023 .intro-boxItem__image.image01 {
  width: 257px;
}
.pr2023 .intro-boxItem__image.image02 {
  width: 113px;
}
.pr2023 .intro-boxItem__text {
  padding: 0 22px;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .intro {
    padding-top: calc(60 / 1200 * 100vw);
  }
  .pr2023 .intro-inner {
    padding: calc(60 / 1200 * 100vw) calc(40 / 1200 * 100vw);
  }
  .pr2023 .intro-title {
    font-size: calc(40 / 1200 * 100vw);
  }
  .pr2023 .intro-txt {
    font-size: calc(20 / 1200 * 100vw);
  }
  .pr2023 .intro-message {
    row-gap: calc(9 / 1200 * 100vw);
    margin-top: calc(40 / 1200 * 100vw);
  }
  .pr2023 .intro-message .intro-message__sub {
    font-size: calc(24 / 1200 * 100vw);
  }
  .pr2023 .intro-message .intro-message__main {
    font-size: calc(30 / 1200 * 100vw);
  }
  .pr2023 .intro-message .intro-message__main em {
    color: #e8541e;
    font-style: normal;
  }

  .pr2023 .intro-boxItems {
    margin-top: calc(25 / 1200 * 100vw);
    gap: 0 calc(24 / 1200 * 100vw);
  }
  .pr2023 .intro-boxItems .intro-boxItem {
    padding: calc(10 / 1200 * 100vw) calc(10 / 1200 * 100vw) calc(20 / 1200 * 100vw);
    width: calc(360 / 1200 * 100vw);
  }
  .pr2023 .intro-boxItems .intro-boxItem__title {
    margin-bottom: calc(18 / 1200 * 100vw);
    padding: calc(7 / 1200 * 100vw);
    font-size: calc(20 / 1200 * 100vw);
  }
  .pr2023 .intro-boxItem__image.image01 {
    width: calc(257 / 1200 * 100vw);
  }
  .pr2023 .intro-boxItem__image.image02 {
    width: calc(113 / 1200 * 100vw);
  }
  .pr2023 .intro-boxItem__text {
    padding: 0 calc(22 / 1200 * 100vw);
    margin-top: calc(10 / 1200 * 100vw);
    font-size: calc(18 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .intro {
    padding-top: calc(40 / 375 * 100vw);
  }
  .pr2023 .intro-inner {
    padding: calc(32 / 375 * 100vw) calc(20 / 375 * 100vw);
    text-align: left;
  }
  .pr2023 .intro-title {
    margin-bottom: calc(32 / 375 * 100vw);
    font-size: calc(28 / 375 * 100vw);
    text-align: center;
  }
  .pr2023 .intro-txt {
    font-size: calc(16 / 375 * 100vw);
  }
  .pr2023 .intro-message {
    row-gap: calc(8 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
  }
  .pr2023 .intro-message .intro-message__sub {
    font-size: calc(20 / 375 * 100vw);
  }
  .pr2023 .intro-message .intro-message__main {
    font-size: calc(24 / 375 * 100vw);
  }
  .pr2023 .intro-boxItems {
    margin-top: calc(17 / 375 * 100vw);
    flex-direction: column;
    gap: calc(40 / 375 * 100vw) 0;
  }
  .pr2023 .intro-boxItems .intro-boxItem {
    width: 100%;
  }
  .pr2023 .intro-boxItems .intro-boxItem__title {
    margin-bottom: calc(26 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
  .pr2023 .intro-boxItem__image img {
    max-width: none;
    width: 100%;
  }
  .pr2023 .intro-boxItem__image.image01 {
    width: calc(257 / 375 * 100vw);
  }
  .pr2023 .intro-boxItem__image.image02 {
    width: calc(113 / 375 * 100vw);
  }
  .pr2023 .intro-boxItem__text {
    padding: 0 calc(8 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
  }
}
/*=============================================
  NISAのメリット
=============================================*/
.pr2023 .merit {
  padding-top: 80px;
  background-color: #f8f7f6;
}
.pr2023 .merit .merit-ttl {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.pr2023 .merit .merit-inner {
  background-color: #fff;
  margin-top: 48px;
  padding: 38px 59px 48px;
}
.pr2023 .merit .merit-subttl {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
}
.pr2023 .merit .merit-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 59px;
}
.pr2023 .merit .merit-col .merit-txtArea {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  margin-right: 67px;
}
.pr2023 .merit .merit-col .merit-imgArea {
  width: 69.79%;
}
.pr2023 .merit .merit-txt {
  margin-top: 24px;
  font-size: 12px;
}
.pr2023 .merit .merit-lists {
  margin-top: 76px;
  counter-reset: number 0;
}
.pr2023 .merit .merit-lists .container {
  background-color: #ece8e1;
}
.pr2023 .merit .merit-list {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 868px;
  width: 100%;
  padding: 80px 0;
  margin: auto;
}
.pr2023 .merit .merit-list::before {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  z-index: -1;
  height: 100%;
  width: 50vw;
  background-color: #ece8e1;
}
.pr2023 .merit .merit-list .merit-list__item {
  width: 29%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pr2023 .merit .merit-list .merit-list__item::before {
  content: '';
  bottom: 14px;
  left: 0;
  position: absolute;
  margin-top: 30px;
  width: calc(100% - 54px);
  height: 4px;
  background-color: #222222;
}
.pr2023 .merit .merit-list .merit-list__item::after {
  margin-top: 30px;
  counter-increment: number 1;
  content: '0' counter(number);
  font-size: 24px;
  font-weight: 900;
  font-family: 'Lato', Osaka, '游ゴシック', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo,
    'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  text-align: right;
}
.pr2023 .merit .merit-list .merit-list__item:nth-child(n + 2) {
  margin-left: 56px;
}
.pr2023 .merit .merit-list .merit-list__item .merit-list__item-ttl {
  margin-top: 32px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.54;
  flex: 1;
  height: 100%;
  min-height: 0%;
}
.pr2023 .merit .merit-list .merit-list__item .merit-list__item-txt {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.56;
  letter-spacing: 0.1em;
  flex: 2;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .merit {
    padding-top: calc(80 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-ttl {
    font-size: calc(32 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-inner {
    margin-top: calc(48 / 1200 * 100vw);
    padding: calc(38 / 1200 * 100vw) calc(59 / 1200 * 100vw) calc(48 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-subttl {
    font-size: calc(30 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-col {
    margin-top: calc(59 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-col .merit-txtArea {
    font-size: calc(20 / 1200 * 100vw);
    margin-right: calc(67 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-col .merit-imgArea {
    width: calc(650 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-txt {
    margin-top: calc(24 / 1200 * 100vw);
    font-size: calc(12 / 1200 * 100vw);
  }

  .pr2023 .merit .merit-lists {
    margin-top: calc(76 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-list {
    padding: calc(80 / 1200 * 100vw) 0;
  }
  .pr2023 .merit .merit-list .merit-list__item::before {
    bottom: calc(14 / 1200 * 100vw);
    margin-top: calc(30 / 1200 * 100vw);
    width: calc(100% - calc(54 / 1200 * 100vw));
    height: calc(4 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-list .merit-list__item::after {
    margin-top: calc(30 / 1200 * 100vw);
    font-size: calc(24 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-list .merit-list__item:nth-child(n + 2) {
    margin-left: calc(56 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-list .merit-list__item .merit-list__item-ttl {
    margin-top: calc(32 / 1200 * 100vw);
    font-size: calc(22 / 1200 * 100vw);
  }
  .pr2023 .merit .merit-list .merit-list__item .merit-list__item-txt {
    margin-top: calc(24 / 1200 * 100vw);
    font-size: calc(16 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .merit {
    padding-top: calc(80 / 375 * 100vw);
  }
  .pr2023 .merit .merit-ttl {
    font-size: calc(28 / 375 * 100vw);
  }
  .pr2023 .merit .merit-inner {
    margin-top: calc(40 / 375 * 100vw);
    padding: calc(40 / 375 * 100vw) calc(28 / 375 * 100vw) calc(65 / 375 * 100vw);
  }
  .pr2023 .merit .merit-subttl {
    font-size: calc(24 / 375 * 100vw);
    line-height: 1.25;
  }
  .pr2023 .merit .merit-col {
    margin-top: calc(40 / 375 * 100vw);
    display: block;
  }
  .pr2023 .merit .merit-col .merit-txtArea {
    font-size: calc(16 / 375 * 100vw);
    text-align: center;
    line-height: 1.25;
    margin-right: 0;
  }
  .pr2023 .merit .merit-col .merit-imgArea {
    width: calc(290 / 375 * 100vw);
    margin-top: calc(45 / 375 * 100vw);
    margin-left: auto;
    margin-right: calc(-26 / 375 * 100vw);
  }
  .pr2023 .merit .merit-col .merit-imgArea img {
    width: 100%;
  }
  .pr2023 .merit .merit-txt {
    margin-top: calc(10 / 375 * 100vw);
    letter-spacing: 0.1em;
    font-size: calc(11 / 375 * 100vw);
  }

  .pr2023 .merit .merit-lists {
    margin-top: calc(50 / 375 * 100vw);
  }
  .pr2023 .merit .merit-list {
    padding: calc(96 / 375 * 100vw) calc(20 / 375 * 100vw);
    display: block;
  }
  .pr2023 .merit .merit-list .merit-list__item {
    width: 100%;
  }
  .pr2023 .merit .merit-list .merit-list__item::before {
    bottom: calc(13 / 375 * 100vw);
    margin-top: calc(50 / 375 * 100vw);
    width: calc(100% - calc(60 / 375 * 100vw));
    height: calc(4 / 375 * 100vw);
  }
  .pr2023 .merit .merit-list .merit-list__item::after {
    margin-top: calc(32 / 375 * 100vw);
    font-size: calc(27 / 375 * 100vw);
  }
  .pr2023 .merit .merit-list .merit-list__item:nth-child(n + 2) {
    margin-left: 0;
    margin-top: calc(52 / 375 * 100vw);
  }
  .pr2023 .merit .merit-list .merit-list__item .merit-list__item-ttl {
    margin-top: calc(32 / 375 * 100vw);
    font-size: calc(22 / 375 * 100vw);
  }
  .pr2023 .merit .merit-list .merit-list__item .merit-list__item-txt {
    margin-top: calc(24 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}
/*=============================================
  バナー
=============================================*/
.bannerArea {
  background-color: #f8f7f6;
  padding-top: 52px;
  padding-bottom: 62px;
}
.bannerArea .banner {
  width: 100%;
  max-width: 892px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .bannerArea {
    padding-top: calc(52 / 1200 * 100vw);
    padding-bottom: calc(62 / 1200 * 100vw);
  }
  .bannerArea .banner {
    max-width: calc(892 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .bannerArea {
    padding-top: calc(40 / 375 * 100vw);
    padding-bottom: calc(77 / 375 * 100vw);
  }
}
/*=============================================
  NISA講座を開設するボタン
=============================================*/
.bannerArea .pr2023-recommend__btn {
  margin-top: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .bannerArea .pr2023-recommend__btn {
    margin-top: calc(80 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .bannerArea .pr2023-recommend__btn {
    margin-top: calc(40 / 375 * 100vw);
  }
}
/*=============================================
  こんな方にNISAはおすすめ！
=============================================*/
.pr2023 .suggest {
  margin-top: 182px;
}
.pr2023 .suggest .suggest-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 38px;
}
.pr2023 .suggest .suggest-grid .suggest-grid__item:nth-child(1) {
  width: 652px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pr2023 .suggest .suggest-grid .suggest-grid__item .suggest-grid__item-l-txt {
  margin-top: 85px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  flex-shrink: 0;
}
.pr2023 .suggest .suggest-grid .suggest-grid__item:nth-child(2) {
  width: 408px;
}
.pr2023 .suggest .suggest-grid .suggest-grid__item:nth-child(3),
.pr2023 .suggest .suggest-grid .suggest-grid__item:nth-child(4) {
  flex: 1;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .suggest {
    margin-top: calc(182 / 1200 * 100vw);
  }
  .pr2023 .suggest .suggest-grid {
    gap: calc(38 / 1200 * 100vw);
  }
  .pr2023 .suggest .suggest-grid .suggest-grid__item:nth-child(1) {
    width: calc(652 / 1200 * 100vw);
  }
  .pr2023 .suggest .suggest-grid .suggest-grid__item .suggest-grid__item-l-txt {
    margin-top: calc(85 / 1200 * 100vw);
    font-size: calc(32 / 1200 * 100vw);
  }
  .pr2023 .suggest .suggest-grid .suggest-grid__item:nth-child(2) {
    width: calc(406 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .suggest {
    margin-top: calc(24 / 375 * 100vw);
  }
  .pr2023 .suggest .container {
    padding: 0;
  }
  .pr2023 .suggest .suggest-grid {
    flex-direction: column;
    row-gap: calc(32 / 375 * 100vw);
    padding: 0 calc(24 / 375 * 100vw);
  }
  .pr2023 .suggest .suggest-grid .suggest-grid__item .suggest-grid__item-l-txt {
    margin-top: 0;
    margin-bottom: calc(48 / 375 * 100vw);
    font-size: calc(28 / 375 * 100vw);
    text-align: center;
    line-height: 1.42;
  }
  .pr2023 .suggest .suggest-grid .suggest-grid__item:nth-child(1),
  .pr2023 .suggest .suggest-grid .suggest-grid__item:nth-child(2) {
    width: 100%;
  }
}
/*=============================================
  シミュレーション
=============================================*/
.pr2023 .simulation {
  margin-top: 80px;
  padding-top: 40px;
}
.simulation-l-txt {
  color: #222222;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.simulation .simulation-inner {
  display: flex;
  flex-direction: column;
  background-image: url(../../cmn/images/simulation-bg.png);
  background-repeat: no-repeat;
  position: relative;
  background-size: contain;
  width: 1100px;
  height: 612px;
  padding: 94px 119px 70px;
  margin: 96px auto 0;
}
.simulation .simulation-people {
  position: absolute;
  width: 192px;
  bottom: 0;
  right: 80px;
}
.simulation .simulation-ttl {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #222222;
  font-weight: 900;
  text-align: center;
}
.simulation .simulation-ttl span {
  font-weight: 900;
}
.simulation .simulation-subttl {
  font-size: 27px;
  margin-top: 20px;
  letter-spacing: 0.1em;
  color: #e95513;
  font-weight: 900;
  text-align: center;
}
.simulation .simulation-questionContainer {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.simulation .simulation-progress {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 298px;
  margin: 22px auto 0;
  z-index: 2;
}
.simulation .simulation-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  height: 3px;
  width: 100%;
  transform: translateY(-50%);
  left: 0;
  background-color: #707070;
  z-index: -1;
}
.simulation .simulation-progress li {
  width: 46px;
  height: 46px;
  transition: 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #fff;
  font-weight: bold;
}
.simulation .simulation-progress li:not(:last-child) {
  margin-right: 80px;
}
.simulation .q1 .simulation-progress li:nth-child(1) {
  background-color: #707070;
  color: #ffffff;
}
.simulation .q2 .simulation-progress li:nth-child(2) {
  background-color: #707070;
  color: #ffffff;
}
.simulation .q3 .simulation-progress li:nth-child(3) {
  background-color: #707070;
  color: #ffffff;
}
.simulation .simulation-btn input[type='radio'] {
  -webkit-appearance: none;
  border: 2px solid #bfac88;
  width: 16px;
  transform: translateY(2px);
  height: 16px;
  border-radius: 50%;
}
.simulation .simulation-btn input[type='radio']:checked {
  border: 2px solid #121211;
  background-color: #bfac88;
}
.simulation .simulation-questionText {
  margin-top: 32px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #222222;
}
.simulation .simulation-choices {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}
.simulation .simulation-btn {
  background-color: #fff;
  display: inline-block;
  width: 32.4%;
  padding: 28px 17px 28px 12px;
  position: relative;
}
.simulation .simulation-btn label {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  left: 0;
  padding-left: 2em;
  padding-right: 17px;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #222222;
  font-weight: 700;
}
.simulation .simulation-note {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.simulation .simulation-btn-wrapper {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 38px;
}
.simulation .simulation-btn-prev,
.simulation .simulation-btn-next,
.simulation .simulation-btn-link {
  padding: 18px 32px;
  border-radius: 9999px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 18px;
  color: #000;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.simulation .simulation-btn-prev,
.simulation .simulation-btn-next {
  width: 247px;
}
.simulation .simulation-btn-next {
  justify-content: flex-end;
}
.simulation .simulation-btn-prev span,
.simulation .simulation-btn-next span {
  display: inline-block;
}
.simulation .simulation-btn-prev span {
  margin-left: 10px;
}
.simulation .simulation-btn-next span {
  margin-right: 10px;
}
.simulation .sumilation-btn-result {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.simulation .simulation-btn-link {
  width: 32.48%;
}
.simulation .simulation-btn-restart {
  align-items: center;
  font-size: 18px;
  color: #000;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.simulation .simulation-btn-restart span {
  margin-left: 10px;
}
.simulation .result-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 28px 40px 22px;
  background-color: #fff;
}
.simulation .result-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 40%;
}
.simulation .result-title {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: #222222;
}
.simulation .result-plan {
  width: 100%;
  font-size: 32px;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: #d14138;
}
.simulation .result-tag {
  background-color: #222222;
  margin-top: 6px;
  padding: 0 6px;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
}
.simulation .result-example {
  margin-top: 6px;
  margin-left: 6px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 900;
  line-height: 1;
  color: #222222;
}
.simulation .result-detail {
  width: 57.93%;
}
.simulation .result-text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #222222;
}
.simulation .simulation-detail {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.simulation .simulation-detail a {
  color: #d04138;
}
.simulation .pr2023-recommend__btn {
  margin-top: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .simulation {
    margin-top: calc(80 / 1200 * 100vw);
    padding-top: calc(40 / 1200 * 100vw);
  }
  .simulation-l-txt {
    font-size: calc(32 / 1200 * 100vw);
  }
  .simulation .simulation-inner {
    width: calc(1100 / 1200 * 100vw);
    height: calc(612 / 1200 * 100vw);
    padding: calc(94 / 1200 * 100vw) calc(119 / 1200 * 100vw) calc(70 / 1200 * 100vw);
    margin: calc(96 / 1200 * 100vw) auto 0;
  }
  .simulation .simulation-people {
    position: absolute;
    width: calc(192 / 1200 * 100vw);
    right: calc(80 / 1200 * 100vw);
  }
  .simulation .simulation-ttl {
    font-size: calc(40 / 1200 * 100vw);
  }
  .simulation .simulation-subttl {
    font-size: calc(27 / 1200 * 100vw);
    margin-top: calc(20 / 1200 * 100vw);
  }
  .simulation .simulation-btn {
    width: 32%;
  }
  .simulation .simulation-progress {
    width: calc(298 / 1200 * 100vw);
    margin: calc(22 / 1200 * 100vw) auto 0;
  }
  .simulation .simulation-progress li {
    width: calc(46 / 1200 * 100vw);
    height: calc(46 / 1200 * 100vw);
    font-size: calc(22 / 1200 * 100vw);
  }
  .simulation .simulation-progress li:not(:last-child) {
    margin-right: calc(80 / 1200 * 100vw);
  }
  .simulation .simulation-btn input[type='radio'] {
    -webkit-appearance: none;
    width: calc(16 / 1200 * 100vw);
    border: calc(2 / 1200 * 100vw) solid #bfac88;
    transform: translateY(calc(2 / 1200 * 100vw));
    height: calc(16 / 1200 * 100vw);
    border-radius: 50%;
  }
  .simulation .simulation-btn input[type='radio']:checked {
    border: calc(2 / 1200 * 100vw) solid #121211;
    background-color: #bfac88;
  }
  .simulation .simulation-questionText {
    margin-top: calc(32 / 1200 * 100vw);
    font-size: calc(16 / 1200 * 100vw);
  }
  .simulation .simulation-choices {
    margin-top: calc(20 / 1200 * 100vw);
  }
  .simulation .simulation-btn {
    padding: calc(28 / 1200 * 100vw) calc(17 / 1200 * 100vw) calc(28 / 1200 * 100vw)
      calc(12 / 1200 * 100vw);
  }
  .simulation .simulation-btn label {
    padding-left: calc(38 / 1200 * 100vw);
    padding-right: calc(17 / 1200 * 100vw);
    font-size: calc(16 / 1200 * 100vw);
  }
  .simulation .simulation-note {
    margin-top: calc(10 / 1200 * 100vw);
    font-size: calc(12 / 1200 * 100vw);
  }
  .simulation .simulation-btn-wrapper {
    column-gap: calc(38 / 1200 * 100vw);
  }
  .simulation .simulation-btn-prev,
  .simulation .simulation-btn-next,
  .simulation .simulation-btn-link {
    padding: calc(18 / 1200 * 100vw) calc(32 / 1200 * 100vw);
    border-radius: 9999px;
    font-size: calc(18 / 1200 * 100vw);
  }
  .simulation .simulation-btn-prev,
  .simulation .simulation-btn-next {
    width: calc(247 / 1200 * 100vw);
  }
  .simulation .simulation-btn-prev img,
  .simulation .simulation-btn-next img,
  .simulation .simulation-btn-restart img {
    width: calc(34 / 1200 * 100vw);
  }
  .simulation .simulation-btn-prev span {
    margin-left: calc(10 / 1200 * 100vw);
  }
  .simulation .simulation-btn-next span {
    margin-right: calc(10 / 1200 * 100vw);
  }
  .simulation .sumilation-btn-result {
    gap: calc(24 / 1200 * 100vw);
    margin-top: calc(24 / 1200 * 100vw);
  }
  .simulation .simulation-btn-link {
    font-size: calc(18 / 1200 * 100vw);
  }
  .simulation .simulation-btn-restart {
    font-size: calc(18 / 1200 * 100vw);
  }
  .simulation .simulation-btn-restart span {
    margin-left: calc(10 / 1200 * 100vw);
  }
  .simulation .result-l-txt {
    font-size: calc(23 / 1200 * 100vw);
    margin-top: calc(20 / 1200 * 100vw);
  }
  .simulation .result-inner {
    margin-top: calc(16 / 1200 * 100vw);
    padding: calc(28 / 1200 * 100vw) calc(40 / 1200 * 100vw) calc(22 / 1200 * 100vw);
  }
  .simulation .result-title {
    font-size: calc(20 / 1200 * 100vw);
  }
  .simulation .result-plan {
    font-size: calc(32 / 1200 * 100vw);
  }
  .simulation .result-tag {
    padding: 0 calc(6 / 1200 * 100vw);
    font-size: calc(13 / 1200 * 100vw);
  }
  .simulation .result-example {
    font-size: calc(14 / 1200 * 100vw);
  }
  .simulation .result-text {
    font-size: calc(16 / 1200 * 100vw);
  }
  .simulation .simulation-detail {
    margin-top: calc(24 / 1200 * 100vw);
    font-size: calc(12 / 1200 * 100vw);
    letter-spacing: 0.1em;
  }
  .simulation .pr2023-recommend__btn {
    margin-top: calc(80 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .simulation {
    margin-top: 0;
    padding-top: calc(80 / 375 * 100vw);
  }
  .simulation-l-txt {
    color: #222222;
    font-size: calc(28 / 375 * 100vw);
    text-align: center;
  }
  .simulation .simulation-inner {
    background: none;
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom left;
    background-color: #ede8de;
    position: relative;
    background-size: contain;
    position: relative;
    width: 100%;
    height: auto;
    padding: calc(68 / 375 * 100vw) calc(42 / 375 * 100vw) calc(40 / 375 * 100vw);
    margin: calc(84 / 375 * 100vw) auto 0;
  }
  .simulation .simulation-inner::before {
    content: '';
    position: absolute;
    top: calc(-44 / 375 * 100vw);
    left: 0;
    background-image: url(../../cmn/images/simulation-bg-top_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: calc(63 / 375 * 100vw);
  }
  .simulation .simulation-inner::after {
    content: '';
    position: absolute;
    bottom: calc(-44 / 375 * 100vw);
    left: 0;
    background-image: url(../../cmn/images/simulation-bg-bottom_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: calc(45 / 375 * 100vw);
  }
  .simulation .simulation-people {
    display: none;
  }
  .simulation .simulation-ttl {
    font-size: calc(28 / 375 * 100vw);
    text-align: center;
  }
  .simulation .simulation-subttl {
    font-size: calc(20 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
    text-align: center;
  }
  .simulation .simulation-progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: calc(24 / 375 * 100vw) auto 0;
    z-index: 2;
  }
  .simulation .simulation-progress::before {
    height: calc(3 / 375 * 100vw);
  }
  .simulation .simulation-progress li {
    width: calc(46 / 375 * 100vw);
    height: calc(46 / 375 * 100vw);
    font-size: calc(22 / 375 * 100vw);
  }
  .simulation .simulation-progress li:not(:last-child) {
    margin-right: 0;
  }
  .simulation .simulation-btn input[type='radio'] {
    -webkit-appearance: none;
    border: calc(2 / 375 * 100vw) solid #bfac88;
    width: calc(16 / 375 * 100vw);
    transform: translateY(calc(2 / 375 * 100vw));
    height: calc(16 / 375 * 100vw);
  }
  .simulation .simulation-btn input[type='radio']:checked {
    border: calc(2 / 375 * 100vw) solid #121211;
  }

  .simulation .simulation-questionText {
    margin-top: calc(24 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
  .simulation .simulation-choices {
    margin-top: calc(32 / 375 * 100vw);
    flex-direction: column;
    row-gap: calc(32 / 375 * 100vw);
  }
  .simulation .simulation-btn {
    width: 100%;
    padding: calc(24 / 375 * 100vw) calc(12 / 375 * 100vw);
  }
  .simulation .simulation-btn label {
    padding-left: calc(42 / 375 * 100vw);
    padding-right: calc(12 / 375 * 100vw);
    align-items: center;
    font-size: calc(16 / 375 * 100vw);
  }
  .simulation .simulation-note {
    margin-top: calc(8 / 375 * 100vw);
    font-size: calc(11 / 375 * 100vw);
  }
  .simulation .simulation-btn-wrapper {
    margin-top: calc(32 / 375 * 100vw);
    column-gap: calc(26 / 375 * 100vw);
  }
  .simulation .simulation-btn-prev,
  .simulation .simulation-btn-next,
  .simulation .simulation-btn-link {
    padding: calc(13 / 375 * 100vw) calc(14 / 375 * 100vw);
    line-height: 1.35;
    text-align: left;
    font-size: calc(16 / 375 * 100vw);
  }
  .simulation .simulation-btn-prev img,
  .simulation .simulation-btn-next img,
  .simulation .simulation-btn-restart img {
    width: calc(23 / 375 * 100vw);
  }
  .simulation .simulation-btn-prev span {
    margin-left: calc(6 / 375 * 100vw);
  }
  .simulation .simulation-btn-next span {
    margin-right: calc(6 / 375 * 100vw);
  }
  .simulation .simulation-inner.q1 .simulation-btn-next {
    padding: calc(23 / 375 * 100vw) calc(32 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
  }
  .simulation .simulation-inner.q1 .simulation-btn-next span {
    margin-right: calc(10 / 375 * 100vw);
  }
  .simulation .simulation-inner.q1 .simulation-btn-next img {
    width: calc(34 / 375 * 100vw);
  }
  .simulation .sumilation-btn-result {
    gap: 0 calc(24 / 375 * 100vw);
  }
  .simulation .simulation-btn-link {
    width: 45%;
    font-size: calc(15 / 375 * 100vw);
  }
  .simulation .simulation-btn-restart {
    margin: calc(40 / 375 * 100vw) auto 0;
    font-size: calc(15 / 375 * 100vw);
    text-align: left;
  }
  .simulation .simulation-btn-restart span {
    margin-left: calc(9 / 375 * 100vw);
  }
  .simulation .simulation-btn-restart img {
    width: calc(34 / 375 * 100vw);
  }
  .simulation .result-l-txt {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
  }
  .simulation .result-inner {
    flex-direction: column;
    margin-top: calc(28 / 375 * 100vw);
    padding: calc(34 / 375 * 100vw) calc(25 / 375 * 100vw);
  }
  .simulation .result-main {
    width: 100%;
  }
  .simulation .result-title {
    font-size: calc(20 / 375 * 100vw);
  }
  .simulation .result-plan {
    font-size: calc(30 / 375 * 100vw);
  }
  .simulation .result-tag {
    padding: calc(2 / 375 * 100vw) calc(6 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
  }
  .simulation .result-example {
    font-size: calc(14 / 375 * 100vw);
  }
  .simulation .result-detail {
    width: 100%;
  }
  .simulation .result-text {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
  }
  .simulation .simulation-detail {
    margin-top: calc(70 / 375 * 100vw);
    padding: 0 calc(24 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.67;
  }
  .simulation .pr2023-recommend__btn {
    margin-top: calc(40 / 375 * 100vw);
    padding: 0 calc(24 / 375 * 100vw);
  }
}
/*=============================================
  新NISAスタート
=============================================*/
.pr2023 .newNISA {
  margin-top: 136px;
}
.pr2023 .newNISA .newNISA-ttl {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}
.pr2023 .newNISA .newNISA-txt {
  margin-top: 48px;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.pr2023 .newNISA .newNISA-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  column-gap: 6.72%;
  row-gap: 48px;
}
.pr2023 .newNISA .newNISA-list__item {
  width: 46.36%;
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: relative;
  padding: 30px;
}
.pr2023 .newNISA .newNISA-list__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../images/newNISA-frame.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.pr2023 .newNISA .newNISA-list__item .newNISA-list__item-img {
  width: 124px;
}
.pr2023 .newNISA .newNISA-list__item .newNISA-list__item-txtArea {
  flex: 1;
}
.pr2023 .newNISA .newNISA-list__item .newNISA-list__item-ttl {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.pr2023 .newNISA .newNISA-list__item .newNISA-list__item-txt {
  font-size: 16px;
  letter-spacing: 0.1em;
}
.pr2023 .newNISA .c-btn {
  margin-top: 112px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .newNISA {
    margin-top: calc(136 / 1200 * 100vw);
    margin-bottom: calc(120 / 1200 * 100vw);
  }
  .pr2023 .newNISA .newNISA-ttl {
    font-size: calc(40 / 1200 * 100vw);
  }
  .pr2023 .newNISA .newNISA-txt {
    margin-top: calc(48 / 1200 * 100vw);
    font-size: calc(20 / 1200 * 100vw);
  }
  .pr2023 .newNISA .newNISA-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(80 / 1200 * 100vw);
    column-gap: calc(74 / 1200 * 100vw);
    row-gap: calc(48 / 1200 * 100vw);
  }
  .pr2023 .newNISA .newNISA-list__item {
    width: calc(510 / 1200 * 100vw);
    column-gap: calc(10 / 1200 * 100vw);
    padding: calc(30 / 1200 * 100vw);
  }
  .pr2023 .newNISA .newNISA-list__item .newNISA-list__item-img {
    width: calc(124 / 1200 * 100vw);
  }
  .pr2023 .newNISA .newNISA-list__item .newNISA-list__item-ttl {
    font-size: calc(24 / 1200 * 100vw);
  }
  .pr2023 .newNISA .newNISA-list__item .newNISA-list__item-txt {
    font-size: calc(16 / 1200 * 100vw);
  }
  .pr2023 .newNISA .c-btn {
    margin-top: calc(112 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .newNISA {
    padding-top: calc(40 / 375 * 100vw);
    margin-top: calc(62 / 375 * 100vw);
    margin-bottom: 0;
    background-color: #f8f7f4;
  }
  .pr2023 .newNISA .newNISA-ttl {
    font-size: calc(28 / 375 * 100vw);
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .pr2023 .newNISA .newNISA-txt {
    margin-top: calc(40 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    font-weight: 700;
  }
  .pr2023 .newNISA .newNISA-list {
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: calc(40 / 375 * 100vw);
    column-gap: 0;
    row-gap: calc(33 / 375 * 100vw);
  }
  .pr2023 .newNISA .newNISA-list__item {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: relative;
    padding: 0 calc(18 / 375 * 100vw);
    height: calc(136 / 375 * 100vw);
  }
  .pr2023 .newNISA .newNISA-list__item-lg {
    height: calc(161 / 375 * 100vw);
  }
  .pr2023 .newNISA .newNISA-list__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: url(../images/newNISA-frame_sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .pr2023 .newNISA .newNISA-list__item-lg::before {
    background-image: url(../images/newNISA-frame_sp_lg.svg);
  }
  .pr2023 .newNISA .newNISA-list__item .newNISA-list__item-img {
    width: calc(73 / 375 * 100vw);
    margin-right: calc(8 / 375 * 100vw);
    position: relative;
    z-index: 2;
  }
  .pr2023 .newNISA .newNISA-list__item .newNISA-list__item-txtArea {
    flex: 1;
    position: relative;
    z-index: 2;
  }
  .pr2023 .newNISA .newNISA-list__item .newNISA-list__item-ttl {
    font-size: calc(18 / 375 * 100vw);
    line-height: 1.2em;
  }
  .pr2023 .newNISA .newNISA-list__item .newNISA-list__item-txt {
    margin-top: calc(6 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.2em;
  }
  .pr2023 .newNISA .c-btn {
    margin-top: calc(52 / 375 * 100vw);
  }
}
/*=============================================
  新NISAと旧NISAの制度比較
=============================================*/
.pr2023 .comparison {
  margin-top: 120px;
}
.pr2023 .comparison .comparison-ttl {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.pr2023 .comparison .comparison-ttl span {
  position: relative;
}
.pr2023 .comparison .comparison-ttl span::after {
  content: '2024年1月から\Aグレードアップ！';
  letter-spacing: 0.052em;
  white-space: pre;
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9551a;
  top: 50%;
  left: 100%;
  margin-left: 26px;
  transform: translateY(-50%);
}
.pr2023 .comparison .comparison-img {
  margin-top: 70px;
}
.pr2023 .comparison .comparison-detail {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .comparison {
    margin-top: calc(120 / 1200 * 100vw);
  }
  .pr2023 .comparison .comparison-ttl {
    font-size: calc(32 / 1200 * 100vw);
  }
  .pr2023 .comparison .comparison-ttl span::after {
    width: calc(140 / 1200 * 100vw);
    height: calc(140 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
    margin-left: calc(26 / 1200 * 100vw);
  }
  .pr2023 .comparison .comparison-img {
    margin-top: calc(70 / 1200 * 100vw);
  }
  .pr2023 .comparison .comparison-detail {
    margin-top: calc(12 / 1200 * 100vw);
    font-size: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .comparison {
    margin-top: calc(80 / 375 * 100vw);
  }
  .pr2023 .comparison .comparison-ttl {
    font-size: calc(28 / 375 * 100vw);
    text-align: center;
  }
  .pr2023 .comparison .comparison-ttl span {
    position: relative;
  }
  .pr2023 .comparison .comparison-ttl span::after {
    content: '2024年1月からグレードアップ！';
    letter-spacing: 0.052em;
    display: block;
    white-space: pre;
    position: static;
    width: 100%;
    height: auto;
    padding: calc(8 / 375 * 100vw) 0;
    margin-left: 0;
    margin-top: calc(16 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    transform: translateY(0);
  }
  .pr2023 .comparison .comparison-img {
    margin-top: calc(40 / 375 * 100vw);
  }
  .pr2023 .comparison .comparison-detail {
    margin-top: calc(12 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
}
/*=============================================
しずぎんでNISAを始めるメリット
=============================================*/
.pr2023 .startmerit {
  padding-top: 100px;
  padding-bottom: 104px;
}
.pr2023 .startmerit-ttl {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
}
.pr2023 .startmerit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  width: 78.91%;
  margin: 48px auto 0;
}
.pr2023 .startmerit-list__item {
  display: flex;
  flex-direction: column;
  width: 29.6%;
  padding-bottom: 46px;
  background-color: var(--beige-color);
}
.pr2023 .startmerit-list__item2,
.pr2023 .startmerit-list__item3 {
  padding-bottom: 38px;
}
.pr2023 .startmerit-list__num {
  width: 56px;
  height: 56px;
  padding: 10px 0px 14px;
  background-color: var(--red-color);
  font-size: 25px;
  color: #fff;
  text-align: center;
}
.pr2023 .startmerit-list__img {
  width: 102px;
  margin: 0 auto;
}
.pr2023 .startmerit-list__txt {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.pr2023 .startmerit-list__item2 .startmerit-list__txt,
.pr2023 .startmerit-list__item3 .startmerit-list__txt {
  margin-top: 24px;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .startmerit {
    padding-top: calc(100 / 1200 * 100vw);
    padding-bottom: calc(104 / 1200 * 100vw);
  }
  .pr2023 .startmerit-ttl {
    font-size: calc(40 / 1200 * 100vw);
  }
  .pr2023 .startmerit-list {
    gap: calc(48 / 1200 * 100vw);
    margin-top: calc(48 / 1200 * 100vw);
  }
  .pr2023 .startmerit-list__item {
    padding-bottom: calc(46 / 1200 * 100vw);
  }
  .pr2023 .startmerit-list__item2,
  .pr2023 .startmerit-list__item3 {
    padding-bottom: calc(38 / 1200 * 100vw);
  }
  .pr2023 .startmerit-list__num {
    width: calc(56 / 1200 * 100vw);
    height: calc(56 / 1200 * 100vw);
    padding: calc(10 / 1200 * 100vw) calc(12 / 1200 * 100vw) calc(14 / 1200 * 100vw);
    font-size: calc(25 / 1200 * 100vw);
  }
  .pr2023 .startmerit-list__img {
    width: calc(102 / 1200 * 100vw);
  }
  .pr2023 .startmerit-list__txt {
    margin-top: calc(40 / 1200 * 100vw);
    font-size: calc(18 / 1200 * 100vw);
  }
  .pr2023 .startmerit-list__item2 .startmerit-list__txt,
  .pr2023 .startmerit-list__item3 .startmerit-list__txt {
    margin-top: calc(24 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .startmerit {
    padding-top: calc(93 / 375 * 100vw);
    padding-bottom: 0;
    background-color: #f8f7f6;
  }
  .pr2023 .startmerit-ttl {
    font-size: calc(28 / 375 * 100vw);
    font-weight: 700;
  }
  .pr2023 .startmerit-list {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: calc(32 / 375 * 100vw);
    width: 87.2%;
    margin-top: calc(40 / 375 * 100vw);
  }
  .pr2023 .startmerit-list__item {
    width: 100%;
    padding-bottom: calc(38 / 375 * 100vw);
  }
  .pr2023 .startmerit-list__num {
    width: calc(56 / 375 * 100vw);
    height: calc(56 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(12 / 375 * 100vw) calc(14 / 375 * 100vw);
    font-size: calc(25 / 375 * 100vw);
  }
  .pr2023 .startmerit-list__img {
    width: calc(102 / 375 * 100vw);
  }
  .pr2023 .startmerit-list__txt {
    margin-top: calc(28 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
  }
}
/*=============================================
NISA口座WEB開設
=============================================*/
.pr2023 .opening {
  padding-top: 104px;
  padding-bottom: 116px;
  background-color: #f8f7f6;
}
.pr2023-web {
  background: linear-gradient(
    270deg,
    var(--beige-color) 0%,
    var(--beige-color) 82%,
    var(--gray-color) 82%,
    var(--gray-color) 100%
  );
  margin: 144px 0 188px;
  padding: 10px;
}
.pr2023-web .pr2023-wrapper {
  position: relative;
  /* padding-top: 110px; */
  padding-bottom: 118px;
}
.pr2023-web__ttl {
  display: block;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1.4;
  padding-bottom: 29px;
}
.pr2023-web__lead {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.pr2023-web__txt {
  font-size: 16px;
  /* font-weight: bold; */
  letter-spacing: 0.08em;
  line-height: 2;
}
.pr2023-web__list {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding-top: 12px;
  /* position: absolute;
  bottom: -28%;
  left: 0; */
}
.pr2023-web__list li a {
  color: #d04138;
}
/*========= フロー =========*/
.pr2023-web__flow {
  display: flex;
  margin-top: 80px;
}
.pr2023-web__box {
  background-color: var(--white-color);
  position: relative;
  width: 245px;
}
.pr2023-web__box:not(:last-child) {
  margin-right: 40px;
}
.pr2023-web__box::after {
  content: '';
  display: block;
  background-image: url(../../cmn/images/icon/arrow_right__flow.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15%;
  width: 22px;
  height: 29px;
}
.pr2023-web__box:last-child::after {
  background: none;
}

.pr2023-web__box--num {
  background-color: var(--beige-color);
  display: block;
  font-size: 23px;
  font-weight: bold;
  line-height: 1;
  padding: 13px;
  text-align: center;
  width: 64px;
  height: 64px;
}
.pr2023-web__box--small {
  display: block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
}
.pr2023-web__box__img {
  margin: auto;
}
.pr2023-web__box__ttl {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  /* padding-bottom: 16px; */
  text-align: center;
}
.pr2023-web__box1 .pr2023-web__box__img {
  margin: 7px auto 16px;
  width: 130px;
}
.pr2023-web__box2 .pr2023-web__box__img {
  margin: 7px auto 16px;
  width: 80px;
}
.pr2023-web__box3 .pr2023-web__box__img {
  margin: -16% auto 16px;
  width: 108px;
}
.pr2023-web__box4 .pr2023-web__box__img {
  margin: -16% auto 16px;
  width: 110px;
}
.pr2023-web__box1 {
  position: relative;
  /* margin-bottom: 20px; */
}
.pr2023-web__box1 .pr2023-web__box__ttl {
  padding-bottom: 16px;
}
.pr2023-web__box4 .pr2023-web__box__ttl {
  padding-bottom: 0;
}

/*========= コンテンツ =========*/
.pr2023-web__contents {
  margin-top: 110px;
}
.pr2023-web__contents__ttl {
  background-color: var(--brown-color);
  color: var(--white-color) !important;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 16px 0;
  text-align: center;
}
.pr2023-web__inner {
  background-color: var(--white-color);
  padding: 40px 48px 58px;
  position: relative;
}
/*========= スライド：中身 =========*/
.pr2023-web__swiper {
  overflow: hidden;
}
.pr2023-web__swiper__ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 48px;
}
.pr2023-web__swiper__ttl .notice {
  font-size: 12px;
  text-align: center;
  font-weight: normal;
}
.pr2023-web__swiper__lead {
  color: var(--blue-color);
  display: block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}
.swiper-horizontal {
  margin: auto;
  width: 820px;
}
.swiper-wrapper {
  display: flex;
  margin: auto;
  width: 820px;
}
.pr2023-web__swiper__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pr2023-web__swiper__lastStep {
  text-align: center;
}
.pr2023-web__swiper__lastStep img {
  margin: 32px auto 0;
  padding-left: 60px;
  width: 223px;
}
.pr2023-web__swiper__box__img {
  width: 340px;
}
.swiper__controller {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 48px auto 0;
  position: relative;
  width: 122px;
}
.pr2023-web__swiper__txtArea {
  width: 456px;
}
.pr2023-web__swiper__txtArea .u-list {
  font-size: 16px;
}
.pr2023-web__swiper__list {
  margin-bottom: 8px;
}
.pr2023-web__swiper__item {
  display: flex;
}
.pr2023-web__swiper__txt {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 10px;
  width: 456px;
}
.pr2023-web__swiper__txt em {
  color: #e70b11;
  font-style: normal;
}
.pr2023-web__swiper__txt .pr2023-web__swiper__item {
  margin-top: 12px;
}
.pr2023-web__swiper__subTxt {
  padding-left: 10px;
  font-size: 14px;
}
.pr2023-web__swiper__subTxt dt {
  font-weight: bold;
}
.pr2023-web__swiper__notice {
  padding-left: 10px;
  font-size: 12px;
  text-indent: -1em;
}
.pr2023-web__swiper__noteBox {
  border: 1px solid #9a9a9a;
  padding: 16px;
}
.pr2023-web__swiper__noteBox--blue {
  border: 1px solid var(--blue-color);
}
.pr2023-web__swiper__note__ttl {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.pr2023-web__swiper__note__ttl.-flex {
  display: flex;
  align-items: center;
}
.pr2023-web__swiper__note__ttl .u-num--round {
  margin-right: 8px;
}
.pr2023-web__swiper__note__ttl.list-square::before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  width: 12px;
  height: 12px;
  background-color: #222222;
  content: '';
}
.pr2023-web__swiper__note__txt {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.pr2023-web__swiper__note__box {
  margin-top: 12px;
  padding: 12px;
  background-color: #f8f7f6;
}
.pr2023-web__swiper__note__boxTitle {
  margin: 0 auto 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  position: relative;
  width: fit-content;
}

.pr2023-web__swiper__note__boxTitle::before,
.pr2023-web__swiper__note__boxTitle::after {
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background-color: #000;
  transform: rotate(-27deg);
  position: absolute;
  bottom: 2px;
}
.pr2023-web__swiper__note__boxTitle::before {
  left: -6px;
}
.pr2023-web__swiper__note__boxTitle::after {
  transform: rotate(25deg);
  right: -4px;
}
.pr2023-web__swiper__note__boxList {
  grid-template-columns: 1fr 1fr;
  display: grid;
  column-gap: 8px;
}
.pr2023-web__swiper__note__boxList li {
  padding: 4px;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
}

.pr2023-web__swiper__noteBox li {
  color: var(--black-color);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/*========= スライド：ページネーション =========*/
.pr2023-web__swiper__prev,
.pr2023-web__swiper__next {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: none !important;
}
.swiper-button-prev,
.swiper-button-next {
  width: 56px !important;
  height: 56px !important;
}
.swiper-button-prev {
  left: 48px !important;
}
.swiper-button-next {
  right: 48px !important;
}
/* 矢印反転 */
.swiper-button-next img {
  transform: scale(-1, 1);
}
/* プログレスバー */
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50% !important;
}
.swiper-pagination-progressbar {
  background: var(--gray-color) !important;
}
.swiper-pagination-progressbar-fill {
  background: var(--blue-color) !important;
  transition: width 400ms ease;
}
.pr2023 .opening .banner {
  margin: 104px auto;
  max-width: 892px;
}
.pr2023 .opening .c-btn {
  margin-top: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .opening {
    padding-top: calc(104 / 1200 * 100vw);
    padding-bottom: calc(116 / 1200 * 100vw);
    background-color: #f8f7f6;
  }
  .pr2023-web {
    background: linear-gradient(
      270deg,
      var(--beige-color) 0%,
      var(--beige-color) 80%,
      var(--gray-color) 80%,
      var(--gray-color) 100%
    );
    margin: calc(120 / 1200 * 100vw) 0 calc(188 / 1200 * 100vw);
  }
  .pr2023-web .pr2023-wrapper {
    /* padding-top: calc(110 / 1200 *100vw); */
    padding-bottom: calc(148 / 1200 * 100vw);
  }
  .pr2023-web__ttl {
    font-size: calc(40 / 1200 * 100vw);
    padding-bottom: calc(18 / 1200 * 100vw);
  }
  .pr2023-web__lead {
    font-size: calc(24 / 1200 * 100vw);
    padding-bottom: calc(40 / 1200 * 100vw);
  }
  .pr2023-web__txt {
    font-size: calc(16 / 1200 * 100vw);
  }
  .pr2023-web__list {
    font-size: calc(12 / 1200 * 100vw);
    padding-top: calc(12 / 1200 * 100vw);
  }
  .pr2023-service__btn a {
    border: calc(6 / 1200 * 100vw) solid var(--blue-color);
  }
  /*========= フロー =========*/
  .pr2023-web__flow {
    margin-top: calc(80 / 1200 * 100vw);
  }
  .pr2023-web__box {
    width: calc(245 / 1200 * 100vw);
  }
  .pr2023-web__box:not(:last-child) {
    margin-right: calc(40 / 1200 * 100vw);
  }
  .pr2023-web__box::after {
    width: calc(22 / 1200 * 100vw);
    height: calc(29 / 1200 * 100vw);
  }
  .pr2023-web__box--num {
    font-size: calc(23 / 1200 * 100vw);
    padding: calc(13 / 1200 * 100vw);
    width: calc(64 / 1200 * 100vw);
    height: calc(64 / 1200 * 100vw);
  }
  .pr2023-web__box--small {
    font-size: calc(12 / 1200 * 100vw);
  }
  .pr2023-web__box__ttl {
    font-size: calc(18 / 1200 * 100vw);
    padding-bottom: calc(16 / 1200 * 100vw);
  }
  .pr2023-web__box1 .pr2023-web__box__img {
    margin: calc(7 / 1200 * 100vw) auto calc(16 / 1200 * 100vw);
    width: calc(130 / 1200 * 100vw);
  }
  .pr2023-web__box2 .pr2023-web__box__img {
    margin: calc(7 / 1200 * 100vw) auto calc(16 / 1200 * 100vw);
    width: calc(80 / 1200 * 100vw);
  }
  .pr2023-web__box3 .pr2023-web__box__img {
    margin: -16% auto calc(16 / 1200 * 100vw);
    width: calc(108 / 1200 * 100vw);
  }
  .pr2023-web__box4 .pr2023-web__box__img {
    margin: -16% auto calc(16 / 1200 * 100vw);
    width: calc(110 / 1200 * 100vw);
  }

  /*========= コンテンツ =========*/
  .pr2023-web__contents {
    margin-top: calc(80 / 1200 * 100vw);
  }
  .pr2023-web__contents__ttl {
    font-size: calc(28 / 1200 * 100vw);
    padding: calc(16 / 1200 * 100vw) 0;
  }
  .pr2023-web__inner {
    background-color: var(--white-color);
    padding: calc(40 / 1200 * 100vw) calc(48 / 1200 * 100vw);
  }
  /*========= スライド：中身 =========*/
  .pr2023-web__swiper__ttl {
    font-size: calc(22 / 1200 * 100vw);
    padding-bottom: calc(48 / 1200 * 100vw);
  }
  .pr2023-web__swiper__ttl .notice {
    font-size: calc(12 / 1200 * 100vw);
  }
  .pr2023-web__swiper__lead {
    font-size: calc(24 / 1200 * 100vw);
  }
  .swiper-horizontal {
    width: calc(820 / 1200 * 100vw);
  }
  .swiper-wrapper {
    width: calc(820 / 1200 * 100vw);
  }
  .pr2023-web__swiper__lastStep p {
    font-size: calc(16 / 1200 * 100vw);
  }
  .pr2023-web__swiper__lastStep img {
    margin-top: calc(32 / 1200 * 100vw);
    padding-left: calc(60 / 1200 * 100vw);
    width: calc(223 / 1200 * 100vw);
  }
  .pr2023-web__swiper__box__img {
    width: calc(340 / 1200 * 100vw);
  }
  .swiper__controller {
    margin: calc(48 / 1200 * 100vw) auto 0;
    width: calc(122 / 1200 * 100vw);
  }
  .pr2023-web__swiper__txtArea {
    width: calc(456 / 1200 * 100vw);
  }
  .pr2023-web__swiper__txtArea .u-list {
    font-size: calc(16 / 1200 * 100vw);
  }
  .pr2023-web__swiper__list {
    margin-bottom: calc(10 / 1200 * 100vw);
  }
  .pr2023-web__swiper__txt {
    font-size: calc(16 / 1200 * 100vw);
    margin-bottom: calc(10 / 1200 * 100vw);
    padding-left: calc(10 / 1200 * 100vw);
    width: calc(424 / 1200 * 100vw);
  }
  .pr2023-web__swiper__txt .pr2023-web__swiper__item {
    margin-top: calc(12 / 1200 * 100vw);
  }
  .pr2023-web__swiper__subTxt {
    padding-left: calc(10 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
  }
  .pr2023-web__swiper__notice {
    padding-left: calc(10 / 1200 * 100vw);
    font-size: calc(12 / 1200 * 100vw);
  }
  .pr2023-web__swiper__noteBox {
    padding: calc(16 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__ttl {
    margin-bottom: clac(8 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__ttl.list-square::before {
    margin-right: calc(4 / 1200 * 100vw);
    width: calc(12 / 1200 * 100vw);
    height: calc(12 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__txt {
    font-size: calc(14 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__box {
    margin-top: calc(12 / 1200 * 100vw);
    padding: calc(12 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__boxTitle {
    margin-bottom: calc(8 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__boxTitle::before,
  .pr2023-web__swiper__note__boxTitle::after {
    height: calc(16 / 1200 * 100vw);
    bottom: calc(2 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__boxTitle::before {
    left: calc(-6 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__boxTitle::after {
    right: calc(-4 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__boxList {
    column-gap: calc(8 / 1200 * 100vw);
  }
  .pr2023-web__swiper__note__boxList li {
    padding: calc(4 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
  }
  .pr2023-web__swiper__noteBox li {
    font-size: calc(12 / 1200 * 100vw);
  }

  /*========= スライド：ページネーション =========*/
  .pr2023-web__swiper__prev,
  .pr2023-web__swiper__next {
    font-size: calc(18 / 1200 * 100vw);
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: calc(56 / 1200 * 100vw);
    height: calc(56 / 1200 * 100vw);
  }
  .pr2023 .opening .banner {
    margin: calc(104 / 1200 * 100vw) auto;
    max-width: calc(892 / 1200 * 100vw);
  }
  .pr2023 .opening .c-btn {
    margin-top: calc(80 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .opening {
    padding-top: calc(80 / 375 * 100vw);
    padding-bottom: calc(80 / 375 * 100vw);
  }
  .pr2023-web {
    margin: 0 0 calc(134 / 375 * 100vw);
    position: relative;
  }
  .pr2023-web .pr2023-wrapper {
    padding-top: calc(67 / 375 * 100vw);
    padding-bottom: calc(88 / 375 * 100vw);
  }
  .pr2023-web__ttl {
    font-size: calc(32 / 375 * 100vw);
    line-height: 1;
    padding-bottom: 0;
  }
  .pr2023-web__lead {
    font-size: calc(22 / 375 * 100vw);
    /* padding-bottom: calc(24 / 375 *100vw); */
  }
  .pr2023-web__txt {
    margin-top: calc(24 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    font-weight: normal;
  }
  .pr2023-web__list {
    font-size: calc(11 / 375 * 100vw);
    padding-top: calc(8 / 375 * 100vw);
    margin-bottom: calc(56 / 375 * 100vw);
    /* bottom: -16%; */
  }
  .pr2023-web__btn {
    bottom: -2%;
  }
  /*========= フロー =========*/
  .pr2023-web__flow {
    flex-flow: column;
    margin-top: calc(32 / 375 * 100vw);
  }
  .pr2023-web__box {
    background-color: var(--white-color);
    margin-right: 0;
    margin-bottom: calc(56 / 375 * 100vw);
    width: 100%;
  }
  .pr2023-web__box::after {
    top: auto;
    right: 0;
    bottom: -18%;
    left: 0;
    transform: rotate(90deg);
    width: calc(22 / 375 * 100vw);
    height: calc(29 / 375 * 100vw);
  }
  .pr2023-web__box--num {
    font-size: calc(21 / 375 * 100vw);
    padding: calc(14 / 375 * 100vw);
    width: calc(54 / 375 * 100vw);
    height: calc(54 / 375 * 100vw);
  }
  .pr2023-web__box--small {
    font-size: calc(10 / 375 * 100vw);
  }
  .pr2023-web__box__ttl {
    font-size: calc(16 / 375 * 100vw);
    padding-bottom: calc(22 / 375 * 100vw);
  }
  .pr2023-web__box1 .pr2023-web__box__img {
    margin: calc(7 / 375 * 100vw) auto calc(16 / 375 * 100vw);
    width: calc(145 / 375 * 100vw);
  }
  .pr2023-web__box2 .pr2023-web__box__img {
    margin: calc(7 / 375 * 100vw) auto calc(16 / 375 * 100vw);
    width: calc(89 / 375 * 100vw);
  }
  .pr2023-web__box3 .pr2023-web__box__img {
    margin: -5% auto 16px;
    width: calc(108 / 375 * 100vw);
  }
  .pr2023-web__box4 .pr2023-web__box__img {
    margin: -8% auto calc(5 / 375 * 100vw);
    width: calc(110 / 375 * 100vw);
  }
  .pr2023-web__box4 {
    margin-bottom: 0;
  }
  .pr2023-web__box4 .pr2023-web__box__ttl {
    padding-bottom: calc(22 / 375 * 100vw);
  }
  .pr2023-web__box4 {
    margin-bottom: calc(36 / 375 * 100vw);
  }
  .pr2023-web__box1 .pr2023-web__box__ttl {
    padding-bottom: calc(22 / 375 * 100vw);
  }

  /*========= コンテンツ =========*/
  .pr2023-web__contents {
    margin-top: 0;
  }
  .pr2023-web__contents__ttl {
    font-size: calc(22 / 375 * 100vw);
    padding: calc(16 / 375 * 100vw) 0;
  }
  .pr2023-web__inner {
    padding: calc(32 / 375 * 100vw) 0;
  }
  /*========= スライド：中身 =========*/
  .pr2023-web__swiper__ttl {
    font-size: calc(20 / 375 * 100vw);
    padding-bottom: calc(32 / 375 * 100vw);
  }

  .pr2023-web__swiper__ttl .notice {
    font-size: calc(11 / 375 * 100vw);
  }
  .pr2023-web__swiper__lead {
    font-size: calc(22 / 375 * 100vw);
  }
  .swiper-horizontal {
    width: calc(287 / 375 * 100vw);
  }
  .swiper-wrapper {
    width: calc(287 / 375 * 100vw);
  }
  .pr2023-web__swiper__box {
    flex-flow: column;
  }
  .pr2023-web__swiper__lastStep p {
    font-size: calc(14 / 375 * 100vw);
  }
  .pr2023-web__swiper__lastStep img {
    margin-top: calc(32 / 375 * 100vw);
    padding-left: calc(40 / 375 * 100vw);
    width: calc(154 / 375 * 100vw);
  }
  .pr2023-web__swiper__box__img {
    margin-bottom: calc(24 / 375 * 100vw);
    width: 100%;
  }
  .swiper__controller {
    margin: 48px auto 0;
    width: calc(160 / 375 * 100vw);
  }
  .pr2023-web__swiper__txtArea {
    width: calc(287 / 375 * 100vw);
  }
  .pr2023-web__swiper__txtArea {
    font-size: calc(14 / 375 * 100vw);
  }
  .pr2023-web__swiper__list {
    margin-bottom: calc(8 / 375 * 100vw);
  }
  .pr2023-web__swiper__txt {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
    padding-left: calc(4 / 375 * 100vw);
    width: 100%;
  }
  .pr2023-web__swiper__txt .pr2023-web__swiper__item {
    margin-top: calc(8 / 375 * 100vw);
  }
  .pr2023-web__swiper__subTxt {
    padding-left: calc(4 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
  .pr2023-web__swiper__notice {
    font-size: calc(11 / 375 * 100vw);
  }
  .pr2023-web__swiper__noteBox {
    padding: calc(16 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__ttl {
    font-size: calc(14 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__ttl.-flex {
    align-items: baseline;
  }
  .pr2023-web__swiper__note__ttl.list-square::before {
    margin-right: calc(4 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
    height: calc(12 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__txt {
    font-size: calc(14 / 375 * 100vw);
  }
  .pr2023-web__swiper__noteBox li {
    font-size: calc(12 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__box {
    margin-top: calc(8 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(12 / 375 * 100vw) calc(12 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__boxTitle {
    font-size: calc(14 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__boxTitle::before,
  .pr2023-web__swiper__note__boxTitle::after {
    height: calc(16 / 375 * 100vw);
    bottom: calc(2 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__boxTitle::before {
    left: calc(-6 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__boxTitle::after {
    right: calc(-4 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__boxList {
    grid-template-columns: 1fr;
    row-gap: calc(4 / 375 * 100vw);
  }
  .pr2023-web__swiper__note__boxList li {
    padding: calc(8 / 375 * 100vw) calc(13 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }

  /*========= スライド：ページネーション =========*/
  .pr2023-web__swiper__prev,
  .pr2023-web__swiper__next {
    font-size: calc(16 / 375 * 100vw);
  }
  .swiper-button-prev,
  .swiper-button-next {
    top: calc(280 / 375 * 100vw) !important;
    width: calc(40 / 375 * 100vw) !important;
    height: calc(40 / 375 * 100vw) !important;
  }
  .swiper-button-prev {
    left: -5% !important;
  }
  .swiper-button-next {
    right: -5% !important;
  }

  .pr2023 .opening .banner {
    margin: calc(40 / 375 * 100vw) auto 0;
  }
  .pr2023 .opening .pr2023-recommend__btn {
    margin: calc(40 / 375 * 100vw) auto 0;
  }
}
/*=============================================
窓口でのお手続き・ご相談
=============================================*/
.pr2023 .consultation {
  margin-top: 168px;
}
.pr2023-service__ttl {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-bottom: 45px;
}
.pr2023-service__txt {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.4;
  padding-bottom: 52px;
}
.pr2023-service__btn {
  margin-bottom: 70px;
}
.pr2023-service__btn a {
  background: var(--white-color);
  border: 6px solid var(--red-color);
  color: var(--red-color) !important;
  margin: 0;
}
.pr2023-service__btn .u-btn__arrow::after {
  content: '';
  background-image: url(../images/icon/arrow_right__red.png);
}
.pr2023-service__box {
  background-color: var(--white-color);
  padding: 40px;
  position: relative;
}
.pr2023-service__box::before {
  content: '';
  background-image: url(../images/img_service.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  top: -144%;
  right: -5%;
  width: 330px;
  height: 340px;
}
.pr2023-service__box__ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 24px;
}
.pr2023-service__box__ttl.u-txt--marker {
  width: auto;
  display: inline-block;
}
.pr2023-service__box__item {
  display: flex;
}
.pr2023-service__box__item .u-num--round {
  background: var(--blue-color);
}
.pr2023-service__box__txt {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 10px;
}
.pr2023-service__box__note {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .consultation {
    margin-top: calc(168 / 1200 * 100vw);
  }
  .pr2023-service__ttl {
    font-size: calc(40 / 1200 * 100vw);
    padding-bottom: calc(45 / 1200 * 100vw);
  }
  .pr2023-service__txt {
    font-size: calc(20 / 1200 * 100vw);
    padding-bottom: calc(52 / 1200 * 100vw);
  }
  .pr2023-service__btn {
    margin-bottom: calc(70 / 1200 * 100vw);
  }
  .pr2023-service__box {
    padding: calc(40 / 1200 * 100vw);
  }
  .pr2023-service__box__ttl {
    font-size: calc(22 / 1200 * 100vw);
    margin-bottom: calc(24 / 1200 * 100vw);
  }
  .pr2023-service__box::before {
    top: -144%;
    right: 0;
    width: calc(330 / 1200 * 100vw);
    height: calc(340 / 1200 * 100vw);
  }
  .pr2023-service__box__txt {
    font-size: calc(16 / 1200 * 100vw);
    margin-bottom: calc(10 / 1200 * 100vw);
    padding-left: calc(10 / 1200 * 100vw);
  }
  .pr2023-service__box__note {
    font-size: calc(12 / 1200 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .pr2023 .consultation {
    margin-top: calc(93 / 375 * 100vw);
  }
  .pr2023-service {
    margin: 0 auto calc(80 / 375 * 100vw);
  }
  .pr2023-service__ttl {
    font-size: calc(32 / 375 * 100vw);
    padding-bottom: calc(31 / 375 * 100vw);
  }
  .pr2023-service__txt {
    font-size: calc(16 / 375 * 100vw);
    padding-bottom: 0;
  }
  .pr2023-service__btn {
    margin-bottom: calc(32 / 375 * 100vw);
  }
  .pr2023-service__box {
    padding: calc(24 / 375 * 100vw);
  }
  .pr2023-service__box::before {
    bottom: calc(100% + calc(118 / 375 * 100vw));
    top: auto;
    right: -7%;
    width: calc(127 / 375 * 100vw);
    height: calc(136 / 375 * 100vw);
  }
  .pr2023-service__box__ttl {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }
  .pr2023-service__box__ttl.u-txt--marker {
    width: calc(176 / 375 * 100vw);
  }
  .pr2023-service__box__item {
    display: flex;
  }
  .pr2023-service__box__txt {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
    padding-left: calc(20 / 375 * 100vw);
    width: calc(259 / 375 * 100vw);
  }
  .pr2023-service__box__note {
    font-size: calc(11 / 375 * 100vw);
  }
  .pr2023-service__btn a {
    border: 4px solid var(--red-color);
    font-size: calc(16 / 375 * 100vw);
    padding: calc(24 / 375 * 100vw) 0 calc(40 / 375 * 100vw);
    width: 100%;
  }
  .pr2023-service__btn a::before {
    bottom: calc(-16 / 375 * 100vw);
    right: calc(-16 / 375 * 100vw);
    height: 6px;
  }
  .pr2023-service__btn a::after {
    top: calc(16 / 375 * 100vw);
    right: calc(-16 / 375 * 100vw);
    width: 6px;
  }
  .pr2023-web__box1 {
    margin-bottom: calc(86 / 375 * 100vw);
  }
  .pr2023-web__box1::after {
    bottom: -30%;
  }
  .pr2023 .consultation .pr2023-service__btn {
    margin-top: calc(20 / 375 * 100vw);
    margin-bottom: calc(32 / 375 * 100vw);
  }
}
/*=============================================
TV CM 
=============================================*/
.pr2023 .tvcm {
  padding-top: 68px;
  padding-bottom: 82px;
  position: relative;
}
.pr2023 .tvcm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/tvcm-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pr2023 .tvcm .tvcm-ttl {
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 40px;
}
.pr2023 .tvcm .tvcm-movie {
  margin-top: 40px;
}
.pr2023 .tvcm .tvcm-movie iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023 .tvcm {
    padding-top: calc(68 / 1200 * 100vw);
    padding-bottom: calc(82 / 1200 * 100vw);
  }
  .pr2023 .tvcm .tvcm-ttl {
    font-size: calc(40 / 1200 * 100vw);
  }
  .pr2023 .tvcm .tvcm-movie {
    margin-top: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023 .tvcm {
    padding: calc(11 / 375 * 100vw) calc(20 / 375 * 100vw) calc(21 / 375 * 100vw);
    position: relative;
  }
  .pr2023 .tvcm .tvcm-ttl {
    font-size: calc(16 / 375 * 100vw);
  }
  .pr2023 .tvcm .tvcm-movie {
    margin-top: calc(8 / 375 * 100vw);
  }
  .pr2023 .tvcm .tvcm-movie iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}
/*=============================================
よくあるご質問
=============================================*/
.bg-gray {
  background-color: #f8f7f6;
  padding-top: 128px;
  padding-bottom: 100px;
}
.pr2023-faq__ttl {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-bottom: 40px;
  text-align: center;
}
.pr2023-faq__txt {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding-bottom: 68px;
  text-align: center;
}
.qestion-link {
  text-align: center;
  margin-top: 40px;
}
.u-link__line {
  border-bottom: 2px solid var(--red-color);
  padding-bottom: 5px;
  transition: all 0.3s;
}
.pr2023-faq__link {
  color: var(--red-color) !important;
  display: inline-block;
  font-size: 16px;
  padding-top: 40px;
  text-align: center;
  font-weight: bold;
}
.pr2023-faq__link:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .qestion-link {
    margin-top: calc(40 / 1200 * 100vw);
  }
  .qestion-link a {
    /* font-size: calc(16 / 1200 *100vw); */
    padding: calc(24 / 1200 * 100vw) 0;
    width: calc(560 / 1200 * 100vw);
  }
  .qestion-link a::before {
    bottom: calc(-16 / 1200 * 100vw);
    right: calc(-17 / 1200 * 100vw);
    height: calc(6 / 1200 * 100vw);
  }
  .qestion-link a::after {
    top: calc(10 / 1200 * 100vw);
    right: calc(-17 / 1200 * 100vw);
    width: calc(6 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .tvcm + .bg-gray {
    padding-top: calc(80 / 375 * 100vw);
    padding-bottom: calc(80 / 375 * 100vw);
  }
  .qestion-link {
    margin-top: calc(32 / 375 * 100vw);
  }
  .qestion-link a {
    padding-top: 0;
    font-size: calc(14 / 375 * 100vw);
  }
}
/*========= アコーディオン =========*/
.pr2023-faq__accordion {
  margin: 0 auto;
}
.pr2023-faq__accordion--header {
  border-top: 2px solid #e2e1e0;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  padding: 40px 0;
  position: relative;
  transition: 0.3s all;
}
.pr2023-faq__accordion--header:hover {
  opacity: 0.7;
  transition: 0.3s all;
}
.pr2023-faq__accordion--end {
  border-bottom: 2px solid #e2e1e0;
}
.pr2023-faq__accordion--header .u-accordion__box {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  right: 1.6%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  width: 40px;
  height: 40px;
}
.pr2023-faq__accordion--header.is-stay .u-accordion__box {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.pr2023-faq__accordion--header.is-stay .u-accordion__box .u-accordion__icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.pr2023-faq__accordion--header.is-stay.is-open .u-accordion__box .u-accordion__icon {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pr2023-faq__accordion--header.is-open .u-accordion__box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.pr2023-faq__accordion--header.is-stay.is-open .u-accordion__box {
  -webkit-transform: rotate(315eg);
  transform: rotate(315deg);
}
.pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon::before,
.pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon::after {
  content: '';
  background-color: var(--red-color);
  display: flex;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
  width: 23px;
  height: 7px;
}
.pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon:before {
  width: 7px;
  height: 23px;
  top: 0;
  left: 8px;
}
.pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon:after {
  top: 8px;
}
.pr2023-faq__accordion--header.is-stay .u-accordion__box .u-accordion__icon:before {
  content: none;
}
.pr2023-faq__accordion--header.is-open .u-accordion__box .u-accordion__icon:before {
  content: none;
}
.pr2023-faq__accordion--header.is-stay.is-open .u-accordion__box .u-accordion__icon:before {
  content: '';
}
.pr2023-faq__accordion--header.is-open .u-accordion__box .u-accordion__icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pr2023-faq__accordion--header.is-stay.is-open .u-accordion__box .u-accordion__icon:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/*========= アコーディオン：中身 =========*/
.pr2023-faq__accordion--inner {
  box-sizing: border-box;
  display: none;
  padding-bottom: 30px;
}
.pr2023-faq__accordion--inner.is-stay {
  display: block;
}
.pr2023-faq__accordion--inner p {
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023-faq {
    margin: calc(120 / 1200 * 100vw) auto 0;
  }
  .pr2023-faq__ttl {
    font-size: calc(40 / 1200 * 100vw);
    padding-bottom: calc(40 / 1200 * 100vw);
  }
  .pr2023-faq__txt {
    font-size: calc(16 / 1200 * 100vw);
    padding-bottom: calc(64 / 1200 * 100vw);
  }
  /*========= アコーディオン =========*/
  .pr2023-faq__accordion--header {
    font-size: calc(24 / 1200 * 100vw);
    padding: calc(40 / 1200 * 100vw) 0;
  }
  .pr2023-faq__accordion--header .u-accordion__box {
    margin-top: calc(-20 / 1200 * 100vw);
    width: calc(40 / 1200 * 100vw);
    height: calc(40 / 1200 * 100vw);
  }
  /*========= アコーディオン：中身 =========*/
  .pr2023-faq__accordion--inner {
    padding-bottom: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .pr2023-faq {
    margin: 0 auto calc(80 / 375 * 100vw);
  }
  .pr2023-faq__ttl {
    font-size: calc(32 / 375 * 100vw);
    padding-bottom: calc(24 / 375 * 100vw);
  }
  .pr2023-faq__txt {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: calc(40 / 375 * 100vw);
    text-align: left;
  }
  .pr2023-faq__link {
    font-size: calc(14 / 375 * 100vw);
    padding-top: calc(32 / 375 * 100vw);
  }
  /*========= アコーディオン =========*/
  .pr2023-faq__accordion--header {
    font-size: calc(16 / 375 * 100vw);
    padding: calc(24 / 375 * 100vw) 0;
  }
  .pr2023-faq__accordion__wrapper {
    width: calc(280 / 375 * 100vw);
  }
  .pr2023-faq__accordion--header .u-accordion__box {
    width: calc(20 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
  }
  .pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon {
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
  }
  .pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon::before,
  .pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon::after {
    width: 18px;
    height: 4px;
  }
  .pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
  }
  .pr2023-faq__accordion--header .u-accordion__box .u-accordion__icon:after {
    top: 7.5px;
  }
  /*========= アコーディオン：中身 =========*/
  .pr2023-faq__accordion--inner {
    padding-bottom: calc(16 / 375 * 100vw);
  }
  .pr2023-faq__accordion--inner p {
    font-size: calc(14 / 375 * 100vw);
  }
}
/*=============================================
免責事項
=============================================*/
.pr2023-disclaimer {
  margin: 120px auto 0;
  padding-bottom: 100px;
}
.pr2023-disclaimer__ttl {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-bottom: 60px;
  text-align: center;
}
.pr2023-disclaimer__box {
  background-color: var(--white-color);
  padding: 60px;
}
.pr2023-disclaimer__box__ttl {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 40px 0 32px;
}
.pr2023-disclaimer__box__ttl .small {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.pr2023-disclaimer__box__subTtl {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding-top: 40px;
  text-align: center;
}
.pr2023-disclaimer__box__list {
  border-bottom: 2px solid var(--gray-color);
  padding: 0 0 40px;
}
.pr2023-disclaimer__box__item {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
}
.u-list--square::before {
  content: '■';
}
.pr2023-disclaimer__box__wrap:nth-child(1) .pr2023-disclaimer__box__ttl {
  padding-top: 0;
}
.pr2023-disclaimer__detail {
  margin-top: 22px;
  font-size: 14px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pr2023-disclaimer {
    margin: calc(120 / 1200 * 100vw) auto 0;
    padding-bottom: calc(100 / 1200 * 100vw);
  }
  .pr2023-disclaimer__box__lead {
    padding-top: calc(40 / 1200 * 100vw);
    font-size: calc(18 / 1200 * 100vw);
  }
  .pr2023-disclaimer__ttl {
    font-size: calc(32 / 1200 * 100vw);
    padding-bottom: calc(60 / 1200 * 100vw);
  }
  .pr2023-disclaimer__box {
    padding: calc(60 / 1200 * 100vw);
  }
  .pr2023-disclaimer__box__ttl {
    font-size: calc(16 / 1200 * 100vw);
    padding: calc(40 / 1200 * 100vw) 0 calc(32 / 1200 * 100vw);
  }
  .pr2023-disclaimer__box__ttl .small {
    font-size: calc(14 / 1200 * 100vw);
  }
  .pr2023-disclaimer__box__subTtl {
    font-size: calc(18 / 1200 * 100vw);
    padding-top: calc(40 / 1200 * 100vw);
  }
  .pr2023-disclaimer__box__item {
    font-size: calc(14 / 1200 * 100vw);
  }
  .pr2023-disclaimer__detail {
    margin-top: calc(22 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .disclaimer {
    margin: calc(80 / 375 * 100vw) auto 0;
    padding-bottom: 0;
  }
  .pr2023-disclaimer {
    margin: 0 auto;
    padding-bottom: 0;
  }
  .pr2023-disclaimer__ttl {
    font-size: calc(24 / 375 * 100vw);
    padding-bottom: calc(32 / 375 * 100vw);
  }
  .pr2023-disclaimer__box {
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
  .pr2023-disclaimer__box__ttl {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(32 / 375 * 100vw) 0 calc(24 / 375 * 100vw);
  }
  .pr2023-disclaimer__box__ttl .small {
    font-size: calc(12 / 375 * 100vw);
  }
  .pr2023-disclaimer__box__subTtl {
    font-size: calc(18 / 375 * 100vw);
    padding-top: calc(32 / 375 * 100vw);
  }
  .pr2023-disclaimer__box__list {
    padding: 0 0 calc(32 / 375 * 100vw);
  }
  .pr2023-disclaimer__box__wrap:last-of-type .pr2023-disclaimer__box__list {
    padding-bottom: 0;
  }
  .pr2023-disclaimer__box__item {
    font-size: calc(12 / 375 * 100vw);
    padding-bottom: calc(8 / 375 * 100vw);
  }
  .pr2023-disclaimer__detail {
    margin-top: calc(8 / 375 * 100vw);
    font-size: calc(11 / 375 * 100vw);
  }
}
