@charset "utf-8";
#timer_box02 {
  background: rgb(3, 8, 38);
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  color: var(--white);
}
#timer_box span{
    font-size: 115%;
}
/*==============
hero
===========*/
#hero {
  text-align: center;
  background: rgb(29, 60, 80);
  background: radial-gradient(circle, rgba(29, 60, 80, 1) 0%, rgba(10, 28, 41, 1) 100%);
  color: var(--white);
  padding: 32px 0;
}
#hero p {
  font-size: clamp(1rem, 0.643rem + 1.52vw, 1.5rem);
}
.logo {
  margin: 28px auto 0;
}
.logo img {
  width: 70%;
  max-width: 450px;
}
#hero h1 {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: clamp(1.25rem, 0.357rem + 3.81vw, 2.5rem);
}
#hero h1 span {
  display: block;
  font-size: 140%;
  margin-bottom: -8px;
}
/*================
contents
================*/
.section_title {
  text-align: center;
  background: rgb(29, 60, 80);
  background: radial-gradient(circle, rgba(29, 60, 80, 1) 0%, rgba(10, 28, 41, 1) 100%);
  color: var(--white);
  padding: 40px 0;
  font-size: clamp(1.5rem, 0.786rem + 3.05vw, 2.5rem);
    font-weight: bold;
}
.section_title span{
    display: block;
    font-size: 90%;
    margin-top: 0.5em;
}
.contents_box {
  margin-top: 60px;
  background-color: #1d3c50;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  padding: var(--boxPad);
  color: var(--white);
    position: relative;
}
.contents_box.new::before{
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    left: 3%;
    top:3%;
    background:center / contain url("../images/new.png") no-repeat;
}
@media (min-width:768px){
.contents_box.new::before{
    width: 100px;
    height: 100px;
}    
}
.read_title + .contents_box{
    margin-top: 40px
}
.contents_title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: clamp(1.25rem, 0.714rem + 2.29vw, 2rem);
  line-height: 1.2
}
.contents_title span {
  font-weight: normal;
  font-size: 80%;
}
.contents_img {
  text-align: center;
}
.contents_img img {
  width: 80%;
  max-width: 450px;
}
.mt{
    margin-top: 28px;
}
.contents_text{
    margin-top: 16px;    
}
.contents_text + .text{
    border-top: solid 1px #ccc;padding-top: 28px;
    margin-bottom: 28px;
}
.example{
    background-color: #e7eff5;
    padding: var(--boxPad);
    border-radius: 10px;
    margin-top: 16px;
}
.example span{
    display: block;
    font-size: 90%;
    margin-top: -2px;
}
#contents .caution {
  text-align: right;
  margin-top: 28px;
  font-size: 85%;
  background-color: #eee;
}
.contents_list,#contents .recom_list{
    margin: 28px auto;
    background-color: #eee;
    border-radius: 10px;
    padding: var(--boxPad);
    color: #1c1c1c;
}

