@charset "UTF-8";

/* RESET */
@import url("reset.css");

/* Utility */
@import url("utility.css");

/* drawer */
@import url("drawer.min.css");

/* TOP */
@import url("top.css");

/* Font Awesome */
@import url("https://use.fontawesome.com/releases/v5.6.1/css/all.css");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");

/* Content */
@import url("content.css");

/* nivo-SLIDER */
@import url("nivo-slider.css");

/* anime */
@import url("aos.css");

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  body img {
    width: 100%;
  }
}
/* ========== end △ */
/* ==================================================
	basic layout
================================================== */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #010101;
  overflow-x: hidden;
  font-size: 1.4rem;
  border-top:solid 6px #c1e787;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  #wrapper {
    min-width: 980px;
  }
}
/* ========== end △ */
html {
  overflow-y: auto;
  line-height: normal;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", "游ゴシック",  YuGothic, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
}

.ov_hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

a {
  color: #333;
  text-decoration: underline;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

a:hover {
  text-decoration: none;
}

/* サイト幅
-------------------------------------------------- */
.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .container {
    width: 1100px;
    margin: 0 auto;
  }
}
/* ========== end △ */
/* ==================================================
	header
================================================== */
#header {
  position: relative;
}
#header .h_txt {
  text-align: center;
  font-size: 1.6rem;
  color: #34500a;
  background:#c1e787;
  font-weight: 500;
  padding: 1px 0;
  margin-bottom:10px;
}
#header .h_txt span {
  color: #fd881d;
}
#header .h_logo {
  width: 100%;
}
#header .h_logo a {
  display: inline-block;
  padding: 1% 0;
}
#header .h_menu {
  background-color: #e4ffbb;
  border-top: 1px solid #dbffa5;
}

#header .h_top .container .h1 {
  text-align: left;
  font-weight: lighter;
  font-size: 13px;
  color: #346f00;
  padding: 10px 0 5px 0;
}

#header .h_top .container .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
#header .h_top .container .top .left {
  width: 59%;
}

#header .h_top .container .top .right {
  width: 41%;
  padding: 12px 0;
}

#header .h_top .container .top .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 56%;
}

#header .h_top .container .top .right ul li:first-child {
  text-align: right;
  margin-bottom: 5px;
}

#header .h_top .container .top .right ul li:first-child a {
  pointer-events: none;
}

#header .h_top .container .top .right ul li:last-child {
text-align: right;
line-height: 1.0;
padding-top: 4px;
font-size: 80%;
font-weight: bold;
}

body .container .btn {
  width: 50%;
}
body .container .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 95%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #c20000 url(../common_img/h_icon.png) no-repeat left 18% center;
  background-size: 13% auto;
  color: #fff;
  margin-left: 5%;
  text-align: center;
  padding: 6% 4% 6% 20%;
  font-size: 100%;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 3px;
  border: 1px solid #970e0e;
}
body .container .btn a:hover {
  color: #1a2a56;
}
body .container .btn a img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
body .container .btn a:hover {
  background: url("../common_img/h_icon_hover.png") no-repeat left 18% center, #fff;
  background-size: 13% auto;
  background-color: #fff;
}
body .container .btn a:hover img {
  filter: none;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  #header .h_top .container .h1 {
    display: none;
  }

  #header .h_top .container .top .right {
    display: none;
  }

  #header .h_menu {
    border: 1px solid #000;
    display: none;
    position: absolute;
    width: 95%;
    margin:auto;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  #header .h_menu ul {
    padding: 2% 3% 5% 3%;
  }
  #header .h_menu ul li {
    border-bottom: 1px dotted #000;
    float:left;
    width:50%;
  }
  #header .h_menu ul li a {
    font-size: 100%;
    position: relative;
    text-decoration: none;
    color: #101010;
    display: block;
    padding: 5% 0;
    font-weight: normal;
  }
  #header .h_menu ul li i{
    display: inline-block;
    font-size:120%;
    margin-left:10px;
  }

  #header .h_top .container .top {
    padding: 1% 0.5%;
    align-items: center;
  }
  #header .h_top .container .top .left {
    width: 53%;
  }
  #header .h_top .container .item {
    background-color: #428b07;
    margin-left: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 29%;
  }
  #header .h_top .container .h_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
  }
  #header .h_top .container .h_sp .h_logo {
    width: 47%;
    /*40vw*/
  }
  #header .h_top .container .h_sp .flex {
    width: 39.2vw;
    align-items: center;
  }
}
.menuTrigger {
  cursor: pointer;
  display: block;
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  float: right;
  margin: 0 auto;
  height: 63%;
}

