@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');



/****************************************

          RESET

*****************************************/
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}
html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    line-height: 1.7;
    font-family: 'Manrope','Zen Kaku Gothic New', sans-serif;
    background: #ffc939;
    position: relative;
    height: auto;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.07em;
}

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,
ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
}

img {
    border-style: none;
}

footer {
    background: #fff;
    padding: 2.5em 0;
    color: #f8b500;
}


blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    cont
}
[hidden] {
    display: none !important;
}

[disabled] {
    cursor: not-allowed;
}

:focus:not(:focus-visible) {
    outline: none;
}
.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    left: -9999px;
    top: -9999px;
}
p.just {
    text-align: justify;
    text-justify: inter-ideograph;        
}
br.brsp {
    display:none;   
}
@media (max-width: 767px) {
br.brsp {
    display:block;   
}
}
img{
    width: 100%;
}


.sml {
    font-size: 0.85em;
}



.fadeup {
    transition: all .5s ease-out;
    transform: translatey(30px);
    opacity: 0;
   }
 
.loaded .fadeup.started {
      transform: none;
      opacity: 1;
   }



/****************************************
	ビジュアル
*****************************************/


.visual{
   height: 100vh;
    height: 100svh;
    margin: 0;
    position: relative;
    min-height: 40vw;
    padding: 6vh;
}

.visual::before {
    content: '';
    width: 33%;
    height: 30%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(-45deg, #fff, #fff 1px, transparent 0, transparent 20px), repeating-linear-gradient(45deg, #fff, #fff 1px, transparent 0, transparent 20px);
    opacity: 0.4;
}

.visual::after {
    content: '';
    width: 12%;
    height: 65%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -30%;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    background-position: right top;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(-45deg, #fff, #fff 1px, transparent 0, transparent 20px), repeating-linear-gradient(45deg, #fff, #fff 1px, transparent 0, transparent 20px);
}

.visual h1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #f8b500;
    height: 100%;
    margin-left: 0;
    padding: 4vh;
    position: relative;
    transform: scaleX(0);
    transition: 0.4s ease 0.2s;
    transform-origin: left;
    border-radius: 20px;
}

.loaded .visual h1 {
    transform: scaleX(1);
}


.visual h1 .main_visual {
    width: 100%;
    opacity: 0;
    z-index: 10;
    line-height: 0;
    max-width: 106vh;
    min-width: 35vw;
    transition: 0s 1s;
}

.loaded .visual h1 .main_visual {
    opacity: 1;
}

.main_visual_wp {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border: 2px solid;
    top: 3vh;
    left: 3vh;
    pointer-events: none;
    transition: 0.4s ease 0.6s;
    transform-origin: left;
    transform: scaleX(0);
    border-radius: 20px;
}

.loaded .main_visual_wp {
    transform: scale(1);
}

.main_visual_wp > span {
    background: #fff;
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(1);
    transform-origin: right;
    transition: 0.4s ease 1s;
}
.loaded .main_visual_wp > span {
    transform: scaleX(0);
}


.logo_txt:not(:last-child) {
    margin-bottom: 3%;
}

.visual .logo {
    width: 90%;
    margin: 0 auto 5rem;
}

.scroll {
    display: block;
    width: 1px;
    height: 200px;
    position: absolute;
    bottom: -40px;
    right: 7%;
    z-index: 10;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation: logoFade 0.3s ease 1.4s 1 forwards;
    animation: logoFade 0.3s ease 1.4s 1 forwards;
}
.scroll:after {
    content: "";
    position: absolute;
    height: 0;
    width: 1px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    background: #fff;
    -webkit-animation: scroll 2s linear 1.7s infinite;
    animation: scroll 2s linear 1.7s infinite;
}

.scroll::before {
    content: 'scroll';
    position: absolute;
    right: 5px;
    font-size: 1em;
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    line-height: 1;
    writing-mode: vertical-lr;
    font-weight: 500;
}
  @-webkit-keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto; opacity: 1; }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto; }
    54% { height: 100%; bottom: 0; top: auto; }
    100% { height: 0; bottom: 0; top: auto;}
  }
  @keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto; opacity: 1; }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto;}
    54% { height: 100%; bottom: 0; top: auto;}
    100% { height: 0; bottom: 0; top: auto; }
  }


