@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #000;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
/* ========== end △ */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  body img {
    max-width: 100%;
  }
}
/* ========== end △ */
/* ==================================================
	basic layout
================================================== */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #000;
  overflow: hidden;
  font-size: 16px;
  min-width: 1160px;
  padding-top: 170px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #wrapper {
    min-width: 320px;
    font-size: 14px;
    padding-top: 75px;
  }
}
/* ========== end △ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-y: auto;
  line-height: normal;
}

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: #000;
  text-decoration: underline;
  -webkit-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 {
    max-width: 1160px;
    margin: 0 auto;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 460px) {
  .container {
    width: 100%;
    padding: 0 12px;
  }
}
/* ========== end △ */
/* ==================================================
	header
================================================== */
#cm-header {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 100;
  background: #fff;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#cm-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-animation: scrolltop 0.5s;
  animation: scrolltop 0.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

#cm-header ul {
  margin: 0;
  padding: 0;
}

#cm-header ul li {
  list-style-type: none;
}

#cm-header .header-main {
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#cm-header .main-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#cm-header .h-infor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
}

#cm-header .h-infor .h-tel a {
  background: url("../common_img/h-icon-tel.png") no-repeat center left;
  padding-left: 45px;
  font-size: 30px;
  font-weight: 500;
  font-family: "Heebo", sans-serif;
  line-height: 1;
}

#cm-header .h-infor .h-tel .time {
  display: block;
  font-size: 13px;
  margin: 0;
}

#cm-header .h-infor .list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#cm-header .h-infor .list-link li a {
  display: inline-block;
  text-decoration: none;
  padding: 0 15px;
  border-left: 1px solid #e2e2e1;
}

#cm-header .h-infor .list-link li a span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
}

#cm-header .h-infor .list-link li a span.icon {
  padding-top: 8px;
}

#cm-header .h-infor .list-link li a span.icon img, #cm-header .h-infor .list-link li a span.icon svg {
  height: 18px;
  width: auto;
}

#cm-header .h-infor .list-link li a span.txt {
  padding-top: 5px;
}

#cm-header .h-infor .list-link li.mail .icon img {
  height: 16px;
}

#cm-header .h-infor .list-link li:last-child a {
  border-right: 1px solid #e2e2e1;
}

#cm-header .h-gnav {
  background: #faf9f7;
  border-bottom: 2px solid #d86d34;
  padding: 15px;
}

#cm-header .h-gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#cm-header .h-gnav ul li a {
  text-decoration: none;
}

