@charset "utf-8";

/*リセットCSS*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0;}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/*ベース*/

body{
font:14px 'ヒラギノ角ゴPro W3','Hiragino Kaku Gothic Pro','游ゴシック','Yu Gothic','游ゴシック体','YuGothic',メイリオ,Meiryo,sans-serif;
color: #4a4a4a;
background: #FFF;
}

*{
    box-sizing: border-box;
}
 
*:before,
*:after {
    box-sizing: inherit;
}

h1,h2,h3,h4,h5{
font-size:100%;
font-weight: normal;
}

table{
border-collapse: collapse;
font-family: inherit;
}

th,td{
border-collapse: collapse;
}

ul,ol{
list-style-type: none;
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 0;
}

a{
    text-decoration: none;
    color:#4a4a4a;
}

/*SP　ヘッダー*/    

.head_wrap{
    width:100%;
    height:70px;
    padding:10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top_logo{
   width:176px;
   padding:0 20px 0 6px;
}
.top_logo a{
    display: block;
}
.top_logo img{
  width:150px;
  display: block;
}


.lang>.btn{
    line-height: 40px;
    padding:0 10px 0 30px;
    background: url(../img/lang_mono.svg)  left top 10px  / cover no-repeat; 
    background-size:20px 20px;
    margin-right:70px;
}
      
/*SPドロワーメニュー*/
    
.nav-unshown {
  display:none;
}

#nav-open {
  position: relative;
  display: inline-block;
  width: 50px;
  line-height: 12px;
  background:#ce0f69;
  color:#FFF;
  text-align: center;
  font-size:12px;
  padding:32px 0 6px 0;
  border-radius: 6px;
  position: fixed;
  top:6px;
  right:0;
  z-index: 999;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;
  width: 24px;
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}

#nav-open span{
  top:8px;
  right:13px;        
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  bottom:0;
  left: 0;
  right:0;
  width: 100%;
  height: 100%;
  background: #4a4a4a;
  opacity: 0;
  transition: .3s ease-in-out;
}

#nav-content {
  position: fixed;
  top: 0;
  bottom:0;
  left: 0;
  right:0;
  z-index: 9999;
  width:100%;
  height: 100%;
  background: #fff;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
  display: flex;
  flex-direction: column;
}
    
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-input:checked ~ #nav-close {
  display: block;
  opacity: 1;
}


.dd{
    background-color: #FFF;
}  

.dd li{
    padding:10px;
    text-align: left;
}

.dd li a{
    display: block;
}

.menu{
  display: flex;
  justify-content: flex-start;
  flex-direction: column;  
  padding:0;
}
    
.menu>li{
  font-size:15px;
  text-align: center;
  line-height: 20px;
  background: #f0f0f0;
  padding:0;
  margin:10px 20% 10px 10%  ;
}

.menu>li>a{
 display: block;
  padding:20px 0;
  margin:0;
}

.menu>.btn{
  padding:20px 0 10px;    
    }

.lang>.btn{
    position: relative;
}

.lang>.btn>.dd{
    position:absolute;
    top:40px;
    left:0;
    margin:0;
    padding:0;
    width:100px;
    background: #FFF;
    z-index: 9999;
    display: none;
}

.lang>.btn>.dd.open{
    display: block;
}

.lang>.btn>.dd>li>a{
    padding-left:20px;
}

.menu>.btn>.dd{
  display: flex;
  flex-direction: column;
  width:100%;
  background:#f0f0f0;
  display: block;
}

.menu>.btn>.dd>li>a{
 font-size:15px;
 display: block;
 width:100%;
 text-align: center; 
 padding:10px 0;
 line-height: 20px;
}

.menu>.btn>.dd>li:first-child a{
    margin-top:10px;    
}
    
.menu_logo{
    display: block;
}
.menu_logo img{
    width:60%;
    max-width: 180px;
    margin-left:20px;
    }

