@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
/*  position: relative;*/
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media (min-width: 960px) {
  .hide-l  { display: none !important; }
}
@media (max-width: 959px) and (min-width: 520px) {
  .hide-m  { display: none !important; }
}
@media (min-width: 520px) {
  .hide-ml  { display: none !important; }
}
@media (max-width: 519px) {
  .hide-s  { display: none !important; }
}

/* .rollover  */
.rollover {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.rollover:hover {
  opacity: 0.7;
}
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/* --------------- .wrapper --------------- */
.wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}


/* --------------- .coming_soon --------------- */
.coming_soon {
  display: inline-block;
  padding: 15px 35px;
  background-color: #aaa;
  border-radius: 40px;
  color: #fff;
}


/* --------------- .btn --------------- */
.btn {
  position: relative;
  display: inline-block;
  background-color: #419F49;
  border: 1px solid #419F49;
  border-radius: 40px;
  box-shadow: 6px 6px 0 0 #FFF7D6;
  color: #fff;
  transition: all ease 0.3s;
}
.btn.w,
.btn:hover {
  background-color: #fff;
  color: #419F49;
}
.btn .arr {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 30px;
  vertical-align: middle;
  transition: all ease 0.3s;
}
.btn.w .arr,
.btn:hover .arr {
  background-color: #419F49;
}
.btn .arr::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  right: 0;
  display: block;
  width: 9px;
  height: 14px;
  margin: auto;
  background-color: #419F49;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: all ease 0.3s;
}
.btn.w .arr::before,
.btn:hover .arr::before {
  background-color: #fff;
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #nav
** --------------------------------------------------------- */
#nav {
  position: fixed;
  z-index: 1000;
  left: 40px;
  top: 12px;
}
#nav .inner {
  position: relative;
  background-color: #FF951B;
  border-radius: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
#nav .gnavi_btn {
}
#nav .gnavi {
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: all ease 0.3s;
  opacity: 0;
}
#nav .gnavi.active {
  max-width: var(--max-width);
  max-height: var(--max-height);
  opacity: 1;
}
#nav .gnavi ul {
  padding: 15px 15px 30px;
}
#nav .gnavi li:not(:first-child) {
  margin-top: 15px;
}
#nav .gnavi a {
  display: block;
  padding-right: 80px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  word-break: keep-all;
}
#nav .gnavi a:hover {
  text-decoration: underline;
}
#nav .deco {
  position: absolute;
  left: 0px;
  bottom: -30px;
  pointer-events: none;
}
@media (max-width: 519px) {
  #nav {
    left: 20px;
    top: 20px;
  }
  #nav .inner {
  }
  #nav .deco {
    left: -10px;
    bottom: -27px;
    width: 58px;
  }
}

/* gnavi_btn */
.gnavi_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 21px 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.gnavi_btn.open {
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
}
.menu-trigger span {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.gnavi_btn .menu-trigger span:nth-of-type(1) {
  top: 0%;
}
.gnavi_btn .menu-trigger span:nth-of-type(3) {
  bottom: 0%;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  bottom: 50%;
  transform-origin: center;
  transform: translateY(50%) rotate(45deg);
}
@media (max-width: 519px) {
  .menu-trigger {
    width: 26px;
    height: 18px;
  }
}




/* ---------------------------------------------------------
 * #app_top
** --------------------------------------------------------- */
#app_top {
  position: fixed;
  z-index: 1000;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  box-shadow: 6px 6px 0 0 #fff;
  transition: all ease 0.3s;
}
#app_top a:hover {
/*  background-color: #0F3568DE;*/
}
@media (max-width: 519px) {
  #app_top {
    flex-direction: row;
    justify-content: space-between;
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 0 20px;
  }
  #app_top a {
    display: inline-flex;
    width: auto;
  }
}

/* .app */
#app_top .app {
  position: relative;
  margin-bottom: 10px;
  padding: 30px 0;
  font-size: 15px;
  letter-spacing: 3px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#app_top .app .arr {
  margin-top: 10px;
}
#app_top .app img {
  position: absolute;
  right: -35px;
  bottom: -25px;
}
@media (max-width: 519px) {
  #app_top .app {
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 1px;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  #app_top .app:nth-child(1) {
    width: calc(13000% / 320);
    width: 100%;
  }
  #app_top .app:nth-child(2) {
    width: calc(17500% / 320);
  }
  #app_top .app .arr {
    margin-top: 0;
    margin-left: 10px;
  }
  #app_top .app img {
    right: calc(50% - 170px);
  }
}