.menuTrigger i {
  background-color: #fff;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
}

.menuTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.menuTrigger i:nth-child(2) {
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.menuTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.menuTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
  visibility: hidden;
}

.menuTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.menuTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@media only screen and (max-width: 385px) {
  .menuTrigger i {
    height: 3px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 320px) {
  .menuTrigger {
    height: 60%;
  }
}
@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(2.3vw) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2.3vw) rotate(135deg);
  }
}
@keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(2.3vw) rotate(0deg);
    transform: translateY(2.3vw) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2.3vw) rotate(135deg);
    transform: translateY(2.3vw) rotate(135deg);
  }
}
@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(2.3vw) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2.3vw) rotate(135deg);
  }
}
@keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(2.3vw) rotate(0deg);
    transform: translateY(2.3vw) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2.3vw) rotate(135deg);
    transform: translateY(2.3vw) rotate(135deg);
  }
}
@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-2.3vw) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2.3vw) rotate(135deg);
  }
}
@keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-2.3vw) rotate(0deg);
    transform: translateY(-2.3vw) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2.3vw) rotate(135deg);
    transform: translateY(-2.3vw) rotate(135deg);
  }
}
@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-2.3vw) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2.3vw) rotate(135deg);
  }
}
@keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-2.3vw) rotate(0deg);
    transform: translateY(-2.3vw) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2.3vw) rotate(135deg);
    transform: translateY(-2.3vw) rotate(135deg);
  }
}
/* ========== end △ */
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 767px) {
  #header .menu_hidden {
    display: none !important;
  }

  #header .h_menu .container ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  #header .h_menu .container ul li {
    width:15%;
  }
  #header .h_menu .container ul li i{
    display: block;
    font-size:200%;
    margin-bottom:5px;
    color:#80cc0d;
  }
  #header .h_menu .container ul li:first-child {
    width:10%;
  }
  #header .h_menu .container ul li a {
    color: #000;
    text-decoration: none;
    border-right: 1px solid #97ba54;
    padding: 10px 0px 7px;
    text-align:center;
    font-weight: bold;
    position: relative;
    display: block;
    z-index: 1;
  }

  #header .h_menu .container ul li:first-child a {
    border-left: 1px solid #97ba54;
  }

  #header .h_menu .container ul li:last-child a {
    border-right: 1px solid #97ba54;
  }

  #header .h_menu .container ul li a:before {
    background-color: #d4f1a7;
    content: '';
    position: absolute;
    width: 97%;
    left: 50%;
    height: 42%;
    bottom: 2px;
    z-index: -1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    transform: translate(-50%, 0);
  }

  #header .h_menu .container ul li a:hover {
    color: #fff;
    background-color: #5e7a35;
  }

  #header .h_menu .container ul li a i:hover {
    color: #fff;
  }

  #header .h_menu .container ul li a:hover:before {
    background-color: unset;
  }

  #header .h_menu .container ul li:first-child ul li a {
    border-left: none;
    display: block;
  }

  #header .h_menu .container ul ul li:first-child a {
    border-left: none;
    display: block;
  }

  #header .h_menu .container > ul > li {
    position: relative;
  }

  #header .menu_hidden ul li a {
    position: relative;
    display: block;
    padding: 4% 2%;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
  }

  #header .menu_hidden ul li.hsub > a:after {
    content: "\f105";
    font-family: fontawesome;
    position: absolute;
    right: 7%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  #header .menu_hidden ul ul {
    display: none;
  }

  #header .menu_hidden ul li.hsub.open > a:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 439px) {
  #header .menu_hidden ul li a {
    font-size: 16px;
  }
}
/* ========== end △ */
/* ==================================================
	gnav
================================================== */
/* ==================================================
	content_area
================================================== */
/* title set
-------------------------------------------------- */
/* ==================================================
	main_content
================================================== */
#main .tit {
  font-size: 186%;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 10px;
}
#main .tit.tit01 {
  text-align: left;
  border-bottom: 1px solid #000;
  padding-bottom: 0;
}
#main .tit.tit01:before {
  content: '';
  background: url("../images/arr01.png");
  height: 3px;
  bottom: -4px;
  width: 100%;
}
#main .tit.f32 {
  font-size: 3.2rem;
}
#main .tit.f32:before {
  width: 4%;
}
#main .tit.white {
  color: #fff;
}
#main .tit.white:before {
  background-color: #fff;
}
#main .tit:before {
  content: '';
  background-color: #000;
  height: 1px;
  width: 11%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#main .side_contact {
  background: url("../images/bg_side.png") no-repeat center top;
  padding: 3% 0;
  background-size: cover;
}
#main .side_contact .tit {
  font-size: 3.2rem;
}
#main .side_contact .phone_contact {
  width: 33%;
  margin: 0 auto;
}
#main .side_contact .phone_contact figure img {
  max-width: 100%;
}
#main .side_contact .phone_contact figure span {
  display: block;
  color: #fff;
  font-size: 115%;
  font-weight: bold;
  text-align: right;
  padding: 15px 0 30px 0;
}
#main .side_contact .phone_contact .btn a {
  font-weight: bold;
  background: url(../common_img/h_icon.png);
  background-repeat: no-repeat !important;
  background-position: left 10% center !important;
  background-size: 8.5% auto !important;
  padding: 19px 10px 19px 42px;
}
#main .side_contact .phone_contact .btn a:before {
  display: none;
}
#main .side_contact .phone_contact .btn a:hover {
  background-image: url(../common_img/h_icon_hover.png);
}
#main .btn {
  width: 100%;
}
#main .btn.white a {
  color: #fff !important;
  border: 1px solid #fff;
  background-color: unset;
}
#main .btn.white a:before {
  border-color: #fff;
}
#main .btn.white a:hover {
  color: #1a2a56 !important;
  background-color: #fff;
}
#main .btn.white a:hover:before {
  border-color: #1a2a56;
}
#main .btn.input {
  width: 31% !important;
  margin: 0 auto;
  position: relative;
}
#main .btn.input:before {
  content: '';
  position: absolute;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(-45deg) translate(0, -50%);
  -webkit-transform: rotate(-45deg) translate(0, -50%);
  right: 5%;
  top: 50%;
  margin-top: -1px;
  z-index: 1;
}
#main .btn.input input {
  padding: 12px 10px 12px 10px;
  width: 100%;
  display: block;
  border: 1px solid #1a2a56;
  background-color: #1a2a56;
  font-size: 121%;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background-image: none;
  text-align: center;
  position: relative;
}
#main .btn.input:hover:before {
  border-color: #1a2a56;
}
#main .btn.input:hover input {
  color: #1a2a56;
  background-color: #fff;
}
#main .btn a {
  padding: 19px 42px 19px 10px;
  margin: 0;
  display: block;
  width: 100%;
  border: 1px solid #ea4d00;
  background-color: #ea4d00;
  font-size: 121%;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background-image: none;
  text-align: center;
  position: relative;
}
#main .btn a:before {
  content: '';
  position: absolute;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(-45deg) translate(0, -50%);
  -webkit-transform: rotate(-45deg) translate(0, -50%);
  right: 5%;
  top: 50%;
  margin-top: -1px;
  z-index: 1;
}
#main .btn a:hover {
  color: #1a2a56;
  background-color: #fff;
}
#main .btn a:hover:before {
  border-color: #1a2a56;
}

