@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(15 * (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));
  }
}

/*---------------------------------------------*/
/* h1【キービジュアル】 */
/*---------------------------------------------*/
/*　for PC　*/
@media screen and (min-width: 769px) {
  #page-container h1 {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }

  #page-container h1 img {
    position: absolute;
    width: 2000px;
    height: 500px;
    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;
  }
}

/*---------------------------------------------*/
/* h2【大見出し】 */
/*---------------------------------------------*/

#page-container h2 {
  position: relative;
  font-size: 50px;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 20px;
  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));
  }
}

/*---------------------------------------------*/
/* .campaign【開催中キャンペーン】 */
/*---------------------------------------------*/

/*　for PC　*/
@media screen and (min-width: 769px) {
 #page-container .campaign {
    padding-bottom: 60px;
  }
  #page-container .campaign ul {
    width: 520px;
    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%;
  }
}

/*　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));
  }
}

/*---------------------------------------------*/
/* cpn【キャンペーン】 */
/*---------------------------------------------*/
.cpn {
  width: 100%;
  padding: 60px 0;
  display: flex !important;
  flex-direction: column;
  gap: 40px;
}

.cpn .cpn-inner {
  width: 1100px;
  margin: 0 auto;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.cpn .cpn-inner table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.cpn .cpn-inner table th {
  width: 200px;
  text-align: left;
  background-color: #eee;
  border: 1px solid #ccc;
  vertical-align: top;
  box-sizing: border-box;
  padding: 20px;
}

.cpn .cpn-inner table td {
  width: 700px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 20px;
}

/*　for タブレット　*/
@media screen and (max-width: 1024px) {
  .cpn .cpn-inner {
    width: 90%;
  }
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  .cpn .cpn-inner{
    width: 90%;
  }
  .cpn .cpn-inner table {
    font-size: calc(14 * (100vw / 375));
    line-height: 1.6;
  }

  .cpn .cpn-inner table th {
    display: block;
    width: 100%;
    border-top: 3px solid #ccc;
    border-bottom: none;
    padding: calc(14 * (100vw / 375));
  }

 .cpn .cpn-inner table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: calc(14 * (100vw / 375));
  }

  .cpn .cpn-inner table td:last-child {
    border-bottom: 1px solid #ccc;
  }
}
/*---------------------------------------------*/
/* 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 タブレット　*/
@media screen and (max-width: 1024px) {
  footer div {
    width: 90%;
  }
}

/*　for SP　*/
@media screen and (max-width: 768px) {
  footer {
    margin-top: calc(60 * (100vw / 375));
    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 {
    margin-top: calc(20 * (100vw / 375));
    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 {
    margin-left: 30px;
	}
#modal1 .modal-note-list li {
    position: relative;
    padding-bottom: 10px;
}
#modal1 .modal-note-list li::before{
  content: "※";
  width: 28px;
  height: 28px;
  position: absolute;
  left: -30px;
}
#modal1 .campaign-tokuten img{
  max-width: 866px;
  margin: 0 auto;
  padding: 20px;
}
#modal1 .modal-red-midashi {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    background: #C1111A;
    color: #fff;
    padding: 1px 0;
}
#modal1 .modal-gray-midashi {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    background: #7E7E7E;
    color: #fff;
    padding: 1px 0;
}
.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 {
    margin-left: 22px;
	}
  #modal1 .modal-note-list li::before{
    left: -22px;
  }

  #page-container .modal-box {
    margin: 6vh auto;
    width: calc(355 * (100vw / 375));
    height: 88vh;
    padding: calc(30 * (100vw / 375)) 0;
  }

  #page-container .modalClose {
    top: calc(15vh - 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{
    padding: 3vw 0vw;
  }
 #modal1 .modal-red-midashi {
        font-size: 18px;
    }
 #modal1 .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;
	}
	#modal1 .modal-box {
       margin: 15vh auto;
    }
}

/*---------------------------------------------*/
/* 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;
  }
}