/* .top */
#app_top .top {
  position: relative;
  top: 0;
  height: 70px;
  font-size: 12px;
  transition: all ease 0.3s;
}
#app_top .top.disable {
  top: 120px;
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #fv
** --------------------------------------------------------- */
#fv {
  position: relative;
  aspect-ratio: 1500 / 882;
/*  background-image: linear-gradient(175deg, #419F49 49.9%, #EB6100 50.1%);*/
}
#fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 519px) {
  #fv {
    padding-top: 0;
  }
  #fv img {
    position: static;
    height: auto;
  }
}




/* ---------------------------------------------------------
 * #lead
** --------------------------------------------------------- */
#lead {
  position: relative;
}
#lead .deco_l,
#lead .deco_r {
  position: absolute;
}
#lead .deco_l {
  width: calc(24800% / 1500);
  top: 30px;
  left: 0;
}
#lead .deco_r {
  width: calc(39000% / 1500);
  top: 0;
  right: 0;
}
#lead .inner {
  display: flex;
  justify-content: space-between;
  padding-top: 130px;
  padding-bottom: 100px;
}
#lead .img {
  width: calc(60600% / 1200);
}
#lead .img img {
  width: 100%;
}
#lead .content {
  width: calc(51500% / 1200);
}
#lead h2 {
  color: #419F49;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}
#lead p {
  margin-top: 30px;
}
#lead .btn_area {
  margin-top: 30px;
}
#lead .btn_area .btn {
  width: 400px;
  max-width: 100%;
  padding: 20px 35px;
  font-size: 18px;
  text-align: center;
}
#lead .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #lead {
    position: relative;
    z-index: 1;
  }
  #lead .deco_l {
    width: calc(11300% / 390);
    top: 100%;
    left: 0;
  }
  #lead .deco_r {
    width: calc(17600% / 390);
    top: 250px;
    right: 0;
  }
  #lead .inner {
    display: block;
    padding: 80px 20px 0;
    background-position: bottom right -40px;
    background-size: 90%;
  }
  #lead .img {
    width: 100%;
  }
  #lead .img img {
  }
  #lead .content {
    width: 100%;
    padding-left: 0;
    margin-top: 45px;
  }
  #lead h2 {
    font-size: 30px;
  }
  #lead p {
    margin-top: 20px;
    font-size: 15px;
  }
  #lead .btn_area .btn {
    width: 100%;
    padding: 20px;
    font-size: 15px;
    text-align: center;
  }
}




/* ---------------------------------------------------------
 * #herbishall
** --------------------------------------------------------- */
#herbishall {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
/* .header */
#herbishall .header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}
#herbishall .header .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(calc(51000% / 1200) + 20px);
  max-width: 510px;
  padding-left: 20px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: 120px;
}
#herbishall .header .bg {
  position: absolute;
  left: -20px;
  top: 0;
  max-width: 100%;
}
#herbishall .header h2 {
  width: 100%;
  color: #419F49;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}
#herbishall .header p {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
}
#herbishall .header .img {
  width: calc(72200% / 1500);
  height: 480px;
}
#herbishall .header .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 519px) {
  #herbishall {
  }
  #herbishall .header {
    position: relative;
    z-index: 2;
    display: block;
    padding-bottom: 40px;
  }
  #herbishall .header .content {
    width: 100%;
    padding-right: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  #herbishall .header .bg {
    left: 30px;
    top: -50px;
    width: calc(27000% / 390);
  }
  #herbishall .header h2 {
    font-size: 30px;
  }
  #herbishall .header p {
/*    max-width: 500px;*/
/*    margin-top: 20px;*/
  }
  #herbishall .header .img {
    width: 100%;
    height: auto;
    padding: 0 20px;
  }
  #herbishall .header .img img {
    width: 100%;
    height: auto;
  }
}

/* .detail */
#herbishall .detail {
  position: relative;
}
#herbishall .detail .deco_l,
#herbishall .detail .deco_r {
  position: absolute;
}
#herbishall .detail .deco_l {
  left: 0;
  top: -50px;
  width: calc(39200% / 1500);
}
#herbishall .detail .deco_r {
  right: 0;
  top: -80px;
  width: calc(33700% / 1500);
}
#herbishall .detail .box {
  padding: 40px 65px 60px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 7px 7px 0px 0px #FEDC49;
}
#herbishall .detail table {
  width: 100%;
}
#herbishall .detail th,
#herbishall .detail td {
  border-bottom: 1px dashed #000;
}
#herbishall .detail th {
  padding: 10px 20px 10px 0;
  vertical-align: top;
}
#herbishall .detail th span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 36px;
  background-color: #FF951B;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
