@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&family=Open+Sans:wght@100;200;300;400;500;600;700&display=swap");

/*---------------------------------------------*/
/* 変数 */
/*---------------------------------------------*/
:root {
  /*color*/
  --orange-color: #eb5605;
  --orange200-color: #fd9965;
  --orange300-color: #ffe5d8;
  --gray-color: #222222;
  --red-color: #ff0000;
  --white-color: #ffffff;
  --bg-color: #fbf6f4;
}

/*---------------------------------------------*/
/* PC/SP共通要素 */
/*---------------------------------------------*/

html {
  scroll-behavior: smooth !important;
}

#page-container {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--gray-color);
  background-color: var(--bg-color);
}

#page-container a {
  display: inline-block;
  color: var(--orange-color);
}

#page-container a:hover {
  opacity: 0.7;
}

#page-container .fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 0.5s;
  transform: scale(0.9);
}

#page-container .fade.fadein {
  opacity: 1;
  transform: translateY(0px);
  transform: scale(1);
}

#page-container .note {
  color: var(--red-color);
}

/*　for PC　*/
@media screen and (min-width: 769px) {
  .sp-view {
    display: none;
  }

  img {
    width: auto;
    vertical-align: bottom;
  }

  #page-container .u-text-L {
    font-size: 18px;
    line-height: 1.4;
  }

  #page-container .u-text-M {
    font-size: 16px;
  }

  #page-container .u-text-S {
    font-size: 13px;
  }
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }

  img {
    width: 100%;
    vertical-align: bottom;
  }

  #page-container .u-text-L {
    font-size: calc(16 * (100vw / 375));
    line-height: 1.4;
  }

  #page-container .u-text-M {
    font-size: calc(14 * (100vw / 375));
  }

  #page-container .u-text-S {
    font-size: calc(12 * (100vw / 375));
  }
}

/*---------------------------------------------*/
/* .popup */
/*---------------------------------------------*/

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 50;
}

.active.popup {
  pointer-events: all;
  opacity: 1;
}

.popup p {
  cursor: pointer;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  .popup p {
    width: calc(300 * (100vw / 375));
  }
}

/*---------------------------------------------*/
/* .arrow【矢印付きリンク】 */
/*---------------------------------------------*/

#page-container .arrow {
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  color: var(--orange-color);
  text-decoration: underline;
  text-align: left;
}

#page-container .arrow::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--orange-color);
  border-radius: 10px;
}

#page-container .arrow::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 2px var(--white-color);
  border-right: solid 2px var(--white-color);
  top: 9px;
  left: 6px;
  transform: rotate(45deg);
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .arrow {
    padding-left: calc(20 * (100vw / 375));
    font-size: calc(14 * (100vw / 375));
  }

  #page-container .arrow::before {
    top: calc(2 * (100vw / 375));
    width: calc(14 * (100vw / 375));
    height: calc(14 * (100vw / 375));
    border-radius: calc(7 * (100vw / 375));
  }

  #page-container .arrow::after {
    border-top: solid 1px var(--white-color);
    border-right: solid 1px var(--white-color);
    width: calc(3 * (100vw / 375));
    height: calc(3 * (100vw / 375));
    top: calc(7 * (100vw / 375));
    left: calc(4 * (100vw / 375));
  }
}

/*---------------------------------------------*/
/* .pagetop【戻るボタン】 */
/*---------------------------------------------*/

#page-container .pagetop {
  height: 100px;
  width: 100px;
  position: fixed;
  right: 100px;
  bottom: 100px;
  background: var(--gray-color);
  opacity: 0.5;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

#page-container .pagetop a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  padding-top: 10px;
}

#page-container .pagetop a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px var(--white-color);
  border-right: solid 2px var(--white-color);
  position: absolute;
  left: calc(50% - 5px);
  top: 25px;
  transform: rotate(-45deg);
}



/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .pagetop {
    height: calc(60 * (100vw / 375));
    width: calc(60 * (100vw / 375));
    right: calc(15 * (100vw / 375));
    bottom: calc(80 * (100vw / 375));
    border-radius: calc(30 * (100vw / 375));
  }

  #page-container .pagetop a {
    font-size: calc(11 * (100vw / 375));
    line-height: 1.2;
    padding-top: calc(10 * (100vw / 375));
  }

  #page-container .pagetop a::before {
    width: calc(5 * (100vw / 375));
    height: calc(5 * (100vw / 375));
    left: calc(50% - calc(2.5 * (100vw / 375)));
    top: calc(17 * (100vw / 375));
  }
}


@media screen and (max-width: 450px) {
    #page-container .pagetop {
        bottom: calc(95 * (100vw / 375));
    }
}
@media screen and (max-width: 350px) {
    #page-container .pagetop {
        bottom: calc(105 * (100vw / 375));
    }
}