.g_map{
margin: 0px auto 0;
width: 100%;
}

.g_map iframe {
    width: 100%;
    margin: 0px auto 0;
}

.btn01 {margin:20px auto ;width:80%;max-width:280px;}


.btn01 a{
	color:#fff!important;
	font-weight:normal;
	text-decoration:none !important;
	font-size:100%;
	display:block;
	padding:10px 0px;
	background:#ea4d00;
	text-align:center;
	-webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px;
	border:solid 2px #ea4d00;
}

.btn01 a:hover{
	background:#fff;
	color:#ea4d00!important;
}

@media only screen and (max-width: 767px) {
  #main {
    width: 100%;
  }
  #main .tit {
    font-size: 139%;
    padding-bottom: 0;
    margin-bottom: 4%;
  }
  #main .tit.f32 {
    font-size: 143%;
  }
  #main .tit.f32:before {
    width: 10%;
  }
  #main .btn {
    width: 100% !important;
  }
  #main .btn.input {
    width: 65% !important;
  }
  #main .btn.input:before {
    padding: 2%;
    border-width: 0 2px 2px 0;
  }
  #main .btn.input input {
    font-size: 3.5vw;
  }
  #main .side_contact {
    background: url("../images/bg_side_sp.png") no-repeat center top;
    background-size: cover;
  }
  #main .side_contact .tit {
    font-size: 6vw;
    margin-bottom: 5%;
    padding-bottom: 1%;
  }
  #main .side_contact .phone_contact {
    width: 60%;
  }
  #main .side_contact .phone_contact figure {
    text-align: center;
  }
  #main .side_contact .phone_contact figure img {
    width: 87%;
  }
  #main .side_contact .phone_contact figure span {
    font-size: 2.82vw;
    /*2.82vw*/
    text-align: center;
    padding: 3% 0 9% 0;
  }
  #main .side_contact .phone_contact .btn a {
    font-size: 2.8vw;
    padding: 7% 1% 7% 12%;
  }