.contents_list li{
    padding-left: 1.2rem;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: solid 1px #ccc;
    position: relative;
}
.contents_list li::before{
    content: "▶";
    font-size: 80%;
    position: absolute;
    left: 0;
    top: 3px;
}
#contents .recom_list li::before{
    width: 16px;
    height: 16px;
    
}
.contents_list li:last-child{
    margin-bottom: 0;
}
@media (min-width:768px) {
  .section_title {
    padding: 60px 0;
  }
  .contents_box {
    padding: var(--boxPadPc);
    margin-top: 100px;
  }
    .contents_list{
    margin: 44px auto;
   padding: var(--boxPadPc);
}
}
/*=========
tokuten
==============*/
#tokuten {
  background-color: #eaeaea;
}
.tokuten_box {
  background-color: #fff;
  padding: var(--boxPad);
  border-radius: 10px;
  margin-top: 28px;
  box-shadow: 0 0 5px 0 rgba(200, 200, 200, 0.2);
}
.tokuten_number {
  text-align: center;
  background: rgb(29, 60, 80);
  background: radial-gradient(circle, rgba(29, 60, 80, 1) 0%, rgba(10, 28, 41, 1) 100%);
  color: var(--white);
  padding: 8px;
  font-weight: bold;
}
.tokuten_title {
  margin-top: 12px;
  text-align: center;
  font-size: clamp(1.25rem, 0.714rem + 2.29vw, 2rem);
  font-weight: bold;
  margin-bottom: 20px;
}
.tokuten_title span {
  font-weight: normal;
  font-size: 70%;
  display: block;
  margin-top: -6px;
}
@media (min-width:768px) {
  .tokuten_box {
    padding: var(--boxPadPc);
    margin-top: 60px;
  }
  .tokuten_number {
    font-size: 120%;
  }
}
/*===============
recom
====================*/
#recom {
  background: rgb(29, 60, 80);
  background: radial-gradient(circle, rgba(29, 60, 80, 1) 0%, rgba(10, 28, 41, 1) 100%);
}
#recom .section_title {
  background: transparent;
}
.recom_list {
  padding: var(--boxPad);
  background-color: var(--white);
  border-radius: 10px;
  max-width: 650px;
  margin: 0 auto;
}
.recom_list li {
  padding-left: 1.8rem;
  padding-bottom: 8px;
  margin-bottom: 8px;
  position: relative;
  border-bottom: solid 1px #aaa;
}
.recom_list li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 6px;
  background: center / contain url("../images/check.png") no-repeat;
}
.recom_list li:last-child {
  margin-bottom: 0;
}
@media (min-width:768px) {
  .recom_list {
    padding: var(--boxPadPc);
  }
  .recom_list li {
    font-size: 120%;
  }
}
/*=========
read
============*/
.read_title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.5rem, 0.786rem + 3.05vw, 2.5rem);
  margin-top: 28px;
}
.text {
  margin-top: 28px;
}

