@charset "UTF-8";

body {
    font-family: var(--main-font);
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height:2;
    }
body.no-scroll {
    overflow: hidden;
    height: 100%; /* bodyが100%の高さを取る */
    } 
@media (max-width: 768px) {
body {
    font-size: 14px;
    line-height:1.8;
}
}
@media (max-width: 599px) {
body {
    font-size: 14px;
    line-height: 1.5;
}
}

:root {
    --main-font: 'M PLUS 1p', sans-serif;
    --sub-font: 'Outfit', sans-serif;
    --black: #111111;
    --white: #ffffff;
    --blue: #0E2788;
    --blue-gradient-btn: linear-gradient(200deg, #020A5F 0%, #1F51C4 75%);
   }

.common_inner{
    max-width: 1000px;
    width:90%;
    margin:0 auto;
}
.common_inner_1280{
    max-width: 1280px;
    width:90%;
    margin:0 auto;
}
.common_inner_720{
    max-width: 720px;
    width:90%;
    margin:0 auto;
}

h2,h3,h4{
    line-height: 1;
}

a.common_link,
button.common,
button.irregular{
    text-align: center;
    background: transparent;
    color: white;
    border: 1px solid white;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.6s ease-in-out, color 0.6s ease-in-out;
    padding: 8px 0;
    display: block;
    font-family: var(--sub-font);
    line-height: 1;
}
/*--------------------
一般link
--------------------*/
/* hover時変化 */
a.common_link:hover{
  background-color: white;
  color: var(--blue);
  opacity: 1;
}

/*--------------------
一般button
--------------------*/
/*button.common:hover{
  background-color: white;
  color: var(--blue);
  opacity: 1;
}*/
/*--------------------
イレギュラーbutton
--------------------*/
button.irregular:hover{
  background-color: white;
  color: var(--blue);
}
a:hover button.irregular{
  background-color: white;
  color: var(--blue);
}


@media (max-width: 768px) {
button.width_85{
    padding: 4px 0;
}
}
@media (max-width: 599px) {
a.common_link, button.common, button.irregular {
    font-size: 12px;
    }
button.width_85{
    padding: 2px 0;
    font-size:12px;
}
}  



.width_150{
    width: 150px;
}
.width_94{
    width: 94px;
}
.width_85{
    width: 85px;
}
@media (max-width: 768px) {
.width_85{
    width: 64px;
}
}
@media (max-width: 599px) {
.width_150{
    width: 100px;
}
 .width_85{
    width: 50px;
}   
}

/* fade-in
**********************************************/
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease; /* 時間を1.2秒に変更 */

 
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);

    
}



/* リンク設定
**********************************************/
a {
    text-decoration: none;
}
a img,
a {
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -ms-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
}
a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}
/* テキスト設定
**********************************************/
h2 {
      
}
h3 {
    
}
h4 {
   
}
h5 {
    
}
p {
    
}


/* display設定
**********************************************/



/*--- デバイス別表示指定 ---*/
.pc_on {display: block;}
.pcTab_on {display: block;}
.tab_on {display: none;}
.tabSmp_on {display: none;}
.smp_on {display: none;}
.pcSmp_on {display: block;}
@media screen and (min-width: 599px) and (max-width: 768px) {
.pc_on {display: none;}
.pcTab_on {display: block;}
.tab_on {display: block;}
.tabSmp_on {display: block;}
.smp_on {display: none;}
.pcSmp_on {display: none;}
}
@media screen and (max-width: 599px) {
/*--- デバイス別表示指定 ---*/
.pc_on {display: none;}
.pcTab_on {display: none;}
.tab_on {display: none;}
.tabSmp_on {display: block;}
.smp_on {display: block;}
.pcSmp_on {display: block;}
}
