着うたベース　スタイルシート　button.css 変更後



/* button 

http://www.webdesignerwall.com/demo/css-buttons.html

usage:

html ex:
<div>
  <input class="btn pink" type="btn" value="Input Element" /> 
  <button class="btn pink">btn Tag</btn>
  <span class="btn pink">Span</span> 
  <div class="btn pink">Div</div> 
  <p class="btn pink">P Tag</p> 
  <h3 class="btn pink">H3</h3> 
</div>

color:
  black, gray, orange, red, blue, rosy, green, pink

style
  round, square

size:
  medium, big, exbig

---------------------------------------------- */
.btn {
  display: inline-block;
  zoom: 1; /* zoom and 
display = ie7 hack for display:inline-block */
  *display: inline;
  vertical-align: baseline;
  margin: 1px;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 14px Arial, Helvetica, sans-serif;
  padding: .4em .5em .275em;
  text-shadow: 0 -1px 1px rgba(0,0,0,.3);
  -webkit-border-radius: .5em; 
  -moz-border-radius: .5em;
  border-radius: .5em;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
  box-shadow: 0 1px 2px rgba(0,0,0,.2);

/* white */
  color: #606060;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top,  #fff,  #ededed);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.btn:hover {
  text-decoration: none;

/* white */
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
  background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}

