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

　   共通設定

--------------------------------------------------------------------------------------------- */
/* SP用CSS記述（767px以下） */
.sp {
  display: inline-block;
}
.tb {
  display: none;
}
.pc {
  display: none;
}
@media print, screen and (min-width:768px) {
  .sp {
    display: none;
  }
  .tb {
    display: inline-block;
  }
  .pc {
    display: none;
  }
}
@media print, screen and (min-width:1000px) {
  .sp {
    display: none;
  }
  .tb {
    display: inline-block;
  }
  .pc {
    display: inline-block;
  }
}
/****** body ******/
body {
  clear: both;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #333;
  font-family: "游ゴシック", "游ゴシック体", YuGothic, Yu Gothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 100%;
  line-height: 1.5;
}
/****** link ******/
a {
  background: none;
  text-decoration: none;
}
a:link, a:visited, a:active {
  color: #333;
}
a:hover {
  color: #39F;
}
/****** etc ******/
.red {
  color: #F00;
}
.blue {
  color: #39F;
}
.small {
  font-size: small;
}
.large {
  font-size: large;
}
hr {
  border: 0;
  border-top: 1px solid #666;
  margin: 30px 0;
  overflow: hidden;
}
hr.dot {
  border: 0;
  border-top: 1px dotted #666;
  margin: 30px 0;
  overflow: hidden;
}
.bottom10 {
  clear: both;
  margin-bottom: 10px;
  overflow: hidden;
}
.bottom20 {
  clear: both;
  margin-bottom: 20px;
  overflow: hidden;
}
.bottom30 {
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
}
.bottom40 {
  clear: both;
  margin-bottom: 40px;
  overflow: hidden;
}
.bottom50 {
  clear: both;
  margin-bottom: 50px;
  overflow: hidden;
}
/* ---------------------------------------------------------------------------------------------

　   header

--------------------------------------------------------------------------------------------- */
header {
  clear: both;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
header img {
  max-width: 100%;
}
.header_wrap {
  overflow: hidden;
  max-width: 96%;
  margin: 15px auto;
}
header h1 {
  float: left;
  width: 55%;
  max-width: 250px;
}
.header_tel {
  float: right;
  width: 40%;
  max-width: 220px;
  padding: 3px 0 0 0;
}
@media print, screen and (min-width:768px) {
  header {
    margin-bottom: 30px;
  }
  header h1 {
    width: 250px;
  }
  .header_tel {
    width: 220px;
  }
}
@media print, screen and (min-width:1000px) {
  .header_wrap {
    max-width: 1000px;
    margin: 10px auto;
  }
  header h1 {
    padding: 5px 0;
  }
  header p {
    float: left;
    font-size: 75%;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 6px;
    padding: 12px 15px 0;
  }
  .header_tel {
    float: left;
    margin-top: 6px;
    padding: 0 20px 0;
    border-left: 1px solid #666;
  }
  /****** .header_nav ******/
  .header_wrap nav {
    float: right;
    padding: 20px 0 0 0;
  }
  .header_nav {
    display: flex;
    justify-content: flex-end;
  }
  .header_nav li {
    padding-left: 15px;
  }
  .header_nav li:first-child {
    padding-left: 0;
  }
  .header_nav li a {}
  .header_nav li a, .header_nav li a:link, .header_nav li a:visited {
    display: block;
    color: rgba(75, 75, 75); /* #4b4b4b */
    font-size: 75%;
    font-weight: bold;
  }
  .header_nav li a:hover {
    color: rgba(75, 75, 75, 0.7);
  }
  .header_nav li a img {
    width: 18px;
    padding-right: 8px;
    vertical-align: text-bottom;
  }
  .header_nav li a:hover img {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
}
/* ---------------------------------------------------------------------------------------------

　   fixed_nav スマホ用

--------------------------------------------------------------------------------------------- */
.fixed_nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: #FFF;
  border-top: 1px solid #CCC;
  overflow: hidden;
  display: flex;
  justify-content: center;
  z-index: 100;
}
.fixed_nav li {}
.fixed_nav li a {
  display: block;
  padding: 10px 14px;
}
.fixed_nav li a img {
  width: 28px;
  padding-bottom: 5px;
}
.fixed_nav li a span {
  display: block;
  font-size: 60%;
  font-weight: bold;
  line-height: 1.0;
}
.fixed_nav_home a {
  color: #4b4b4b;
}
.fixed_nav_bukken a {
  color: #FFF;
  background-color: #ff5a62;
  overflow: hidden;
}
.fixed_nav_company a {
  color: #4b4b4b;
}
.fixed_nav_mail a {
  color: #4b4b4b;
}
.fixed_nav_tel a {
  color: #4b4b4b;
}
@media print, screen and (min-width:768px) {
  .fixed_nav {}
  .fixed_nav li a {
    padding: 10px 20px;
  }
}
@media print, screen and (min-width:1000px) {
  .fixed_nav {
    display: none;
  }
}
/* ---------------------------------------------------------------------------------------------

　   main

--------------------------------------------------------------------------------------------- */
main {
  clear: both;
  overflow: hidden;
  display: block; /* IE対策に追加 */
}
main img {
  max-width: 100%;
}
main a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
@media print, screen and (min-width:768px) {}
@media print, screen and (min-width:1000px) {
  main {
    max-width: 1000px;
    margin: 0 auto;
  }
}
/* ---------------------------------------------------------------------------------------------

　   pagetop

--------------------------------------------------------------------------------------------- */
.pagetop {
  clear: both;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}
.pagetop a {
  float: right;
  padding: 15px 0;
  font-size: 70%;
}
.pagetop a:hover {
  color: #39F;
}
.pagetop a:before {
  content: '↑ ';
}
@media print, screen and (min-width:768px) {}
@media print, screen and (min-width:1000px) {}
/* ---------------------------------------------------------------------------------------------

　   footer

--------------------------------------------------------------------------------------------- */
footer {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #CCC;
}
footer img {
  max-width: 100%;
}
.footer_wrap {
  overflow: hidden;
  max-width: 96%;
  margin: 15px auto;
}
footer h6 {
  max-width: 50%;
  width: 180px;
  margin: 0 auto 10px;
}
.address {
  font-size: 75%;
}
.copyright {
  clear: both;
  overflow: hidden;
  margin-bottom: 60px;
  border-top: 1px solid #CCC;
  background-color: #EEE;
  padding: 20px 10px;
  color: #666;
  font-size: 80%;
}
@media print, screen and (min-width:768px) {
  footer {}
  .footer_wrap {
    margin: 20px auto;
    display: flex;
    justify-content: center;
  }
  footer h6 {
    width: 200px;
    margin: 0;
    padding-right: 20px;
  }
  .address {
    text-align: left;
  }
}
@media print, screen and (min-width:1000px) {
  footer {}
  .footer_wrap {
    max-width: 800px;
    margin: 20px auto;
  }
  .copyright {
    margin-bottom: 0;
  }
}
/* ---------------------------------------------------------------------------------------------

　   side パソコン用

--------------------------------------------------------------------------------------------- */
@media print, screen and (min-width:1000px) {
  /****** .side ******/
  /*.side {
    float: left;
    max-width: 250px;
  }*/
  /****** .side ******/
  .side {
    float: right;
    max-width: 250px;
  }
  /****** .side_bnr ******/
  .side_bnr {
    clear: both;
    overflow: hidden;
    margin-bottom: 30px;
  }
  .side_bnr li {
    margin-bottom: 10px;
  }
  /****** .side_nav ******/
  .side_nav {
    clear: both;
    overflow: hidden;
    margin: 0 auto 10px;
  }
  .side_nav li {
    padding-bottom: 5px;
  }
}
/* ---------------------------------------------------------------------------------------------

　   トップ

--------------------------------------------------------------------------------------------- */
/****** .home_ad ******/
.home_ad {
  clear: both;
  overflow: hidden;
  margin-bottom: 20px;
}
.home_ad a:hover img {
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  opacity: 1.0;
}
@media print, screen and (min-width:768px) {}
@media print, screen and (min-width:1000px) {}
/****** .home ******/
.home {
  clear: both;
  overflow: hidden;
  max-width: 96%;
  margin: 0 auto 20px;
}
@media print, screen and (min-width:768px) {
  .home {
    max-width: 735px;
  }
}
@media print, screen and (min-width:1000px) {
  /****** .home ******/
  /*.home {
	float:right;
	width:735px;
}*/
  /****** .home ******/
  .home {
    float: left;
    /*width: 735px;*/
    width: 700px;
  }
}
/****** .home_news ******/
.home_news {
  clear: both;
  /* width: 88%;*/
  margin: 0 auto 20px;
  /*height:250px; */ /* iOS対応 */
  -webkit-overflow-scrolling: touch; /* iOS対応 */
  overflow: auto; /* iOS対応 */
  border: 10px solid #EEE;
  padding: 2%;
}
.home_news p {
  font-size: 120%;
  font-weight: bold;
  padding: 5px 0;
  border-bottom: 1px dotted #EEE;
}
.home_news iframe {
  width: 100%; /* iOS対応 */
  /*height:100%;*/ /* iOS対応 */
  border: none; /* iOS対応 */
  display: block; /* iOS対応 */
  background-color: #FFF;
}
/****** .news（news/index.html） ******/
.news {
  clear: both;
  overflow: hidden;
}
.news dl {
  clear: both;
  overflow: hidden;
  border-bottom: 1px dotted #EEE;
  padding: 10px 0;
}
/*
.news dl:first-of-type {
	border-top:none;
}
*/
.news dl dt {
  float: left;
  /*width:20%;*/
  width: 20%;
  padding-right: 2%;
}
.news dl dd {
  float:left;
  /*width:75%;*/
  width: 78%;
  text-align: left;
  /*font-size:75%;*/
  font-size: 95%;
}
.news dl dd img {
  vertical-align: middle;
}
.news dl dd a:link, .news dl dd a:visited, .news dl dd a:active {
  color: #39F;
}
.news dl dd a:hover {
  text-decoration: underline;
}
@media print, screen and (min-width:768px) {
}
@media print, screen and (min-width:1000px) {
  /****** .home_news ******/
  .home_news {
    max-width: 100%;
    margin: 0 0 20px;
  }
}
/****** .home_area ******/
.home_area_title_sp {
  margin-bottom: 10px;
}
.home_area_title_pc {
  display: none;
}
.home_area {
  clear: both;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 10px;
  display: flex;
  /*justify-content: center;*/
  flex-wrap: wrap;
}
.home_area li {
  max-width: 32%;
  width: 32%;
  padding-right: 2%;
  padding-bottom: 2%;
}
.home_area li:nth-child(3n) {
  padding-right: 0;
}
@media print, screen and (min-width:768px) {
  .home_area_title_sp {
    display: none;
  }
  .home_area_title_pc {
    display: inline-block;
    margin-bottom: 10px;
  }
  .home_area li {
    max-width: 24.25%;
    padding-right: 1%;
    padding-bottom: 1%;
  }
  .home_area li:nth-child(3n) {
    padding-right: 1%;
  }
  .home_area li:nth-child(4n) {
    padding-right: 0;
  }
}
@media print, screen and (min-width:1000px) {}
/****** .home_nav ******/
.home_nav {
  clear: both;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 20px;
  display: flex;
  /*justify-content: center;*/
  flex-wrap: wrap;
}
.home_nav li {
  max-width: 49%;
  width: 49%;
  padding-right: 2%;
  padding-bottom: 2%;
}
.home_nav li:nth-child(2n) {
  padding-right: 0;
}
@media print, screen and (min-width:768px) {}
@media print, screen and (min-width:1000px) {}
/****** .home_topics ******/
.home_topics {
  clear: both;
  overflow: hidden;
  max-width: 96%;
  margin: 0 auto 20px;
  border-top: 1px solid #CCC;
  padding-top: 15px;
}
.home_topics p {
  font-size: 110%;
  font-weight: bold;
  margin-bottom: 15px;
}
.home_topics ul {
  clear: both;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  /*justify-content: center;*/
  flex-wrap: wrap;
}
.home_topics ul li {
  max-width: 49%;
  width: 49%;
  padding-right: 2%;
  padding-bottom: 2%;
  text-align: left;
  font-size: 80%;
  line-height: 1.3;
}
.home_topics ul li:nth-child(2n) {
  padding-right: 0;
}
.home_topics ul li img {
  padding-bottom: 5px;
}
@media print, screen and (min-width:768px) {
  .home_topics {
    max-width: 735px;
  }
  .home_topics ul li {
    font-size: 90%;
  }
}
@media print, screen and (min-width:1000px) {
  .home_topics {
    max-width: 100%;
  }
  .home_topics p {
    font-size: 120%;
  }
  .home_topics ul li {
    max-width: 24.25%;
    padding-right: 1%;
  }
  .home_topics ul li:nth-child(2n) {
    padding-right: 1%;
  }
  .home_topics ul li:nth-child(4n) {
    padding-right: 0;
  }
}
/****** .home_setplan ******/
.home_setplan {
  clear: both;
  overflow: hidden;
  max-width: 96%;
  margin: 0 auto 30px;
  background-color: #EEE;
  padding: 3% 3% 1%;
}
.home_setplan p {
  font-size: 110%;
  font-weight: bold;
  margin-bottom: 15px;
}
.home_setplan ul {
  clear: both;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 10px;
  display: flex;
  /*justify-content: center;*/
  flex-wrap: wrap;
}
.home_setplan ul li {
  /*max-width: 49%;
  width: 49%;
  padding-right: 1%;*/
  padding-bottom: 2%;
  text-align: left;
  font-size: 80%;
  line-height: 1.3;
}
.home_setplan ul li:nth-child(2n) {
  /*padding-right: 0;*/
}
.home_setplan ul li img {
  padding-bottom: 5px;
}
@media print, screen and (min-width:768px) {
  .home_setplan {
    max-width: 735px;
  }
  .home_setplan ul li {
    font-size: 90%;
  }
}
@media print, screen and (min-width:1000px) {
  .home_setplan {
    max-width: 100%;
    padding: 2% 2% 0;
  }
  .home_setplan p {
    font-size: 120%;
  }
  .home_setplan ul li {
    max-width: 49%;
    width: 49%;
    padding-right: 2%;
    padding-bottom: 2%;
  }
  .home_setplan ul li:nth-child(2n) {
    padding-right: 0;
  }
}
/****** .home_outside ******/
.home_outside {
  clear: both;
  overflow: hidden;
  max-width: 96%;
  margin: 0 auto 20px;
  border-top: 1px solid #CCC;
  padding-top: 20px;
}
.home_outside ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.home_outside ul li {
  max-width: 48%;
  width: 48%;
  padding-right: 3%;
  padding-bottom: 3%;
}
.home_outside li:nth-child(2n) {
  padding-right: 0;
}
@media print, screen and (min-width:768px) {
  .home_outside {
    max-width: 735px;
  }
}
@media print, screen and (min-width:1000px) {
  .home_outside {
    display: none;
  }
}
/****** .home_friend ******/
.home_friend {
  clear: both;
  overflow: hidden;
  max-width: 88%;
  margin: 0 auto 20px;
  background-color: #EEE;
  padding: 3%;
}
.home_friend ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.home_friend ul li {
  max-width: 48%;
  width: 48%;
  padding-right: 3%;
}
.home_friend li:nth-child(2n) {
  padding-right: 0;
}
@media print, screen and (min-width:768px) {
  .home_friend {
    max-width: 665px;
    padding: 30px;
  }
}
@media print, screen and (min-width:1000px) {
  .home_friend {
    display: none;
  }
}
/****** .home_pagetop ******/
.home_pagetop {
  clear: both;
  overflow: hidden;
  max-width: 96%;
  margin: 0 auto;
}
@media print, screen and (min-width:768px) {
  .home_pagetop {
    max-width: 735px;
  }
}
@media print, screen and (min-width:1000px) {
  .home_pagetop {
    max-width: 100%;
  }
}