.menu_close{
  position: fixed;
  top:100px;
  left:0;
  display: inline-block;
  width: 50px;
  line-height: 12px;
  background:#ce0f69;
  color:#FFF;
  text-align: center;
  font-size:12px;
  padding:12px 0 8px 0;
  margin:0;
    }
    
.menu_close span{
  display: inline-block;
  position: relative;
  margin: 0 10px 0 10px;
  padding: 0;
  width: 3px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
}

.menu_close span:before{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 20px;
  height: 3px;
  margin-top: -2px;
  background: #fff;
}        
    
        
/*SP　コンテンツ*/
   
.content{
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width:100%;
}

picture>img{
    display: block;
}

/*SP　SNS*/
.sns{
    display: flex;
    justify-content: center;
    margin:60px auto;
}
    
.sns img{
    width:50px;
    margin-right:30px;
}
    
.sns>p:last-child img{
    margin-right:0;
}


/*SP　フッター、トップへ戻る*/    
#totop{
  width:30px;
 bottom:30px;
 right:20px;
cursor:pointer;
 position:fixed;
}

#totop img{
    width:30px;
    }

#totop a{
  display:block;
  width:30px;
  height:30px; 
}

footer{
    width:100%;
    height:46px;
    text-align: center;
    line-height: 46px;
    background: #f2f2f2;
    color:#ce0f69;
}



    
/*PC*/
@media screen and (min-width:768px){

/*PC ヘッダー、ナビ*/
header{
    width:100%;
    background: #fff;
    }
.head_wrap{
    max-width:960px;
    height: 100px;
    padding:0;
    margin:10px auto;
    justify-content: flex-start;
}
    
nav{
    width:75%;
    display: flex;
    justify-content:flex-end;
    align-items: center;
    }

.top_logo{
    width:180px;
    padding:0;
}

.top_logo a{
    padding:0 0 0 20px;        
    }
    
.top_logo img{
    width:180px;
}

.dd.open{
    display:block;
}    

#nav-drawer{
    width:60%;    
    }
    
.menu{
    width:100%;
    display: flex;
    justify-content: space-around;
    flex-direction:row;
    padding-right: 30px;
}

.menu>li{
    background: #fff;
    margin:0;
}

.menu>.btn>.dd{
    top:60px;
    width:140px;
    background:#fff;
    display: none;
}

.menu>.btn>.dd.open{
    display: block;
}

.menu>.btn>.dd>li>a{
    width:120px;
    text-align: left;
    padding:0 10px;
    background: #FFF;
}
    
.lang{
   width:100px;        
    }
    
.lang>.btn{
    padding:0 40px;
    background: url(../img/lang_mono.svg)  left top 5px / cover no-repeat; 
    background-size:30px 30px;
    margin-right:0;
}

.lang>.btn>.dd>li>a{
    padding-left:30px;
}

header.fixed{
    position:fixed;
    top:0;
    left: 0;
    right:0;
    z-index: 999;
    margin:0 auto;
}

.dd{
    position:absolute;
    top:40px;
    left:0;
    margin:0;
    padding:0;
    width:120px;
    z-index:9999;
    display: none;
}  

#nav-content {
  position: static;
  z-index: 0;
  transition: unset;
  -webkit-transform: none;
  transform: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}    
    
#nav-open,#nav-input,#nav-unshown {
    display:none;
}

.menu_logo,.menu_close{
    display: none;
}

.btn{
    position: relative;
    cursor:pointer;
}
  
.btn:hover{
    color:#ce0f69;
}

nav ul li a:hover{
    color:#ce0f69;
}

.lang>.btn:hover{
   background: url(../img/lang_red.svg)  left top 5px / cover no-repeat; 
   background-size:30px 30px;
}
    


/*PC コンテンツ*/

.content{
    max-width:960px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*PC フッター、トップへ戻る*/
    
#totop{
  width:38px;
 bottom:70px;
 right:50px;
}
    
#totop img{
  width:38px;        
    }
    
#totop a{
  width:38px;
  height:38px; 
}

    
}
    