#herbishall .detail td {
  padding: 13px 0;
}
#herbishall .detail td a {
  display: inline-block;
  padding-right: 20px;
  background-image: url("../img/ico_linkout.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
@media (max-width: 519px) {
  #herbishall .detail {
    position: relative;
    z-index: 1;
  }
  #herbishall .detail .deco_l {
    left: 0;
    top: -145px;
    width: calc(17600% / 390);
  }
  #herbishall .detail .deco_r {
    display: none;
  }
  #herbishall .detail .box {
    padding: 30px 20px;
  }
  #herbishall .detail th,
  #herbishall .detail td {
    display: block;
  }
  #herbishall .detail th {
    border-bottom: none;
    padding: 0;
  }
  #herbishall .detail th span {
    width: 100%;
    height: 36px;
  }
  #herbishall .detail td {
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 15px;
  }
}

/* .access */
#herbishall .access {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
#herbishall .access .map {
  width: calc(100% - 410px);
}
#herbishall .access .map iframe {
  max-width: 100%;
}
#herbishall .access .train {
  width: 370px;
}
#herbishall .access img {
}
#herbishall .access p {
  margin-top: 10px;
  font-size: 15px;
}
#herbishall .access table {
  margin-top: 20px;
}
#herbishall .access td {
  padding: 10px 0;
  font-size: 15px;
}
@media (max-width: 519px) {
  #herbishall .access {
    display: block;
    margin-top: 30px;
  }
  #herbishall .access .map {
    width: 100%;
  }
  #herbishall .access .map iframe {
    width: 100%;
    height: 200px;
  }
  #herbishall .access .train {
    width: 100%;
    margin-top: 30px;
  }
  #herbishall .access .ttl {
    text-align: center;
  }
  #herbishall .access .ttl img {
    max-width: 100%;
  }
  #herbishall .access p {
    margin-top: 10px;
    font-size: 15px;
  }
  #herbishall .access table {
    margin-top: 10px;
  }
  #herbishall .access tr {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  #herbishall .access td {
    display: block;
    padding: 10px 0;
    font-size: 15px;
  }
  #herbishall .access td:nth-child(1) {
    width: 100%;
    padding-bottom: 5px;
    margin-bottom: 0;
    border-bottom: none;
    font-weight: bold;
  }
  #herbishall .access td:nth-child(2) {
    width: calc(100% - 80px);
    padding-top: 0;
    padding-bottom: 5px;
    margin-bottom: 0;
  }
  #herbishall .access td:nth-child(3) {
    width: 80px;
    padding-top: 0;
    padding-bottom: 5px;
    margin-bottom: 0;
  }
}




/* ---------------------------------------------------------
 * #company
** --------------------------------------------------------- */
#company {
  position: relative;
  z-index: 1;
  margin: 60px 0;
  padding-left: 20px;
}
#company .box {
  max-width: calc(100vw - 20px);
  width: calc(100vw - calc(calc(100vw - 1200px) / 2));
  margin-left: auto;
  background-color: #FAFFF3;
}
#company .deco_t,
#company .deco_b {
  position: absolute;
}
#company .deco_t {
  top: -130px;
  right: 84px;
  width: calc(16800vw / 1500);
}
#company .deco_b {
  bottom: -30px;
  right: 0;
  width: calc(25300vw / 1500);
}
#company .inner {
  display: grid;
  gap: 30px;
  grid-template-areas:
    "h2       p"
    "btn_area btn_area";
  max-width: 1200px;
  padding: 60px 0;
}
#company h2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-area: h2;
  color: #419F49;
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}
#company p {
  grid-area: p;
}
#company .btn_area {
  grid-area: btn_area;
  text-align: center;
}
#company .btn_area a {
  padding: 20px 35px;
  font-size: 18px;
  text-align: center;
}
#company .btn_area a .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #company {
    margin: 45px 0 60px;
    padding-left: 50px;
  }
  #company .box {
    max-width: 100%;
    width: 100%;
    border-radius: 30px 0 0 30px;
  }
  #company .deco_t {
    top: -80px;
    left: 0;
    width: calc(7300vw / 390);
  }
  #company .deco_b {
    top: -20px;
    right: 0;
    width: calc(11100vw / 390);
  }
  #company .inner {
    display: block;
    margin-left: -20px;
    padding: 45px 0;
  }
  #company h2 {
    display: block;
    font-size: 30px;
  }
  #company p {
    margin-top: 10px;
  }
  #company .btn_area {
    margin-top: 20px;
    margin-left: -20px;
  }
  #company .btn_area a,
  #company .btn_area .coming_soon {
    padding: 15px 30px;
    font-size: 15px;
  }
}




