@charset "UTF-8";
/* CSS Document */
@media screen and (min-width: 897px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 896px) {
  .sp_none {
    display: none;
  }
}
/*---------------------------------

  0.ボタン

---------------------------------*/
.btn {
  width: 100%;
  min-width: 200px;
  margin: 0 auto;
}
.btn a {
  display: block;
  padding: 10px 5px;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
}
.btn a span {
  background: url("../images/arrow_w.svg") no-repeat center right/6px;
  padding-right: 1.5em;
  position: relative;
}
.btn a:hover {
  opacity: 1;
  color: #A01E14;
  background-color: #fff;
}
.btn a:hover span {
  background-image: url("../images/arrow_r.svg");
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .btn {
    width: 100%;
    min-width: 200px;
    margin: 0 auto;
  }
  .btn a {
    display: block;
    padding: 10px 5px;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
  }
  .btn a span {
    padding-right: 1.5em;
    position: relative;
  }
  .btn a:hover {
    opacity: 1;
    color: #A01E14;
    background: #fff;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------

  1.header

---------------------------------*/
header {
  border-top: 5px solid #A01E14;
}
header .wrap {
  width: 90%;
  max-width: 1100px;
  margin: 10px auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*  
  ロゴ
---------------------------------*/
header .wrap #logo {
  width: 55%;
  position: relative;
}
header .wrap #logo a {
  display: block;
  color: #000;
}
header .wrap #logo figure {
  padding-top: 20px;
}
header .wrap #logo img {
  width: 100%;
}
header .wrap #logo figcaption {
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}
/*  
  電話＆メール
---------------------------------*/
header .wrap .contact {
  width: 40%;
}
header .wrap .contact .tel {
  display: flex;
  margin: 10px 0;
}
header .wrap .contact .tel p {
  font-size: 14px;
  margin-right: 20px;
  white-space: nowrap;
}
header .tel img {
  max-width: 210px;
  width: 100%;
}
header .wrap .contact .outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrap .contact .outer div {
  width: 47%;
  text-align: center;
}
header .wrap .contact .sns {
  padding: 0 20px;
}
header .wrap .contact .sns ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
header .wrap .contact .sns ul li {
  width: 25%;
}
header .wrap .contact .sns ul li a {
  display: block;
}
header .wrap .contact .sns ul li a img {
  width: 100%;
}
header .wrap .contact .mailbtn a {
  display: block;
  padding: 15px 5px;
  color: #fff;
  background: #A01E14;
  font-size: 14px;
}
header .wrap .contact .mailbtn a span {
  padding-right: 1.5em;
  position: relative;
}
header .wrap .contact .mailbtn a span::after {
  content: '';
  width: 12px;
  height: 12px;
  background: url("../images/btn_a_1.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
header .wrap .contact .mailbtn._dl a {
  background: #315e47;
}
header .wrap .contact .mailbtn._dl a span::after {
  background-image: url("../images/btn_a_3.svg");
}
/*  
  ナビゲーション
---------------------------------*/
header #gnav #navTgl, header #gnav label {
  display: none;
}
header #gnav {
  background: #F2F2F2;
}
header #gnav ul {
  width: 98%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
