@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
input {
-webkit-appearance: none;
/*webkit系ブラウザのデフォルトスタイル*/
}
a {
	text-decoration: none;
}
img {
	width: 100%;
	vertical-align:bottom;
	border:none;
  display: block;
}
table {
	border-collapse: collapse;
}

.clearfix:after {
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
  	height: 1px;
  	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"] {
	-webkit-appearance: none;
}
body {
	font-family: "Noto Sans JP", sans-serif;
}
main{
	width:100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.sitewideset {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}

header {
  padding: 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section {
  width: 100vw;
}

.section-pink {
  background-color: #feebef;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

header a img {
  height: auto;
}

#logo,#login {
  width: 100%;
}

#top {
  width: 100%;
  height: auto;
}

.top-wrapper {
  width: 100%;
  overflow: hidden;
  max-width: none;
}

.rel {
	position: relative;
  width: 100%;
}

#abs_form_bg {
	position: absolute;
	width: 33.5%;
	top: 25%;
	left: 50%;
  transform: translateX(-50%);
}

#abs_form_wd {
	position: absolute;
	width: 29.1%;
	top: 29%;
	left: 50%;
  transform: translateX(-50%);
}

#top-form {
  position: absolute;
  top: 41%;
  left: 50%;
  width: 33.5%;
  transform: translateX(-50%);
  padding: 2%;
  box-sizing: border-box;
}

/*　ラジオボタン　*/

#radio_group {
  display: flex;
  justify-content:center;
  gap: 4%;
  margin-bottom: 1%;
}

#radio_group #male {
  color: #4DC4CA;
	font-weight:800;
	font-size: 1.8vw;
}

#radio_group #female {
  color: #F9B0C0;
	font-weight:800;
	font-size: 1.8vw;
}

#radio_group input[type="radio"] {
  width: 2vw;
  height: 2vw;
  top: 8%;
  border: 0.25vw solid #aaa;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: white;
  transition: border 0.2s ease-in-out;
}

input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 19%;
  left: 19%;
  width: 1vw;
  height: 1vw;
  background: #F9B0C0;
  border-radius: 50%;
}

/*　アドレス入力　*/

form input[type="email"] {
  width: 100%;
  max-width: 90%;
  padding: 3%;
  margin: -1% auto;
  display: block;
  box-sizing: border-box;
	font-size: 1.3vw;
	border: 3px solid #F9B0C0;
	text-align: center;
}

/*　チェックボックス　*/

#checkbox_group {
  display: flex;
	justify-content: center;
  align-items: center;
  gap: 4%;
  margin: 3% 0 2% 0;
	font-weight:700;
	color: #6c7074;
	width: 100%;
	vertical-align: middle;
}

#checkbox_group a {
	color: #72B8FF;
}

#checkbox_group input[type="checkbox"] {
  appearance: none;
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

#checkbox_group label {
  position: relative;
  padding-left: 6%;
  font-size: min(0.8vw,15.36px);
  display: inline-block;
  cursor: pointer;
	white-space: nowrap;
}

#checkbox_group label::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1.4vw;
  height: 1.4vw;
  border: 0.2vw solid #F9B0C0;
  border-radius: 4px;
  background: white;
  box-sizing: border-box;
}

input[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  top: 37%;
  left: 0.55vw;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5vw;
  height: 1vw;
  border: solid #F9B0C0;
  border-width: 0 0.3vw 0.3vw 0;
}

form input[type="email"]::placeholder {
  color: #cfcbcc;
  opacity: 1;
}

/*　登録ボタン　*/

.send_button {
  background: none;
  border: none;
  cursor: pointer;
	width: 100%;
  margin-top: -1%;
	display: block;
}

/* 使い方STEP */

#howto_img {
  width: 26.4%;
  margin: 4% auto 2% auto;
}

#howto_text {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  font-size: min(1.5vw, 28.8px);
  line-height: 1.4;
  color: #5D5D5D;
  font-weight: bold;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.fast-title {
  text-align: center;
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  font-size: 1vw;
  color: #5D5D5D;
  margin-bottom: 4%;
}