#cm-header .h-gnav .h-infor {
  display: none;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .h-logo {
    width: 300px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .header-main {
    padding: 15px 0;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .main-right .mypage, #cm-header .main-right .logout, #cm-header .main-right .login {
    display: none;
  }

  #cm-header .main-right .mail {
    margin-right: 10px;
  }

  /* ▽ SP layout ========== */
  /* ========== end △ */
}
@media only screen and (max-width: 767px) and (max-width: 460px) {
  #cm-header .main-right .mail {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .main-right .mail a {
    display: block;
    width: 45px;
    height: 45px;
    border: 1px solid #ccc;
    padding: 0 !important;
  }

  #cm-header .main-right .mail .txt {
    display: none;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .h-infor {
    gap: 0;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .h-infor .h-tel {
    margin-right: 10px;
  }

  /* ▽ SP layout ========== */
  /* ========== end △ */
}
@media only screen and (max-width: 767px) and (max-width: 460px) {
  #cm-header .h-infor .h-tel {
    margin-right: 5px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .h-infor .h-tel a {
    font-size: 0;
    background: url("../common_img/ico-phone.png") no-repeat center center;
    width: 45px;
    height: 45px;
    border: 1px solid #ccc;
    display: block;
    background-size: 20px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .h-infor .h-tel .time {
    display: none;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  #cm-header .h-infor .list-link li a:hover span.txt {
    color: #de8301;
  }

  #cm-header .h-infor .list-link li a:hover span.icon path, #cm-header .h-infor .list-link li a:hover span.icon circle {
    fill: #de8301;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .h-gnav {
    padding: 15px 0;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .h-gnav ul {
    display: block;
    margin-bottom: 20px;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  #cm-header .h-gnav ul li a:hover {
    color: #de8301;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .h-gnav .h-infor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
/* ========== end △ */
@-webkit-keyframes scrolltop {
  0% {
    -webkit-transform: translateY(-7rem);
    transform: translateY(-7rem);
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 0;
    -webkit-transition: ease-in-out;
    transition: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scrolltop {
  0% {
    -webkit-transform: translateY(-7rem);
    transform: translateY(-7rem);
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 0;
    -webkit-transition: ease-in-out;
    transition: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* ==================================================
	gnav
================================================== */
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.navTrigger {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  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: 45px;
  height: 45px;
  z-index: 1001;
  background-color: #faf9f7;
}

.navTrigger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  border-radius: 2px;
  background: #000;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navTrigger span:nth-child(1) {
  top: 35%;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.navTrigger span:nth-child(2) {
  top: calc(35% + 10px);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.navTrigger.active span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 6px;
  top: 33%;
}

.navTrigger.active span:nth-child(2) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 5px;
  top: calc(44% + 11px);
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .navTrigger {
    display: none !important;
  }
}
/* ========== end △ */
.h-gnav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.h-gnav .gnav {
  width: calc(100% - 241px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  padding: 0 30px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .h-gnav {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fff;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: none;
    margin-top: 0 !important;
    height: calc(100dvh - 55px);
    padding: 30px;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .h-gnav.opened {
    opacity: 1;
    visibility: visible;
  }

  .h-gnav .gnav {
    width: 100%;
    display: block;
    font-size: 16px;
    padding: 0;
  }

  .h-gnav .gnav > li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
  }

  .h-gnav .gnav > li a {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 0;
  }

  .h-gnav ul {
    text-align: center;
  }

  .h-gnav ul a {
    display: inline-block;
    padding: 5px;
  }
}
/* ========== end △ */
/* ==================================================
	content_area
================================================== */
.a_absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.cm-btn {
  position: relative;
  padding-right: 15px;
  display: inline-block;
  text-decoration: none !important;
  margin-top: 30px;
}

.cm-btn.btn-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.cm-btn:after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  font-weight: bold;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.cm-btn.btn-back {
  padding-right: 0;
  padding-left: 15px;
}

.cm-btn.btn-back:after {
  content: "\f104";
  right: auto;
  left: 0;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .cm-btn:hover {
    color: #de8301;
  }
}
/* ========== end △ */
.list-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.list-btn li a {
  display: inline-block;
  color: #fff;
  border: 2px solid #d8ae5f;
  background: #d8ae5f;
  width: auto;
  min-width: 235px;
  padding: 15px 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

.list-btn.btn-orange {
  gap: 15px;
  margin-bottom: 20px;
}

.list-btn.btn-orange li {
  width: calc((100% - 45px) / 4);
}

.list-btn.btn-orange li a {
  width: 100%;
  background: #c78f1a;
  border-color: #c78f1a;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  min-width: auto;
  padding: 12px 10px;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .list-btn li a:hover {
    background: #fff;
    color: #d8ae5f;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .list-btn li a {
    min-width: auto;
    padding: 10px;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .list-btn.btn-orange li a:hover {
    background: #fff;
    color: #c78f1a;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .list-btn.btn-orange {
    gap: 10px;
  }

  .list-btn.btn-orange li {
    width: calc((100% - 10px) / 2);
  }
}
/* ========== end △ */
.list-btn2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.list-btn2 li {
  width: calc((100% - 30px) / 3);
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .list-btn2 {
    gap: 10px;
  }

  .list-btn2 li {
    width: calc((100% - 10px) / 2);
    max-width: 320px;
    min-width: 320px;
    margin: auto;
  }
}
/* ========== end △ */
.cm-btn2 a {
  position: relative;
  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%;
  background: #9e5f03;
  text-align: center;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
}

.cm-btn2 a span {
  font-size: 24px;
  line-height: 1;
  margin-top: -8px;
}

.cm-btn2 a:after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  font-weight: bold;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}

.cm-btn2 a.active {
  background: #cf0505;
}

.cm-btn2.btn2-gray a {
  background: #7d7c7a;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .cm-btn2 a:hover {
    background: #583400;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .cm-btn2.btn2-gray a:hover {
    background: #de8301;
  }
}
/* ========== end △ */
.btn-green a,
.btn-green button {
  display: inline-block;
  background: #45652e;
  width: auto;
  min-width: 230px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-decoration: none !important;
  padding: 17px 25px;
  margin-top: 30px;
  text-align: center;
  border: none;
}

@media print, screen and (max-width: 767px) {
  .btn-green a,
  .btn-green button {
    padding: 17px 10px;
  }
}
.btn-green a.btn-gray,
.btn-green button.btn-gray {
  background: #6e6758;
}

.btn-green.btn-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .btn-green a:hover,
  .btn-green button:hover {
    background: #de8301;
  }
}
/* ========== end △ */
/* title set
-------------------------------------------------- */
.style-ttl01 {
  position: relative;
  font-size: 30px;
  color: #e6a340;
  border-bottom: 3px solid #9d9d9d;
  margin: 0 auto 50px;
  z-index: 3;
}

.style-ttl01:after {
  position: absolute;
  content: "";
  background: #edb43c;
  width: 55px;
  height: 3px;
  bottom: -3px;
  left: 0;
  z-index: -1;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .style-ttl01 {
    margin-bottom: 30px;
    font-size: 26px;
    border-bottom-width: 2px;
  }

  .style-ttl01:after {
    height: 2px;
    bottom: -2px;
  }
}
/* ========== end △ */
.style-ttl02 {
  position: relative;
  font-size: 30px;
  color: #de8301;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 50px;
}

.style-ttl02:after {
  position: absolute;
  content: "";
  background: #edb43c;
  width: 55px;
  height: 3px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.style-ttl02.ttl-white {
  color: #fff;
}

.style-ttl02.ttl-white:after {
  background: #fff;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .style-ttl02 {
    font-size: 26px;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
}
/* ========== end △ */
.style-ttl03 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 10px solid #583400;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .style-ttl03 {
    font-size: 18px;
    padding-left: 10px;
    border-left: 5px solid #583400;
    margin-bottom: 15px;
  }
}
/* ========== end △ */
.ttl-search {
  background: url("../common_img/icon-search-black.svg") no-repeat left top 7px;
  background-size: 22px;
  font-size: 24px;
  padding-left: 40px;
  line-height: normal;
  margin: 30px auto 10px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .ttl-search {
    font-size: 20px;
  }
}
/* ========== end △ */
@media only screen and (max-width: 480px) {
  .ttl-search {
    font-size: 17px;
    background-size: 17px;
    padding-left: 30px;
    margin: 20px auto 10px;
  }
}
.style-sub-line {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin: 50px 0 40px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .style-sub-line {
    font-size: 16px;
    padding-bottom: 5px;
    margin: 30px 0 20px;
  }
}
/* ========== end △ */
.ttl-brown {
  background: #453105;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding: 15px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.ttl-brown.ttl-larger {
  background: #583400;
  font-size: 24px;
  padding: 15px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .ttl-brown {
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 20px;
  }

  .ttl-brown.ttl-larger {
    font-size: 20px;
  }
}
/* ========== end △ */
.sub-brown {
  background: #f3efe9;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px;
  margin-bottom: 40px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sub-brown {
    font-size: 18px;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
}
/* ========== end △ */
/* ==================================================
	main_content
================================================== */
.sec-cont {
  padding: 10px 0 100px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-cont {
    padding: 10px 0 50px;
  }
}
/* ========== end △ */
.bnr-fixed {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 300px;
  z-index: 99;
}

.bnr-fixed ul li {
  list-style-type: none;
}

.bnr-fixed ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #de8301;
  border: 2px solid #de8301;
  outline: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 10px 10px 50px;
  text-decoration: none;
  margin-bottom: 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.bnr-fixed ul li a span.icon {
  position: relative;
  width: 70px;
}

.bnr-fixed ul li a span.icon svg {
  height: 34px;
  width: auto;
}

.bnr-fixed ul li a span.icon path, .bnr-fixed ul li a span.icon circle {
  fill: #fff;
}

.bnr-fixed ul li a span.icon.user .plus {
  font-size: 25px;
  position: absolute;
  top: 0;
  left: -17px;
  line-height: 0.8;
}

.bnr-fixed ul li:last-child a {
  margin-bottom: 0;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .bnr-fixed ul li a:hover {
    background: #fff;
    color: #de8301;
  }

  .bnr-fixed ul li a:hover span.icon path, .bnr-fixed ul li a:hover span.icon circle {
    fill: #de8301;
  }
}
/* ========== end △ */
@media only screen and (max-width: 1400px) {
  .bnr-fixed {
    width: auto;
  }

  .bnr-fixed ul li {
    -webkit-transform: translateX(calc(100% - 60px));
    transform: translateX(calc(100% - 60px));
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .bnr-fixed ul li a {
    height: 60px;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px 10px 10px 10px;
  }

  .bnr-fixed ul li a span.txt {
    opacity: 0;
  }

  .bnr-fixed ul li a span.icon {
    width: 35px;
    text-align: center;
  }

  .bnr-fixed ul li a span.icon svg {
    height: 22px;
    width: auto;
  }

  .bnr-fixed ul li a span.icon.user .plus {
    font-size: 18px;
    left: -5px;
  }

  .bnr-fixed ul li:hover {
    -webkit-transform: none;
    transform: none;
  }

  .bnr-fixed ul li:hover a span.txt {
    display: inline-block;
    opacity: 1;
    padding-left: 5px;
  }
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .bnr-fixed ul li:nth-of-type(3) {
    display: none;
  }

  .bnr-fixed {
    top: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
  }

  .bnr-fixed ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2px;
  }

  .bnr-fixed ul li {
    width: calc((100% - 2px) / 2);
    -webkit-transform: unset;
    transform: unset;
  }

  .bnr-fixed ul li a {
    margin-bottom: 0;
    outline: unset;
  }

  .bnr-fixed ul li a span.icon {
    width: 50px;
    text-align: center;
  }

  .bnr-fixed ul li a span.icon.user .plus {
    left: 0;
  }

  .bnr-fixed ul li a span.txt {
    opacity: 1;
    width: calc(100% - 50x);
    text-align: center;
  }
}
/* ========== end △ */
/* section set
-------------------------------------------------- */
.sec-search select {
  width: 100%;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/2em;
  border: 2px solid #d6d6d6;
  padding: 15px 25px;
  color: #888888;
  font-size: 18px;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-search select {
    padding: 10px 20px 8px;
    font-size: 16px;
  }
}
/* ========== end △ */
.sec-news {
  padding: 50px 0;
}

.sec-news .cont-news {
  width: 750px;
  margin: auto;
  max-height: 350px;
  overflow: auto;
  max-width: 100%;
}

.sec-news .cont-news ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  border-top: 1px dotted #ccc;
  padding: 20px 50px 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sec-news .cont-news ul li a:after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  font-weight: bold;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  font-size: 20px;
}

.sec-news .cont-news ul li a:before {
  position: absolute;
  content: "";
  background: #de8301;
  opacity: 0.3;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

.sec-news .cont-news ul li a .tag {
  background: #ff5757;
  width: 65px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.sec-news .cont-news ul li a .date, .sec-news .cont-news ul li a .txt {
  padding-left: 20px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-news {
    padding: 30px 0;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-news .cont-news ul li a {
    padding: 10px;
    padding-right: 30px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-news .cont-news ul li a:after {
    right: 5px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-news .cont-news ul li a .txt {
    padding-left: 0;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .sec-news .cont-news ul li a:hover:before {
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
/* ========== end △ */
.sec-banner {
  padding: 80px 0;
}

.sec-banner .list-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-banner {
    padding: 40px 0;
    display: block;
  }

  .sec-banner .list-banner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
  }

  .sec-banner li {
    width: calc((100% - 10px) / 2);
  }
}
/* ========== end △ */
.sec-step {
  padding: 120px 0;
}

.sec-step .list-step {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}

.sec-step .list-step .box-step {
  width: calc((100% - 50px) / 3);
  border: 3px solid #e39742;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.sec-step .list-step .box-step .ttl-step {
  color: #de8301;
  margin-bottom: 15px;
}

.sec-step .list-step .box-step .ttl-step .number {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sec-step .list-step .box-step .ttl-step .txt {
  font-size: 18px;
}

.sec-step .list-step .box-step .img-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 51px;
  margin-bottom: 20px;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-step {
    padding: 40px 0;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-step .list-step {
    gap: 10px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-step .list-step .box-step {
    width: 100%;
    position: relative;
    padding: 10px 4%;
    padding-left: 80px;
    border-width: 2px;
  }

  .sec-step .list-step .box-step .des-step {
    text-align: left;
  }

  .sec-step .list-step .box-step:nth-child(3) img {
    max-width: 30px !important;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-step .list-step .box-step .ttl-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .sec-step .list-step .box-step .ttl-step .number {
    font-size: 23px;
    margin-bottom: 0;
  }

  .sec-step .list-step .box-step .ttl-step .txt {
    font-size: 16px;
  }

  /* ▽ SP layout ========== */
  /* ========== end △ */
}
@media only screen and (max-width: 767px) and (max-width: 460px) {
  .sec-step .list-step .box-step .ttl-step .txt {
    width: 100%;
    text-align: left;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-step .list-step .box-step .img-step {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
  }

  .sec-step .list-step .box-step .img-step img {
    max-width: 45px;
  }
}
/* ========== end △ */
.sec-contact {
  background: #de8301;
  padding: 90px 0;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.sec-contact .btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70%;
  margin: 40px auto 0;
  background: #fff;
  border: 3px solid #fff;
  font-size: 30px;
  font-weight: bold;
  color: #de8301;
  text-align: center;
  text-decoration: none;
  padding: 25px 0;
}

.sec-contact .btn-contact span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sec-contact .btn-contact .icon {
  width: 30%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sec-contact .btn-contact .icon svg {
  height: 34px;
  width: auto;
}

.sec-contact .btn-contact .icon path {
  fill: #de8301;
}

.sec-contact .btn-contact .txt {
  width: 70%;
  text-align: left;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-contact {
    padding: 30px 0;
    font-size: 16px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec-contact .btn-contact {
    width: 100%;
    font-size: 23px;
    background-size: 40px;
    padding: 15px 0;
    margin-top: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
/* ========== end △ */
@media only screen and (max-width: 480px) {
  .sec-contact .btn-contact {
    font-size: 18px;
  }

  .sec-contact .btn-contact .icon {
    width: 20%;
  }

  .sec-contact .btn-contact .icon svg {
    height: 20px;
  }
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .sec-contact .btn-contact:hover {
    background: #de8301;
    color: #fff;
  }

  .sec-contact .btn-contact:hover .icon path {
    fill: #fff;
  }
}
/* ========== end △ */
/* ==================================================
	aside_area
================================================== */
.side-bar {
  background: #f8f8f8;
  width: 320px;
}

.side-bar p {
  margin-bottom: 1em;
}

.side-bar .calendar {
  border: 1px solid #c6c6c6;
  margin-bottom: 1em;
}

.side-bar .calendar .week-dis {
  color: #00bee0;
  font-weight: bold;
}

.side-bar .calendar .month-dis {
  color: #e40050;
  font-weight: bold;
}

.side-bar .calendar .holiday {
  color: #e40050;
  font-weight: bold;
}

.side-bar .calendar .ttl-cal {
  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;
  background: #fbf4e9;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 5px 0;
  margin: 0;
}

.side-bar .calendar .ttl-cal .icon {
  width: 20px;
  margin-right: 10px;
}

.side-bar .calendar .cont-cal {
  width: 100%;
  background: #fff;
  padding: 0 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.side-bar .calendar .cont-cal .list-event {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  border-bottom: 1px solid #c6c6c6;
  padding: 5px 0;
}

.side-bar .calendar .cont-cal .list-event li {
  list-style-type: none;
  font-size: 15px;
  font-weight: 500;
}

.side-bar .calendar .calendar-table {
  padding: 10px 0;
}

.side-bar .calendar .calendar-table p {
  margin-bottom: 0;
}

.side-bar .calendar .calendar-table .calendar-head {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.side-bar .calendar .calendar-table .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, auto);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: right;
  width: 100%;
}

.side-bar .calendar .calendar-table .calendar-weekdays li {
  color: #9d9d9d;
  font-weight: 500;
}

.side-bar .calendar .calendar-table .calendar-content {
  display: grid;
  grid-template-columns: repeat(7, auto);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: right;
  width: 100%;
  font-size: 14px;
  color: #4f4f4f;
  font-weight: 500;
}

.side-bar .calendar .calendar-table .btn-calendar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5px;
}

.side-bar .calendar .calendar-table .btn-calendar a {
  color: #9d9d9d;
  font-weight: 500;
  text-decoration: none;
}

.side-bar .calendar .calendar-table .view-calendar .cm-btn {
  text-align: right;
  font-weight: 500;
  margin-top: 5px;
}

.side-bar .calendar .view-calendar {
  text-align: right;
}

.side-bar .search-box {
  border: 2px solid #929292;
  padding: 20px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.side-bar .search-box .ttl {
  font-size: 24px;
  margin: 0 auto 15px;
}

.side-bar .search-box .text-search {
  background: #f6f6f6 url("../common_img/icon-search-black.svg") no-repeat right 15px center;
  background-size: 22px;
  border: 2px solid #d6d6d6;
  padding: 15px 10px;
  -webkit-padding-end: 50px;
  padding-inline-end: 50px;
  margin-bottom: 15px;
}

.side-bar .search-box .stf-chk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 18px;
  font-weight: bold;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .side-bar .calendar .calendar-table .btn-calendar a:hover {
    color: #de8301;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .side-bar .calendar .calendar-table .view-calendar .cm-btn:hover {
    color: #de8301;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .side-bar {
    width: 100%;
    text-align: center;
    padding: 50px 0;
  }

  /* ▽ SP layout ========== */
  /* ========== end △ */
}
@media only screen and (max-width: 767px) and (max-width: 460px) {
  .side-bar {
    max-width: 320px;
    margin: auto;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .side-bar-sp {
    background: #f8f8f8;
    padding: 50px 0;
  }

  .side-bar-sp .side-bar {
    padding: 0;
  }

  /* ▽ SP layout ========== */
  /* ========== end △ */
}
@media only screen and (max-width: 767px) and (max-width: 460px) {
  .side-bar-sp .side-bar {
    max-width: 320px;
    margin: auto;
  }
}
/* ========== end △ */
.btn-search {
  width: 100%;
  max-width: 260px;
  background: #000 url("../common_img/icon-search-white.svg") no-repeat center left 40px;
  background-size: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 10px;
  margin: 30px auto 0;
  cursor: pointer;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .btn-search:hover {
    background-color: #de8301;
  }
}
/* ========== end △ */
.btn-reset {
  background: #d1d1d1;
  border: none;
  font-size: 16px;
  padding: 18px 10px;
  margin: 30px auto 0;
  min-width: 130px;
  cursor: pointer;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .btn-reset:hover {
    background-color: #de8301;
  }
}
/* ========== end △ */
.detail-calendar p, .detail-calendar li {
  line-height: normal;
}

.detail-calendar .week-dis {
  color: #00bee0;
  font-weight: 500;
}

.detail-calendar .month-dis {
  color: #de8301;
  font-weight: 500;
}

.detail-calendar .holiday {
  color: #e40050;
  font-weight: 500;
}

.detail-calendar .calendar-head {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}

.detail-calendar .calendar-head .month {
  font-size: 30px;
}

.detail-calendar .calendar-weekdays {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #c8c8c8;
  text-align: center;
  width: 100%;
}

.detail-calendar .calendar-weekdays li {
  width: 14.2857142857%;
  background: #f7f7f7;
  padding: 5px 0;
  font-weight: 500;
}

.detail-calendar .calendar-weekdays li:not(:last-child) {
  border-right: 1px solid #c8c8c8;
}

.detail-calendar .calendar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #c8c8c8;
  border-top: none;
  border-bottom: none;
  text-align: center;
  width: 100%;
}

.detail-calendar .calendar-content li {
  width: 14.2857142857%;
  padding: 5px 2% 3%;
  border-right: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}

.detail-calendar .calendar-content li:nth-child(7n+7) {
  border-right: none;
}

.detail-calendar .calendar-content li.day-next-month {
  font-weight: 500;
  color: #9d9d9d;
}

.detail-calendar .detail-event {
  text-align: left;
}

.detail-calendar .detail-event .link-event {
  line-height: normal;
}

.detail-calendar .detail-event .link-event a {
  position: relative;
  font-size: 15px;
  display: inline-block;
  padding-right: 15px;
  text-decoration: none;
}

.detail-calendar .detail-event .link-event a:after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  font-weight: bold;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.detail-calendar .detail-event .link-event a span {
  text-decoration: underline;
}

.detail-calendar .btn-calendar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .detail-calendar .calendar-head {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .detail-calendar .calendar-head .month {
    font-size: 24px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .detail-calendar .calendar-weekdays li {
    font-size: 14px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .detail-calendar .calendar-content li {
    padding: 5px 0 2% 1%;
    font-size: 13px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .detail-calendar .detail-event {
    font-size: 9px;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .detail-calendar .detail-event .link-event a:hover {
    color: #de8301;
  }

  .detail-calendar .detail-event .link-event a:hover:after {
    color: #de8301;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .detail-calendar .detail-event .link-event a {
    padding-right: 10px;
    font-size: 10px;
  }
}
/* ========== end △ */
/* ==================================================
	footer
================================================== */
#footer {
  padding: 60px 0;
}

#footer .main-footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#footer .main-footer .left-main .f-logo {
  margin-bottom: 20px;
}

#footer .main-footer .f-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 40px;
}

#footer .main-footer .f-gnav li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 15px;
  z-index: 3;
}

#footer .main-footer .f-gnav li a:after {
  position: absolute;
  content: "";
  background: #de8301;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

#footer .main-footer .f-gnav li:last-child {
  margin-bottom: 0;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #footer {
    padding-bottom: 150px;
  }

  #footer .copy-right {
    text-align: center;
    margin-top: 30px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #footer .main-footer {
    display: block;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #footer .main-footer .left-main {
    text-align: center;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #footer .main-footer .f-gnav {
    gap: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #footer .main-footer .f-gnav ul {
    width: 40%;
  }

  #footer .main-footer .f-gnav ul:nth-child(even) {
    width: 55%;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #footer .main-footer .f-gnav li a {
    margin-bottom: 5px;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  #footer .main-footer .f-gnav li a:hover {
    color: #de8301;
  }

  #footer .main-footer .f-gnav li a:hover:after {
    width: 100%;
  }
}
/* ========== 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.FLEX*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*====================================================================================
■04.OTHER
====================================================================================*/
.add_font {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.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;
}

/*====================================================================================
■05.PAGE UP
====================================================================================*/
footer .page_up {
  position: fixed;
  right: -550px;
  bottom: 120px;
  z-index: 999;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  footer .page_up {
    width: 15%;
    bottom: 3% !important;
  }

  footer .page_up a {
    display: block;
  }
}
/* ========== end △ */
/*==========================================
■6.Title cm
====================================================================================*/
h2, h3, h4, h5, h6 {
  font-weight: bold;
}

.input_password {
  position: relative;
}

.input_password:after {
  content: "";
  position: absolute;
  background-image: url('../common_img/password_look.png');
  background-size: contain;
  width: 20px;
  height: 20px;
  padding: 10px;
  top: 21%;
  right: 10px;
  cursor: pointer;
}

.new_mark {
  width: 55px !important;
  min-width: 55px!important;
  background: #cf0505!important;
  font-size: 14px!important;
  color: #fff!important;
  padding: 1px 5px !important;
  margin: 0 0 0 3px !important;
  font-weight: 500 !important;
}