/****************************************
	メニュー
*****************************************/
#gNav {
    position: fixed;
    right: 0;
    color: #f1b000;
    box-sizing: border-box;
    top: 0;
    padding: 0;
    z-index: 999;
    width: 70%;
    height: 100vh;
    transform: translateX(100%);
    transition: 0.5s;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 0.5em 1em #6148001f;
}

#gNav.open {
    transform: none;
}

#gNav .gnavMenu {
    text-align: center;
}

#gNav a {
    text-align: center;
    display: inline-block;
    text-decoration: none;
    margin: 0px auto 25px auto;
    font-size: 21px;
    font-weight: 500;
    width: auto;
    font-family: futura-pt, sans-serif;
}


.gNav_logo {
    width: 45%;
    margin: 0 auto 40px;
    line-height: 0;
    max-width: 250px;
}

#gNav li:last-child a{
    margin: 0 auto 0;
}

.gNavInr{
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

#gNav .menu {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: auto;
}
#gNav .menu li a {
    display: block;
    color: #fff;
    font-size: 1.3vw;
    letter-spacing: 0.05em;
}
#gNav .menu li a.off {
    opacity: 0.5;
    pointer-events: none;    
}


#menuButton {
    display: block;
    width: 45px;
    height: 40px;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 9999;
    border: none;
    text-decoration: none;
    opacity: 1;
}

#menuButton span:first-child { top: 12px;} 
#menuButton span:nth-child(2) { margin-top: -1px; top: 50%;} 
#menuButton span:nth-child(3) { bottom: 12px;} 

#menuButton.active span {
}
#menuButton.active span:first-child { 
	-webkit-transform: translateY(7px) rotate(45deg); 
	transform: translateY(7px) rotate(45deg); 
} 
#menuButton.active span:nth-child(2) { opacity: 0;} 
#menuButton.active span:nth-child(3) { 
	-webkit-transform: translateY(-7px) rotate(-45deg); 
	transform: translateY(-7px) rotate(-45deg); 
} 
#gNav .menu {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 40%;
    margin: 40px auto;
}

#menuButton span { 
	display: block; 
    background: #f8b500;
	width: 30px; 
	height: 2px; 
	position: absolute; 
	left: 10px; 
	-webkit-transition: all 0.4s; 
	transition: all 0.4s; 
} 

#menuButton.active span:first-child { 
	-webkit-transform: translateY(7px) rotate(45deg); 
	transform: translateY(7px) rotate(45deg); 
} 
#menuButton.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
#menuButton.active span:nth-child(3) { 
	-webkit-transform: translateY(-7px) rotate(-45deg); 
	transform: translateY(-7px) rotate(-45deg); 
} 		






.inBox{
    width: 960px;
    margin: auto;
    position: relative;
    max-width: 90%;
    z-index: 1;
}

h2 {
    text-align: center;
    font-size: 120px;
    position: relative;
    line-height: 1;
    z-index: 1;
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    padding: 0 5%;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}


.title_sub {
    font-family: 'Manrope','Zen Kaku Gothic New', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    padding: 0 0.5em;
    font-weight: 600;
}

.attentionList li{
font-size: 0.85em;
    text-indent: -1em;
    margin: 0 0 5px 1em;
}
.attentionList li:last-child {
    margin-bottom: 0;
}

.attentionList li.sml {
    font-size: 0.85em;
}

.copy{
    text-align: center;
    color: #f8b500;
    font-size: 0.7em;
}

.support-link {
    display: block;
    margin: 0 auto 2.5em;
    border: 1px solid;
    width: 300px;
    text-align: center;
    padding: 1.6em;
}
.support-link:hover {
    background: #f8b500;
    color: #fff;
    border-color: #f8b500;
}



/****************************************
	概要
*****************************************/

.contents {
    position: relative;
    padding: 7.5em 0;
}