/*---------------------------------------------*/
/* .bgorange【オレンジ＋矢印つき背景】 */
/*---------------------------------------------*/

#page-container .bgorange {
  width: 100%;
  margin: 60px 0 200px;
  background-color: var(--orange300-color);
  padding: 60px 0 30px 0;
  position: relative;
}

#page-container .bgorange::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -99px;
  height: 100px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: var(--orange300-color);
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .bgorange {
    margin: calc(30 * (100vw / 375)) auto calc(100 * (100vw / 375));
    padding: calc(40 * (100vw / 375)) 0 calc(20 * (100vw / 375));
  }

  #page-container .bgorange::after {
    bottom: calc(-39 * (100vw / 375));
    height: calc(40 * (100vw / 375));
  }
}

/*---------------------------------------------*/
/* h1【キービジュアル】 */
/*---------------------------------------------*/
/*　for PC　*/
@media screen and (min-width: 769px) {
  #page-container h1 {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
    margin-bottom: 60px;
  }

  #page-container h1 img {
    position: absolute;
    width: 2000px;
    height: 530px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container h1 {
    width: 100%;
    height: auto;
    margin-bottom: calc(40 * (100vw / 375));
  }
}

/*---------------------------------------------*/
/* h2【大見出し】 */
/*---------------------------------------------*/

#page-container h2 {
  position: relative;
  font-size: 50px;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 40px;
  padding: 0 0 45px;
}

#page-container h2::after {
  position: absolute;
  content: "";
  width: 560px;
  height: 15px;
  background-image: url("/company/lp/lp08/img/2024/ttl_line.png");
  background-repeat: no-repeat;
  background-size: 560px 15px;
  bottom: 15px;
  left: calc(50% - 270px);
}

#page-container h2 span {
  font-size: 22px;
  display: block;
}

#page-container h2 em {
  color: var(--orange-color);
  font-weight: 700;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container h2 {
    font-size: calc(28 * (100vw / 375));
    margin: 0;
    padding: 0 0 calc(40 * (100vw / 375));
  }

  #page-container h2::after {
    width: calc(300 * (100vw / 375));
    height: calc(12 * (100vw / 375));
    background-size: calc(300 * (100vw / 375)) calc(12 * (100vw / 375));
    bottom: calc(20 * (100vw / 375));
    left: calc(50% - calc(150 * (100vw / 375)));
  }

  #page-container h2 span {
    font-size: calc(14 * (100vw / 375));
  }
}
/*---------------------------------------------*/
/* heading--pop【小見出し】 */
/*---------------------------------------------*/

.heading.heading--pop{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    position: relative;
    text-align: center;
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 10px;
}
.heading.heading--pop::before {
    content: "";
    width: 16px;
    height: 14px;
    background-image: url(/company/lp/lp08/img/common/icon_heading_pop.svg);
}
.heading.heading--pop::after {
    content: "";
    width: 16px;
    height: 14px;
    background-image: url(/company/lp/lp08/img/common/icon_heading_pop.svg);
    transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .heading.heading--pop {
    font-size: 14px;
  }
}


/*---------------------------------------------*/
/* .campaign【開催中キャンペーン】 */
/*---------------------------------------------*/

/*　for PC　*/
@media screen and (min-width: 769px) {
  #page-container .campaign ul {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #page-container .campaign ul li {
    width: 520px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  #page-container .campaign__label {
    width: auto;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  #page-container .campaign__label img {
    height: 40px;
  }

  #page-container .campaign__bnr img {
    width: 100%;
    max-width: 560px;
  }
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .campaign ul {
    width: calc(355 * (100vw / 375));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(30 * (100vw / 375));
  }

  #page-container .campaign ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(15 * (100vw / 375));
  }

  #page-container .campaign__label {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10 * (100vw / 375));
  }

  #page-container .campaign__label img {
    width: calc(120 * (100vw / 375));
    height: auto;
  }
}

/*---------------------------------------------*/
/* .opening【口座開設ボタン】 */
/*---------------------------------------------*/

#page-container .opening .btn {
  position: relative;
  z-index: 1;
  width: 1100px;
  margin: 60px auto 60px;
  padding: 60px 0;
  background-color: var(--white-color);
  border-radius: 30px;
  box-shadow: 0px 0px 35px rgba(235, 85, 5, 0.07);
}

#page-container .opening .btn a {
  position: relative;
  display: block;
  width: 490px;
  height: 100px;
  border-radius: 50px;
  margin: 0 auto;
  background-color: var(--red-color);
  color: var(--white-color);
  text-align: center;
  font-size: 28px;
  line-height: 100px;
  text-decoration: none;
}