#step_container {
  display: flex;
  justify-content: space-between;
  gap: 6%;
  max-width: 900px;
  width: 46.8%;
  margin: 4% auto;
  text-align: center;
  flex-wrap: nowrap;
}

.step {
  flex: 1;
}

.step img {
  width: 100%;
  max-width: 268px;
  height: auto;
  margin: 0 auto;
}

.step h5 {
  font-size: 1.2vw;
  color: #333;
  margin: 11% 0 0 0;
  font-weight: bold;
  color: #5D5D5D;
  font-family: "ヒラギノ丸ゴ Pro W4","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro";
}

.step p {
  font-size: 1vw;
  color: #5D5D5D;
  margin-top: 11%;
  text-align: left;
  font-family: "ヒラギノ丸ゴ Pro W4","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro";
}

/* ポイント*/

#point_container {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  width: 44%;
  padding: 3% 0 2% 0;
  margin: 0 auto;
  justify-content: center;
}

.point_item {
  position: relative;
  width: 33%;
}

.point_text {
  position: absolute;
  top: 69%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 51%;
  width: 78%;
  color: #5D5D5D;
  font-family: "ヒラギノ丸ゴ Pro W4","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
  text-align: center;
}

.point_text h5 {
  font-size: 1vw;
  font-weight: bold;
  margin-bottom: 1.2em;
  color: #FC538A;
}

.point_text p {
  font-size: 1vw;
  line-height: 1.4;
  text-align: left;
  letter-spacing: -0.05em;
  text-align: justify;
}

.point_item:first-of-type p {
  margin-top: -5%;
}

.point_item:first-of-type h5 {
  margin-top: -4%;
  line-height: 1.3em;
}

/* ご質問 */

.separator {
  position: relative;
  border-bottom: 5px solid #F9B0C0;
  width: 42%;
  margin: 1% auto;
  right: 0;
  left: 0;
}

.separator::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 17%;
  height: 5px; 
  background-color: #57C7CD;
}

.circle-icon {
  min-width: 37px;
  min-height: 37px;
  color: white;
  font-weight: bold;
  font-size: 1.2vw;
  margin: 0 0 2% 6%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.q-icon {
  background-color: #5ccfd4;
}

.a-icon {
  background-color: #F9B0C0;
}

.icon-with-text {
  display: flex;
  align-items: center;
  gap: 8%;
}

.question-text {
  font-size: 1vw;
  color: #5D5D5D;
  font-family: "ヒラギノ丸ゴ Pro W4", "Hiragino Maru Gothic Pro", sans-serif;
  margin-top: -0.9em;
  max-width: 80%;
  margin: 1% 0 3% 0;
}

.q-text {
  font-weight: bold;
}

#sample {
  width: 43%;
  margin: 5% auto;
  left: 0;
  right: 0;
}

/* お問い合わせ */

#inq_img {
  width: 10.8%;
  margin: 4% auto 2% auto;
}

#form_bg {
  width: 34.3%;
  margin: 0 auto;
  left: 0;
  right: 0;
}

/* footer */

#footer-bg {
  background-color: #4DC4CA;
}

#footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

footer{
  text-align: center;
  margin: 3% 0 5% 0;
  font-size: 0.9vw;
}

#footer-left {
  width: 20%;
}
#footer-left img#japhic {
	max-width:98px;
	width:50%;
	margin:0 auto;
	border:solid 4px #FFF;
}

#footer-right {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  white-space: nowrap;
  line-height: 3;
  gap: 10%;
  padding: 0 25% 0 20%;
}

.footer-row {
  display: flex;
  gap: 40px;
}

#footer-right a {
  color: #fff;
/*
  font-size: min(0.885vw, 17px);
*/
  text-decoration: none;
  font-family:"ヒラギノ丸ゴ Pro W4", "Hiragino Maru Gothic Pro", sans-serif;
}

/*サブページタイトル*/

