/*-------------------------------
	common
-------------------------------*/
* {
  box-sizing: border-box; }

body {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  -webkit-text-size-adjust: 100%;
  width: 100%; }

a {
  /*transition-duration: 0.4s;*/
  text-decoration: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

a:visited,
a:link {
  text-decoration: none !important; }

a:hover {
  text-decoration: none !important;
  opacity: 1; }

/*a:hover img {
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}*/
/*-------------------------------
	header
-------------------------------*/
#header {
  background-color: #000;
  width: 100%;
  padding: 0 0 0 0;
  margin-bottom: 148px; }
  #header .row {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 0 auto; }
    #header .row .header_cont {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      padding: 0 0 0 0; }
      #header .row .header_cont .desc {
        color: #bcbcbc;
        letter-spacing: 5px;
        margin: 0;
        font-size: 10px;
        height: 75px;
        padding-top: 30px;
        padding-left: 80px; }
      #header .row .header_cont .button {
        display: table; }
        #header .row .header_cont .button a {
          display: table-cell;
          background-color: #595757;
          text-align: center;
          vertical-align: middle;
          height: 75px;
          width: 76px;
          border-right: solid 1px #000;
          padding-top: 4px;
          transition-duration: 0.5s; }
        #header .row .header_cont .button .twitter:hover {
          background-color: #32CDFD; }
        #header .row .header_cont .button .facebook:hover {
          background-color: #3A5998; }
        #header .row .header_cont .button .instagram {
          position: relative; }
          #header .row .header_cont .button .instagram .icon {
            position: absolute;
            left: 28px;
            top: 28px;
            z-index: 2; }
          #header .row .header_cont .button .instagram .bg {
            opacity: 0;
            position: absolute;
            left: 0;
            top: 0;
            transition-duration: 0.5s; }
        #header .row .header_cont .button .instagram:hover .bg {
          opacity: 1; }
        #header .row .header_cont .button a.contact {
          display: block;
          width: auto;
          color: #fff;
          background-color: #00a73b;
          text-align: center;
          height: 75px;
          font-size: 14px;
          padding: 28px 40px 0 40px;
          letter-spacing: 2px;
          font-weight: bold;
          transition-duration: 0.5s; }
        #header .row .header_cont .button a.contact:hover {
          background-color: #E5004F; }

/*-------------------------------
	g_navi
-------------------------------*/
#pc_navi.is-animation #g_navi .row {
  height: 60px; }
  #pc_navi.is-animation #g_navi .row nav .logo a {
    width: 90px; }

#pc_navi.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%; }

#pc_navi {
  position: absolute;
  top: 75px;
  left: 0;
  z-index: 4;
  width: 100%;
  /* Keyframes */
  /*-------------------------------
  	sub_navi
  -------------------------------*/ }
  #pc_navi #g_navi {
    width: 100%;
    padding: 0 0 0 0; }
    #pc_navi #g_navi .row {
      position: relative;
      height: 100px;
      transition: .3s;
      background-color: #fff; }
      #pc_navi #g_navi .row nav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto 0 auto;
        padding: 0 80px 0 80px; }
        #pc_navi #g_navi .row nav .logo {
          width: 24%;
          padding-top: 7px; }
          #pc_navi #g_navi .row nav .logo a {
            display: block;
            color: #3E3A39;
            font-size: 16px;
            font-weight: bold;
            padding-top: 0;
            width: 135px;
            transition: .3s; }
            #pc_navi #g_navi .row nav .logo a img {
              width: 100%; }
        #pc_navi #g_navi .row nav .navi a {
          display: block;
          color: #3E3A39;
          font-size: 16px;
          font-weight: bold;
          height: 40px;
          transition: all 2s;
          text-decoration: none;
          text-transform: uppercase;
          position: relative;
          padding: 9px 10px 0 10px; }
        #pc_navi #g_navi .row nav .navi a,
        #pc_navi #g_navi .row nav .navi a:after,
        #pc_navi #g_navi .row nav .navi a:before {
          transition: all .5s; }
        #pc_navi #g_navi .row nav .navi a:hover {
          color: #555; }
        #pc_navi #g_navi .row nav .navi a:after {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto;
          width: 0%;
          content: '.';
          color: transparent;
          background: #333;
          height: 1px;
          text-align: left;
          content: '.';
          margin: 0;
          opacity: 0; }
        #pc_navi #g_navi .row nav .navi a:hover {
          color: #000;
          z-index: 1; }
        #pc_navi #g_navi .row nav .navi a:hover:after {
          width: 100%;
          z-index: -10;
          animation: fill 1s forwards;
          -webkit-animation: fill 1s forwards;
          -moz-animation: fill 1s forwards;
          opacity: 1; }