#page-container .opening .btn a::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 20px;
  top: calc(50% - 20px);
  right: 20px;
  background-color: var(--white-color);
}

#page-container .opening .btn a::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 3px var(--red-color);
  border-right: solid 3px var(--red-color);
  position: absolute;
  top: calc(50% - 6px);
  right: 35px;
  transform: rotate(45deg);
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .opening .btn {
    width: calc(355 * (100vw / 375));
    margin: calc(40 * (100vw / 375)) auto;
    padding: calc(40 * (100vw / 375)) 0;
    border-radius: calc(20 * (100vw / 375));
    box-shadow: 0px 0px calc(10 * (100vw / 375)) rgba(235, 85, 5, 0.07);
  }

  #page-container .opening .btn a {
    width: calc(300 * (100vw / 375));
    height: calc(60 * (100vw / 375));
    border-radius: calc(30 * (100vw / 375));
    font-size: calc(18 * (100vw / 375));
    line-height: calc(60 * (100vw / 375));
  }

  #page-container .opening .btn a::before {
    width: calc(24 * (100vw / 375));
    height: calc(24 * (100vw / 375));
    border-radius: calc(12 * (100vw / 375));
    top: calc(50% - calc(10 * (100vw / 375)));
    right: calc(18 * (100vw / 375));
  }

  #page-container .opening .btn a::after {
    width: calc(6 * (100vw / 375));
    height: calc(6 * (100vw / 375));
    top: calc(50% - calc(2 * (100vw / 375)));
    right: calc(26 * (100vw / 375));
  }
}

/*---------------------------------------------*/
/* .step【かんたん３ステップ】 */
/*---------------------------------------------*/
/*　for PC　*/
@media screen and (min-width: 769px) {
  #page-container .step ol {
    width: 1100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 60px;
  }

  #page-container .step ol li {
    position: relative;
    width: 260px;
    height: auto;
    background-color: var(--white-color);
    border-radius: 30px;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #page-container .step ol li::after {
    position: absolute;
    content: "";
    top: calc(50% - 30px);
    right: -20px;
    width: 20px;
    height: 60px;
    background-color: var(--orange200-color);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
  }

  #page-container .step ol li:nth-last-of-type(1)::after {
    display: none;
  }

  #page-container .step ol li p:nth-of-type(1) {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  #page-container .step ol li p:nth-of-type(2) {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  #page-container .step .step__lead {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
  }

  #page-container .step .step__lead span {
    color: var(--orange-color);
  }
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .step ol {
    width: calc(355 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
    margin: 0 auto calc(20 * (100vw / 375));
  }

  #page-container .step ol li {
    position: relative;
    width: 100%;
    height: auto;
    background-color: var(--white-color);
    border-radius: calc(20 * (100vw / 375));
    margin-bottom: calc(20 * (100vw / 375));
    padding: calc(20 * (100vw / 375)) calc(15 * (100vw / 375));
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  #page-container .step ol li::after {
    position: absolute;
    content: "";
    bottom: calc(-20 * (100vw / 375));
    right: calc(50% - calc(30 * (100vw / 375)));
    width: calc(60 * (100vw / 375));
    height: calc(20 * (100vw / 375));
    background-color: var(--orange200-color);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }

  #page-container .step ol li:nth-last-of-type(1)::after {
    display: none;
  }

  #page-container .step ol li p:nth-of-type(1) {
    width: calc(60 * (100vw / 375));
  }

  #page-container .step ol li p:nth-of-type(2) {
    width: calc(60 * (100vw / 375));
  }

  #page-container .step ol li p:nth-of-type(3) {
    width: calc(150 * (100vw / 375));
    font-size: calc(15 * (100vw / 375));
    text-align: left;
    line-height: 1.4;
  }

  #page-container .step .step__lead {
    text-align: center;
    font-weight: 700;
    font-size: calc(18 * (100vw / 375));
  }

  #page-container .step .step__lead span {
    color: var(--orange-color);
  }
}

/*---------------------------------------------*/
/* .nisa【新NISA 4つのポイント】 */
/*---------------------------------------------*/

.accordion {
  width: 1100px;
  box-sizing: border-box;
  margin: 0 auto 20px;
  text-align: left;
  border-radius: 20px;
  background-color: #fff;
  box-sizing: border-box;
}

.accordion .toggle {
  display: none;
}

.accordion .acc-label {
  position: relative;
  padding: 24px 30px;
  display: block;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.accordion .acc-label:hover {
  opacity: 0.7;
}

.accordion .acc-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.accordion .acc-ttl p:nth-of-type(1) img {
  width: 70px;
  height: 70px;
}

.accordion .acc-label::before,
.accordion .acc-label::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #eb5505;
  width: 3px;
  height: 25px;
  top: calc(50% - 15px);
  right: 40px;
}