main .new-ltitle {
  width: 100%;
  margin: 6% auto;
  font-size: 1.8vw;
  text-align: center;
  color: #000;
  font-weight: 800;
  font-family: "メイリオ", Meiryo, sans-serif;
}

/* 利用料金 */

main .new-STSTX1 {
  text-align: center;
  font-size: 1vw;
  line-height: 2;
  width: 70%;
  margin: auto;
  font-weight: 300;
  padding-bottom: 5%;
  font-family: "メイリオ", Meiryo, sans-serif;
}

#fee {
  margin-top: 20px;
  padding-bottom: 50px;
}

#fee #new-Rate {
  text-align: center;
  font-size: 1vw;
  color: #000;
  background-color: #F4E3E4;
  width: 16%;
  margin: 0 auto 3% auto;
  line-height: 3;
  font-family: "メイリオ", Meiryo, sans-serif;
}

#fee article {
  border: 1px solid #4dc4ca;
  width: 36%;
  padding: 3%;
  margin: auto;
  position: relative;
  margin-bottom: 3%;
  font-size: 0px;
}

#fee article > * {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  font-size: 1vw;
  font-weight: 300;
  font-family: "メイリオ", Meiryo, sans-serif;
}

#fee article nav li {
  line-height: 2;
  white-space: nowrap;
}

#fee article div {
  text-align: center;
  font-size: 1.8vw;
  color: #f6cfd0;
  font-weight: 800;
  line-height: 1em;
}

#Rateright {
    text-align: right;
}

#Rateright p {
  color: #ff4b33;
}

li {
  list-style: none;
}

/* 年齢認証 */

#new-agc-info {
  font-size: 1vw;
  text-align: center;
  line-height:3;
  font-family: "メイリオ", Meiryo, sans-serif;
}

#new-LicenseRow {
  font-size: 1vw;
  position: relative;
  padding: 4%;
  text-align: center;
  font-family: "メイリオ", Meiryo, sans-serif;
}

#new-LicenseRow p {
  text-align: center;
}

#new-LicenseRow dl {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 20%;
  padding: 2%;
  text-align: center;
}

#new-LicenseRow dl dt {
  width: 100%;
  margin: auto;
}

/*プライバシーポリシー,利用規約*/

.new-PrivacyAR {
  width: 65%;
  font-size: 1.3vw;
  margin: 0 auto;
  font-family: "メイリオ", Meiryo, sans-serif;
}

#new-PrivacyWP {
  width: 80%;
  margin: 0 auto;
}

#new-PrivacyWP dl {
  display: table;
  padding-bottom: 3%;
  border: 1px dotted #999999;
  padding: 2%;
  width: 100%;
}

#new-PrivacyWP dl > * {
  display: table-cell;
  vertical-align: top;
}

#new-PrivacyWP dl dt {
  width: 40%;
  font-size: 1.1vw;
  padding: 0 5% 0 0;
}

/*コミュニティガイドライン*/
.new-PrivacyAR dl dt {
  font-weight: bold;
  margin-top: 6%;
}

/*特定商取引法*/
#new-corp {
  width: 60%;
  margin: 0 auto;
  padding-bottom: 8%;
  font-family: "メイリオ", Meiryo, sans-serif;
}

#new-corp dl {
  display: table;
  border-bottom: 1px dotted #BBBBBB;
  width: 100%;
  padding-top: 2%;
  padding-bottom: 2%;
  font-family: "メイリオ", Meiryo, sans-serif;
}

#new-corp dl dt{
  font-size: 1vw;
  font-weight: bold;
  width: 40%;
}

#new-corp dl dd {
  font-size: 1vw;
  line-height: 1.8;
  padding-left: 3%;
}

#new-corp dl > * {
  display: table-cell;
  vertical-align: top;
}

/*ログイン*/

main form {
  width: 50%;
  margin: 0 auto;
  box-sizing: border-box;
}

.BGyellow {
  background-color: #ffe5eb;
  padding-top: 6%;
  padding-bottom: 6%;
  margin: 0 auto;
  left: 0;
  width: 100%;
  max-width: 700px;
}