header #gnav ul li {
  width: 16%;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  text-align: center;
}
header #gnav ul li a {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 5px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  height: 100%;
  background: #D9D9D9;
}
header #gnav ul li a:hover {
  opacity: 1;
  color: #fff;
  background: #A01E14;
}
header #gnav ul li.current a {
  color: #fff;
  background: #A01E14;
}
header #gnav ul li.home {
  width: 60px;
}
header #gnav ul li.home a {
  height: 100%;
  background: #F7F9FB;
}
header #gnav ul li.home a span {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background: url("../images/home.svg") no-repeat;
  background-size: contain;
  transition: all .3s;
}
header #gnav ul li.home a:hover {
  background: #A01E14;
}
header #gnav ul li.home a:hover span {
  background: url("../images/home_h.svg") no-repeat;
}
/*  
  960px〜トグルメニュー
---------------------------------*/
@media screen and (max-width: 1065px) {
  header {
    position: relative;
    z-index: 2;
  }
  header .sp_none {
    display: none;
  }
  header .wrap {
    height: 70px;
    padding-right: 60px;
  }
  header .wrap #logo {
    width: 50%;
    min-width: 300px;
    position: relative;
  }
  header .wrap #logo figure {
    padding-top: 0;
  }
  header .wrap .contact {
    width: 35%;
  }
  header .wrap .contact .tel {
    width: 100%;
  }
  header .wrap .contact .tel p {
    margin-bottom: 0.7em;
    padding-bottom: 0.2em;
  }
  header .wrap .contact .tel span {
    width: 85%;
    margin: 0 auto;
    display: block;
  }
  header #gnav {
    width: 100%;
    display: block;
  }
  header #gnav #navTgl {
    display: none;
  }
  header #gnav label {
    display: block;
  }
  header #gnav .open {
    cursor: pointer;
    position: fixed;
    top: 14px;
    right: 15px;
    z-index: 100;
    display: block;
    width: 50px;
    height: 50px;
    background: #A01E14;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  header #gnav .open span {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    width: 30px;
    height: 2.2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
  }
  header #gnav .open span:nth-of-type(1) {
    top: 15px;
  }
  header #gnav .open span:nth-of-type(2) {
    width: 23px;
    top: 25px;
  }
  header #gnav .open span:nth-of-type(3) {
    width: 15px;
    top: 35px;
  }
  header #gnav #navTgl:checked + .open {
    background: #A01E14;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(1) {
    display: none;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(2) {
    width: 30px;
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 25px;
    right: 0;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(3) {
    width: 30px;
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 25px;
    right: 0;
  }
  header #gnav label.close {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
  }
  header #gnav .close {
    pointer-events: none;
    z-index: 6;
    width: 100%;
    transition: background-color .3s;
  }
  header #navTgl:checked ~ .close {
    height: 100vh;
    position: fixed;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    pointer-events: auto;
    background-color: rgba(0, 0, 0, .6);
  }
  /* :::::: drawer menu :::::: */
  header #gnav .gnav {
    margin: 0;
    padding: 0 8px 80px 8px;
    z-index: 7;
    position: fixed;
    top: 75px;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  header #gnav .gnav::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
  header #gnav #navTgl:checked ~ .gnav {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  header #gnav .gnav .pc_none {
    display: block;
  }
  header #gnav .gnav ul {
    padding: 30px;
    list-style-type: none;
    display: block;
    background: #A01E14;
    border: none;
  }
  header #gnav .gnav ul li {
    width: 100%;
    border: none;
    border-bottom: 1px solid #5984B7;
  }
  header #gnav .gnav ul li a {
    display: block;
    width: 100%;
    padding: 0.3em 1em;
    color: #eee;
    overflow: hidden;
    position: relative;
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
    background: #4A77AC;
  }
  header #gnav .gnav ul li a:hover {
    opacity: 0.7;
  }
  header #gnav ul li.home a {
    padding: .8em 1em;
  }
  header #gnav ul li.home a span {
    background: url("../images/home_h.svg") no-repeat;
  }
  header #gnav ul li.home a:hover {
    opacity: 0.7;
    background: none;
  }
  /* ドロップダウン */
  header #gnav ul li.dropdown {
    background: #4A77AC;
    color: #eee;
    padding: 0.3em 0 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
    position: relative;
  }
  header #gnav ul li.dropdown .ac-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  header #gnav ul li.dropdown .ac-btn::before {
    content: '';
    width: 20px;
    height: 13px;
    background: url("../images/ac_btn_w.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
  }
  header #gnav ul li.dropdown .ac-btn.active::before {
    transform: rotate(-180deg);
  }
  /* 子カテゴリー */
  header #gnav ul li.dropdown ul.child {
    width: 100%;
    padding: 0;
    margin: 0;
    display: none;
  }
  header #gnav ul li.dropdown ul.child li {
    border-top: 1px solid #5984B7;
    border-bottom: none;
    margin-bottom: 0;
    background: #a4bcc9;
  }
  header #gnav ul li.dropdown ul.child li a {
    line-height: 30px;
    font-size: .8em;
    position: relative;
  }
  header #gnav ul li.dropdown ul.child li a::before {
    content: '';
    width: 7px;
    height: 10px;
    display: inline-block;
    margin-right: .5em;
    background: url("../images/ac_child.svg") no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 896px) {
  header {
    border-top: 5px solid #A01E14;
    position: relative;
    z-index: 20;
  }
  header .sp_none {
    display: none;
  }
  header .wrap {
    height: 65px;
    padding-right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /*  ロゴ  */
  header .wrap #logo {
    width: 85%;
    max-width: 360px;
    margin-left: 2.5%;
    position: relative;
  }
  header .wrap #logo a {
    display: block;
    color: #000;
  }
  header .wrap #logo figure {
    padding-top: 0;
  }
  header .wrap #logo img {
    width: 100%;
  }
  header .wrap #logo figcaption {
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0;
  }
  /*  ナビゲーション  */
  header .wrap .contact {
    display: none;
  }
  header #gnav {
    width: 100%;
    display: block;
  }
  header #gnav #navTgl {
    display: none;
  }
  header #gnav label {
    display: block;
  }
  header #gnav .open {
    cursor: pointer;
    position: fixed;
    top: 14px;
    right: 15px;
    z-index: 100;
    display: block;
    width: 50px;
    height: 50px;
    background: #A01E14;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  header #gnav .open span {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    width: 30px;
    height: 2.2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
  }
  header #gnav .open span:nth-of-type(1) {
    top: 15px;
  }
  header #gnav .open span:nth-of-type(2) {
    width: 23px;
    top: 25px;
  }
  header #gnav .open span:nth-of-type(3) {
    width: 15px;
    top: 35px;
  }
  header #gnav #navTgl:checked + .open {
    background: #A01E14;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(1) {
    display: none;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(2) {
    width: 30px;
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 25px;
    right: 0;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(3) {
    width: 30px;
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 25px;
    right: 0;
  }
  header #gnav label.close {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
  }
  header #gnav .close {
    pointer-events: none;
    z-index: 2;
    width: 100%;
    transition: background-color .3s;
  }
  header #navTgl:checked ~ .close {
    height: 100vh;
    position: fixed;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    pointer-events: auto;
    background-color: rgba(0, 0, 0, .6);
  }
  /* :::::: drawer menu :::::: */
  header #gnav .gnav {
    margin: 0;
    padding: 0 8px 80px 8px;
    z-index: 7;
    position: fixed;
    top: 75px;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  header #gnav .gnav::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
  header #gnav #navTgl:checked ~ .gnav {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  header #gnav .gnav .pc_none {
    display: block;
  }
  header #gnav .gnav ul {
    padding: 30px;
    list-style-type: none;
    display: block;
    background: #A01E14;
    border: none;
  }
  header #gnav .gnav ul li {
    width: 100%;
    border: none;
    border-bottom: 1px solid #B75959;
  }
  header #gnav .gnav ul li a {
    display: block;
    width: 100%;
    padding: 0.3em 1em;
    color: #eee;
    overflow: hidden;
    position: relative;
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
    margin-right: 10px;
    background: #ac4a4a;
    text-align: center;
  }
  header #gnav .gnav ul li a:hover {
    opacity: 0.7;
  }
  header #gnav ul li.home a {
    padding: .8em 1em;
  }
  header #gnav ul li.home a span {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    display: block;
    background: url("../images/home_h.svg") no-repeat;
  }
  header #gnav ul li.home a:hover {
    opacity: 0.7;
    background: none;
  }
  /* ドロップダウン */
  header #gnav ul li.dropdown {
    text-align: center;
    background: #ac4a4a;
    color: #eee;
    padding: 0.3em 0 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
    position: relative;
  }
  header #gnav ul li.dropdown .ac-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 0;
    cursor: pointer;
  }
  header #gnav ul li.dropdown .ac-btn::before {
    content: '';
    width: 15px;
    height: 8px;
    background: url("../images/ac_btn_w.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
  }
  header #gnav ul li.dropdown .ac-btn.active::before {
    transform: rotate(-180deg);
  }
  /* 子カテゴリー */
  header #gnav ul li.dropdown ul.child {
    width: 100%;
    padding: 0;
    margin: 0;
    display: none;
  }
  header #gnav ul li.dropdown ul.child li {
    border-top: 1px solid #5984B7;
    border-bottom: none;
    margin-bottom: 0;
    background: #a4bcc9;
  }
  header #gnav ul li.dropdown ul.child li a {
    line-height: 30px;
    font-size: .8em;
    position: relative;
  }
  header #gnav ul li.dropdown ul.child li a::before {
    content: '';
    width: 7px;
    height: 10px;
    display: inline-block;
    margin-right: .5em;
    background: url("../images/ac_child.svg") no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------

	ヘッダー固定