/* ---------------------------------------------------------
 * #event
** --------------------------------------------------------- */
#event {
  position: relative;
  z-index: 1;
  background-color: #FFFBED;
}
#event .deco_l,
#event .deco_r {
  position: absolute;
}
#event .deco_l {
  top: -55px;
  left: 0;
  width: calc(25300vw / 1500);
}
#event .deco_r {
  bottom: -55px;
  right: 0;
  width: calc(50400vw / 1500);
}
#event .inner {
  padding: 50px 0 100px;
}
@media (max-width: 519px) {
  #event {
  }
  #event .deco_l {
    top: -130px;
    left: auto;
    right: 0;
    width: calc(11300vw / 390);
  }
  #event .deco_r {
    bottom: -80px;
    right: 0;
    width: calc(22500vw / 390);
  }
  #event .deco_sp {
    position: absolute;
    top: -80px;
    left: 0;
    width: calc(15100vw / 390);
  }
  #event .inner {
    padding-bottom: 50px;
  }
}

#event h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 104px;
  background-image: url("../img/event_tit_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #419F49;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
#event .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#event section {
  position: relative;
  width: calc(calc(100% - 40px) / 3);
  margin-top: 40px;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
}
#event section:nth-child(1) {
  box-shadow: 5px 5px 0 0 #FEDC49;
}
#event section:nth-child(2) {
  box-shadow: 5px 5px 0 0 #FEAF59;
}
#event section:nth-child(3) {
  box-shadow: 5px 5px 0 0 #FD7780;
}
#event h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: #419F49;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
#event .photo {
  max-width: 100%;
}
#event p {
  margin-top: 20px;
  text-align: left;
}
#event p.note {
  margin-top: 5px;
  font-size: 14px;
}
#event p.note2 {
  margin-top: 5px;
  text-align: left;
}
#event p.note2 span {
  display: inline-block;
  padding: 3px 7px;
  background-color: #FFF7D6;
  color: #419F49;
  font-weight: bold;
}
#event ul {
  text-align: left;
  line-height: 32px;
}
#event ul.simple {
  color: #419F49;
  font-size: 15px;
  font-weight: bold;
}
#event li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  padding: 5px 5px 5px 15px;
  background-color: #FFF7D6;
  font-size: 14px;
}
#event ul.simple li {
  color: #419F49;
  font-size: 15px;
  font-weight: bold;
}
#event ul.time_only {
  margin-bottom: 20px;
}
#event ul.time_only li {
  display: inline-block;
}
#event li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  display: block;
  width: 10px;
  height: 4px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #FF951B;
}
#event li:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 14px;
  margin-left: auto;
  margin-right: auto;
  border-right: 1px dashed #000;
}
#event li span {
  flex-shrink: 0;
  display: inline-block;
  width: 120px;
  margin-right: 10px;
  color: #419F49;
  font-size: 19px;
  font-weight: bold;
}
#event .btn_area {
  margin-top: 20px;
  text-align: center;
}
#event .btn_area .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 55px;
  font-size: 17px;
}
#event .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #event h2 {
    height: 84px;
    font-size: 30px;
  }
  #event .wrapper {
    display: block;
  }
  #event section {
    width: 100%;
    margin-top: 20px;
    padding: 30px 20px;
  }
  #event section:first-child {
    margin-top: 20px;
  }
  #event h3 {
    display: block;
    font-size: 28px;
  }
  #event p {
    font-size: 15px;
  }
  #event ul {
  }
  #event li {
  }
  #event li::before {
  }
  #event li:not(:first-child)::after {
  }
  #event li span {
  }
  #event .btn_area {
    margin-top: 30px;
    padding: 0 20px;
  }
  #event .btn_area .btn {
    width: 100%;
    padding: 20px;
    font-size: 15px;
  }
}




