@charset "UTF-8";
/*** function ***/
/* ###################### */
/* ######## 変数 ######## */
/* ###################### */
/* カラー */
/* 書式 */
/* ###################### */
/* ######## 関数 ######## */
/* ###################### */
/* ###################### */
/* ######## 共通 ######## */
/* ###################### */
/* ボタン */
/*** FontFamily ***/
/*
Google が提供する日本語 Web フォント
https://qiita.com/shotets/items/502f8093d53369eaab50*/
@font-face {
  font-family: 'YuGothR';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/YuGothR.woff2") format("woff2"), url("../fonts/YuGothR.woff") format("woff");
}

/*****共通*******/
.sns-sharerbtn-list {
  margin: 8px 0;
  padding: 8px 0;
  text-align: center;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  background: #f0f0f0;
  overflow: hidden;
  clear: both;
}

.sns-sharerbtn-list li {
  margin: 0 4px;
  vertical-align: top;
  display: inline-block;
}

/**********************/
/****ページネーション**/
/**********************/
.pagenation {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  letter-spacing: 0;
  clear: both;
}

.pagenation li {
  font-size: 1.3rem;
  width: 30px;
  margin: 5px 4px 0;
  line-height: 30px;
  color: #fff;
  background: #0c6cc3;
  vertical-align: top;
}

.pagenation li.current {
  color: #fff;
  background: #f29200;
  cursor: default;
}

.pagenation li.dot {
  border: none;
  cursor: default;
}

.pagenation li a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: #0c6cc3;
  vertical-align: top;
  cursor: pointer;
}

.pagenation li a:hover {
  color: #fff;
  background: #f29200;
}

@media screen and (max-width: 767px) {
  .pagenation {
    padding-top: 15px;
  }
  .pagenation li {
    width: 26px;
    line-height: 26px;
  }
}

/************************/
/****新着詳細ページ前後**/
/************************/
.paginated-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}

.paginated-link li {
  width: 150px;
  margin: 0 15px;
  text-align: center;
}

.paginated-link li a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 8px 15px;
  color: #fff;
  background: #0c6cc3;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.paginated-link li a:hover {
  background: #333333;
}

.paginated-link li.prev-link a {
  padding-left: 35px;
  position: relative;
  z-index: 0;
}

.paginated-link li.prev-link a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  left: 15px;
}

.paginated-link li.next-link a {
  padding-right: 35px;
  position: relative;
  z-index: 0;
}

.paginated-link li.next-link a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  right: 15px;
}

@media screen and (max-width: 767px) {
  .paginated-link {
    padding-top: 20px;
  }
  .paginated-link li {
    width: 100px;
    margin: 0 1%;
  }
  .paginated-link li a {
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    padding: 6px 10px;
  }
  .paginated-link li.prev-link a {
    padding-left: 20px;
  }
  .paginated-link li.prev-link a:before {
    left: 8px;
  }
  .paginated-link li.next-link a {
    padding-right: 20px;
  }
  .paginated-link li.next-link a:before {
    right: 8px;
  }
}

/************************/
/**  SPメニューCSS     **/
/************************/
.toggle_button,
.toggle_button span {
  display: inline-block;
  -webkit-transition: all .8s;
  transition: all .8s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.toggle_button {
  position: fixed;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background: #0c6cc3;
  z-index: 101;
}

.toggle_button span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 65%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.toggle_button span:nth-child(1) {
  top: 25%;
}

.toggle_button span:nth-child(2) {
  top: 47.5%;
}

.toggle_button span:nth-child(3) {
  top: 70%;
}

.toggle_button.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.toggle_button.active span:nth-child(2),
.toggle_button.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.sp_menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 55;
  width: 100%;
  height: 100%;
  padding: 16px;
  background: #fff;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .8s;
  transition: all .8s;
}

.sp_menu .logo {
  width: 220px;
  margin-bottom: 16px;
}