.g_map{
display:none;
}
}
/* section set
-------------------------------------------------- */
/* ==================================================
	aside_area
================================================== */
/* ==================================================
	footer
================================================== */
footer {
  background-color: #f6f6f6;
  border-top:solid 6px #c1e787;
}
footer .f_copy {
  color: #fff;
  background-color: #598418;
  text-align: center;
  font-size: 1.3rem;
  padding: 15px 0;
}
footer .f_sec {
  padding: 50px 0 65px 0;
}
footer .f_sec .flex {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}
footer .f_sec .flex .left {
  width: 42%;
}
footer .f_sec .flex .left .f_txt {
  font-size: 107%;
  margin-bottom: 6%;
  padding: 0 0 0 2%;
}
footer .f_sec .flex .left .f_txt strong {
  font-size: 114%;
  margin-top: 4%;
  display: block;
}
footer .f_sec .flex .left .f_txt span {
  display: inline-block;
  padding-right: 15px;
}
footer .f_sec .flex .left .flex {
  padding: 0 0 0 2%;
  align-items: center;
}
footer .f_sec .flex .left .flex ul {
  width: 54%;
}
footer .f_sec .flex .left .flex ul li img {
  max-width: 100%;
}
footer .f_sec .flex .left .flex ul li:last-child {
  text-align: right;
  line-height: 1.0;
  padding-top: 4px;
  font-size: 76%;
  font-weight: bold;
}
footer .f_sec .flex .left .f_logo {
  margin-bottom: 5%;
  display: block;
}
footer .f_sec .flex .left .btn {
  width: 43.5%;
}
footer .f_sec .flex .left .btn a {
  margin: 0;
  width: 100%;
}
footer .f_sec .flex .nav_f {
  width: 47%;
  padding-top: 2%;
}
footer .f_sec .flex .nav_f ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  margin-bottom: 5%;
}
footer .f_sec .flex .nav_f ul li {
  width: 28%;
  padding-bottom: 4%;
}
footer .f_sec .flex .nav_f ul li a {
  color: #101010;
  font-size: 1.3rem;
  text-decoration: none;
  display: block;
  padding-left: 10px;
  position: relative;
}
footer .f_sec .flex .nav_f ul li a:hover {
  text-decoration: underline;
}
footer .f_sec .flex .nav_f ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #b5bcc3;
}
footer .f_sec .flex .nav_f .btn_site {
  text-align: right;
}

.tel_link {
  color: #333 !important;
  cursor: auto !important;
  text-decoration: none !important;
}

.f_link{
  text-align:center;
}

.f_link img{
  margin:2px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .tel_link {
    cursor: pointer !important;
    text-decoration: underline !important;
  }

  footer .f_copy {
    background-color: #000;
    padding: 1.5% 0;
    font-size: 2.9vw;
  }
  footer .f_sec {
    padding: 6% 3%;
  }
  footer .f_sec .flex {
    display: block;
  }
  footer .f_sec .flex .nav_f {
    order: 1;
    width: 60%;
    margin: 0 auto;
    padding-top: 3%;
  }
  footer .f_sec .flex .nav_f ul {
    display: none;
  }
  footer .f_sec .flex .left {
    width: 100%;
    order: 0;
    text-align: center;
  }
  footer .f_sec .flex .left .f_logo {
    width: 77%;
    margin: 0 auto 4% auto;
  }
  footer .f_sec .flex .left .btn {
    width: 100%;
  }
  footer .f_sec .flex .left .btn a {
    border-radius: 0;
    padding: 6% 4% 6% 16%;
    font-size: 3.8vw;
    background-position: left 24% center;
    background-size: 10% auto;
  }
  footer .f_sec .flex .left .flex {
    width: 60%;
    margin: 0 auto;
    padding: 0;
  }
  footer .f_sec .flex .left .flex ul {
    width: 100%;
    margin-bottom: 5%;
  }
  footer .f_sec .flex .left .flex ul li:last-child {
    font-size: 2.9vw;
    text-align: center;
    padding-top: 3%;
  }
  footer .f_sec .flex .left .f_txt {
    margin-bottom: 5%;
    padding: 0% 11% 0% 11%;
    text-align: left;
    font-size: 3vw;
  }
  footer .f_sec .flex .left .f_txt strong {
    font-size: 100%;
  }
  footer .f_sec .flex .left .f_txt span {
    padding: 0;
    font-size: 84%;
  }
  footer .f_sec .flex .left .f_txt .map {
    display: none;
  }

  /* ▽ SP layout ========== */
}
@media only screen and (max-width: 767px) {
  /* ========== end △ */
}
/* ========== end △ */
/*====================================================================================
■02.CLEAR FLOAT
====================================================================================*/
.clearfix {
  display: inline-block;
}