#STSLoginWP {
  width: 100%;
  margin: auto;
  display: inline-block;
  padding: 10%;
}

.STSTX1-center {
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
  display: block;
  word-break: break-word;
  box-sizing: border-box;
  padding: 0 2%;
  margin-bottom: 4%;
}

#STSLoginWP dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 15px;
  gap: 10px;
}

#STSLoginWP dl dt {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
}

#STSLoginWP dl dd input {
  background-color: #FFFFFF;
  border: 1px solid #ebebeb;
  width: 105%;
  height: 30px;
  padding: 2px 5px;
  border-radius: 2%;
}

#STSLoginWP p {
  text-align: center;
  font-size: 14px;
  padding-bottom: 35px;
  color: #333;
}

.STSGrenBtn {
  background-color: #a69199;
  height: 50px;
  border: none;
  border-radius: 5px;
  color: #FFF;
  font-size: 18px;
}

#STSLoginWP div input {
  width: 60%;
}

input[type="submit"] {
  -webkit-appearance: none;
}

/*TOPお問い合わせ*/

#new-support {
  background-color: #feebef;
  padding-top: 20px;
  text-align: center;
  width: 100%;
}

#new-support iframe {
  width: 80%;
  margin: auto;
  height: 650px;
}

.new-STSGrenBtn {
  background-color: #a69199;
  height: 50px;
  border: none;
  border-radius: 5px;
  color: #FFF;
  font-size: 18px;
  margin: 0 auto;
}