---------------------------------*/
header._fixed {
  background: #fff;
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 999;
  opacity: 0;
}
header.is-animation {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: block;
  top: 0;
  opacity: 1;
}
header._fixed .wrap {
  margin: auto;
  padding: 1rem 0;
}
header._fixed .logo {
  width: 25rem;
}
header._fixed .logo img {
  width: 100%;
  vertical-align: bottom;
}
header._fixed .gnav {
  background: #fff;
}
header._fixed .gnav ul {
  display: flex;
}
header._fixed .gnav ul li {
  text-align: center;
}
header._fixed .gnav ul li a {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1.5rem;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  height: 100%;
}
header._fixed .gnav ul li a:hover {
  opacity: 1;
  color: #fff;
  background: #A01E14;
}
@media screen and (max-width: 1065px) {
  header._fixed {
    display: none;
  }
}
/*---------------------------------

	サイド追従バナー

---------------------------------*/
#side_bunner_block {
  position: fixed;
  right: 0;
  top: 10%;
  z-index: 10;
  max-width: 40px;
  width: 3.6%;
}
#side_bunner_block ul {
  list-style: none;
}
#side_bunner_block ul li {
  margin: 10px 0;
}
#side_bunner_block ul li a {
  display: block;
}
#side_bunner_block ul li a img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #side_bunner_block {
    position: fixed;
    right: 0;
    top: 15%;
    z-index: 10;
    max-width: 30px;
    width: 7%;
  }
  #side_bunner_block ul {
    list-style: none;
  }
  #side_bunner_block ul li {
    margin: 10px 0;
  }
  #side_bunner_block ul li a {
    display: block;
  }
  #side_bunner_block ul li a img {
    width: 100%;
    vertical-align: bottom;
  }
}
@media screen and (max-width: 480px) {}
/*==================================================================
	サイドメニュー
==================================================================*/
#sideber {}
#sideber .inner {}
#sideber .inner ul {
  list-style: none;
}
#sideber .inner a {
  color: #333;
  display: block;
}
#sideber .inner .sns ul {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
#sideber .inner .sns ul li {
  flex-basis: 20%;
  margin-bottom: 0;
}
#sideber .inner .sns ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  height: 100%;
}
#sideber .inner .sns ul li a img {
  width: 100%;
}
#sideber .inner .bu {
  margin: 1rem 0;
}
#sideber .inner .bu img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#sideber .inner .side_menu {
  background: #f3f3f3;
  border-radius: .5rem;
  padding: 1rem 2rem;
}
#sideber .inner .side_menu ._parent {}
#sideber .inner .side_menu ._parent > span a {
  background: url("../images/arr_next.svg") no-repeat center right/1rem;
  font-weight: 600;
  padding: 1.5rem 0;
  padding-right: 2rem;
}
#sideber .inner .side_menu ._parent:not(:first-child) > span a {
  border-top: 1px solid #ccc;
}
#sideber .inner .side_menu .__child {}
#sideber .inner .side_menu ._parent span._se {
  display: block;
  font-weight: 600;
  margin-top: 1rem;
  padding: .5rem 1.5rem;
  position: relative;
}
#sideber .inner .side_menu ._parent span._se::before {
  content: "";
  background: var(--co-r);
  width: .4rem;
  height: 2rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