.accordion .acc-label::after {
  transform: rotate(90deg);
}

.accordion .acc-label,
.accordion .acc-cnt {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion .acc-cnt {
  height: 0;
  padding: 0 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.accordion .toggle:checked + .acc-label + .acc-cnt {
  height: auto;
  padding: 20px 30px;
  transition: all 0.3s;
  background-color: var(--sub-color);
}

.accordion .toggle:checked + .acc-label::before {
  display: none;
}

.accordion .acc-cnt p {
  width: 850px;
  margin: 0 auto;
}

.accordion .acc-cnt p:nth-child(2) {
  text-align: center;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  .accordion {
    width: calc(355 * (100vw / 375));
    margin: 0 auto calc(20 * (100vw / 375));
    border-radius: calc(20 * (100vw / 375));
  }

  .accordion .acc-label {
    padding: calc(20 * (100vw / 375));
    font-size: calc(16 * (100vw / 375));
    line-height: 1.4;
  }

  .accordion .acc-label:hover {
    opacity: 1;
  }

  .accordion .acc-ttl {
    gap: calc(20 * (100vw / 375));
  }

  .accordion .acc-ttl p:nth-of-type(1) img {
    width: calc(50 * (100vw / 375));
    height: calc(50 * (100vw / 375));
  }

  .accordion .acc-ttl p:nth-of-type(2) {
    width: calc(190 * (100vw / 375));
  }

  .accordion .acc-label::before,
  .accordion .acc-label::after {
    width: calc(3 * (100vw / 375));
    height: calc(20 * (100vw / 375));
    top: calc(50% - calc(10 * (100vw / 375)));
    right: calc(30 * (100vw / 375));
  }

  .accordion .acc-cnt {
    padding: 0 calc(20 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
  }

  .accordion .toggle:checked + .acc-label + .acc-cnt {
    padding: calc(20 * (100vw / 375));
  }

  .accordion .acc-cnt p {
    font-size: calc(14 * (100vw / 375));
    width: 100%;
  }
}

/*---------------------------------------------*/
/* .reason【選ばれる理由】 */
/*---------------------------------------------*/

#page-container .reason ol {
  width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#page-container .reason ol li {
  width: 350px;
  height: auto;
  margin-bottom: 25px;
}

#page-container .reason .reason-inner {
  width: 1110px;
  margin: 0 auto;
}

#page-container .reason .reason-inner .reason-box {
  width: 940px;
  height: auto;
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 60px;
  box-sizing: border-box;
  margin: 60px 0 0 130px;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .reason ol {
    width: calc(355 * (100vw / 375));
    display: block;
  }

  #page-container .reason ol li {
    width: 100%;
    margin-bottom: calc(20 * (100vw / 375));
  }

  #page-container .reason .reason-inner {
    width: calc(355 * (100vw / 375));
  }

  #page-container .reason .reason-inner .reason-box {
    width: calc(355 * (100vw / 375));
    border-radius: calc(20 * (100vw / 375));
    padding: 0 calc(20 * (100vw / 375)) calc(30 * (100vw / 375));
    margin: 0 auto calc(60 * (100vw / 375));
  }
}

/* #reason-## */

#page-container .reason .reason-inner .reason-box h3 {
  position: relative;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 40px;
}

#page-container .reason .reason-inner .reason-box h3::before {
  position: absolute;
  content: "";
  background-size: 120px 120px;
  background-position: center;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  top: -40px;
  left: -160px;
}

#reason-01 h3::before {
  background-image: url(/company/lp/lp08/img/2024/no01.png);
}

#reason-02 h3::before {
  background-image: url(/company/lp/lp08/img/2024/no02.png);
}

#reason-03 h3::before {
  background-image: url(/company/lp/lp08/img/2024/no03.png);
}

#reason-04 h3::before {
  background-image: url(/company/lp/lp08/img/2024/no04.png);
}

#reason-05 h3::before {
  background-image: url(/company/lp/lp08/img/2024/no05.png);
}

#reason-06 h3::before {
  background-image: url(/company/lp/lp08/img/2024/no06.png);
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .reason .reason-inner .reason-box h3 {
    font-size: calc(19 * (100vw / 375));
    margin: 0 0 calc(30 * (100vw / 375));
    padding: calc(60 * (100vw / 375)) 0 0;
  }

  #page-container .reason .reason-inner .reason-box h3::before {
    background-size: calc(80 * (100vw / 375)) calc(80 * (100vw / 375));
    width: calc(80 * (100vw / 375));
    height: calc(80 * (100vw / 375));
    top: calc(-40 * (100vw / 375));
    left: 0;
  }

  #reason-01,
  #reason-02,
  #reason-03,
  #reason-04,
  #reason-05,
  #reason-06 {
    margin-top: calc(-60 * (100vw / 375));
    padding-top: calc(60 * (100vw / 375));
  }
}

