@charset "UTF-8";
/* CSS Document */


/*-----------
base
-----------*/

*{
  margin:0;
  padding:0;
  border:none;
}

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;
}

h1, h2, h3, h4, h5, h6{
  font-weight:normal;
}

section, nav, article, aside, hgroup, header, footer, figure, figcaption, summary, small{
  display: block;
}

img{
  vertical-align: top;
}

ul{
  list-style: none;
}

a {
  backface-visibility: hidden;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: #e50113;
}

a:focus, *:focus { outline:none; }

a:hover {
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}

*#wrapper{
  font-family:"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color:#000;
  -webkit-text-size-adjust:100%;
}


#wrapper .pc_nobr{
display: none;
}

#wrapper .sp_nobr{
}

#wrapper .pc_no{
display: none;
}

#wrapper .sp_no{
}

#wrapper .inner,
#wrapper .inner2{
  width: 1000px;
  margin: 0 auto;
  position: relative;
}



/*-----------
header
-----------*/

#header{
  width: 100%;
  min-width: 1000px;
  height: 72px;
  background: #fff;
}

#header .inner,
#fix_header .inner{
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

#header .ajk_logo,
#fix_header .ajk_logo{
  width: 134px;
  margin: 0 30px 0 0;
}

#header .ajk_logo img,
#fix_header .ajk_logo img{
  width: 100%;
  display: block;
}

#header .list_ec,
#fix_header .list_ec{
  position: absolute;
  top: 0;
  right: 65px;
  height: 49px;
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0 0;
}

#header .list_ec li,
#fix_header .list_ec li{
  margin-left: 28px;
}

#header .list_ec li:nth-child(3),
#fix_header .list_ec li:nth-child(3),
#header .list_ec li:nth-child(4),
#fix_header .list_ec li:nth-child(4){
  margin-left: 20px;
}

#header .list_ec img,
#fix_header .list_ec img{
  height: 49px;
}

#header .list_btn,
#fix_header .list_btn{
  display: flex;
  flex-wrap: wrap;
  float: right;
  padding: 9px 0 0;
}

#header .list_btn li,
#fix_header .list_btn li{
  width: 160px;
  margin-left: 10px;
}

#header .list_btn img,
#fix_header .list_btn img{
  height: 54px;
}

.global-nav {
  position: fixed;
  right: -320px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  background-color: #404040;
  color: #fff;
  transition: all .6s;
  z-index: 10003;
}


.hamburger {
  width: 40px;
  height: 72px;
  cursor: pointer;
  z-index: 300;
  position: absolute;
  right: 0;
  top: 0;
}

.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  overflow: auto;
}
.global-nav__list li:first-child {
   margin-top: 80px;
}
.global-nav__list li:last-child {
   margin-bottom: 120px;
}
.global-nav__item {
  padding: 0 30px 10px;
}

.global-nav__item:nth-child(3),
.global-nav__item:nth-child(4),
.global-nav__item:nth-child(5){
  padding: 0 30px 20px;
}
.global-nav__item a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
}
.global-nav__item a img {
  width: 100%;
}

.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e50113;
  border-radius: 2px;
}
.hamburger__line--1 {
  transition: all .6s;
  top: 20px;
}
.hamburger__line--2 {
  top: 34px;
}
.hamburger__line--3 {
  transition: all .6s;
  top: 48px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10001;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

/* 表示された時用のCSS */

.nav-open .global-nav {
  right: 0;
}

.nav-open .black-bg {
  opacity: .5;
  visibility: visible;
}

.nav-open #header .hamburger,
.nav-open #fix_header .hamburger{
  position: fixed;
  right:20px;
  top: 10px;
  z-index: 1000000;
  margin-top: 0;
  height: 53px;
  padding: 0 2px 2px;
}


.nav-open #header .hamburger .hamburger__line,
.nav-open #fix_header .hamburger .hamburger__line{
  background-color: #fff;
}

.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 24px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 24px;
}


/*-----------
fix_header
-----------*/

#fix_header{
  width: 100%;
  min-width: 1000px;
  height: 72px;
  top: -72px;
  left: 0;
  background: rgba(255,255,255,0.9);
  position: fixed;
  z-index: 10001;
}



/*-----------
contents
-----------*/

.contents{
  width: 100%;
  min-width: 1000px;
}




/*-----------
footer
-----------*/

#footer{
  width: 100%;
  background: url("../img/f_bg.png") repeat-x center 51px;
  background-size: 1200px auto;
  padding: 0;
  text-align: center;
}

#footer .f_link_top{
  display: block;
  margin: 0 auto 92px;
  width: 191px;
}

#footer .f_link_top img{
  width: 100%;
}

#footer.top_footer{
  background: url("../img/f_bg.png") repeat-x center top;
  background-size: 1200px auto;
  padding: 69px 0 0;
}

#footer .inner{
  width: 100%;
  background: #000;
  padding: 36px 0 30px;
}

#footer .f_list_sns{
  height: 39px;
  margin-bottom: 15px;
}

#footer .f_list_sns li{
  padding:  0 15px;
  display: inline-block;
}

#footer .f_list_sns li img{
  height: 39px;
}


#footer .f_list_link{
  margin-bottom: 5px;
}

#footer .f_list_link li{
  padding:  0 15px;
  display: inline-block;
  line-height: 1.1;
  border-right: 1px solid #fff;
}

#footer .f_list_link li:last-child{
  border-right: none;
}

#footer .f_list_link li a{
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