.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*====================================================================================
■03.MARGIN DEFAULT
====================================================================================*/
/* margin */
.mat {
  margin: auto         !important;
}

.mato {
  margin: 0 auto         !important;
}

.m00 {
  margin: 0px         !important;
}

.m05 {
  margin: 5px         !important;
}

.m10 {
  margin: 10px         !important;
}

.m15 {
  margin: 15px         !important;
}

.m20 {
  margin: 20px         !important;
}

.m25 {
  margin: 25px         !important;
}

.m30 {
  margin: 30px         !important;
}

.m35 {
  margin: 35px         !important;
}

.m40 {
  margin: 40px         !important;
}

.m45 {
  margin: 45px         !important;
}

.m50 {
  margin: 50px         !important;
}

.m55 {
  margin: 55px         !important;
}

.m60 {
  margin: 60px         !important;
}

.m65 {
  margin: 65px         !important;
}

.m70 {
  margin: 70px         !important;
}

.m75 {
  margin: 75px         !important;
}

.m80 {
  margin: 80px         !important;
}

.m85 {
  margin: 85px         !important;
}

.m90 {
  margin: 90px         !important;
}

.mt00 {
  margin-top: 0px     !important;
}

.mt05 {
  margin-top: 5px     !important;
}

.mt10 {
  margin-top: 10px     !important;
}

.mt15 {
  margin-top: 15px     !important;
}

.mt20 {
  margin-top: 20px     !important;
}

.mt25 {
  margin-top: 25px     !important;
}

.mt30 {
  margin-top: 30px     !important;
}

.mt35 {
  margin-top: 35px     !important;
}

.mt40 {
  margin-top: 40px     !important;
}

.mt45 {
  margin-top: 45px     !important;
}

.mt50 {
  margin-top: 50px     !important;
}

.mt55 {
  margin-top: 55px     !important;
}

.mt60 {
  margin-top: 60px     !important;
}

.mt65 {
  margin-top: 65px     !important;
}

.mt70 {
  margin-top: 70px     !important;
}

.mt75 {
  margin-top: 75px     !important;
}

.mt80 {
  margin-top: 80px     !important;
}

.mt85 {
  margin-top: 85px     !important;
}

.mt90 {
  margin-top: 90px     !important;
}

.mr00 {
  margin-right: 0px   !important;
}

.mr05 {
  margin-right: 5px   !important;
}

.mr10 {
  margin-right: 10px   !important;
}

.mr15 {
  margin-right: 15px   !important;
}

.mr20 {
  margin-right: 20px   !important;
}

.mr25 {
  margin-right: 25px   !important;
}

.mr30 {
  margin-right: 30px   !important;
}

.mr35 {
  margin-right: 35px   !important;
}

.mr40 {
  margin-right: 40px   !important;
}

.mr45 {
  margin-right: 45px   !important;
}

.mr50 {
  margin-right: 50px   !important;
}

.mr55 {
  margin-right: 55px   !important;
}

.mr60 {
  margin-right: 60px   !important;
}

.mr65 {
  margin-right: 65px   !important;
}

.mr70 {
  margin-right: 70px   !important;
}

.mr75 {
  margin-right: 75px   !important;
}

.mr80 {
  margin-right: 80px   !important;
}

.mr85 {
  margin-right: 85px   !important;
}

.mr90 {
  margin-right: 90px   !important;
}

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

.mb05 {
  margin-bottom: 5px  !important;
}

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

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

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

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

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

.mb35 {
  margin-bottom: 35px  !important;
}

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

.mb45 {
  margin-bottom: 45px  !important;
}

.mb50 {
  margin-bottom: 50px  !important;
}

.mb55 {
  margin-bottom: 55px  !important;
}

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

.mb65 {
  margin-bottom: 65px  !important;
}

.mb70 {
  margin-bottom: 70px  !important;
}

.mb75 {
  margin-bottom: 75px  !important;
}

.mb80 {
  margin-bottom: 80px  !important;
}

.mb85 {
  margin-bottom: 85px  !important;
}