/* .reason-layout */

#page-container .reason .reason-box .reason-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#page-container .reason .reason-box .reason-layout-left {
  width: 460px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#page-container .reason .reason-box .reason-layout-right {
  width: 300px;
}

#page-container .reason .reason-box .reason-layout-right img {
  width: 300px;
}

#page-container .reason-layout-center {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reason-layout-center + .reason-layout-center {
  margin-top: 60px;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container .reason .reason-box .reason-layout {
    display: flex;
    flex-direction: column;
    gap: calc(30 * (100vw / 375));
  }

  #page-container .reason .reason-box .reason-layout-left {
    width: 100%;
  }

  #page-container .reason .reason-box .reason-layout-right {
    width: 100%;
  }

  #page-container .reason .reason-box .reason-layout-right img {
    width: 100%;
  }

  #page-container .reason-layout-center {
    display: flex;
    flex-direction: column;
    gap: calc(30 * (100vw / 375));
  }

  .reason-layout-center + .reason-layout-center {
    margin-top: 60px;
  }
}

/* #reason-02 */

#reason-02 ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#reason-02 ul li {
  position: relative;
  padding-left: 24px;
}

#reason-02 ul li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("/company/lp/lp08/img/2024/check.png");
  background-size: 16px 16px;
  top: 8px;
  left: 0;
}

#reason-02 ul li span {
  display: block;
  line-height: 1.4;
  margin-top: 5px;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #reason-02 ul {
    gap: calc(10 * (100vw / 375));
  }

  #reason-02 ul li {
    padding-left: calc(20 * (100vw / 375));
  }

  #reason-02 ul li::before {
    width: calc(16 * (100vw / 375));
    height: calc(16 * (100vw / 375));
    background-size: calc(16 * (100vw / 375)) calc(16 * (100vw / 375));
    top: calc(8 * (100vw / 375));
  }

  #reason-02 ul li span {
    margin-top: calc(5 * (100vw / 375));
  }
}

/* #reason-04 */
#reason-04 .reason-layout-center {
  gap: 10px !important;
}

#reason-04 .reason-04-group {
  background-color: #fbf6f4;
  padding: 40px 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#reason-04 .reason-04-ico {
  width: 60px;
}

#reason-04 .reason-04-cnt {
  width: 690px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#reason-04 .reason-04-cnt p:nth-of-type(1) {
  color: var(--orange-color);
  font-size: 20px;
  font-weight: 700;
}

.reason-04-plus {
  margin: -20px auto;
  z-index: 1;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #reason-04 .reason-layout-center {
    gap: calc(10 * (100vw / 375)) !important;
  }

  #reason-04 .reason-04-group {
    background-color: #fbf6f4;
    padding: calc(20 * (100vw / 375));
    box-sizing: border-box;
    display: block;
  }

  #reason-04 .reason-04-ico {
    width: calc(60 * (100vw / 375));
    margin: 0 auto calc(10 * (100vw / 375));
  }

  #reason-04 .reason-04-cnt {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: calc(10 * (100vw / 375));
  }

  #reason-04 .reason-04-cnt p:nth-of-type(1) {
    color: var(--orange-color);
    font-size: calc(16 * (100vw / 375));
    font-weight: 700;
  }

  .reason-04-plus {
    width: calc(50 * (100vw / 375));
    margin: calc(5 * (100vw / 375)) auto;
  }
}
	#reason-04 h4 {
	  color: var(--orange-color);
	  font-size: 24px;
	  font-weight: 700;
	  margin-bottom: -20px;
}
.reason-04_no img{
	width: 50px;
}
#reason-04 h5 {
  color: var(--red-color);
  font-size: 20px;
  font-weight: 700;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #reason-04 h4 {
    font-size: calc(18 * (100vw / 375));
    font-weight: 700;
    margin-bottom: calc(-20 * (100vw / 375));
  }
  #reason-04 h5 {
	  font-size: calc(16 * (100vw / 375));
	}
}
/* #reason-05 */

#reason-05 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#reason-05 ul li {
  width: 390px;
  height: auto;
  gap: 5px;
  display: flex;
  flex-direction: column;
}

#reason-05 .reason-box__img {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}

#reason-05 .reason-box__label {
  margin: 15px 0 10px;
  height: 40px;
}

#reason-05 .reason-box__label img {
  height: 40px;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #reason-05 ul {
    gap: calc(40 * (100vw / 375));
  }

  #reason-05 ul li {
    width: calc(295 * (100vw / 375));
    gap: calc(5 * (100vw / 375));
  }

  #reason-05 .reason-box__label {
    width: calc(120 * (100vw / 375));
    margin: calc(10 * (100vw / 375)) 0 calc(5 * (100vw / 375));
  }

  #reason-05 .reason-box__label img {
    height: auto;
  }
}