#footer small{
font-size: 11px;
color: #fff;
}




/*-----------
flow_link
-----------*/

.flow_link_wrapper {
  display:none;
}
.flow_link {
  position: fixed;
  bottom: 3em;
  right: 1em;
  z-index: 9999 !important;
}

.flow_link li {
  margin-top: 8px;
  width: 57px;
}

.flow_link li img {
  width: 100%;
}



@media screen and ( max-width:767px) {

*#wrapper {
  font-size: 15px;
  line-height: 1.8;
}

#wrapper .pc_nobr{
  display: block;
}

#wrapper .sp_nobr{
  display: none;
}

#wrapper .pc_no{
  display: block;
}

#wrapper .sp_no{
  display: none;
}

#wrapper .inner{
  width: 94%;
  margin: 0 auto;
}

#wrapper .inner2{
  width: 100%;
}



/*-----------
header
-----------*/

#header,
#fix_header{
  min-width: 100%;
  height: auto;
}

#header .inner,
#fix_header .inner{
  width: 98%;
  margin: 0 0 0 2%;
}

#header .ajk_logo,
#fix_header .ajk_logo{
  width: 23%;
  margin: 1% 0;
}

#header .list_ec,
#fix_header .list_ec{
  right: 11%;
  width: 62%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 3% 0;
  margin: 0;
}

#header .list_ec li,
#fix_header .list_ec li{
  height: auto;
  margin-left: 2%;
}

#header .list_ec li:nth-child(3),
#fix_header .list_ec li:nth-child(3),
#header .list_ec li:nth-child(4),
#fix_header .list_ec li:nth-child(4){
  margin-left: 2%;
}


#header .list_ec li:first-child,
#fix_header .list_ec li:first-child{
  width: 21%;
}

#header .list_ec li:nth-child(2),
#fix_header .list_ec li:nth-child(2){
  width: 15%;
}

#header .list_ec li:nth-child(3),
#fix_header .list_ec li:nth-child(3){
  width: 30%;
}

#header .list_ec li:last-child,
#fix_header .list_ec li:last-child{
  width: 26%;
}

/* campaign header */
#header.cp_header .list_ec,
#fix_header.cp_header .list_ec{
  justify-content: flex-end;
}
#header.cp_header .list_ec li:first-child,
#fix_header.cp_header .list_ec li:first-child {
  width: 21%;
  margin-right: 2%;
}
/* -- */

#header .list_ec img,
#fix_header .list_ec img{
  width: 100%;
  height: auto;
}

#header .list_btn,
#fix_header .list_btn{
  width: 35.50%;
  height: auto;
  padding: 0;
}

#header .list_btn li,
#fix_header .list_btn li{
  width: 46%;
  margin-left: 4%;
}

#header .list_btn img,
#fix_header .list_btn img{
  height:auto;
  width: 100%;
}

.global-nav {
  position: fixed;
  right: -260px; /* これで隠れる */
  top: 0;
  width: 260px; /* スマホに収まるくらい */
  height: 100vh;
}

.hamburger {
  width: 11%;
  height: 100%;
  cursor: pointer;
  z-index: 1000;
  margin-top: -26px;
  overflow: hidden;
  right: 0;
  top: 50%;
}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  overflow: auto;
}
.global-nav__list li:first-child {
  margin-top: 50px;
}
.global-nav__list li:last-child {
  margin-bottom: 100px;
}
.hamburger__line {
  position: absolute;
  left: 0;
  width: 60%;
  margin: 0 20%;
  height: 3px;
  border-radius: 3px;
}
.hamburger__line--1 {
  top: 17px;
  transition: all .6s;
}
.hamburger__line--2 {
  top: 26px;
}
.hamburger__line--3 {
  top: 35px;
  transition: all .6s;
}



.global-nav__item {
  padding-left:20px !important;
  padding-right:20px !important;
}


.nav-open #header .hamburger,
.nav-open #fix_header .hamburger{
  position: fixed;
  z-index: 1000000;
  margin-top: 0;
  height: 40px;
  top: 1%;
  right: 1%;
  border-right: none;
  border-left: none;
}

.nav-open #header .hamburger p,
.nav-open #fix_header .hamburger p{
  width: 38px;
}

.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}

/*-----------
contents
-----------*/

.contents{
  width: 100%;
  min-width: 100%;
}


/*-----------
footer
-----------*/



#footer{
  width: 100%;
  background: url("../img/f_bg.png") repeat-x center 55px;
  background-size: 600px auto;
  padding: 4px 0 0;
  color: #fff;
  text-align: center;
}

#footer .f_link_top{
  display: block;
  margin: 0 auto 55px;
  width: 160px;
}



#footer.top_footer{
  background: url("../img/f_bg.png") repeat-x center top;
  background-size: 600px auto;
  padding: 34px 0 0;
}

#footer .inner{
  width: 100%;
  background: #000;
  padding: 16px 0 25px;
}

#footer .f_list_sns{
  height: 34px;
  margin-bottom: 28px;
}

#footer .f_list_sns li{
  padding:  0 12px;
  display: inline-block;
}

#footer .f_list_sns li img{
  height: 34px;
}

#footer .f_list_link{
  margin-bottom: 22px;
  padding: 0 5%;
}

#footer .f_list_link li{
  padding:  0 12px;
}

#footer small{
  padding: 0 5%;
}



/*-----------
flow_link
-----------*/

.flow_link {
  right: 6px;
  bottom: 4em;
}


.flow_link li {
  width: 50px;
}



}