.contents::before {
  content: '';
  width: 30%;
  height: 20rem;
  display: block;
  position: absolute;
  right: 0;
  top: 13rem;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  background-position: right top;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 1px, transparent 0, transparent 20px), repeating-linear-gradient(45deg, #fff, #fff 1px, transparent 0, transparent 20px);
}

#entry.contents::before {
    top: -200px;
    height: 400px;
    width: 10%;
}

#attention::after {
    content: '';
    width: 10%;
    height: 300px;
    display: block;
    position: absolute;
    left: 0;
    top: 195px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 1px, transparent 0, transparent 20px), repeating-linear-gradient(45deg, #fff, #fff 1px, transparent 0, transparent 20px);
}


#entry.contents {
    background: #f8b500;
}

.detailArea {
    background-position: top;
    background-size: auto;
    overflow: hidden;
}


.detailBox{
    color: #fff;
}

.detailBox:last-child {
    margin-bottom: 0;
}

.detailBox_inner {
    margin-bottom: 100px;
    position: relative;
}

.detailBox_inner:last-child {
    margin-bottom: 0;
}

.detailBox_inner::before {
    content: '';
    width: 720px;
    height: 100%;
    background: #002e67;
    display: block;
    position: absolute;
    bottom: 50px;
    right: -200px;
    border-radius: 400px 400px 0 0;
    z-index: -1;
    pointer-events: none;
}

.general_box {
    position: relative;
    padding: 6.5em 0;
}

.general_box:last-child {
margin-bottom: 0;
    padding-bottom: 0;
}

.general_box:first-child {
    padding-top: 3.5em;
}

.general_box_tit {
    text-align: center;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 2em;
    letter-spacing: 0.5em;
    text-indent: 0.45em;
}