/* #reason-06 */

#reason-06 h4 {
  color: var(--orange-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #reason-06 h4 {
    font-size: calc(16 * (100vw / 375));
    font-weight: 700;
  }

  #reason-06 .window {
    width: calc(16 * (100vw / 375));
  }
}

/*---------------------------------------------*/
/* footer【フッター】 */
/*---------------------------------------------*/

footer {
  width: 100%;
  background-color: var(--white-color);
  padding: 60px 0 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 40px;
}

footer div {
  width: 1100px;
  margin: 0 auto;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

footer .copy {
  width: 100%;
  background-color: var(--orange300-color);
  margin-top: 20px;
  padding: 10px 0;
  text-align: center;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  footer {
    padding: calc(30 * (100vw / 375)) 0 0;
    gap: calc(20 * (100vw / 375));
  }

  footer div {
    width: calc(355 * (100vw / 375));
    gap: calc(10 * (100vw / 375));
  }

  footer .copy {
    padding: calc(10 * (100vw / 375)) 0;
  }
}

/*---------------------------------------------*/
/* modal【キャンペーン概要】 */
/*---------------------------------------------*/
#page-container button {
  cursor: pointer;
}

#page-container button:hover {
  opacity: 0.7;
}

#page-container button.modalOpen {
  font-family: "Noto sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--bg-color);
  margin: 0 auto;
}

#page-container .modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

#page-container .modal-box {
  background-color: #fff;
  margin: 16vh auto;
  width: 1000px;
  height: 70vh;
  overflow-y: scroll;
  padding: 50px 0;
  box-sizing: border-box;
  animation-name: modalopen;
  animation-duration: 0.5s;
  position: relative;
}
#page-container .modal-box .inner a {
  display: inline;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#page-container .modalClose {
  position: fixed;
  top: calc(10vh + 20px);
  right: calc(50% - 450px);
  width: 70px;
  height: 70px;
  border-radius: 35px;
  color: var(--orange-color);
  background-color: var(--white-color);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
  border: 0;
  font-size: 50px;
  font-weight: 100;
  font-family: "Open sans", sans-serif;
}

#page-container .modal-box .inner {
  width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#page-container .modal-box .inner h3 {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 40px;
  text-align: center;
}

#page-container .modal-box .inner h3 span {
  display: block;
  font-size: 20px;
  color: var(--red-color);
}

#page-container .modal-box .inner table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

#page-container .modal-box .inner table th {
  width: 200px;
  text-align: left;
  background-color: #eee;
  border: 1px solid #ccc;
  vertical-align: top;
  box-sizing: border-box;
  padding: 20px;
}
#page-container .modal-box .inner table td {
  width: 700px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 20px;
  display: table-cell;
  vertical-align: middle;
}
#modal1 .modal-note-list,
#modal2 .modal-note-list {
    margin-left: 30px;
	}
#modal1 .modal-note-list li,
#modal2 .modal-note-list li {
    position: relative;
    padding-bottom: 10px;
}
#modal1 .modal-note-list li::before,
#modal2 .modal-note-list li::before{
  content: "※";
  width: 28px;
  height: 28px;
  position: absolute;
  left: -30px;
}
#modal1 .campaign-tokuten img,
#modal2 .campaign-tokuten img{
  max-width: 866px;
  margin: 0 auto;
  padding: 20px;
}
#modal1 .modal-red-midashi,
#modal2 .modal-red-midashi {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    background: #c1111a;
    color: #fff;
    padding: 1px 0;
}
#modal1 .modal-gray-midashi,
#modal2 .modal-gray-midashi {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    background: #7e7e7e;
    color: #fff;
    padding: 1px 0;
}
.sc
.scroll-wrapper {
  position: relative;
  overflow-x: auto;
}
  .campaign-table01{
  max-width: 622px;
}
  .campaign-table02{
  max-width: 596px;
}
  .campaign-table03{
  max-width: 749px;
}
.scroll-inner {
  min-width: 500px;
}
img.scroll-inner {
  height: auto;
  width: 100%;
  max-width: 100%;
}
.scroll-hint {
  display: none;
}
  .scrolled .scroll-overlay,
  .scrolled .scroll-hint {
    opacity: 0;
  }

  @keyframes hintMove {
  0% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(-10px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.6; }
}

.scroll-hint {
  animation: hintMove 2s infinite ease-in-out;
}