.round {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
.square {
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}
.medium {
  font-size: 20px;
  padding: .4em 1.5em .42em;
}
.big {
  font-weight: bold;
  font-size: 24px;
  padding: .5em 2em .55em;
}
.exbig {
  font-weight: bold;
  font-size: 30px;
  padding: .5em 2em .55em;
}
.wide {
  font-size: 20px;
  padding: .4em 1.5em .42em;
  width:94%;
  margin:0 3% 0 3%;
display:inline;
}

/* color styles 
---------------------------------------------- */

/* commit */
.commit {
  color: #fff;
  border: solid 1px #980c10;
  background: #d81b21;
  background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
  background: -moz-linear-gradient(top,  #ed1c24,  #aa1317);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
.commit:hover {
  color: #eee;
  background: #b61318;
  background: -webkit-gradient(linear, left top, left bottom, from(#c9151b), to(#a11115));
  background: -moz-linear-gradient(top,  #c9151b,  #a11115);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151b', endColorstr='#a11115');
}

/* black */
.black {
  color: #fff;
  border: solid 1px #333;
  background: #333;
  background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#000));
  background: -moz-linear-gradient(top,  #666,  #000);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
}
.black:hover {
  color: #fff;
  background: #000;
  background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
  background: -moz-linear-gradient(top,  #444,  #000);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#000000');
}

/* gray */
.gray {
  color: #fff;
  border: solid 1px #555;
  background: #6e6e6e;
  background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
  background: -moz-linear-gradient(top,  #888,  #575757);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.gray:hover {
  color: #fff;
  background: #616161;
  background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
  background: -moz-linear-gradient(top,  #757575,  #4b4b4b);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}

/* white */
.white {
  color: #606060;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top,  #fff,  #ededed);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.white:hover {
  color: #606060;
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
  background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}

/* orange */
.orange {
  color: #fff;
  border: solid 1px #da7c0c;
  background: #f78d1d;
  background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
  background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
  color: #fff;
  background: #f47c20;
  background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
  background: -moz-linear-gradient(top,  #f88e11,  #f06015);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}

/* red */
.red {
  color: #fff;
  border: solid 1px #980c10;
  background: #d81b21;
  background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
  background: -moz-linear-gradient(top,  #ed1c24,  #aa1317);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
.red:hover {
  color: #eee;
  background: #b61318;
  background: -webkit-gradient(linear, left top, left bottom, from(#c9151b), to(#a11115));
  background: -moz-linear-gradient(top,  #c9151b,  #a11115);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151b', endColorstr='#a11115');
}

/* blue */
.blue {
  color: #fff;
  border: solid 1px #0076a3;
  background: #0095cd;
  background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  background: -moz-linear-gradient(top,  #00adee,  #0078a5);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.blue:hover {
  color: #fff;
  background: #007ead;
  background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
  background: -moz-linear-gradient(top,  #0095cc,  #00678e);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}

/* rosy */
.rosy {
  color: #fff;
  border: solid 1px #b73948;
  background: #da5867;
  background: -webkit-gradient(linear, left top, left bottom, from(#f16c7c), to(#bf404f));
  background: -moz-linear-gradient(top,  #f16c7c,  #bf404f);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f16c7c', endColorstr='#bf404f');
}
.rosy:hover {
  color: #fff;
  background: #ba4b58;
  background: -webkit-gradient(linear, left top, left bottom, from(#cf5d6a), to(#a53845));
  background: -moz-linear-gradient(top,  #cf5d6a,  #a53845);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#cf5d6a', endColorstr='#a53845');
}

/* green */
.green {
  color: #fff;
  border: solid 1px #538312;
  background: #64991e;
  background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
  background: -moz-linear-gradient(top,  #7db72f,  #4e7d0e);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}
.green:hover {
  color: #fff;
  background: #538018;
  background: -webkit-gradient(linear, left top, left bottom, from(#6b9d28), to(#436b0c));
  background: -moz-linear-gradient(top,  #6b9d28,  #436b0c);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b9d28', endColorstr='#436b0c');
}

/* pink */
.pink {
  color: #000;
  border: solid 1px #d2729e;
  background: #f895c2;
  background: -webkit-gradient(linear, left top, left bottom, from(#feb1d3), to(#f171ab));
  background: -moz-linear-gradient(top,  #feb1d3,  #f171ab);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb1d3', endColorstr='#f171ab');
}
.pink:hover {
  color: #000;
  background: #d57ea5;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4aacb), to(#e86ca4));
  background: -moz-linear-gradient(top,  #f4aacb,  #e86ca4);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4aacb', endColorstr='#e86ca4');
}

h1,h2,h3,h4,h5,h6,ul,li{
  margin:0;
  padding:0;
}

.clear{
   clear:both;
}

/*index9*/

.toroku{
  width: 90%;
  margin: 25px auto;
}

.toroku img{
  width:100%;
}

.list_more9 img{
  width:90%;
}

.toroku_freetext {
    width: 100%;
    text-align: left;
    font-size: 10px;
    color: #000000;
    margin-top: -20px;
    margin-left: 80px;
    paint-order: stroke;
    -webkit-text-stroke: 5px #fff;
}

/*-----------------------------
ダウンロードボタン
-----------------------------*/

.download_button{
  height: 30px;
  width: 60%;
  margin: 0 auto;
  background-color: #72c52e;
  background: -webkit-gradient(linear,left top,left bottom, from(#f78eac),  to(#ea6288));
  background: -moz-linear-gradient(top, #f78eac, #ea6288);
  border: solid 1px #ea6288;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #f7acc1 inset;
}

.download_button a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  text-shadow: 0 2px 0 #ea6288;
}


/*-----------------------------
退会確認ボタン
-----------------------------*/

.taikai_no{
  height: 30px;
  width: 60%;
  margin: 0 auto;
  background-color: #091980;
  background: -webkit-gradient(linear,left top,left bottom, from(#8edef8),  to(#091980));
  background: -moz-linear-gradient(top, #8edef8, #091980);
  border: solid 1px #091980;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #509aff inset;
}

.taikai_no a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  text-shadow: 0 2px 0 #091980;
}

.taikai_yes{
  height: 30px;
  width: 60%;
  margin: 0 auto;
  background-color: #850404;
  background: -webkit-gradient(linear,left top,left bottom, from(#f69c66),  to(#850404));
  background: -moz-linear-gradient(top, #f69c66, #850404);
  border: solid 1px #850404;
  border-radius: 10px;
  box-shadow: 0 -1px 2px #ff5050 inset;
}

.taikai_yes a{
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  text-shadow: 0 2px 0 #850404;
}

ul.radius li {
    font-size: 12px;
}
ul.radius p {
    font-size: 12px;
    margin: 0 0 10px 0;
    padding: 0;
}
div.qa {
    margin: 15px 20px 10px 20px;
    font-size: 80%;
}
div.qa h3 {
    color: #000000;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 0px 5px 5px;
    margin: 10px 0px 10px 0px;
    border-left: 5px solid #b3b3b3;
    border-bottom: 1px dashed #b3b3b3;
}







.manage_body{
  padding: 10px;
}

.content_title{
  font-size: 1.2rem;
  padding: 10px 0;
}

/* TABLE detail START */
table.manage_detail {
  width: 320px;
  border: 1px #A3A3A3 solid;
  border-collapse: collapse;
  border-spacing: 0;
}

table.manage_detail th {
  padding: 5px;
  border: #A3A3A3 solid;
  border-width: 0 0 1px 1px;
  background: #E3E3E3;
  font-weight: bold;
  line-height: 120%;
  text-align: right;
  white-space: nowrap; 
}
table.manage_detail th.error {
  padding: 5px;
  border: #A3A3A3 solid;
  border-width: 0 0 1px 1px;
  background: #FF6666;
  font-weight: bold;
  line-height: 120%;
  text-align: right;
  white-space: nowrap; 
}
table.manage_detail td {
  padding: 5px;
  border: 1px #A3A3A3 solid;
  border-width: 0 0 1px 1px;
}

table.manage_detail td.inner {
  text-align:center;
  padding:0;
  border:none;
  white-space:nowrap;
}

/* TABLE detail END */

/* TABLE LIST START */
table.manage_list {
  width: 320px;
  border-color: #A3A3A3;
  border-style: solid;
  border-width: 1px;
  border-collapse: collapse;
  border-spacing: 0;
}

table.manage_list th {
  padding: 3px;
  background: #e3e3e3;
  font-weight: normal;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  border-color: #A3A3A3;
  border-style: solid;
  border-width: 1px;
  text-decoration: none;
}

table.manage_list th a:link,a:visited {
  text-decoration: none;
}

table.manage_list tr:hover td {
  background: #efefef;
}

table.manage_list td {
  padding: 3px;
  border-color: #A3A3A3;
  border-style: solid;
  border-width: 1px;
}

/* TABLE LIST END */
div.pagination {
  padding: 3px;
  margin: 15px;
  text-align:center;
}
 
div.pagination a {
  border: 1px solid #dedfde;
  margin-right:3px;
  padding:6px 9px;
  background-color:#ffffff;
  background-position:bottom;
  text-decoration: none;

  color: #0061de;  
}

div.pagination span {
  margin-right:3px;
  padding:6px 9px;

  background-position:bottom;
  background-color:#ffffff;
  border: 1px solid #dedfde;
  background-image:none;
  background-color:#0061de;
  color: #fff;
}

div.pagination a:hover, div.meneame a:active {
  border: 1px solid #000;
  background-image:none;
  background-color:#0061de;
  color: #fff;
}
.retire_wrap{
  margin: 13px 7px;
  color: #232323;
}

.retire_text{
  font-size: 0.75rem;
}
.attention{
  color: #cc0000;
}

.retire_title{
  text-align: center;
  font-size: 1rem;
  margin: 15px 0 7px;
  padding: 0;
}

.retire_course{
  display: block;
  width: 75%;
  margin: 18px auto;
  padding: 8px 0;
  background: #1857b7;
  border-radius: 5px;
  color: #ffffff;
  font-size: 0.9rem;
  text-align: center;
}

.retire_after{
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.retire_button1,
.retire_button2,
.retire_button3{
  display: block;
  width: 50%;
  margin: 16px auto;
  padding: 8px 0;
  border-radius: 3px;
  font-size: 0.9rem;
  text-align: center;
}
.retire_button1{
  border: solid 2px #d53759;
  color :#d53759;
}
.retire_button2{
  border: solid 2px #d53759;
  color :#d53759;
}
.retire_button3{
  border: solid 2px #911616;
  color :#911616;
}

.reason{
  line-height: 1.5rem;
}

.anke{
  margin: 18px 12px;
  font-size: 0.85rem;
  color: #000000;
}
.anke dt{
  margin-bottom: 6px;
  font-size: 1rem;
}
.anke dd{
  margin: 0 0 12px 7px;
}

/*********************************
form内
*********************************/
.retire_wrap select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  outline: none;
  padding: 4px 9px;
  background: transparent;
  border: solid 1px #606060;
  border-radius: 2px;
}
.retire_wrap input[type="text"],
.retire_wrap textarea{
  border: solid 1px #606060;
}
.retire_wrap input[type="text"]{
  padding: 4px 0;
}

.retire_wrap input[type='radio'],
.retire_wrap input[type='checkbox'] {
  display: none;
}
.retire_wrap input[type='radio'] + label,
.retire_wrap input[type='checkbox'] + label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-right: 10px;
}
.retire_wrap input[type='radio'] + label:before,
.retire_wrap input[type='radio'] + label:after,
.retire_wrap input[type='checkbox'] + label:before,
.retire_wrap input[type='checkbox'] + label:after {
  content: '';
  font-family: helvetica;
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  bottom: 0;
  text-align: center;
  position: absolute;
}
.retire_wrap input[type='radio'] + label:before,
.retire_wrap input[type='checkbox'] + label:before {
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #232323;
  transition: all 0.3s ease-in-out;
}
.retire_wrap input[type='radio'] + label:after,
.retire_wrap input[type='checkbox'] + label:after {
  color: #ffffff;
}
.retire_wrap input[type='radio']:checked + label:before,
.retire_wrap input[type='checkbox']:checked + label:before {
  box-shadow: inset 0 0 0 10px #ab1616;
  border: none;
}
 
/*Radio Specific styles*/
.retire_wrap input[type='radio'] + label:before {
  border-radius: 50%;
}
.retire_wrap input[type='radio']:checked + label:after {
  content: '\2022';
  position: absolute;
  top: 0px;
  font-size: 19px;
  line-height: 18px;
}
 
.retire_wrap input[type='checkbox'] + label:before {
  border-radius: 3px;
}
.retire_wrap input[type='checkbox']:checked + label:after {
  content: "\2713";
  font-size: 14px;
  line-height: 18px;
}/**************************/
/* PHP Rails scaffold.css */
/**************************/

/*
http://predic8.com/iphone-css-layout-theme.htm
http://connecre.com/connelog/connelog00000172.php
*/


/* HTML BASIC START */

body { margin: 0; padding: 0 }

a {
  text-decoration: none;
}
ul{
  list-style: none;
}

.b {font-weight:bold;}

.cWhite {color:#fff;}
.cBlue {color:#00adee;}

.m0 {margin:0;}
.m5 {margin:5px;}
.m10 {margin:10px;}
.mT5 {margin-top:5px;}
.mT10 {margin-top:10px;}
.mB5 {margin-bottom:5px;}
.mB10 {margin-bottom:10px;}
.mL5 {margin-left:5px;}
.mL10 {margin-left:10px;}
.mR5 {margin-right:5px;}
.mR10 {margin-right:10px;}

.p0 {padding:0;}
.p5 {padding:5px;}
.p10 {padding:10px;}
.pT5 {padding-top:5px;}
.pT10 {padding-top:10px;}
.pB5 {padding-bottom:5px;}
.pB10 {padding-bottom:10px;}
.pL5 {padding-left:5px;}
.pL10 {padding-left:10px;}
.pR5 {padding-right:5px;}
.pR10 {padding-right:10px;}

.nb {white-space:nowrap;}

.aL {text-align:left;}
.aC {text-align:center;}
.aR {text-align:right;}

/* HTML BASIC END */

* {
  word-break: break-all;
  -webkit-touch-callout:none;
  -webkit-tap-highlight-color:rgba(255,255,0,0.4);
  -webkit-text-size-adjust:none;
}

body {
  color: #333333;
  font-size: 15px;
  line-height: 1.3;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3"; /* iPhoneバンドル */
  -webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
}


/* clearfix */
.clearfix:after { display: block; clear: both; }

em{ color: #db0000;}

p { margin: 0 0 10px 0; padding: 0; }

form { margin-top: 0px; margin-bottom: 0px; }

h1 {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin: 0 0 15px 0;
  height: auto;
  font-size: 18px;
  font-weight: bold;
  color: #ff69b4;
  padding: 15px 0;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0 0 25px 25px;
  box-shadow: 0 4px 20px rgba(255, 182, 193, 0.3);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

h2{
  text-align: left;
  font-size: 17px;
  margin-left: 12px;
  padding: 8px 0 0 8px;
  margin: 0;
}

.btn-left {
  white-space: nowrap;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  z-index: 10;
}

.btn-left a{
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 2px 8px rgba(244, 114, 182, 0.3);
  border-radius: 20px;
  font: bold 12px Arial;
  text-align: center;
  line-height: 28px;
  color: #ff69b4;
  white-space: nowrap;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(255,192,203,0.3);
  padding: 0 15px;
  text-decoration: none;
  min-width: 30px;
  width: auto !important;
}

.btn-right {
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  padding:7px;
}

.btn-right a{
  background: -moz-linear-gradient(#8aa1bf, #4a6c9b);
  background: -webkit-gradient(linear, 0 0%, 0 100%, from(#8aa1bf), to(#4a6c9b));

  box-shadow: 1px 1px 1px 0px #333 inset;
  text-shadow: 0px -1px 1px #000;
  border-radius: 4px;
  font: bold 12px Arial;
  text-align: center;
  line-height: 28px;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  -webkit-tap-highlight-color: white;
  padding: 8px 5px;
  border: 1px solid #3e444c;
  text-decoration: none;
  min-width: 30px;
}

input[type="checkbox"],
input[type="radio"],
select { display:inline; vertical-align: baseline ;margin-right: 5px ;}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999 ;
}

input[type="text"],
input[type="password"] {
  color: #5a5c63;
  font-size: 100% ;
  width: 100% ;
  padding: 3px ;
}
select {
  color: #5a5c63;
  font-size: 100% ;
  padding: 3px ;
}
textarea {
  color: #5a5c63;
  font-size: 100% ;
  width: 100% ;
  height: 100px ;
  padding: 3px ;
  margin-bottom: 10px ;
}

.detail{
  border-spacing: 0 3px;
  width: 100%;
  padding: 0 10px 0 10px;
  empty-cells:show;
}

.detail th{
  text-align: left;
  border-color:#878787;
  border-style:solid;
  border-width:1px 0 1px 1px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding:0 10px 0 10px;
  background-color: #fff;
  padding: 10px;
}

.detail td{
  border-color:#878787;
  border-style:solid;
  border-width:1px 1px 1px 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #fff;
  
}

.detail input[type="text"],
.detail input[type="password"]
{
  border:0;
}

/* LIST LINK START */
.link {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}
.link li{
  border-color:#878787;
  border-style:solid;
  border-width:1px 0 1px 0;
  background-color: white;
}

.link .arrow,
.link .icon_arrow{
  background-image: url("/images/sp/arrow.png");
  background-position: right center;
  background-repeat: no-repeat;
}

.link .arrow a{
  background: none;
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: black;
}

.link .icon_arrow a{
  background: none;
  padding: 5px 15px;
  display: block;
  width: auto;
  text-decoration: none;
  color: black;
}

.link li .right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}

.link .title{
  padding: 12px 15px;
  display: block;
  width: auto;
  text-decoration: none;
}

.link li .icon{
  background: none;
  padding: 0 10px 0 0;
  width: 35px;
  height: 35px;
  text-decoration: none;
  vertical-align: -12px;
}
/* LIST LINK END */

/* LIST TEXT START */
.text {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}

.text li{
  border-color:#878787;
  border-style:solid;
  border-width:1px 0 1px 0;
  margin-bottom: -2px;
}

.text li .right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}
/* LIST TEXT END */

/* LIST RADIUS START */
.radius {
  font-size: 12pt;
  padding: 0;
  height: auto;
  width: auto;
  list-style: none;
}

.radius li{
  padding: 10px;
  margin:10px;
  border-style:solid;
  border-width: 1px;
  -webkit-border-radius: .5em;
  -moz-border-radius: .5em;
  border-radius: .5em;
}

.radius li .right{
  position:absolute;
  right: 45px;
  text-align: right;
  color: #385487;
  font-weight: normal;
}
/* LIST RADIUS END */

/*テスト共通*/
#top{
  width:100%;
  height:auto;
  background:none;
  margin:0;
  padding:0;
  border:none;
}

/*---------------------------
__footer (可愛くリニューアル版)
---------------------------*/

#footer-base {
	margin: 0;
	padding: 2px 0;
	text-align: center;
	background-color: #ffa9e3;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
        font-size: 13px;
}

#footer-base #footer-nav {
	display: table;
	height: 14px;
	margin: 3px auto 3px;
	padding: 5px;
	width: 97%;
	background-color: #59cfe4;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	color: #FFFFFF;
}

#footer-base #footer-nav a{
        color: #fff;
}

#footer-base small {
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-moz-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
-webkit-text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* フッター外枠（グラスモーフィズム） */
.footer_wrap {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 30px 20px 40px;
  background: rgba(255, 255, 255, 0.4);
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -10px 40px rgba(255, 182, 193, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 1;
}

/* 背景のふんわり発光（疑似要素で実装） */
.footer_wrap::before {
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 150px; height: 150px;
  background: rgba(255, 182, 193, 0.5);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}
.footer_wrap::after {
  content: "";
  position: absolute;
  bottom: 0%; right: -10%;
  width: 150px; height: 150px;
  background: rgba(230, 190, 255, 0.5);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

/* リスト部分（可愛いバッジ風に並べる） */
.footer_list,
#footer-base #footer-nav {
  display: flex !important;
  flex-flow: row wrap !important; /* 折り返しを許可して横幅不足を防ぐ */
  justify-content: center !important; /* 中央にふんわり寄せる */
  align-items: center !important;
  gap: 10px !important; /* ボタンの間に可愛い隙間を作る */
  margin: 0 auto 30px !important;
  padding: 0 !important;
  position: relative;
  z-index: 2;
  width: 100% !important;
}

.footer_list li,
#footer-base #footer-nav li {
  flex: none !important; /* 均等幅を解除し、文字の長さに合わせる */
  margin: 0 !important;
  list-style: none !important;
  text-align: center !important;
}

/* メニューのリンク（文字の長さに合わせたゼリー風ボタン） */
.footer_list a,
#footer-base #footer-nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;

  background: linear-gradient(135deg, rgba(255, 182, 193, 0.9), rgba(255, 105, 180, 0.8));
  color: #ffffff !important;
  font-size: 0.75rem; /* 長い文字も入るように調整 */
  font-weight: bold;
  text-align: center;
  padding: 8px 16px; /* 横長の可愛いカプセル型に */
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  white-space: nowrap !important; /* 文字の縦並び（改行）を強制的に防ぐ */
}

/* ボタンのタップ・ホバーアニメーション */
.footer_list a:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(244, 114, 182, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

#footer {
  position: relative;
  z-index: 2;
  padding: 10px 0;
  text-align: center;
}

/* コピーライトテキスト */
.copy {
  color: #ff69b4;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
}

/* ライセンス情報カード */
.licence {
  display: inline-block;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 20px;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.8;
  text-align: left;
  box-shadow: 0 8px 16px rgba(255, 192, 203, 0.15), inset 0 2px 10px rgba(255, 255, 255, 0.8);
  font-family: monospace;
  font-weight: bold;
}


/*---------------------------
__Q&A
---------------------------*/

.QandA {
	padding:0px 0px 20px 0px;
}

.Question {
	border-bottom:#666 1px dotted;
	padding:10px 10px 15px 10px;
}

.Question {
padding: 10px 10px 15px;
border-bottom-color: rgb(102, 102, 102);
border-bottom-width: 1px;
border-bottom-style: dotted;
}


.container:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background:url(/images/bg.png) center no-repeat;
  background-size:cover;
/*
  background: #facad1;
*/
}

.header{
  width:100%;
  height: auto;
  position:relative;
}

.logo{
  margin:0;
  padding:0;
  width:100%;
  height: auto;
  border: none;
}

.logo img{
  width: 100%;
}

.cont_wrap{
  box-sizing: border-box;
  width: 95%;
  margin: 13px auto 44px;
  padding: 0 12px 10px;
  background: rgba(255,255,255,1);
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0,0,0,.4);
}

.cont_top_title{
  margin: 0 -12px;
  padding:12px 0 12px 10px;
  background: linear-gradient(to right, #f8781c, #ff8f27);
  background: url(/images/title_bg.png) no-repeat center/cover;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
/*
    -webkit-text-stroke: 5px white;
    text-stroke: 5px black;
    paint-order: stroke;
*/
    text-align: center;
}

.cont_list li{
  border-bottom:solid 1px #646464;
}

.cont_list li:last-of-type{
  border-bottom: none;
}

.cont_list li a{
  display: flex;
  align-items: center;
  padding: 13px 12px;
  color: #555555;
}

.cont_img{
  width:40px;
  height: auto;
  padding-right:10px;
}

.cont_text{
  flex: 1 1 70%;
}

.list_title,
.artist,
.tieup{
  display: block;
  line-height: 1;
}
.list_title{
  margin-bottom: 3px;
  color: #313131;
}
.artist{
  font-size: 0.7rem;
}
.tieup{
  margin-top: 6px;
  font-size:0.6rem;
}

.cont_flex{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  margin:0;
  padding:0;
  width: 100%;
}

.cont_flex li{
  width: calc(100% / 3 - 5px);
  text-align: center;
  color: #1a1a1a;
}
.cont_flex li a{
  padding: 12px 5px;
  display: block;
  width: auto;
  text-decoration: none;
  font-size: 0.8rem;
  color: #646464;
}
.flex_img{
  width: 40px;
  height: auto;
  margin:0 auto 7px;
}
.flex_img img,
.cont_img img{
  width: 100%;
  height: auto;
}

.more{
  text-align: center;
  border-top:solid 1px #646464;
}

.more a{
  display: block;
  padding: 11px 0;
  color: #424242;
}

.search_wrap{
  width: 95%;
  margin: 10px auto 0;
}

.searchbox{
  width:80%;
  height:30px;
  border:solid 1px #b1b1b1;
  box-sizing:border-box;
}
.searchbuttom{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  width:20%;
  height:30px;
  line-height30px;
  background:#585858;
  color:#ffffff;
  vertical-align:bottom;
}

.genre_list{
  display: flex;
  flex-flow: row wrap;
  margin: 0;
}

.genre_list li{
  box-sizing: border-box;
  width: calc(100% / 2);
  border-bottom: solid 1px #393939;
}
.genre_list li:nth-of-type(2n+1){
  border-right: solid 1px #393939;
}
.genre_list li:last-of-type,
.genre_list li:nth-last-of-type(2){
  border-bottom: none;
}
.genre_list li a{
  display: block;
  padding: 10px 0;
  color: #393939;
  text-align: center;
}

.cont_title{
  padding:11px 0 11px 10px;
  background: url(/images/title_bg.png) no-repeat center/cover;
  color: #ffffff;
  text-shadow: 0 0 3px #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  text-align: center;
}

.course_list{
  background: #ffffff;
}
.course_list a{
  display: block;
  padding: 9px 5px;
  color: #424242;
  border-bottom: solid 1px #646464;
}

.list_more{
  border-top:solid 1px #646464;
  border-bottom:solid 1px #646464;
}

.list_more a{
  display: block;
  padding: 10px 25px 10px 0;
  color: #646464;
  font-size: 0.9rem;
  text-align: right;
}

/*--------------------------------------
登録画面の説明文設定
--------------------------------------*/
.au,
.docomo,
.softbank{
  padding: 0;
  margin: 10px 0 0 0;
}

.au span{
  color: #EB5505;
  font-size: 24px;
  font-weight: bold;
}

.docomo span{
  color: #C03;
  font-size: 24px;
  font-weight: bold;
}

.softbank span{
  color: #B7BBBE;
  font-size: 24px;
  font-weight: bold;
}
/*トップバナー*/
.banner{
  width:98%;
  margin: 7px auto 10px;
  text-align: center;
}

.banner_button{
  margin: 7px 0;
}

.banner_group{
  display: table;
  table-layout: fixed;
  width: 100%;
}

.banner_group .banner_button2{
  display: table-cell;
  text-align: center;
}



/*--------------------------------------
時節バナー用スライドショー設定
--------------------------------------*/

/* 全体設定 */
.css-carousel-slider3 {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.css-carousel-slider3 img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

/* スライド設定 */
.css-carousel-slider3 .slide-wrap {
    width: 300%;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: 0;
    animation: css-carousel-slider3 15s infinite;
    animation-delay: 2s;
}
.css-carousel-slider3 .slide-wrap-main {
    width: 100%;
    z-index: 1;
    animation: css-carousel-slider-main3 15s infinite;
    animation-delay: 2s;
}
.css-carousel-slider3 .slide {
    width: 100%;
}

/* スライダーアニメーションの設定 */
@keyframes css-carousel-slider3 {
    0% { transform: translateX(0); }

    27.3% { transform: translateX(calc(1 / 3 * -100%)); }
    33.3% { transform: translateX(calc(1 / 3 * -100%)); }

    60.6% { transform: translateX(calc(2 / 3 * -100%)); }
    66.6% { transform: translateX(calc(2 / 3 * -100%)); }

    94% { transform: translateX(calc(3 / 3 * -100%)); }
    100% { transform: translateX(calc(3 / 3 * -100%)); }
}

@keyframes css-carousel-slider-main3 {
    0% { transform: translateX(100%); }
    66.6% { transform: translateX(100%); }
    94% { transform: translateX(0%);}
}



/*---------------------------
新デザイン追加用CSS（Tailwind完全廃止・純粋CSS版）
---------------------------*/
/* 全体の背景を可愛いグラデーションに */
body {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%) !important;
    background-attachment: fixed !important;
}

/* コンテンツの枠をすりガラス（グラスモーフィズム）に */
.cont_wrap,
.course_list {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px 0 rgba(130, 201, 255, 0.1) !important;
    margin-bottom: 20px !important;
    overflow: hidden;
}

/* タイトル帯をゼリーっぽくプルンとさせる */
.cont_top_title,
.cont_title {
    background: linear-gradient(to right, #8ecdff, #d7b3fd) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
    border-radius: 16px 16px 0 0 !important;
    padding: 15px !important;
    text-align: center !important;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(130, 201, 255, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.5) !important;
}

/* リスト（曲一覧など）のデザイン */
.cont_list li {
    border-bottom: 1px dashed #d8dadc !important;
    transition: background-color 0.2s;
}
.cont_list li:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
}
.cont_list li a {
    color: #00547d !important;
}

/* もっと見るボタンなどをゼリーボタン風に */
.more a,
.list_more a {
    display: block;
    background: linear-gradient(to right, #fdb5d3, #ffdad6) !important;
    color: #6a364f !important;
    text-align: center !important;
    border-radius: 20px !important;
    margin: 10px !important;
    padding: 10px !important;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(253, 181, 211, 0.3) !important;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.more a:active,
.list_more a:active {
    transform: scale(0.95);
}

/* 検索ボックスの可愛く */
.searchbox {
    border-radius: 20px 0 0 20px !important;
    border: 1px solid #d7b3fd !important;
    padding: 5px 15px !important;
}
.searchbuttom {
    border-radius: 0 20px 20px 0 !important;
    background: #d7b3fd !important;
    color: white !important;
    font-weight: bold;
}

/* =========================================
   HTML書き換え用：新デザイン独自クラス群
   Tailwind CSSの代替として機能します
   ========================================= */

.app-container {
    background-color: #f7f9fb;
    color: #191c1e;
    min-height: 100vh;
    padding-bottom: 120px; /* ナビゲーションの高さ分確保 */
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.6;
}

.main-content {
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.section-spacing {
    margin-bottom: 40px;
}
.mb-15 {
    margin-bottom: 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #191c1e;
}

.link-all {
    font-size: 12px;
    color: #006494;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.05em;
}

/* 汎用：すりガラス効果（グラスモーフィズム） */
.yume-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* 汎用：ゼリー風ボタン */
.jelly-button {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(130, 201, 255, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.5);
}
.jelly-button:active {
    transform: scale(0.92);
}

/* ユーティリティカラー */
.c-primary { color: #006494; }
.c-secondary { color: #854d67; }
.c-secondary-light { color: rgba(133, 77, 103, 0.4); }
.c-tertiary { color: #6f5092; }
.c-tertiary-light { color: rgba(111, 80, 146, 0.6); }
.c-pink { color: #f9a8d4; }
.c-yellow { color: #facc15; }
.c-sky { color: #38bdf8; }
.c-purple { color: #c084fc; }
.c-orange { color: #fb923c; }
.c-teal { color: #2dd4bf; }
.c-teal-dark { color: #0f766e; }
.c-teal-light { color: rgba(15, 118, 110, 0.7); }
.c-green { color: #4ade80; }
.c-blue { color: #3b82f6; }

/* テキスト装飾 */
.text-glow {
    text-shadow: 0 0 8px rgba(130, 201, 255, 0.6);
}
.item-title {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item-artist {
    font-size: 10px;
    color: #40484f;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item-tieup {
    font-size: 9px;
    color: #006494;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 背景モチーフ */
.floating-motif {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.motif-star {
    top: 80px;
    right: -40px;
    color: rgba(130, 201, 255, 0.3);
    transform: rotate(12deg);
}
.motif-star span {
    font-size: 60px;
}

/* ヒーローバナー */
.hero-section {
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}
.hero-card {
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(130, 201, 255, 0.1);
}
.hero-blur {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}
.blur-1 { top: -40px; right: -40px; background: rgba(253, 181, 211, 0.3); }
.blur-2 { bottom: -40px; left: -40px; background: rgba(130, 201, 255, 0.3); }
.hero-title {
    font-size: 24px;
    color: #006494;
    margin: 0;
}
.hero-desc {
    font-size: 12px;
    color: #40484f;
    font-weight: 500;
}
.hero-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #82c9ff, #fdb5d3);
    border-radius: 999px;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-sizing: border-box;
}

/* スクロールエリア */
.custom-scrollbar::-webkit-scrollbar { display: none; }
.custom-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.horizontal-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px 16px;
}

/* ニュースカード */
.news-card {
    min-width: 140px;
    display: block;
    text-decoration: none;
    color: inherit;
}
.news-thumb {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}
.news-thumb img {
    opacity: 0.5;
    width: 90%;
}
.news-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.news-card:hover .news-play { opacity: 1; }
.news-play span { color: white; font-size: 36px; }

/* 週間ランキング */
.ranking-list {
    border-radius: 12px;
    overflow: hidden;
}
.ranking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}
.ranking-item:last-child { border-bottom: none; }
.ranking-item:hover { background-color: rgba(255, 255, 255, 0.5); }
.rank-num { font-size: 24px; font-weight: bold; font-style: italic; width: 24px; text-align: center; }
.rank-1 { color: #006494; }
.rank-2 { color: #854d67; }
.rank-3 { color: #6f5092; }
.rank-other { color: #94a3b8; }
.rank-thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #82c9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rank-thumb img { width: 32px; }
.rank-info { flex: 1; overflow: hidden; }

/* プレミアムカード系 (特集グリッド・横スクロールなど) */
.premium-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(130, 201, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    display: block;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.category-grid .premium-card {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.category-grid .premium-card:active { transform: scale(0.95); }
.card-thumb {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.card-thumb img { width: 70%; opacity: 0.4; }

.bg-sky { background: rgba(224, 242, 254, 0.5); }
.bg-purple { background: rgba(243, 232, 255, 0.5); }

/* 横長カード */
.card-horizontal {
    min-width: 200px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: opacity 0.2s;
}
.card-horizontal:hover { opacity: 0.8; }
.thumb-sm {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.thumb-sm img { width: 50%; opacity: 0.4; }
.bg-pink { background: rgba(252, 231, 243, 0.5); }
.bg-orange { background: rgba(255, 237, 213, 0.5); }

/* リストスタイル（リラックス特集など） */
.relax-section {
    padding: 32px 24px;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}
.bg-grad-1 { background: linear-gradient(135deg, rgba(215, 179, 253, 0.4), rgba(252, 231, 243, 0.4)); }
.bg-grad-2 { background: linear-gradient(135deg, rgba(220, 252, 231, 0.4), rgba(204, 251, 241, 0.4)); }
.relax-badge {
    position: absolute;
    top: -12px;
    left: -8px;
    background: white;
    padding: 4px 16px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.relax-badge-1 { border: 1px solid rgba(215, 179, 253, 0.5); color: #6f5092; font-size: 12px; font-weight: bold; }
.relax-badge-2 { border: 1px solid #99f6e4; color: #0d9488; font-size: 12px; font-weight: bold; }

.list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s;
}
.list-item:hover { background: rgba(255, 255, 255, 0.8); }
.list-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}
.list-info img {
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

/* カテゴリボタン（Grid 10個用） */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cat-btn {
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.cat-btn:active { transform: scale(0.95); }
.cat-btn span.material-symbols-outlined { transition: transform 0.2s; }
.cat-btn:hover span.material-symbols-outlined { transform: scale(1.1); }
.cat-name { font-size: 12px; font-weight: bold; }

/* 検索フォーム */
.search-section { padding-bottom: 32px; }
.search-form { position: relative; }
.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 16px 48px 16px 24px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
    color: #191c1e;
}
.search-input::placeholder { color: #94a3b8; }
.search-input:focus {
    border-color: #82c9ff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05), 0 0 0 2px rgba(130, 201, 255, 0.3);
}
.search-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #006494;
    cursor: pointer;
    padding: 0;
    display: flex;
}

/* ボトムナビゲーション（純粋CSS版） */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
    height: 80px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -5px 20px rgba(130, 201, 255, 0.15);
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #94a3b8;
    transition: transform 0.2s;
    width: 100%;
}
.nav-item:hover { transform: scale(1.05); }
.nav-item.active {
    color: #0ea5e9;
}
.nav-item.active .material-symbols-outlined {
    background: rgba(224, 242, 254, 0.5);
    border-radius: 999px;
    padding: 6px 16px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}
.nav-text {
    font-size: 10px;
    font-weight: 600;
    margin-top: 4px;
}






/*--------------------------------------
時節バナー用スライドショー設定
--------------------------------------*/
.css-carousel-slider3 {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px; /* 角を丸くする */
    margin: 20px 0;
    background: rgba(255,255,255,0.2);
}

.css-carousel-slider3 img {
    width: 100%;
    height: auto;
    vertical-align: top;
    display: block;
}

.css-carousel-slider3 .slide-wrap {
    width: 300%;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: 0;
    animation: css-carousel-slider3 15s infinite;
    animation-delay: 2s;
}

.css-carousel-slider3 .slide-wrap-main {
    width: 100%;
    position: relative; /* 高さを確保するために重要 */
    z-index: 1;
    animation: css-carousel-slider-main3 15s infinite;
    animation-delay: 2s;
}

.css-carousel-slider3 .slide {
    width: 100%;
}

@keyframes css-carousel-slider3 {
    0% { transform: translateX(0); }
    27.3% { transform: translateX(calc(1 / 3 * -100%)); }
    33.3% { transform: translateX(calc(1 / 3 * -100%)); }
    60.6% { transform: translateX(calc(2 / 3 * -100%)); }
    66.6% { transform: translateX(calc(2 / 3 * -100%)); }
    94% { transform: translateX(calc(3 / 3 * -100%)); }
    100% { transform: translateX(calc(3 / 3 * -100%)); }
}

@keyframes css-carousel-slider-main3 {
    0% { transform: translateX(100%); }
    66.6% { transform: translateX(100%); }
    94% { transform: translateX(0%);}
    100% { transform: translateX(0%);}
}




/* =============================================
   【登録数UP】メインの会員登録ボタンのみに適用
   ============================================= */

/* ボトムナビ以外の場所にある、登録リンクを特定 */
.hero-btn, 
.banner_button a,
.cont_wrap a[href*="regist"] { /* .cont_wrapの中にあるものに限定 */
    
    /* 強制的にオレンジ色へ変更 */
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%) !important;
    color: #fff !important;
    
    /* 視認性を極大化 */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 60px !important;
    border-radius: 999px !important;
    font-size: 20px !important; 
    font-weight: 900 !important;
    text-decoration: none !important;
    border: 3px solid #fff !important;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.4) !important;
    
    /* 動きをつける */
    animation: registration-pulse 1.8s infinite !important;
    margin: 15px auto !important;
    width: 80% !important;
}

/* ボトムナビ(bottom-nav)内の登録ボタンは、元のスタイルを維持するよう除外 */
.bottom-nav a[href*="regist"] {
    background: none !important;
    animation: none !important;
    box-shadow: none !important;
    border: none !important;
    height: auto !important;
    width: 100% !important;
}

/* アニメーションの定義 */
@keyframes registration-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.8);
    }
    70% {
        transform: scale(1.06); 
        box-shadow: 0 0 0 20px rgba(255, 152, 0, 0); 
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}













/* === 新規LPセクション用 CSS（かわいい・ロング版） === */
.lp-custom-area {
    /* パステル系の可愛いカラーリング */
    --lp-primary: #ff8fb8;
    --lp-primary-grad: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 100%);
    --lp-bg-color: #fffafb;
    --lp-text-main: #5c4b51;
    --lp-text-muted: #8b7d82;
    
    font-family: 'Quicksand', 'Noto Sans JP', sans-serif;
    background-color: var(--lp-bg-color);
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 169, 227, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(89, 207, 228, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(255, 239, 185, 0.2) 0%, transparent 40%);
    color: var(--lp-text-main);
    display: flex;
    justify-content: center;
    line-height: 1.6;
    margin: 30px auto;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(255, 169, 227, 0.15);
    border: 4px solid #ffffff;
    max-width: 500px; /* 縦長になるので少し幅にもゆとりを確保 */
    overflow: hidden;
}

.lp-custom-area * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lp-custom-container {
    width: 100%;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
}

/* ヘッダー周り */
.lp-custom-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lp-custom-logo {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ff7ea5 0%, #ff9eb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.lp-custom-subtitle {
    font-size: 0.95rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* 共通タイトル */
.lp-section-title {
    text-align: center;
    font-size: 1.25rem;
    color: var(--lp-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* CTA（ボタン群） */
.lp-custom-cta-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.lp-custom-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    padding: 1rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    position: relative;
    border: none;
}

.lp-btn-primary {
    background: var(--lp-primary-grad) !important;
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(255, 182, 193, 0.6) !important;
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 182, 193, 0.8) !important;
}

.lp-btn-secondary {
    background: #ffffff !important;
    border: 2px solid var(--lp-primary) !important;
    color: var(--lp-primary) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
}

.lp-btn-secondary:hover {
    background: #fff5f8 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 143, 184, 0.2) !important;
}

.lp-custom-btn-text {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
    letter-spacing: 1px;
    display: block;
}

.lp-custom-btn-subtext {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    display: block;
}

/* ABOUTセクション */
.lp-about-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.lp-about-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--lp-text-main);
}
.lp-about-text strong {
    color: var(--lp-primary);
    font-size: 1.05rem;
}

/* FEATURES（3つのポイント）セクション */
.lp-features-section {
    margin-bottom: 3rem;
}

.lp-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 169, 227, 0.1);
    border: 2px dashed #ffc0cb; /* 点線ステッチでクーポン風の可愛さを */
    transition: transform 0.3s ease;
}

.lp-feature-card:hover {
    transform: translateY(-3px);
}

.lp-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.lp-feature-title {
    font-size: 1.1rem;
    color: var(--lp-text-main);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.lp-feature-desc {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

/* ボトムCTA（クロージング） */
.lp-bottom-cta {
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
    padding-top: 1rem;
    border-radius: 0 0 24px 24px;
}

.lp-bottom-title {
    text-align: center;
    font-size: 1.15rem;
    color: var(--lp-text-main);
    margin-bottom: 1rem;
    font-weight: 700;
}
/* === 新規LPセクション用 CSS（ここまで） === */


.lp-top-btn {
  /* --- 1. 配置とサイズ（現状維持） --- */
  display: flex !important; /* blockよりflexの方が文字中央寄せに強い */
  align-items: center;
  justify-content: center;
  position: absolute !important;
  bottom: 4%;
  left: 5%;
  width: 60% !important;
  max-width: 300px !important;
  z-index: 100;
  margin: 0 !important;
  padding: 10px 0 !important;
  text-decoration: none;

  /* --- 2. アニメーションを強制的に再適用 --- */
  /* transform: translateX(-50%) だけだとアニメーションの邪魔をするので書き方を変えます */
  animation: jelly-animation 2s infinite; /* 元のアニメーション名を指定 */
}

/* --- 3. アニメーション中も「中央」を維持するための魔法 --- */
@keyframes jelly-animation {
  0% { transform: translateX(-50%) scale(1.0); }
  50% { transform: translateX(-50%) scale(1.05); }
  100% { transform: translateX(-50%) scale(1.0); }
}