.mb90 {
  margin-bottom: 90px  !important;
}

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

.ml05 {
  margin-left: 5px    !important;
}

.ml10 {
  margin-left: 10px    !important;
}

.ml15 {
  margin-left: 15px    !important;
}

.ml20 {
  margin-left: 20px    !important;
}

.ml25 {
  margin-left: 25px    !important;
}

.ml30 {
  margin-left: 30px    !important;
}

.ml35 {
  margin-left: 35px    !important;
}

.ml40 {
  margin-left: 40px    !important;
}

.ml45 {
  margin-left: 45px    !important;
}

.ml50 {
  margin-left: 50px    !important;
}

.ml55 {
  margin-left: 55px    !important;
}

.ml60 {
  margin-left: 60px    !important;
}

.ml65 {
  margin-left: 65px    !important;
}

.ml70 {
  margin-left: 70px    !important;
}

.ml75 {
  margin-left: 75px    !important;
}

.ml80 {
  margin-left: 80px    !important;
}

.ml85 {
  margin-left: 85px    !important;
}

.ml90 {
  margin-left: 90px    !important;
}

/* margin */
/* padding */
.p00 {
  padding: 0px        !important;
}

.p05 {
  padding: 5px        !important;
}

.p10 {
  padding: 10px        !important;
}

.p15 {
  padding: 15px        !important;
}

.p20 {
  padding: 20px        !important;
}

.p25 {
  padding: 25px        !important;
}

.p30 {
  padding: 30px        !important;
}

.p35 {
  padding: 35px        !important;
}

.p40 {
  padding: 40px        !important;
}

.p45 {
  padding: 45px        !important;
}

.p50 {
  padding: 50px        !important;
}

.p55 {
  padding: 55px        !important;
}

.p60 {
  padding: 60px        !important;
}

.p65 {
  padding: 65px        !important;
}

.p70 {
  padding: 70px        !important;
}

.p75 {
  padding: 75px        !important;
}

.p80 {
  padding: 80px        !important;
}

.p85 {
  padding: 85px        !important;
}

.p90 {
  padding: 90px        !important;
}

.pt00 {
  padding-top: 0px    !important;
}

.pt05 {
  padding-top: 5px    !important;
}

.pt10 {
  padding-top: 10px    !important;
}

.pt15 {
  padding-top: 15px    !important;
}

.pt20 {
  padding-top: 20px    !important;
}

.pt25 {
  padding-top: 25px    !important;
}

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

.pt35 {
  padding-top: 35px    !important;
}

.pt40 {
  padding-top: 40px    !important;
}

.pt45 {
  padding-top: 45px    !important;
}

.pt50 {
  padding-top: 50px    !important;
}

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

.pt60 {
  padding-top: 60px    !important;
}

.pt65 {
  padding-top: 65px    !important;
}

.pt70 {
  padding-top: 70px    !important;
}

.pt75 {
  padding-top: 75px    !important;
}

.pt80 {
  padding-top: 80px    !important;
}

.pt85 {
  padding-top: 85px    !important;
}

.pt90 {
  padding-top: 90px    !important;
}

.pr00 {
  padding-right: 0px  !important;
}

.pr05 {
  padding-right: 5px  !important;
}

.pr10 {
  padding-right: 10px  !important;
}

.pr15 {
  padding-right: 15px  !important;
}

.pr20 {
  padding-right: 20px  !important;
}

.pr25 {
  padding-right: 25px  !important;
}

.pr30 {
  padding-right: 30px  !important;
}

.pr35 {
  padding-right: 35px  !important;
}

.pr40 {
  padding-right: 40px  !important;
}

.pr45 {
  padding-right: 45px  !important;
}

.pr50 {
  padding-right: 50px  !important;
}

.pr55 {
  padding-right: 55px  !important;
}

.pr60 {
  padding-right: 60px  !important;
}

.pr65 {
  padding-right: 65px  !important;
}

.pr70 {
  padding-right: 70px  !important;
}

.pr75 {
  padding-right: 75px  !important;
}

.pr80 {
  padding-right: 80px  !important;
}

.pr85 {
  padding-right: 85px  !important;
}