/* ---------------------------------------------------------
 * #flow
** --------------------------------------------------------- */
#flow {
  padding-top: 80px;
  padding-bottom: 80px;
}
#flow h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 104px;
  margin-bottom: 40px;
  background-image: url("../img/flow_tit_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #419F49;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
#flow .inner {
  position: relative;
  padding-top: calc(30000% / 1200);
  background-image: url("../img/flow_bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
#flow .inner .btn_area {
  position: absolute;
  z-index: 1;
  left: 0;
  top: calc(17000% / 294);
  width: calc(38000% / 1200);
  padding-right: 14px;
  text-align: center;
}
#flow .inner .btn_area .btn {
  max-width: 300px;
  width: 100%;
  padding: 20px;
  font-size: 18px;
}
#flow .inner .btn_area .btn span {
  margin-left: 15px;
}
#flow .inner .btn_area p {
  margin-top: 10px;
  font-size: 15px;
}
@media (max-width: 1199px) {
  #flow .inner .btn_area .btn {
    width: calc(23.75rem + ((1vw - 12px) * 62.5));
  }
}
@media (max-width: 519px) {
  #flow {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  #flow .wrapper {
  }
  #flow h2 {
    height: 160px;
    background-image: url("../img/flow_tit_bg_sp.png");
    font-size: 30px;
  }
  #flow h2 img {
    height: 30px;
  }
  #flow .inner {
    margin-top: -70px;
    padding-top: calc(188500% / 644);
    background-image: url("../img/flow_bg_sp.png");
  }
  #flow .inner .btn_area {
    top: calc(16000vw / 390);
    width: 100%;
    padding-left: 30px;
    padding-right: 0;
  }
  #flow .inner .btn_area .btn {
    width: 90%;
    font-size: 15px;
  }
  #flow .inner .btn_area p {
    font-size: 14px;
  }
}




/* ---------------------------------------------------------
 * #bnr
** --------------------------------------------------------- */
#bnr {
  padding: 0 20px 100px;
  text-align: center;
}
#bnr img {
  max-width: 100%;
}




/* ---------------------------------------------------------
 * #footer
** --------------------------------------------------------- */
#footer {
  padding: 30px 0px 10px;
  background: #419F49;
  color: #fff;
}
#footer .wrapper {
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#footer .logo {
}
#footer .logo img {
  max-width: 100%;
}
#footer .content {
  display: flex;
  padding-top: 30px;
}
#footer .left {
  width: 230px;
}
#footer .left dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  line-height: 2;
}
#footer .left dt {
  position: relative;
  display: flex;
  align-items: center;
  width: 80px;
  padding-left: 10px;
}
#footer .left dt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 1px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #fff;
}
#footer .left dd {
  width: calc(100% - 80px);
}
#footer .left dd span {
  font-size: 14px;
}
#footer .right {
  padding-left: 50px;
  margin-left: 50px;
  border-left: 1px solid #fff;
}
#footer .right .ttl {
  flex-shrink: 0;
  font-size: 15px;
}
#footer .right p {
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
#footer .note {
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
}
#footer .copy {
  margin-top: 20px;
  font-size: 11px;
  text-align: center;
}
@media (max-width: 519px) {
  #footer .wrapper {
    padding-bottom: 110px;
  }
  #footer .inner {
    display: block;
  }
  #footer .logo {
  }
  #footer .logo img {
    max-width: 100%;
    width: 100%;
  }
  #footer .content {
    display: block;
    width: 270px;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .left {
    margin-top: 30px;
  }
  #footer .left dl {
  }
  #footer .left dt {
  }
  #footer .left dd {
  }
  #footer .right {
    padding-top: 20px;
    padding-left: 0;
    margin-top: 20px;
    margin-left: 0;
    border-top: 1px solid #fff;
    border-left: none;
    text-align: center;
  }
  #footer .right .ttl {
    font-size: 14px;
  }
  #footer .right p {
    margin-top: 10px;
    font-size: 17px;
  }
  #footer .right p span {
    display: inline-block;
    white-space: nowrap;
  }
  #footer .sp_contact_footer {
    margin-top: 30px;
    text-align: center;
  }
  #footer .sp_contact_footer .ttl {
    font-size: 14px;
  }
  #footer .sp_contact_footer p {
    font-size: 17px;
    font-weight: bold;
  }
  #footer .note {
    text-align: left;
  }
  #footer .copy {
    margin-top: 20px;
    font-size: 10px;
  }
}