.read_img {
  margin: 0 auto;
  text-align: center;
}
#price .read_img img {
  width: 90%;
  max-width: 600px;
}
@media (min-width:768px) {
  .read_title {
    margin-top: 80px;
  }
  .text {
    margin-top: 60px;
  }
  #price .read_img img {
    width: 80%;
  }
}
/*================
price
================*/
#price p {
  margin-top: 28px;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width:768px) {
  #price p {
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 150%;
  }
}
/*=================
cv
===================*/
#cv {
  background: rgb(25, 25, 25);
  background: linear-gradient(10deg, rgba(25, 25, 25, 1) 0%, rgba(47, 47, 47, 1) 50%, rgba(5, 5, 5, 1) 100%);
  color: var(--white);
}
.cv_title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.375rem, 0.56rem + 3.48vw, 2.625rem);
}
.day {
  text-align: center;
  margin-top: 40px;
  color: var(--yellow);
  font-weight: bold;
  font-size: 150%;
}
.cv_top {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 120%;
}
#cv .read_img {
  padding: var(--boxPad);
  background: rgb(83, 83, 83);
  background: radial-gradient(circle, rgba(83, 83, 83, 1) 0%, rgba(51, 51, 51, 1) 100%);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
    margin-top: 28px;
}
.cv_button {}
.cv_button a span {
  display: block;
  font-size: 150%;
}
.cv_button a {
  padding: 8px 0;
  background: rgb(201, 19, 19);
  background: linear-gradient(10deg, rgba(201, 19, 19, 1) 0%, rgba(221, 26, 26, 1) 50%, rgba(205, 36, 8, 1) 100%);
  text-align: center;
  font-weight: bold;
  margin:12px auto 0;
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  border: solid 3px;
  box-shadow: 0 10px 5px 0 rgba(255, 0, 0, 0.5);
  display: block;
  transition: 0.2s all ease-in-out;
}
.cv_button.bank a{
 background: rgb(77,203,55);
background: linear-gradient(0deg, rgba(77,203,55,1) 0%, rgba(30,185,36,1) 50%, rgba(25,182,9,1) 100%);
  box-shadow: 0 10px 5px 0 rgba(25,182,9,1) ;  border: solid 3px;
    
}
.cv_button :hover {
  filter: brightness(130%);
}
.cv_box{
    margin-top: 40px;
    background-color: #fff;
    padding: var(--boxPad);
text-align: center;
}
.cv_box p{
    color: #1c1c1c;
    font-weight: bold;
    font-size: 120%
}
@media (min-width:768px) {
  .day {
    margin-top: 80px;
    font-size: 200%;
  }
.cv_box{
margin-top:80px;
padding:var(--boxPadPc);
}
.cv_box p{
font-size:140%;
}
  .cv_top {
    margin-top: 40px;
    font-size: 150%;
    margin-bottom: 40px;
  }
  .cv_button {
    margin: 20px auto 0;
    font-size: 150%
  }
  .cv_button span {
    display: block;
    font-size: 150%;
  }
}
/*==================
faq
==================*/
#faq {
  background-color: #eaeaea;
}
.qa_box {
  border-radius: 10px;
  background-color: var(--white);
  padding: var(--boxPad);
  margin-top: 28px;
}
.qa_box span {
  font-weight: bold;
  color: var(--white);
  display: inline-block;
  margin-right: 4px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: #0a1c29;
  border-radius: 50vh;
}
.q {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: solid 1px;
}
.a span {
  background-color: #dd1a1a;
}
.a a {
  text-decoration: underline;
  color: var(--linkColor);
}
@media (min-width:768px) {
  .qa_box {
    padding: var(--boxPadPc);
  }
  .qa_box span {
    margin-right: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .q {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
/*==============
footer
================*/
footer.end_footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
footer {
  padding: 32px 0;
  background-color: #333;
  color: #fff;
  text-align: center;
}
.office_name {
  font-size: 22px;
  margin-bottom: 20px;
}
.office_name span {
  display: block;
  font-size: 16px;
}
.footer_link li {
  font-size: 14px;
  padding: 5px 0px;
  border-right: none;
  border-bottom: solid 1px #ccc;
}
.footer_link li:nth-child(1) {
  border-top: solid 1px #ccc;
}
.copyright {
  font-size: 14px;
  margin-top: 16px;
}
@media (min-width:768px) {
  .footer_link {
    display: flex;
    justify-content: center;
    margin: 40px auto;
  }
  .footer_link li {
    border: none;
    padding: 0 12px;
    border-right: solid 1px;
  }
  .footer_link li:nth-child(1) {
    border-top: none;
  }
  .footer_link li:last-child {
    border-right: none;
  }
}

.floating-button {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgb(201, 19, 19);
    background: linear-gradient(10deg, rgba(201, 19, 19, 1) 0%, rgba(221, 26, 26, 1) 50%, rgba(205, 36, 8, 1) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    text-align: center;
    width: 85%;
    max-width: 600px;
transition:0.2s all ease;
}
.floating-button:hover{
    filter: brightness(1.1);
}
.floating-button .small-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.floating-button .large-text {
    font-size: 1.3rem;
}
@media (min-width:768px){
.floating-button .small-text {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.floating-button .large-text {
    font-size: 1.6rem;
}

}

/*-------インフォボックス追加---------------------*/
.info-box{
padding:12px;
border-radius:12px;
box-shadow:0 0px 12px 0 rgba(0,0,0,0.2);
}
.info-title{
text-align:center;
padding:8px;
font-weight:bold;
font-size:22px;
margin-bottom:12px;
}
.info-item{
}
.info-day,.info-index{
padding:8px;
}
.info-day{
font-size:14px;
color:#aaa;
}
.info-index a{
text-decoration: underline;
color:#0066c0;
}
.contents-badg{
background: white;
text-align:center;
color:rgb(201, 19, 19);
font-weight:700;
font-size:min(5vw,24px);
padding:8px;
border-radius:4px;
width: 80%;
    margin: 0 auto 12px;
    max-width: 400px;
}
@media (min-width:768px){
.info-item{
display:flex;
padding:20px;
}
.info-title{
font-size:28px;
}
.info-day{
font-size:16px;
color:#1c1c1c;
}
.info-day,.info-index{
padding:12px;
}