@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px; }
  50% {
    width: 100%;
    height: 1px; }
  100% {
    width: 100%;
    height: 100%;
    background: #0080F5; } }
  #pc_navi #sub_navi {
    width: 100%;
    padding: 17px 0 0 0;
    background-color: #595757;
    height: 48px;
    box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1) inset; }
    #pc_navi #sub_navi .row {
      width: 100%;
      max-width: 920px;
      margin: 0 auto 0 auto;
      padding: 0 0 0 0; }
      #pc_navi #sub_navi .row nav {
        width: 100%;
        padding: 0 0 0 0;
        display: flex;
        justify-content: space-between; }
        #pc_navi #sub_navi .row nav a {
          display: block;
          color: #ccc;
          font-size: 11px;
          font-weight: bold;
          border-right: solid 1px #999;
          text-align: center; }
        #pc_navi #sub_navi .row nav a:hover span {
          opacity: 0.7; }
        #pc_navi #sub_navi .row nav .navi_01 {
          width: 14%;
          text-align: left; }
        #pc_navi #sub_navi .row nav .navi_02 {
          width: 16%; }
        #pc_navi #sub_navi .row nav .navi_03 {
          width: 21%; }
        #pc_navi #sub_navi .row nav .navi_04 {
          width: 16%; }
        #pc_navi #sub_navi .row nav .navi_05 {
          width: 18%; }
        #pc_navi #sub_navi .row nav .navi_06 {
          width: 15%;
          border-right: none; }

/*-------------------------------
	go_top
-------------------------------*/
#go_top {
  width: 100%;
  background-color: #3E3A39; }
  #go_top a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 0 12px 0; }
    #go_top a img {
      display: inline-block; }

#go_top:hover {
  background-color: #231815; }

/*-------------------------------
	footer
-------------------------------*/
footer {
  background-color: #231815; }
  footer .footer_cont {
    width: 100%;
    max-width: 920px;
    color: #fff;
    font-size: 14px;
    padding: 70px 0 90px 0;
    margin: 0 auto 0 auto;}
    footer .footer_cont .access {
      width: 100%; }
      footer .footer_cont .access #map {
        height: 426px;
        margin-bottom: 18px; }
      footer .footer_cont .access p {
        text-align: center;
        margin-bottom: 20px; }
      footer .footer_cont .access .map_link a {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 16px;
        font-family: 'Oswald', sans-serif;
        font-weight: 500;
        border: solid 2px #fff;
        text-align: center;
        padding: 10px 0 9px 0;
        position: relative;
        text-decoration: none;
        text-transform: uppercase;
        vertical-align: middle;
        border: 0 solid;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
        outline: 1px solid;
        outline-color: white;
        outline-offset: 0px;
        text-shadow: none;
        transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1); }
      footer .footer_cont .access .map_link a:hover {
        border: 1px solid;
        /*box-shadow: inset 0 0 20px rgba(0, 0, 0, .3), 0 0 20px rgba(0, 0, 0, .1);*/
        outline-color: rgba(255, 255, 255, 0);
        outline-offset: 15px;
        /*text-shadow: 1px 1px 2px #427388; */ }
    footer .footer_cont .contact {
      width: 100%;
      display: flex;
      justify-content: space-between;}
footer .footer_cont .contact > div {
  width: 30%;
}
      footer .footer_cont .contact .midasi {
        margin-bottom: 12px;
        background-image: url(../images/pc/common/foot_icon.png);
        background-repeat: no-repeat;
        background-position: left 3px;
        padding-left: 22px; }
      footer .footer_cont .contact .tel {
        margin-bottom: 16px; }

footer .footer_cont .contact .tel .bangou {
  width: 100%;
}