.general_box_tit::after {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    border-bottom: 3px solid;
    border-right: 3px solid;
    margin: 0.3em auto 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.general_txt {
    font-size: 1.4em;
    margin-bottom: 0.6em;
    text-align: center;
    font-weight: 600;
}

.general_txt:last-child {
    margin-bottom: 0;
}



.general_box.judging::before {
    content: '';
    display: block;
    width: 75%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #f8b500;
    z-index: -1;
}

.general_box.step_box::before {
    content: '';
    display: block;
    width: 75%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.2;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(-45deg, #fff, #fff 1px, transparent 0, transparent 20px), repeating-linear-gradient(45deg, #fff, #fff 1px, transparent 0, transparent 20px);
}
.judging_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.judging_list > li {
    background: #fff;
    color: #f8b500;
    text-align: center;
    width: 31%;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0.5em 1em #6148001f;
}
.judging_list > li::before {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    position: absolute;
    top: calc(50% - 1em);
    right: 1rem;
    border-right: 2px solid #f8b500;
    border-top: 2px solid #f8b500;
    transform: rotate(45deg);
    pointer-events: none;
}

.judging_list > li:last-child::before {
    display: none;
}


.judging_box {
    padding: 1.2em;
}

.judging_day {
    background: #fff8e4;
    padding: 0.5em;
}

.judging_step {
    font-weight: 600;
    font-size: 1.3em;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
    border-bottom: 2px dashed;
    padding-bottom: 0.8em;
}

.judging_img {
    line-height: 0;
    width: 60%;
    margin: 0 auto 0.5em;
}



.general_txt.large_txt {
    font-size: 2.2em;
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.general_txt.large_txt .sml {
    font-size: 0.5em;
}


.period {
    margin: 0 auto;
}

.period_txt {
    display: inline-block;
    background-color: #ffc939;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    position: relative;
    font-size: 3.9em;
    padding: 0 0.1em 0 0.1em;
    letter-spacing: 0.02em;
    margin-bottom: 0.3em;
}

.period_txt:last-child {
    margin-left: 2.1em;
    font-size: 4.5em;
    margin-bottom: 0;
    position: relative;
}

.period_txt .sml {
    font-size: 0.6em;
    letter-spacing: 0;
}

.period_txt:last-child::before {
    content: '';
    display: block;
    width: 1.8em;
    height: 115%;
    position: absolute;
    left: -1.8em;
    bottom: 0;
    background: url(/static/ske48/fansite/feature/12th_audition/img/bg_arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
}


.step_box .general_txt {
    margin-bottom: 2em;
}

.step_list {
    max-width: 800px;
    margin: 0 auto;
}

.step_list > li {
    background: #fff;
    color: #f1b000;
    text-align: center;
    padding: 3em;
    position: relative;
    margin-bottom: 3em;
    border-radius: 2rem;
    box-shadow: 0 0.5em 1em #6148001f;
}
.step_list > li::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0.3em auto 0;
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
}

.step_list > li:last-child {
    margin-bottom: 0;
}

.step_list > li:last-child::before {
    display: none;
}

.step_num {
    position: absolute;
    top: 0;
    left: 0.1em;
    font-size: 6em;
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1;
}

.step_num span {
    font-size: 0.4em;
    letter-spacing: -0.4em;
    margin-left: 0.1em;
}


.step_list_txt {
    font-size: 1.2em;
    margin-bottom: 1.2em;
    font-weight: 600;
}

.step_list_txt:last-child {
    margin-bottom: 0;
}

.step_list_txt .sml {
    line-height: 1.6;
    display: inline-block;
    font-size: 0.8em;
}

.step_img {
    width: 75%;
    line-height: 0;
    margin: 0 auto 1.2em;
}


.detail_txt {
    font-size: 15px;
    margin-top: 30px;
    text-align: center;
}


.detailBox_tit {
    margin-bottom: 15px;
    position: relative;
    width: 70%;
    line-height: 0;
}



.link{
    color: #f8bb00;
    font-size: 12px;
}
.link:hover{
transition: 0.4s;
    opacity: 0.7;
}


.btn a {
    max-width: 400px;
    color: #fff;
    padding: 20px 0;
    display: block;
    box-sizing: border-box;
    font-weight: bold;
    margin: 0 auto;
    background: #f72c2c;
    font-size: 30px;
    border-radius: 10rem;
    box-shadow: 0 0.5em 1em #6148001f;
    position: relative;
}

.btn a .entry {
    font-size: 0.6em;
    font-weight: bold;
}

.btn a:hover {
    box-shadow: 0 0.5em 1em #61480059;
    background: #fff;
    color: #f72c2c;
}

.btn a::before {
    content: '';
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    border-top: 2px solid;
    border-right: 2px solid;
    position: absolute;
    right: 3rem;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
}

.btn.hide a {
    background: #a4a4a4;
    color: #dedede;
    pointer-events: none;
}


.btn_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.btn_list > li {
    width: 47%;
    margin: 0 10px 20px;
}

.btn_list > li .btn a {
    max-width: none;
}

.attentionList li a {
    text-decoration: underline;
}

.popup {
    color: #484848;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    padding: 4em;
    max-width: 800px;
}

.popup .section-tit {
    text-align: center;
    margin-bottom: 3em;
    font-size: 1.05em;
    font-family: 'Manrope','Zen Kaku Gothic New', sans-serif;
}

.list--support dt {
    border-bottom: 1px solid;
    margin-bottom: 0.5em;
}

.list--support dd {
    margin-bottom: 2em;
    font-size: 0.9em;
}

.list--support dd a {
    text-decoration: underline;
}

.list--support dd:last-child {
    margin-bottom: 0;
}


/****************************************

	PC

*****************************************/

@media screen and (min-width: 960px) {
.sp{
    display:none!important;  
}

body::before {
    display: none;
}

#menuButton {
    display: none;
}

#gNav {
    transform: translateY(-140%);
    width: auto;
    height: auto !important;
    padding: 1.5em 3em;
    box-shadow: 0 0.5em 1em #6148001f;
    transition-delay: 1.3s;
    top: 2rem;
    /*right: 2rem;*/
    border-radius: 7rem 0 0 7rem;
}

.loaded #gNav {
    transform: none;
}

#gNav .gnavMenu {
    text-align: left;
    display: flex;
}

#gNav .gnavMenu .entry {
  font-size: 0.6em;
  font-weight: bold;
}

#gNav .gnavMenu li:not(:last-child) {
    margin-right: 1.5em;
}