.new-STSFormStyle {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.new-STSFormStyle div input {
  width: 200px;
}

.new-STSFormStyle dl {
  padding-bottom: 15px;
  font-size: 0px;
}

.new-STSFormStyle dl dd textarea {
    background-color: #FFF;
    width: 80%;
    height: 150px;
    padding: 7px;
    border-radius: 3px;
    border: 0px;
}

.new-STSFormStyle dl dt {
  width: 80%;
  font-size: 15px;
  font-weight: 500;
  padding-top: 10px;
  text-align: left;
  padding-left: 10%;
}

.new-STSFormStyle dl dd {
  font-size: 16px;
  width: 100%; 
}

.new-STSFormStyle dl dd input,
.new-STSFormStyle dl dd select {
  background-color: #FFF;
  width: 80%;
  height: 37px;
  padding: 0% 1%;
  border-radius: 3px;
  border: 0px;
  border-radius: 5px;
}

.new-STSFormStyle div {
    text-align: center;
}

.new-STSFormStyle div input {
    width: 250px;
}

.new-STSGrenBtn {
    display: block;
    margin: 0 auto;
    background-color: #a69199;
    height: 50px;
    border: none;
    border-radius: 5px;
    color: #FFF;
    font-size: 18px;
}


@media (max-width: 900px) {

    header {
      padding: 3%;
    }

    #logo, #login {
      width: 140px;
    }

    .top-wrapper {
      width: 100%;
      overflow: hidden;
    }

    #top {
      width: 225%;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }

    #top-form {
      width: 73%;
      max-width: 100%;
      top: 42%;
    }

    #abs_form_bg {
      width: 74.4%;
      max-width: 100%;
    }

    #abs_form_wd {
      width: 62.2%;
      max-width: 100%;
    }

    #radio_group input[type="radio"] {
      width: 4vw;
      height: 4vw;
      border: 0.5vw solid #aaa;;
    }

    input[type="radio"]:checked::before {
      width: 2vw;
      height: 2vw;
    }

    #radio_group #male,#radio_group #female,input[type="checkbox"]:checked + label::after {
      font-size: 4vw;
    }

    input[type="checkbox"]:checked + label::after {
      border-width: 0 0.6vw 0.6vw 0;
      width: 1.5vw;
      height: 2.5vw;
      left: 0.9vw;
    }

    #checkbox_group label{
      font-size: min(1.78vw,16px);
      padding-left: 6%;
      line-height: 2;
    }

    form input[type="email"] {
      font-size: 3vw;
    }

    #checkbox_group label::before {
      width: 3.6vw;
      height: 3.6vw;
      border: 0.5vw solid #F9B0C0;
    }

  /* 使い方 */

    #howto_img {
      width: 56.4%;
      margin: 8% auto 4% auto;
    }

    #howto_text {
      font-size: min(3.9vw,35px);
      top: 37%;
    }

    .fast-title {
      font-size: 2.6vw;
      margin-bottom: 7%;
    }

    #step_container {
      flex-direction: column;
      align-items: center;
      margin-top: 8%;
    }

    .step {
      max-width: 100%;
      margin-bottom: 20%;
    }

    .step h5 {
      font-size: 3.1vw;
      margin-bottom: 0.9em;
    }

    .step img {
      max-width: 80%;
    }

    .step p {
      font-size: 2.8vw;
      margin-top: 8%;
    } 

  /* ポイント */
    .point {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .point_text {
      top: 68%;
    }
    #point_container {
      width: 100%;
      gap: 2%;
      padding: 8% 0 3% 0;
    }
    .point_item {
      max-width: 900px;
      width: 38%;
      margin-bottom: 2%;
    }
    .point_text h5 {
      font-family: "メイリオ", Meiryo, sans-serif;
      font-size: 3vw;
      font-weight: 700;
    }
  .point_text p {
      font-size: 2.7vw;
    }

  /* ご質問　*/
    .separator {
      position: relative;
      border-bottom: 3px solid #F9B0C0;
      margin: 2% auto;
      width: 75%;
    }
    .separator::before {
      height: 3px;
    }
    .circle-icon {
      min-width: 5vw;
      min-height: 5vw;
      font-size: 2vw;
    }
    .question-text {
      font-size: 2.7vw;
      margin: 2% 0 4% 0;
    }
    #sample {
      width: 82%;
      margin: 8% auto;
    }

  /* お問い合わせ */
    #inq_img {
      width: 23.1%;
    }
    #form_bg {
      width: 73.3%;
    }

  /* footer */

    footer {
      font-size: 1.5vw
    }
    #footer-right a {
      font-size: min(2.7vw, 24px);
    }
    #footer-right {
      width: 65%;
      line-height: 2;
      padding: 0 0 0 15%;
    }
    #footer-flex {
      padding: 4% 0;
    }


  /*プライバシーポリシー,利用規約*/
    main .new-ltitle {
      font-size: 14px;
    }
    .new-PrivacyAR {
    font-size: 12px;
    width: 90%;
    }
    #new-PrivacyWP dl dt {
      font-size: 11px;
    }
  /*特定商取引法*/
    #new-corp {
      width: 90%;
      padding-bottom: 30px;
    }
    #new-corp dl dt {
      font-size: 11px;
      padding: 0 11px 0 0;
    }
    #new-corp dl dd {
      font-size: 11px;
    }
  /*年齢認証,利用料金*/
    main .new-STSTX1 {
      font-size: 12px;
      width: 90%;
    }
  /*年齢認証*/
    #new-agc-info,#new-LicenseRow p {
      font-size: 11px;
    }
    #new-LicenseRow dl dd {
      font-size: 10px;
    }
    #new-LicenseRow dl {
      width: 150px;
    }
  /*利用料金*/
    #fee #new-Rate{
      font-size: 12px;
      width: 100px;
    }
    #fee article {
      width: 90%;
    }
    #fee article > * {
      font-size: 12px;
    }
    #fee article div {
      font-size: 15px;
    }
      .BGyellow {
      width: 95%;
    }
    main form {
      width: 80%;
    }
  }