.pr90 {
  padding-right: 90px  !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

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

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl00 {
  padding-left: 0px   !important;
}

.pl05 {
  padding-left: 5px   !important;
}

.pl10 {
  padding-left: 10px   !important;
}

.pl15 {
  padding-left: 15px   !important;
}

.pl20 {
  padding-left: 20px   !important;
}

.pl25 {
  padding-left: 25px   !important;
}

.pl30 {
  padding-left: 30px   !important;
}

.pl35 {
  padding-left: 35px   !important;
}

.pl40 {
  padding-left: 40px   !important;
}

.pl45 {
  padding-left: 45px   !important;
}

.pl50 {
  padding-left: 50px   !important;
}

.pl55 {
  padding-left: 55px   !important;
}

.pl60 {
  padding-left: 60px   !important;
}

.pl65 {
  padding-left: 65px   !important;
}

.pl70 {
  padding-left: 70px   !important;
}

.pl75 {
  padding-left: 75px   !important;
}

.pl80 {
  padding-left: 80px   !important;
}

.pl85 {
  padding-left: 85px   !important;
}

.pl90 {
  padding-left: 90px   !important;
}

/* padding */
/* font */
.f10 {
  font-size: 10px !important;
}

.f11 {
  font-size: 11px !important;
}

.f12 {
  font-size: 12px !important;
}

.f13 {
  font-size: 13px !important;
}

.f14 {
  font-size: 14px !important;
}

.f15 {
  font-size: 15px !important;
}

.f16 {
  font-size: 16px !important;
}

.f17 {
  font-size: 17px !important;
}

.f18 {
  font-size: 18px !important;
}

.f19 {
  font-size: 19px !important;
}

.f20 {
  font-size: 20px !important;
}

.f21 {
  font-size: 21px !important;
}

.f22 {
  font-size: 22px !important;
}

.f23 {
  font-size: 23px !important;
}

.f24 {
  font-size: 24px !important;
}

.font14pc {
  font-size: 100% !important;
}

.font15pc {
  font-size: 107%;
}

.font16pc {
  font-size: 114%;
}

.font17pc {
  font-size: 121%;
}

.font18pc {
  font-size: 129%;
}

.font19pc {
  font-size: 136%;
}

.font20pc {
  font-size: 143%;
}

.font21pc {
  font-size: 150%;
}

.font22pc {
  font-size: 157%;
}

.font23pc {
  font-size: 164%;
}

.font24pc {
  font-size: 171%;
}

.font25pc {
  font-size: 179%;
}

.font26pc {
  font-size: 186%;
}

.font27pc {
  font-size: 193%;
}

.font28pc {
  font-size: 200%;
}

.font29pc {
  font-size: 207%;
}

.font30pc {
  font-size: 214%;
}

.font31pc {
  font-size: 221%;
}

.font32pc {
  font-size: 229%;
}

.w1per {
  width: 1% !important;
}

.w2per {
  width: 2% !important;
}

.w3per {
  width: 3% !important;
}

.w4per {
  width: 4% !important;
}

.w5per {
  width: 5% !important;
}

.w6per {
  width: 6% !important;
}

.w7per {
  width: 7% !important;
}

.w8per {
  width: 8% !important;
}

.w9per {
  width: 9% !important;
}

.w10per {
  width: 10% !important;
}

.w11per {
  width: 11% !important;
}

.w12per {
  width: 12% !important;
}

.w13per {
  width: 13% !important;
}

.w14per {
  width: 14% !important;
}

.w15per {
  width: 15% !important;
}

.w16per {
  width: 16% !important;
}

.w17per {
  width: 17% !important;
}

.w18per {
  width: 18% !important;
}

.w19per {
  width: 19% !important;
}

.w20per {
  width: 20% !important;
}

.w21per {
  width: 21% !important;
}

.w22per {
  width: 22% !important;
}

.w23per {
  width: 23% !important;
}

.w24per {
  width: 24% !important;
}

.w25per {
  width: 25% !important;
}

.w26per {
  width: 26% !important;
}

.w27per {
  width: 27% !important;
}

.w28per {
  width: 28% !important;
}

.w29per {
  width: 29% !important;
}

.w30per {
  width: 30% !important;
}

.w31per {
  width: 31% !important;
}

.w32per {
  width: 32% !important;
}

.w33per {
  width: 33% !important;
}

.w34per {
  width: 34% !important;
}

.w35per {
  width: 35% !important;
}

.w36per {
  width: 36% !important;
}

.w37per {
  width: 37% !important;
}

.w38per {
  width: 38% !important;
}

.w39per {
  width: 39% !important;
}

.w40per {
  width: 40% !important;
}

.w41per {
  width: 41% !important;
}

.w42per {
  width: 42% !important;
}

.w43per {
  width: 43% !important;
}

.w44per {
  width: 44% !important;
}

.w45per {
  width: 45% !important;
}

.w46per {
  width: 46% !important;
}

.w47per {
  width: 47% !important;
}

.w48per {
  width: 48% !important;
}

.w49per {
  width: 49% !important;
}

.w50per {
  width: 50% !important;
}

.w51per {
  width: 51% !important;
}

.w52per {
  width: 52% !important;
}

.w53per {
  width: 53% !important;
}

.w54per {
  width: 54% !important;
}

.w55per {
  width: 55% !important;
}

.w56per {
  width: 56% !important;
}

.w57per {
  width: 57% !important;
}

.w58per {
  width: 58% !important;
}

.w59per {
  width: 59% !important;
}

.w60per {
  width: 60% !important;
}

.w61per {
  width: 61% !important;
}

.w62per {
  width: 62% !important;
}

.w63per {
  width: 63% !important;
}

.w64per {
  width: 64% !important;
}

.w65per {
  width: 65% !important;
}

.w66per {
  width: 66% !important;
}

.w67per {
  width: 67% !important;
}

.w68per {
  width: 68% !important;
}

.w69per {
  width: 69% !important;
}

.w70per {
  width: 70% !important;
}

.w73per {
  width: 73% !important;
}

.w80per {
  width: 80% !important;
}

.w81per {
  width: 81% !important;
}

.w82per {
  width: 82% !important;
}

.w83per {
  width: 83% !important;
}

.w85per {
  width: 85% !important;
}

.w90per {
  width: 90% !important;
}

.w95per {
  width: 95% !important;
}

.w99per {
  width: 99% !important;
}

.w100per {
  width: 100% !important;
}

.fontgothic {
  font-family: "游ゴシック体", "Yu Gothic", "游ゴシック",  YuGothic, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.font_mincho {
  font-family: "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.fontnotonormal {
  font-family: "Noto Sans CJK JP",sans-serif;
}

.fontnotosan {
  font-family: "Noto Sans Japanese","Meiryo","メイリオ","MS PGothic","MS Pゴシック",sans-serif;
}

.font_en {
  font-family: Helvetica;
}

/*■05.FLEX*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /* Safari */
  display: -moz-flex;
  /* Firefox */
  display: -ms-flex;
  /* IE */
}

/*justify-content*/
.flex_jus_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex_jus_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex_jus_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.flex_jus_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex_jus_around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
}