#gNav a {
    font-size: 1.3em;
    margin: 0;
  }

#gNav a.entry_btn {
    background: #f72c2c;
    color: #fff;
    padding: 0.1em 0.8em;
    border-radius: 20px;
}

}





/****************************************

	SP

*****************************************/

@media screen and (max-width: 960px) {

#gNav {
  width: 90%;
  height: 7vh;
  border-radius: 5rem 0 0 5rem;
  margin: 5% 0;
}

#gNav .gnavMenu {
  display: flex;
  justify-content: center;
}

#gNav .gnavMenu li {
  width: 30%;
}

#gNav a {
  margin: 0px auto;
  padding: 10px 0;
}

#gNav a .entry {
    font-size: 12px;
}

#gNav a.entry_btn {
    background: #f72c2c;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 17px;
}

html {
    font-size: 8px;
}

.pc{
    display:none!important;  
}

.btn a {
    max-width: 325px;
    font-size: 30px;
    padding: 10px 0;
}

/****************************************
	ビジュアル
*****************************************/


/*
body::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    background: #fff;
    z-index: 10;
    top: 0;
    right: 0;
}
*/



.visual {
    min-height: auto;
    padding: 4vh 5.5vh 5.5vh 4vh;
    margin-top: 10vh;
    height: 90svh;
}
.visual .logo {
position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 55vh;
    margin: 0 auto;
}
.visual h1 {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.visual h1 .main_visual {
    width: 100%;
}


.visual::before {
    height: 19%;
    top: 11%;
}

.visual::after {
    width: 25%;
    height: 55%;
}
.main_visual_wp {
    top: 1.5vh;
    left: 1.5vh;
}

.scroll {
    display: block;
    position: absolute;
    bottom: 0%;
    left: 50%;
    height: 15%;
}

.scroll::before {
    width: 80px;
    text-align: center;
    right: -40px;
    top: -30px;
    writing-mode: lr;
}


h2 {
    font-size: 55px;
    margin-bottom: 0.5rem;
}

.title_sub {
    font-size: 12px;
    padding: 0;
}


.inBox {
    width: 88%;
    margin: auto;
    box-sizing: border-box;
}

.contents {
    padding: 50px 0;
}

.contents::before {
    top: 138px;
    height: 65px;
    width: 25%;
}

.attentionList li {
    font-size: 11px;
}

.general_box_tit {
    margin-bottom: 1.8em;
}

.general_box {
    position: relative;
    padding: 3.5em 0;
}

.general_box.judging::before {
    width: 85%;
}

.judging_list > li {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2em;
}

.judging_list > li::before {
    display: none;
}

.judging_img {
    width: 48%;
}

.judging_desc {
    font-size: 1.1em;
}

.judging_step {
    border-width: 1px;
}

#entry.contents::before {
    height: 200px;
    top: -100px;
}

.period_txt {
    font-size: 7vw;
}

.period_txt:last-child {
    font-size: 7.1vw;
    margin-left: 1.3em;
}
.period_txt:last-child::before {
    width: 1.2em;
    left: -1.1em;
    bottom: -0.2em;
}

.step_num {
    font-size: 3.5em;
}

.step_list > li {
    padding: 4em 1.5em 3em;
    margin-bottom: 2em;
}

.step_img {
    width: 95%;
    max-width: 400px;
}

#attention::after {
    top: -85px;
    height: 180px;
    width: 13%;
}


.cs {
    font-size: 18px;
}


.link:hover{
opacity: 1;
}

.copy {
    text-align: center;
    font-size: 10px;
}

.popup {
    padding: 1.8em;
    font-size: 1em;
}

.popup .section-tit {
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.list--support dd {
    margin-bottom: 1.5em;
}

.list--support dt {
    font-size: 0.98em;
}

}



@media screen and (max-width: 960px) and (min-width: 500px) {

html {
    font-size: 11px;
}

}

#colorbox, #cboxOverlay, #cboxWrapper, #cboxContent {
    overflow: visible !important;
}

#cboxOverlay {
    background: rgb(0 0 0) !important;
}

#cboxLoadedContent {
    margin: 0;
}