.scrolled .scroll-hint {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container button.modalOpen {
    font-size: calc(14 * (100vw / 375));
    gap: calc(10 * (100vw / 375));
  }
  
  #modal1 .modal-note-list,
  #modal2 .modal-note-list {
    margin-left: 22px;
	}
  #modal1 .modal-note-list li::before,
  #modal2 .modal-note-list li::before{
    left: -22px;
  }

  #page-container .modal-box {
    margin: 15vh auto;
    width: calc(355 * (100vw / 375));
    height: 88vh;
    padding: calc(30 * (100vw / 375)) 0;
  }

  #page-container .modalClose {
    /* top: calc(6vh - calc(20 * (100vw / 375))); */
    right: calc(50% - calc(150 * (100vw / 375)));
    width: calc(40 * (100vw / 375));
    height: calc(40 * (100vw / 375));
    border-radius: calc(20 * (100vw / 375));
    font-size: calc(20 * (100vw / 375));
  }

  #page-container .modal-box .inner {
    width: calc(330 * (100vw / 375));
    margin: 0 auto;
  }

  #page-container .modal-box .inner h3 {
    font-size: calc(16 * (100vw / 375));
    text-align: left;
    margin-bottom: calc(20 * (100vw / 375));
  }

  #page-container .modal-box .inner h3 span {
    font-size: calc(13 * (100vw / 375));
  }

  #page-container .modal-box .inner table {
    font-size: calc(14 * (100vw / 375));
    line-height: 1.6;
  }

  #page-container .modal-box .inner table th {
    display: block;
    width: 100%;
    border-top: 3px solid #ccc;
    border-bottom: none;
    padding: calc(10 * (100vw / 375));
  }

  #page-container .modal-box .inner table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: calc(14 * (100vw / 375));
  }

  #page-container .modal-box .inner table td:last-child {
    border-bottom: 1px solid #ccc;
  }
  #modal1 .campaign-tokuten img,
  #modal2 .campaign-tokuten img{
    padding: 3vw 0vw;
  }
 #modal1 .modal-red-midashi,
 #modal2 .modal-red-midashi {
        font-size: 18px;
    }
 #modal1 .modal-gray-midashi,
 #modal2 .modal-gray-midashi {
        font-size: 18px;
  }
  .scroll-wrapper {
    max-width: 80vw;
  }
	.scroll-hint {
	  display: block;
	  position: absolute;
	  top: 38px;
	  left: 113px;
	  width: 70px;
	  transition: opacity 0.3s ease;
	}
}

/*---------------------------------------------*/
/* header【インフルエンサー用ヘッダー】 */
/*---------------------------------------------*/
#page-container header {
  width: 1100px;
  margin: 0 auto;
  padding: 30px 0;
  text-align: left;
}

#page-container header img {
  width: 200px !important;
  height: auto;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  #page-container header {
    width: 100%;
    margin: 0 auto;
    padding: calc(15 * (100vw / 375));
    box-sizing: border-box;
    text-align: left;
  }

  #page-container header img {
    width: calc(120 * (100vw / 375)) !important;
    height: auto;
  }
}

/*---------------------------------------------*/
/* hr【罫線】 */
/*---------------------------------------------*/