.flex_jus_ini {
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
  -webkit-justify-content: initial;
  -moz-justify-content: initial;
  -ms-justify-content: initial;
}

/*align-items*/
.flex_align_item_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
}

.flex_align_item_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex_align_item_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
}

.flex_align_item_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
}

.flex_align_item_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex_align_item_ini {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  -webkit-align-items: initial;
  -moz-align-items: initial;
  -ms-align-items: initial;
}

.flex_container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*====================================================================================
■06.OTHER
====================================================================================*/
.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-underline {
  text-decoration: underline;
}

.text-none-underline {
  text-decoration: none !important;
}

.font14 {
  font-size: 14px;
}

.font11 {
  font-size: 11px;
}

.add_font {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.media, .media-body {
  overflow: hidden;
}

.media > .pull-left {
  margin-right: 20px;
}

.media > .pull-right {
  margin-left: 20px;
}

.media-text:after {
  clear: both;
  display: block;
  content: "";
  height: 0px;
  visibility: hidden;
}

.font-h2 {
  font-size: 34px !important;
  color: #fff !important;
}

.font-h2.red {
  color: #bb070a !important;
  text-align: center;
  margin-bottom: 4%;
}

/*====================================================================================
■07.PAGE UP
====================================================================================*/
footer .page_up {
  position: fixed;
  right: -550px;
  bottom: 120px;
  z-index: 999;
}

footer .page_up a {
  display: block;
}

/*==========================================
■11.breadcrumb
====================================================================================*/
.breadcrumb {
  margin: 0px auto 51px;
  font-size: 14px;
  padding: 10px 0;
}

.breadcrumb .icon a {
  color: #28a1c4;
  text-decoration: none;
}

.dis_sp {
  display: none;
}

.dis_pc {
  display: block;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  footer .page_up {
    width: 10vw;
  }

  .breadcrumb {
    display: none;
  }

  .font-h2 {
    font-size: 5vw !important;
  }

  .dis_sp {
    display: block;
  }

  .dis_pc {
    display: none;
  }
}
/* ========== end △ */
.breadcrumb_in {
  padding: 0 0 0 20px !important;
  background: url(../common_img/bg_bread.png) no-repeat left center;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb li {
  color: #000;
  float: left;
  padding: 0 15px 0 0px;
}

.breadcrumb li a:hover {
  color: #4f3912;
}

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