.sp_menu .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #0c6cc3;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.sp_menu .tel::before {
  content: "";
  display: inline-block;
  background: url(../image/common/tel.png) no-repeat center/contain;
  width: 18px;
  height: 18px;
  margin-right: 3px;
}

.sp_menu .tel a {
  text-decoration: none;
  color: #0c6cc3;
}

.sp_menu .line {
  width: 250px;
  height: 36px;
  margin: 0 auto 16px;
}

.sp_menu .line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #00c100;
  border-radius: 18px;
  padding-left: 5px;
  color: #00c100;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp_menu .line a::before {
  content: url(../image/common/LINE.png);
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 4px;
}

.sp_menu .line a:hover {
  text-decoration: none;
  background: rgba(0, 193, 0, 0.2);
}

.sp_menu .sp_nav {
  padding: 8px 16px;
  border-radius: 8px;
  background: #fffde0;
  margin-bottom: 8px;
}

.sp_menu .sp_nav li {
  border-bottom: solid 1px #b6b6b6;
}

.sp_menu .sp_nav li:last-of-type {
  border-bottom: none;
}

.sp_menu .sp_nav li a {
  display: block;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding: 8px 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp_menu .sp_nav li a:hover {
  text-decoration: none;
  color: #0c6cc3;
}

.sp_menu .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sp_menu .sns li {
  margin-right: 16px;
}

.sp_menu .sns li:last-of-type {
  margin-right: 0;
}

.sp_menu.active {
  opacity: 1;
  visibility: visible;
}

/***************loading***************/
#loader-bg {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 150;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 70px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

#loader img {
  width: 100%;
}

/*************wrapper***************/
#wrapper {
  min-width: 1180px;
  max-width: 1920px;
  margin: 0 auto;
}

.h1_bg {
  margin-bottom: 7px;
}

.h1_bg h1 {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #b6b6b6;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/***************header***************/
header {
  width: 100%;
}

header .header {
  width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

header .fle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

header .ri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #0c6cc3;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-right: 10px;
}

header .tel::before {
  content: url(../image/common/tel.png);
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 3px;
}

header .mail {
  width: 200px;
  height: 42px;
  margin-right: 10px;
}

header .mail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #f29200;
  border-radius: 21px;
  padding-right: 10px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header .mail a::before {
  content: url(../image/common/mail.png);
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 15px;
}

header .mail a:hover {
  text-decoration: none;
  background: #333333;
}

header .line {
  width: 250px;
  height: 42px;
}

header .line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #00c100;
  border-radius: 21px;
  padding-left: 5px;
  color: #00c100;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header .line a::before {
  content: url(../image/common/LINE.png);
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 4px;
}

header .line a:hover {
  text-decoration: none;
  background: rgba(0, 193, 0, 0.2);
}

/********g-nav********/
.g-nav {
  padding-bottom: 11px;
}

.g-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1px;
}

.g-nav ul li {
  width: calc(20% - 1px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 1px;
  position: relative;
  z-index: 0;
}

.g-nav ul li::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #999999;
  position: absolute;
  top: 0;
  right: -1px;
}

.g-nav ul li:first-of-type::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #999999;
  position: absolute;
  top: 0;
  left: -1px;
}

.g-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 1;
}

.g-nav ul li a span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #0c6cc3;
  padding-top: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.g-nav ul li a:hover {
  text-decoration: none;
}

.g-nav ul li a:hover span {
  color: #f29200;
}

.g-nav ul li.current a span {
  color: #f29200;
}

/********トップページメイン画像********/
.main_bg {
  /* height: 550px; */
  height: 800px;
  position: relative;
  z-index: 0;
}

.main_bg #slideshow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.main_bg #slideshow *:not(.catch):not(img) {
  width: 100% !important;
  height: 100% !important;
}