@media (min-width: 1920px) {
    header {
      padding: 15px;
    }
    form {
      top: 43%;
    }
    #radio_group #male,
    #radio_group #female {
      font-size: 25px;
    }


    /* ラジオボタン */
    #radio_group input[type="radio"] {
      width: 32px;
      height: 32px;
      border-width: 2px;
    }

    input[type="radio"]:checked::before {
      width: 16px;
      height: 16px;
      top: 8px;
      left: 8px;
    }

    form input[type="email"] {
      font-size: 16px;
    }
    #checkbox_group label {
      font-size: 15px;
    }
  /* チェックボックス */
    #checkbox_group label::before {
      width: 24px;
      height: 24px;
      border-width: 2px;
    }

    input[type="checkbox"]:checked + label::after {
      width: 12px;
      height: 18px;
      left: 6px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      border-width: 0 2px 2px 0;
    }


    #howto_img {
      width: 340px;
      margin: 56px auto 38px auto;
    }

    .fast-title {
      font-size: 12px;
      margin-bottom: 51px;
    }

    .step p {
      font-size: 13px;
      width: 262px;
    }

    .step h5 {
      font-size: 15px;
    }
    #step_container {
      gap: 8px;
      width: 100%;
      margin: 47px auto;
    }

  /* ポイント */
    .point_text h5 {
      font-size: 19px;
    }
    .point_text p{
      font-size: 16px;
    }
    .point_text {
      top: 70%;
    }
    #point_container {
      padding: 50px 0 40px 0;
    }

  /* ご質問 */
    .separator {
      width: 900px;
      margin: 25px auto;
    }
    .circle-icon {
      min-width: 50px;
      min-height: 50px;
      font-size: 24px;
    }
    .question-text {
      font-size: 19px;
    }
    #sample {
      width: 900px;
      margin: 110px auto;
    }

    /* お問い合わせ */
    #form_bg {
      width: 660px;
    }
    #inq_img {
      width: 208px;
      margin: 10px auto;
    }
    #howto_text {
      font-size: 21px;
      top: 56px;
    }
      /* footer */
    #logo_white {
      width: 180px;
    }
    #footer-links a {
      font-size: 19px;
    }
    #footer-links {
      gap: 1px 47px;
      line-height: 47px;
    }
    .footer a {
      font-size: 18px;
    }
    footer {
      font-size: 15px;
      margin: 50px 0 60px 0;
    }

  /* 利用料金 */
    main #new-feetitle {
      font-size: 23.04px;
      padding-bottom: 90px;

    }
    #fee article > *,main {
      font-size: 19.2px;
    }
    #fee #new-Rate{
      width: 300px;
      font-size: 19.2px;
      margin:0 auto 60px auto
    }
    #fee article nav li {
      line-height: 50px;
    }
    #fee article {
      width:800px;
      padding: 47px;
      margin-bottom: 60px;
    }
    #fee article div {
      font-size: 34.56px;
    }

  /*年齢認証*/
    .new-TXtyp1{
      font-size: 19.2px;
      width: 900px;
      margin: 0 auto 100px auto;
    }

    #new-autho {
      font-size: 23.04px;
      padding-bottom: 90px;
    }
    #new-agc-info {
      font-size: 19.2px;
    }
    #new-LicenseRow{
      font-size: 28.72px;
      padding: 82px;
      text-align: center;
    }
    #new-LicenseRow p {
      font-size: 26px;
    }
    #new-LicenseRow dl{
      width: 400px;
      padding: 56px;
    }

  /*利用規約*/
    #new-agreement {
      padding: 0 200px;
    }
    #new-agreement dl dt,#new-agreement dl dd {
      font-size: 19.2px;
    }
    #new-agreement dl dd {
      line-height: 58px;
    }

  /*プライバシーポリシー,コミュニティガイドライン*/

    .new-PrivacyAR {
      padding-top: 20px;
      font-size: 23.04px;
      margin-top: 50px;
    }

    main .new-ltitle {
      font-size: 33px;
      margin: 60px auto;
    }
    #new-PrivacyWP dl dt {
      font-size: 18px;
    }

  /*特定商取引法*/
    #new-comp {
      font-size: 23.04px;
      padding-bottom: 90px;
    }
    #new-corp dl dt {
      font-size: 22px;
      width: 500px;
    }
    #new-corp dl dd {
      font-size: 24px;
    }
    #new-corp dl {
      padding-top:25px;
      padding-bottom: 25px;
      }
  /*ログイン*/
    .BGyellow {
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .STSTX1-center {
      margin-bottom: 40px;
    }
}