hr {
  display: block;
  margin: 20px 0;
  background-color: var(--Semantic-Border-Border-Gray02, #dddddd);
}
hr.dashed {
  background-color: transparent;
  border: 2px dashed var(--Semantic-Background-Background-Gray02, #e9e9e9);
}

/*---------------------------------------------*/
/* reason-04_#reason-04-ac【アコーディオン】 */
/*---------------------------------------------*/

.reason-04_accordion {
  width: 820px;
  box-sizing: border-box;
  margin: 20px 0 0;
  text-align: left;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
}

.reason-04_accordion .toggle {
  display: none;
}

.reason-04_accordion .acc-label {
  position: relative;
  padding: 24px 30px;
  display: block;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.reason-04_accordion .acc-label:hover {
  opacity: 0.7;
}

.reason-04_accordion .acc-label::before,
.reason-04_accordion .acc-label::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: var(--red-color);
  width: 3px;
  height: 25px;
  top: calc(50% - 15px);
  right: 40px;
}

.reason-04_accordion .acc-label::after {
  transform: rotate(90deg);
}

.reason-04_accordion .acc-label,
.reason-04_accordion .acc-cnt {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.reason-04_accordion .acc-cnt {
  height: 0;
  padding: 0 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reason-04_accordion .toggle:checked + .acc-label + .acc-cnt {
  height: auto;
  padding: 20px 30px;
  transition: all 0.3s;
  background-color: var(--sub-color);
}

.reason-04_accordion .toggle:checked + .acc-label::before {
  display: none;
}

.reason-04_accordion .acc-cnt p {
  width: 850px;
  margin: 0 auto;
}
.reason-04_accordion .acc-cnt img {
  width: 760px;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  .reason-04_accordion {
    width: 100%;
    border-radius: 20px;
  }

  .reason-04_accordion .acc-label {
    padding: calc(20 * (100vw / 375));
    font-size: calc(16 * (100vw / 375));
    line-height: 1.4;
  }

  .reason-04_accordion .acc-label:hover {
    opacity: 1;
  }

  .reason-04_accordion .acc-ttl {
    width: calc(100% - 30px);
  }

  .reason-04_accordion .acc-label::before,
  .reason-04_accordion .acc-label::after {
    width: calc(3 * (100vw / 375));
    height: calc(20 * (100vw / 375));
    top: calc(50% - calc(10 * (100vw / 375)));
    right: calc(30 * (100vw / 375));
  }

  .reason-04_accordion .acc-cnt {
    padding: 0 calc(20 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
  }

  .reason-04_accordion .toggle:checked + .acc-label + .acc-cnt {
    padding: calc(20 * (100vw / 375));
  }

  .reason-04_accordion .acc-cnt p {
    font-size: calc(14 * (100vw / 375));
    width: 100%;
  }
  .reason-04_accordion .acc-cnt img {
  width: 100%;
}
}

ul.service-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
ul.service-box li{
	width: 390px;
	height: auto;
	gap: 5px;
	flex-direction: column;
	text-align: center;
}
@media screen and (max-width: 768px) {
  ul.service-box li {
    width: calc(295 * (100vw / 375));
    gap: calc(5 * (100vw / 375));
  }
}

/*---------------------------------------------*/
/* tieup【タイアップキャンペーン】 */
/*---------------------------------------------*/
/*　for PC　*/
#tieup{
	background-color: var(--orange300-color);
	padding: 60px 0;
}
#tieup .tieup__bnr{
	margin: 0 auto;
    text-align: center;
    width: 90%;
}
#tieup .inner{
    width: 1100px;
    margin: 0 auto;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
#tieup .inner table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
#tieup .inner table th {
    width: 200px;
    text-align: left;
    background-color: #eee;
    border: 1px solid #ccc;
    vertical-align: top;
    box-sizing: border-box;
    padding: 20px;
}
#tieup .inner table td {
    width: 700px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 20px;
}
#tieup .inner h3{
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin: 60px 0 20px;
}

/*　for SP　*/
@media screen and (max-width: 768px) {
	#tieup{
	padding: 30px 0;
	}
    #tieup .inner {
        width: 90%;
    }
	 #tieup .inner table {
        font-size: calc(14 * (100vw / 375));
        line-height: 1.6;
    }
    #tieup .inner table th {
        display: block;
        width: 100%;
        border-top: 3px solid #ccc;
        border-bottom: none;
        padding: calc(14 * (100vw / 375));
    }
    #tieup .inner table td {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: calc(14 * (100vw / 375));
    }
    #tieup .inner table td:last-child {
        border-bottom: 1px solid #ccc;
    }
    #tieup .inner h3 {
    font-size: calc(19 * (100vw / 375));
    margin: 0 0 calc(10 * (100vw / 375));
    padding: calc(40 * (100vw / 375)) 0 0;
  }
}

/*　marked-list　*/
.marked-list {
  list-style: none;
}
.marked-list > li {
  position: relative;
  font-size: 12px;
}
.marked-list > li::before
 {
  position: absolute;
  left: 0;
  font-weight: inherit;
}
.marked-list--kome {
  font-size: 0.75em;
}
.marked-list--ordered {
  counter-reset: list-counter;
}
.marked-list--ordered > li {
  padding-left: 1.5em;
}
.marked-list--ordered > li::before {
  counter-increment: list-counter;
  content: counter(list-counter) ". ";
}
.marked-list--ordered .one-digit {
  padding-left: 1.5em;
}
.marked-list--ordered .two-digits {
  padding-left: 2em;
}
.marked-list--ordered .three-digits {
  padding-left: 2.5em;
}
.marked-list--kome {
  font-size: var(--fs-s);
}
.marked-list--kome > li {
  padding-left: 1.5em;
}
.marked-list--kome > li::before {
  content: "※";
}
.marked-list--ordered-kome {
  counter-reset: list-counter;
  font-size: var(--fs-s);
}
.marked-list--ordered-kome > li {
  padding-left: 2.2em;
}
.marked-list--ordered-kome > li::before {
  counter-increment: list-counter;
  content: "※" counter(list-counter);
}
.marked-list--ordered-kome .one-digit {
  padding-left: 2.2em;
}
.marked-list--ordered-kome .two-digits {
  padding-left: 2.7em;
}
.marked-list--ordered-kome .three-digits {
  padding-left: 3.2em;
}