@charset "UTF-8";

/* =================================
利用規約 /terms/
================================== */

/* tab */

.terms_nav{
  display: flex;
  justify-content: space-between;
  padding: 2em 0;
  margin: auto;
  max-width: 30em;
}
.terms_nav li{
  position: relative;
  display: block;
  width: 50%;
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  padding: .7em 0;
  cursor: pointer;
  transition: color .3s;
}
.terms_nav li::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--c-gold);
  transition: width .1s ease;
}
.terms_nav li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 96%;
  height: 1px;
  background-color: var(--color-grey-txt);
  transition: width .1s ease;
  z-index: -1;
}

.terms_nav li:hover{
  color: var(--c-gold);
}
.terms_nav li:hover::before{
  width: 100%;
}
@media (min-width: 769px) {
  .terms_nav{
    max-width: 20em;
  }
}/*  */


.terms_ttl{
  font-size: 2.2em;
  font-weight: 500;
  text-align: center;
  padding: 1em 0 .4em;
  border-bottom: 1px solid var(--c-grey-txt);
  margin-bottom: .3em;
}

.terms_sec{
  padding: 1.2em 0;
}
.terms_sec_ttl{
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .3em 0;
}
.terms_sec_ttl .line1{
  display: block;
  font-size: .8em;
  margin-bottom: .3em;
}
.terms_sec_ttl .line2{
  letter-spacing: .02em;
}
.terms_sec p,
.terms_ul,
.terms_ol {
  font-size: 1.1rem;
  line-height: 1.6;
  padding: .5em 0;
}
.terms_ul,
.terms_ol{
  padding-left: 1.2em;
  /* font-family: "ZenKakuGothicNew",sans-serif; */
}
.terms_ul li,
.terms_ol li{
  padding: .3em 0;
}
.terms_ul > li{
  list-style: disc;
}
.terms_ol > li{
  list-style: inherit;
}
.terms_ol .terms_ul li{
  padding: .2em 0;
}
li.no_list{
  font-weight: 500;
  list-style: none;
  margin-left: -1.2em;
  margin-bottom: .2em;
}
.terms_sec a{
  font-weight: 500;
  text-decoration: underline;
}


/* =================================
/howto/
================================== */
.howto_page .link-branch-box{
  margin: 2em auto;
}
.howto_sec_ttl {
  font-family: var(--font-comp);
  text-align: center;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 1em;
}
.howto_sec_ttl span {
  display: block;
}
.howto_sec_ttl .en {
  font-size: 1.2em;
  letter-spacing: 0.1em;
  color: var(--c-gold);
}
.howto_sec_ttl .ja {
  font-size: 2.2em;
  letter-spacing: .01em;
  line-height: 1.4;
  font-weight: bold;
}

.howto_list{
  padding:1em 0;
}
.howto_list_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  margin-bottom: 4.5em;
  position: relative;
  align-items: center;
}
.howto_list_box:after {
  position: absolute;
  bottom: -1.55em;
  left: 50%;
  transform: translate(-50%, -0%);
  font-family: fontAwesome;
  content: '\f107';
  font-size: 3rem;
}
.howto_list_box:last-child{margin-bottom:0;}
.howto_list_box:last-child:after{content:none;}
/* .danceprice-flow-wrap .img{width:42%;} */

.howto_txt{
  width: 48%;
  font-size: 1.1em;;
  padding: 0 0 1em;
}
.howto_img {
  width: 48%;
  margin: 0;
  overflow: hidden;
  background: #cccccc;
  border-radius: .6em .6em 0 0;
}
.howto_img img {
  display: block;
  object-fit: cover;
  object-position: center top;
  width: 90%;
  aspect-ratio: 1 / 1.5;
  margin: 5% auto 1px;
}
.howto_num{
  display: block;
  font-size: 3em;
  text-align: center;
  line-height: 1.4;
  color: var(--c-gold);
}
.underline{
  text-decoration: underline;
}

.next_month{
  display: block;
  font-size: .95em;
  padding: 1.5em; 
  border: 1px solid var(--c-red); 
  margin: 2em auto 3em;
}

.cancel {
  width: 100%;
  color: var(--c-red);
  line-height: 1.7;
  max-width: 60rem;
  margin: 2em auto;
}
.or {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  margin: 1em 0;
}

@media (min-width: 769px) {  
  .howto_sec_ttl .ja {
    font-size: 2.4em;
    margin-bottom: .5em;
  }
  .howto_list_box{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 5em;
  }
  .howto_txt{
    width: 50%;
    font-size: 1.2em;
    padding: 1em 0 2em;
  }
  .howto_img {
    width: 44%;
    margin: 0;
    overflow: hidden;
    background: #cccccc;
    border-radius: .6em .6em 0 0;
  }

  .next_month {
    font-size: 0.9em;
    padding: 2em 4em;
    margin: 2em auto 4em;
  }
}/*  */