footer .footer_cont .contact .tel .bangou img {
  width: 100%;
}
      footer .footer_cont .contact .contact_form {
        /*.wpcf7-response-output{
        	display: none;
        }*/ }
        footer .footer_cont .contact .contact_form span {
          display: block; }
          footer .footer_cont .contact .contact_form span input {
            background-color: transparent; }
          footer .footer_cont .contact .contact_form span span {
            display: none; }
          footer .footer_cont .contact .contact_form span #message {
            background-color: transparent; }
        footer .footer_cont .contact .contact_form .screen-reader-response ul {
          display: none; }
        footer .footer_cont .contact .contact_form .text {
          display: block;
          width: 100%;
          border: solid 1px #fff;
          padding: 12px 14px 12px 14px;
          margin-bottom: 12px; }
        footer .footer_cont .contact .contact_form .texterea {
          display: block;
          width: 100%;
          height: 162px;
          border: solid 1px #fff;
          padding: 12px 14px 12px 14px;
          color: #fff;
          margin-bottom: 12px; }
        footer .footer_cont .contact .contact_form .form_btn {
          display: block;
          width: 100%;
          display: flex;
          justify-content: space-between;
          text-align: center;
          padding-top: 4px; }
          footer .footer_cont .contact .contact_form .form_btn .button {
            width: 48%;
            display: block;
            border: solid 1px #fff;
            padding: 12px 14px 11px 14px;
            color: #fff;
            background-color: #0080F5;
            cursor: pointer;
            transition-duration: 0.5s; }
          footer .footer_cont .contact .contact_form .form_btn .button:hover {
            background-color: #E5004F; }
        footer .footer_cont .contact .contact_form .screen-reader-response {
          color: red;
          margin-bottom: 6px; }
  footer .footer_link {
    width: 100%;
    background-color: #fff; }
    footer .footer_link .footer_link_cont {
      height: 70px;
      width: 100%;
      max-width: 920px;
      margin: 0 auto 0 auto;
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      position: relative; }
      footer .footer_link .footer_link_cont .fl_right a {
        color: #231815;
        margin-left: 36px; }
footer .contact_button {
        width: 100%;
        display: block;
        border: solid 1px #fff;
        padding: 12px 14px 11px 14px;
        color: #fff;
        background-color: #0080F5;
        cursor: pointer;
        transition-duration: 0.5s;
  text-align: center;
  font-size: 1.2em;
  letter-spacing: 0.1em;
}

footer .contact_button:hover {
  background-color: #E5004F;
}
/*-------------------------------
	tel_fot_pc
-------------------------------*/
#tel_fot_pc {
  background-color: #231815;
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 15;
  transition: .8s;
  transform: translateY(100%); }
  #tel_fot_pc span {
    display: inline-block;
    width: 100%;
    max-width: 920px; }
    #tel_fot_pc span img {
      width: 100%; }

#tel_fot_pc.is_show {
  transform: translateY(0%); }

/*-------------------------------
	fadein
-------------------------------*/
.load_fade {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: .8s; }

.load_mv {
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0); }

.mv_fade {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: .8s; }

.mv_fade_mv {
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0); }

/*-------------------------------
	common
-------------------------------*/
.font_oswald {
  font-family: 'Oswald', sans-serif; }

.blue {
  color: #0099cc; }

.red {
  color: #ff0000; }

.green {
  color: #309623; }

.txt_c {
  text-align: center; }

.display_block {
  display: none !important; }

.border_dot {
  border-bottom: dotted 1px #b2b2b2; }

.ml_0 {
  margin-left: 0px !important; }

.ml_24 {
  margin-left: 24px !important; }

.mr_24 {
  margin-right: 24px !important; }

.mb_0 {
  margin-bottom: 0px !important; }

.mb_10 {
  margin-bottom: 10px !important; }

.mb_15 {
  margin-bottom: 15px !important; }

.mb_20 {
  margin-bottom: 20px !important; }

.mb_25 {
  margin-bottom: 25px !important; }

.mb_30 {
  margin-bottom: 30px !important; }

.mb_40 {
  margin-bottom: 40px !important; }

.mb_60 {
  margin-bottom: 60px !important; }

.pdt_30 {
  padding-top: 30px !important; }

.pdt_55 {
  padding-top: 55px !important; }

.pdb_20 {
  padding-bottom: 20px !important; }

.pd_25 {
  padding: 25px !important; }

.pd_0 {
  padding: 0 !important; }

.w_120 {
  width: 120px !important; }

.w_143 {
  width: 143px !important; }

.w_150 {
  width: 150x !important; }

.w_170 {
  width: 170px !important; }

.w_210 {
  width: 210px !important; }

.w_222 {
  width: 222px !important; }

.w_260 {
  width: 260px !important; }

.w_298 {
  width: 298px !important; }

.w_304 {
  width: 304px !important; }

.w_320 {
  width: 320px !important; }

.w_343 {
  width: 343px !important; }

.w_378 {
  width: 378px !important; }

.w_400 {
  width: 400px !important; }

.w_421 {
  width: 421px !important; }

.w_460 {
  width: 460px !important; }

.w_485 {
  width: 485px !important; }

.w_505 {
  width: 505px !important; }

.w_510 {
  width: 510px !important; }

.w_566 {
  width: 566px !important; }

.w_580 {
  width: 580px !important; }

.w_620 {
  width: 620px !important; }

.w_626 {
  width: 626px !important; }

.w_640 {
  width: 640px !important; }

.w_670 {
  width: 670px !important; }

.w_700 {
  width: 700px !important; }

.w_760 {
  width: 760px !important; }

.w_800 {
  width: 800px !important; }

.w_870 {
  width: 870px !important; }

.w_930 {
  width: 930px !important; }