/* .main_bg #slideshow li:nth-of-type(1)::before,
.main_bg #slideshow li:nth-of-type(2)::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../image/common/catch01_bg.png) no-repeat center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.main_bg #slideshow li:nth-of-type(3)::before,
.main_bg #slideshow li:nth-of-type(4)::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../image/common/catch02_bg.png) no-repeat center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
} */

.main_bg #slideshow .catch {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/********サブページメイン画像********/
.main_bgs {
  background: url(../image/common/sub-img.png) no-repeat center/cover;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 2px;
}

/*********ぱんくずリスト***********/
.bread {
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.bread .breadcrumbs {
  width: 1080px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}

.bread .breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  line-height: 1.2;
}

.bread .breadcrumbs li:after {
  content: ">";
  padding: 0 12px;
}

.bread .breadcrumbs li a {
  display: block;
}

.bread .breadcrumbs li:last-child {
  width: 35%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bread .breadcrumbs li:last-child:nth-child(2) {
  width: auto;
}

.bread .breadcrumbs li:last-child:after {
  display: none;
}

/**********コンテンツ**********/
#container {
  color: #333333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.7;
  position: relative;
  z-index: 0;
}

/*********footer***********/
footer {
  width: 100%;
  border-top: solid 3px #0c6cc3;
  padding: 25px 0 30px;
}

footer .footer {
  width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

footer .f_logo {
  margin-bottom: 5px;
}

footer .add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin-bottom: 15px;
}

footer .add dt:after {
  content: "：";
}

footer .add dd span {
  display: inline-block;
  margin-right: 12px;
}

footer .add dd span:last-of-type {
  margin-right: 0;
}

footer .oth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .t-f {
  margin-right: 12px;
}

footer .t-f .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 5px;
}

footer .t-f .tel::before {
  content: url(../image/common/f_tel.png);
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 3px;
}

footer .t-f .tel a {
  text-decoration: none;
  color: #333333;
}

footer .t-f .fax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  line-height: 1;
}

footer .t-f .fax dt:after {
  content: "：";
}

footer .mail {
  width: 200px;
  height: 42px;
  margin-right: 10px;
}

footer .mail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #f29200;
  border-radius: 21px;
  padding-right: 10px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer .mail a::before {
  content: url(../image/common/mail.png);
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 15px;
}

footer .mail a:hover {
  text-decoration: none;
  background: #333333;
}

footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .sns li {
  width: 170px;
  height: 42px;
  margin-right: 10px;
}

footer .sns li:last-of-type {
  margin-right: 0;
}

footer .sns li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #0c6cc3;
  border-radius: 21px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  line-height: 1.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer .sns li a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

footer .sns li a:hover {
  text-decoration: none;
  background: rgba(12, 108, 195, 0.2);
}

footer .sns li.tw a::before {
  background: url(../image/common/tw.png) no-repeat center/contain;
}

footer .sns li.fb a::before {
  background: url(../image/common/fb.png) no-repeat center/contain;
}

footer .sns li.ig a::before {
  background: url(../image/common/ig.png) no-repeat center/contain;
}

footer .f-nav {
  margin-top: 30px;
  height: 35px;
  border-top: solid 1px #0c6cc3;
  border-bottom: solid 1px #0c6cc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .f-nav li a {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  line-height: 1.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer .f-nav li a:hover {
  text-decoration: none;
  color: #f29200;
}



footer .bann_box{
	  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:10px 0;
}




/*********copy***********/
div.copy {
  overflow: hidden;
  height: 50px;
  background: #0c6cc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.copy p {
  text-align: center;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}

div.copy p a {
  color: #fff;
}

/******pagetop******/
.pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 50;
}

.ihin_banner{
 position: fixed;
 bottom: 70px;
 right: 20px;
}
@media screen and (max-width: 767px) {
 .ihin_banner{
  bottom: 10px;
  right: 10px;
 }
 .copy{
  padding-bottom: 40px;
  /*padding-bottom: 120px;*/
  padding-top: 20px;
 }
}
