@charset "utf-8";
/* CSS Document */
body {
  font-family: "Noto Sans Japanese";
  font-size: 16px;
  color: #222222;
}

/* Link
------------------------------------------------------------ */
a:link {
	color: #222222;
	text-decoration: none;
}
a:visited {
	color: #222222;
	text-decoration: none;
}
a:hover {
	color: #222222;
	text-decoration: none;
}
a:active {
	color: #222222;
	text-decoration: none;
}
p {
  line-height: 1.75;
}

#wrap {  
}
.container {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  body {
    width: 100%;
    font-size: 12px;
  }
  .container {
    width: 96%;
  }
}

header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.8);
  z-index: 1;
}
header .container {
  position: relative;
}
.header .logo {
  position: absolute;
  width: 273px;
  top: -84px;
  left: 0;
}
.header .address {
  float: right;
  font-size: 14px;
  text-align: center;
  padding-top: 20px;
}
.header .tel {
  display: block;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.0;
}
.header .gnavi {
  clear: both;
  float: right;
  width: 650px;
  padding: 30px 0 15px;
}
.header .gnavi li {
  float: left;
  margin-left: 37px;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}
.header .gnavi li:first-child {
  margin-left: 0;
}
.header .gnavi li a {
  font-size: 22px;
}
.header .gnavi li a:hover {
  opacity: 0.5;
}
.navToggle {
  display: none;
}

footer {
  background: #222222;
}
footer .container {
  position: relative;
}
footer .f_logo {
  position: absolute;
  width: 183px;
  top: -43px;
  left: 0;
}
footer .infoArea {
  float: left;
  color: #fff;
  padding: 35px 0 15px 173px;
}
footer .infoArea .address span {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
footer .infoArea .address {
  font-size: 13px;
  line-height: 1.2;
  font-weight: normal;
}
footer .infoArea .address a {
  color: #fff;
}
footer .fNavi {
  float: right;
  text-align: right;
  padding-top: 12px;
}
footer .fNavi a {
  display: inline-block;
  margin-left: 20px;
  color: #fff;
}
footer .copy {
  text-align: center;
  background: #333333;
  color: #fff;
  line-height: 30px;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  
  header {
    height: 60px;
  }
  .header .logo {
    width: 130px;
    top: -45px;
    left: -15px;
  }
  .header .gnavi {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    color: #333;
    text-align: center;
    transform: translateY(-120%);
    transition: all 0.6s;
    width: 100%;
  }
  .header .gnav ul {
    background: #ccc;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .header .gnavi li {
    float: none;
    margin-left: 0;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #333;
  }
  .header .gnavi li a {
    display: block;
    color: #000;
    font-size: 14px;
    padding: 20px 0;
  }
  .header .gnavi li:last-child {
    border-bottom: none;
  }
  .header .gnavi.active {
    transform: translateY(0%);
  }
  .header .address {
    display: none;
  } 
  header .navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 2%;
    top: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
    border: 1px solid #262626;
    border-radius: 5px;
}
 
  header .navToggle span {
      display: block;
      position: absolute;    /* .navToggleに対して */
      width: 30px;
      border-bottom: solid 3px #666;
      -webkit-transition: .35s ease-in-out;
      -moz-transition: .35s ease-in-out;
      transition: .35s ease-in-out;
      left: 6px;
  }

  header .navToggle span:nth-child(1) {
      top: 9px;
  }

  header .navToggle span:nth-child(2) {
      top: 18px;
  }

  header .navToggle span:nth-child(3) {
      top: 27px;
  }

    /* 最初のspanをマイナス45度に */
  header .navToggle.active span:nth-child(1) {
      top: 18px;
      left: 6px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }

  /* 2番目と3番目のspanを45度に */
  header .navToggle.active span:nth-child(2),
  header .navToggle.active span:nth-child(3) {
      top: 18px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg);
  }
  header .tel_sp {
    position: absolute;
    top: 10px;
    right: 90px;
    width: 42px;
  }
  header .mail_sp {
    position: absolute;
    top: 10px;
    right: 45px;
    width: 42px;
  }
  
  footer {
    background: #222222;
  }
  footer .container {
    position: relative;
  }
  footer .f_logo {
    display: none;
  }
  footer .infoArea {
    float: none;
    padding: 15px 0 15px 0;
    text-align: center;
  }
  footer .infoArea .address span {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  footer .infoArea .address {
    font-size: 13px;
    line-height: 1.2;
    font-weight: normal;
  }
  footer .infoArea .address a {
    color: #fff;
  }
  footer .fNavi {
    display: none;
  }
  footer .copy {
    font-size: 10px;
  }
}
.main {
  margin-top: 180px;
  margin-bottom: 50px;
}
.contents {
  float: left;
  width: 600px;
}
.side {
  float: right;
  width: 320px;
}
.m_contents {
  float: right;
  width: 650px;
}
.bunner_list li {
  margin-bottom: 20px;
}
.m_side {
  float: left;
  width: 300px;
}
.linkList li {
  float: left;
  width: 185px;
  margin-right: 22.5px;
}
.linkList li.soyon a {
  display: block;
  border: 1px solid #ED0003;
  color: #fff;
  background: #ED0003;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
  line-height: 56px;
}
.linkList li.soyon a:hover {
  background: #fff;
  color: #ED0003;
}
.linkList li.soyon a:last-child {
  margin-bottom: 0;
}
.linkList li:last-child {
  margin-right: 0;
}

.mainTitle {
  padding-left: 50px;
  color: #fff;
  font-size: 39px;
  line-height: 200px;
  text-shadow: 0px 0px 10px #000;
  margin-bottom: 35px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}
.c_title01 {
  font-size: 28px;
  border-bottom: 1px solid #222;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .main {
    margin-top: 80px;
    margin-bottom: 25px;
  }
  .contents {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .side {
    float: none;
    width: 100%;
  }
  .m_contents {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .bunner_list li {
    margin-bottom: 20px;
  }
  .bunner_list li img {
    width: 100%;
  }
  .m_side {
    float: none;
    width: 100%;
  }
.linkList li.soyon a {
  margin-bottom: 5%;
  line-height: 30px;
}
  .linkList li {
    float: left;
    width: 32%;
    margin-right: 2%;
  }
  .linkList li:last-child {
    margin-right: 0;
  }

  .mainTitle {
    padding-left: 5%;
    font-size: 20px;
    line-height:100px;
    margin-bottom: 20px;
  }
  .c_title01 {
    font-size: 18px;
  }
}


/* pc,tb,sp表示非表示
------------------------------------------------------------ */
.only_pc {	display: block;}
.only_pc_tb {	display: block;}
.only_tb {	display: none;}
.only_sp {	display: none;}

@media only screen and (max-width: 767px) {
.only_pc {	display: none;}
.only_pc_tb {	display: none;}
.only_tb {	display: none;}
.only_sp {	display: block;}
}