#sideber .inner .side_menu .__child._se li a {
  background: url("../images/icon_blank.svg") no-repeat center right/1rem;
  padding: 1rem 1.5rem;
}
#sideber .inner .side_menu .__child._se li:not(:last-child) a {
  border-bottom: 1px dotted #ddd;
}
#sideber .inner .side_menu .__child .__child_pa > span {
  cursor: pointer;
  display: block;
  font-size: .9em;
  padding: 1rem 0;
  position: relative;
}
#sideber .inner .side_menu .__child .__child_pa > span::before, #sideber .inner .side_menu .__child .__child_pa > span::after {
  content: "";
  background: #aaa;
  width: 1rem;
  height: .2rem;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all .3s;
}
#sideber .inner .side_menu .__child .__child_pa > span::before {
  transform: rotate(90deg);
}
#sideber .inner .side_menu .__child .__child_pa > span::after {}
#sideber .inner .side_menu .__child .__child_pa > span.active::before {
  display: none;
}
#sideber .inner .side_menu .__child .__child_pa > span.active::after {
  transform: rotate(180deg);
}
#sideber .inner .side_menu .__child .__child_ac {
  background: #fff;
  display: none;
}
#sideber .inner .side_menu .__child .__child_ac.open {
  display: block;
}
#sideber .inner .side_menu .__child .__child_ac a {
  background: url("../images/arr_bl.svg") no-repeat center right 1rem/1rem;
  font-size: .8em;
  padding: .8rem 1rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #mainContainer #sideber {
    border-top: 1px solid #ddd;
    max-width: none;
    padding: 2rem 0;
  }
  #sideber .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
    width: 90%;
  }
  #sideber .inner .bu {
    margin: 1rem 0;
    flex-basis: 48%;
  }
  #sideber .inner .side_menu {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #sideber .inner {
    display: block;
  }
}
/*==================================================================
	13.col3_content
==================================================================*/
#col3_content {
  width: 100%;
  margin: 0 auto;
  background: url("../images/content_bg.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}
#col3_content::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 0;
}
#col3_content .wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
#col3_content .wrap .box {
  width: 31%;
  padding: 40px 10px;
  text-align: center;
  color: #fff;
  border: 4px double #fff;
}
#col3_content .wrap .box p strong {
  line-height: 1.5;
}
#col3_content .wrap .box p strong span {
  display: block;
  font-size: 50px;
}
#col3_content .wrap .box .txt {
  margin: 10px 0 20px;
  font-size: 13px;
  letter-spacing: 0;
}
#col3_content .wrap .box .btn {
  max-width: 250px;
}
/* 色 */
#col3_content .wrap .box:nth-child(1) {
  background: rgb(160, 30, 20); /* Old browsers */
  background: -webkit-linear-gradient(rgba(160, 30, 20, 1) 0%, rgba(120, 30, 20, 1) 100%);
  background: -o-linear-gradient(rgba(160, 30, 20, 1) 0%, rgba(120, 30, 20, 1) 100%);
  background: linear-gradient(rgba(160, 30, 20, 1) 0%, rgba(120, 30, 20, 1) 100%); /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a01e14', endColorstr='#781e14', GradientType=0); /* IE6-9 */
}
#col3_content .wrap .box:nth-child(2) {
  background: rgb(30, 70, 130); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(30, 70, 130, 1) 0%, rgba(10, 40, 80, 1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(30, 70, 130, 1) 0%, rgba(10, 40, 80, 1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(30, 70, 130, 1) 0%, rgba(10, 40, 80, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e4682', endColorstr='#0a2850', GradientType=0); /* IE6-9 */
}
#col3_content .wrap .box:nth-child(3) {
  background: rgb(30, 90, 100); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(30, 90, 100, 1) 0%, rgba(6, 40, 70, 1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(30, 90, 100, 1) 0%, rgba(6, 40, 70, 1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(30, 90, 100, 1) 0%, rgba(6, 40, 70, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e5a64', endColorstr='#062846', GradientType=0); /* IE6-9 */
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #col3_content {}
  #col3_content::before {}
  #col3_content .wrap {
    display: block;
    padding: 50px 0 20px;
  }
  #col3_content .wrap .box {
    width: 100%;
    padding: 30px 10px;
    margin-bottom: 5%;
  }
  #col3_content .wrap .box p strong {}
  #col3_content .wrap .box p strong span {
    font-size: 40px;
  }
  #col3_content .wrap .box .txt {
    width: 70%;
    margin: 10px auto 20px;
  }
  #col3_content .wrap .box .btn {
    max-width: 250px;
  }
}
@media screen and (max-width: 480px) {}
/*==================================================================
	8.footer
==================================================================*/
/*---------------------------------

	8.1

---------------------------------*/
footer {
  background: rgb(120, 30, 20); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(120, 30, 20, 1) 0%, rgba(70, 10, 10, 1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(120, 30, 20, 1) 0%, rgba(70, 10, 10, 1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(120, 30, 20, 1) 0%, rgba(70, 10, 10, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#781e14', endColorstr='#460a0a', GradientType=0); /* IE6-9 */
}
footer .wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
/* 会社情報 */
footer .wrap .storeInfo {
  flex-basis: 300px;
  color: #fff;
}
footer .wrap .storeInfo .logo {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
}
footer .wrap .storeInfo figure figcaption {
  font-size: 14px;
  line-height: 1.3;
  margin: 20px 0;
}
footer .wrap .storeInfo .tel {
  margin-bottom: 20px;
}
/* サイトマップ */
footer .wrap .sitemap {
  flex-basis: 480px;
}
footer .wrap .sitemap .nav {
  width: 100%;
  display: flex;
}
footer .wrap .sitemap .nav ul {
  list-style: none;
  width: 50%;
}
footer .wrap .sitemap .nav ul li {
  line-height: 1.3;
  margin-bottom: 20px;
}
footer .wrap .sitemap .nav ul li a {
  color: #fff;
}
footer .wrap .sitemap ul.sns_nav {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
footer .wrap .sitemap ul.sns_nav li {
  flex-basis: 30px;
  margin-right: 20px;
}
footer .wrap .sitemap ul.sns_nav li a {
  display: block;
}
footer .wrap .sitemap ul.sns_nav li a img {
  width: 100%;
}
footer .wrap .sitemap .copy {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  color: #fff;
  border-top: 1px solid;
}
footer .wrap .sitemap .copy small {
  font-size: 12px;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  footer {}
  footer .wrap {
    padding: 50px 0;
  }
  /* 会社情報 */
  footer .wrap .storeInfo {
    color: #fff;
    text-align: center
  }
  footer .wrap .storeInfo .logo {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
  }
  footer .wrap .storeInfo figure {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
  }
  footer .wrap .storeInfo figure figcaption {}
  footer .wrap .storeInfo .tel {
    width: 100%;
    max-width: 300px;
    margin: 30px auto 20px;
  }
  footer .wrap .storeInfo .btn {
    width: 90%;
    max-width: 500px;
    margin: 0 auto 10px;
  }
  /* サイトマップ */
  footer .wrap .sitemap {
    flex-basis: 45%;
    margin-top: 30px;
  }
  footer .wrap .sitemap .nav {
    width: 100%;
    display: none;
  }
  footer .wrap .sitemap ul.sns_nav {}
  footer .wrap .sitemap ul.sns_nav li {}
  footer .wrap .sitemap ul.sns_nav li a {}
  footer .wrap .sitemap ul.sns_nav li a img {}
  footer .wrap .sitemap .copy {}
  footer .wrap .sitemap .copy small {}
}
@media screen and (max-width: 480px) {
  footer .wrap {
    display: block;
    padding: 50px 0;
  }
}
/*==================================================================*/
/*---------------------------------

	15.pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
}
#page-top a {
  background: #A01E14;
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 10px;
  height: 6px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: #71120B;
}
#page-top a:hover .arrow::before {
  top: -10px;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #page-top {
    bottom: 80px;
    z-index: 1;
  }
}
@media screen and (max-width: 480px) {}