@charset "UTF-8";
:root {
  --main-color: #4b9d3f;
  --sub-color01: #9edb63;
  --sub-color02: #ffae20;
  --sub-color03: #5ed9bc;
  --sub-color04: #6bd6fb;
  --sub-color05: #98c5d4;
  --light-gray: #f5f6f7;
  --article-bg-blue: #eafcff;
  --bg-light-green: #e7ffe3;
  --bg-light-orange: #ffe6bb;
  --font-color-default: #333333;
  --font-color-gray: #cbcbcb;
  --link-color: #004c91;
  --div-kousya_news: #ffae20;
  --div-soumu: #ff6666;
  --div-ninaite: #b589d1;
  --div-chikusan: #4ebbff;
  --div-nouchi_ikka: #31d169;
  --div-nouchi_nika: #96514d;
}

/*=================================================================*/
/*	webフォントセット
---------------------------------------------------------------*/
/* NotoSansJP */
@font-face {
  font-family: "NotoSansJP";
  font-style: Light;
  font-weight: 200;
  src: url("../font/NotoSansJP-Light.woff2") format("woff2"), url("../font/NotoSansJP-Light.woff") format("woff"), url("../font/NotoSansJP-Light.ttf") format("ttf");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: Regular;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff"), url("../font/NotoSansJP-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: Medium;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2"), url("../font/NotoSansJP-Medium.woff") format("woff"), url("../font/NotoSansJP-Medium.ttf") format("ttf");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: Bold;
  font-weight: 600;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff"), url("../font/NotoSansJP-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: Black;
  font-weight: 800;
  src: url("../font/NotoSansJP-Black.woff2") format("woff2"), url("../font/NotoSansJP-Black.woff") format("woff"), url("../font/NotoSansJP-Black.ttf") format("ttf");
}
/* Montserrat */
@font-face {
  font-family: "Montserrat";
  font-style: Light;
  font-weight: 200;
  src: url("../font/Montserrat-Light.woff2") format("woff2"), url("../font/Montserrat-Light.woff") format("woff"), url("../font/Montserrat-Light.ttf") format("ttf");
}
@font-face {
  font-family: "Montserrat";
  font-style: Regular;
  font-weight: 400;
  src: url("../font/Montserrat-Regular.woff2") format("woff2"), url("../font/Montserrat-Regular.woff") format("woff"), url("../font/Montserrat-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Montserrat";
  font-style: Medium;
  font-weight: 500;
  src: url("../font/Montserrat-Medium.woff2") format("woff2"), url("../font/Montserrat-Medium.woff") format("woff"), url("../font/Montserrat-Medium.ttf") format("ttf");
}
@font-face {
  font-family: "Montserrat";
  font-style: Bold;
  font-weight: 600;
  src: url("../font/Montserrat-Bold.woff2") format("woff2"), url("../font/Montserrat-Bold.woff") format("woff"), url("../font/Montserrat-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "Montserrat";
  font-style: Black;
  font-weight: 800;
  src: url("../font/Montserrat-Black.woff2") format("woff2"), url("../font/Montserrat-Black.woff") format("woff"), url("../font/Montserrat-Black.ttf") format("ttf");
}
/*=================================================================*/
/* ローディング画面
/*=================================================================*/
#fade {
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 201;
}

.loaded #fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 0.8s;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 12em;
  height: 12em;
}

.loader {
  margin: auto;
  font-size: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-indent: -9999em;
  border-top: 0.7em solid rgba(186, 186, 186, 0.2);
  border-right: 0.7em solid rgba(186, 186, 186, 0.2);
  border-bottom: 0.7em solid rgba(186, 186, 186, 0.2);
  border-left: 0.7em solid var(--main-color);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*=================================================================*/
/* 全デバイス共通 */
/*=================================================================*/
/*	reset
---------------------------------------------------------------*/
* {
  padding: 0px;
  margin: 0px;
}

/*	img
---------------------------------------------------------------*/
img {
  border: none;
  vertical-align: middle;
}

/*	table
----------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}

/*	clearfix
---------------------------------------------------------------*/
.cf:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End hide from IE-mac */
/*	link
---------------------------------------------------------------*/
a,
a:visited,
a:active {
  color: var(--link-color);
  text-decoration: none;
  transition: all 0.3s;
}

@media print, screen and (min-width: 1000px) {
  a:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}

/*	color
---------------------------------------------------------------*/
#wrap .red {
  color: #fb0a0a;
}

/*	space
---------------------------------------------------------------*/
#wrap .mt0 {
  margin-top: 0px !important;
}

#wrap .mb0 {
  margin-bottom: 0px !important;
}

#wrap .mr0 {
  margin-right: 0px !important;
}

#wrap .ml0 {
  margin-left: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#wrap .mt100 {
  margin-top: 100px !important;
}

#wrap .mb100 {
  margin-bottom: 100px !important;
}

#wrap .mr100 {
  margin-right: 100px !important;
}

#wrap .ml100 {
  margin-left: 100px !important;
}

/*	ul
---------------------------------------------------------------*/
li {
  list-style-type: none;
}

/*	p
---------------------------------------------------------------*/
p {
  color: #333333;
}

/*	font
---------------------------------------------------------------*/
.f_xsmall {
  font-size: 75% !important;
}

.f_small {
  font-size: 90% !important;
}

.f_large {
  font-size: 125% !important;
}

.f_xlarge {
  font-size: 140% !important;
}

.f_bold {
  font-weight: 700 !important;
}

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

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*	inputreset
---------------------------------------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-box-shadow: none;
  -webkit-text-fill-color: #333;
  transition: background-color 5000s ease-in-out 0s;
}

/*=================================================================*/
body {
  margin: 0 auto;
  color: var(--font-color-default);
  font-family: "NotoSansJP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  word-break: break-all;
  background: #fff;
  box-sizing: border-box;
}

body.noScroll {
  overflow: hidden;
}

/*=================================================================*/
/* アニメーション */
/*=================================================================*/
/*基本アニメーション*/
.fadeUp,
.slideLeft {
  opacity: 1;
  transform: none;
}

/*個別指定*/
.clover_menu,
.post_list ul a.post_link,
.visual_menu a {
  opacity: 1;
  transform: none;
}

/* トップページ */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein02 {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes upFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
    transform: translate(0, 15px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    transform: translate(0, 0);
  }
}
@keyframes downFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
    transform: translate(0, -15px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    transform: translate(0, 0);
  }
}
@keyframes lrFadeIn_l {
  from {
    opacity: 0;
    transform: scale(0.9);
    transform: translate(-15px, 0);
  }
  to {
    opacity: 1;
    transform: scale(1);
    transform: translate(0, 0);
  }
}
@keyframes lrFadeIn_r {
  from {
    opacity: 0;
    transform: scale(0.9);
    transform: translate(15px, 0);
  }
  to {
    opacity: 1;
    transform: scale(1);
    transform: translate(0, 0);
  }
}
@keyframes fallDown {
  from {
    opacity: 0;
    transform: translate(0, -20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/*=================================================================*/
/* Print */
/*=================================================================*/
@media print {
  header {
    position: absolute !important;
    top: 0;
  }
}
/*******************************************************************/
/* PC */
/*******************************************************************/
@media print, screen and (min-width: 1000px) {
  /*<start>==========================================================*/
  html {
    height: 100%;
    font-size: 62.5%;
    /*10px相当にreset*/
  }
  body {
    height: 100%;
    margin: 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    background: #fff url(../images/union/bg_main_dot.png) repeat center center;
  }
  #wrap {
    position: relative;
  }
  .sp {
    display: none !important;
  }
  main {
    padding-bottom: 140px;
  }
  /*=================================================================*/
  /*	header */
  /*=================================================================*/
  .h_sp {
    display: none !important;
  }
  header {
    padding: 15px 40px;
    box-sizing: border-box;
    width: 100%;
    position: sticky;
    top: 0;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(196, 196, 196, 0.4);
    z-index: 100;
  }
  header .inner {
    margin: 0 auto;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
  }
  header .inner .logo > a {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: none !important;
  }
  header .inner .logo > a > img {
    width: 80px;
    height: auto;
  }
  header .inner .logo > a .group_name {
    white-space: nowrap;
  }
  header .inner .logo > a .group_name p {
    line-height: 1;
  }
  header .inner .logo > a .group_name p.cate {
    margin: 0 0 0.2em 0.2em;
    font-size: 1.4rem;
    font-weight: 600;
  }
  header .inner .logo > a .group_name p.name {
    font-size: 3rem;
    font-weight: 600;
  }
  header .inner .logo > a .group_name p.another {
    margin: 0.6em 0 0 0.3em;
    color: var(--font-color-gray);
    font-size: 1.2rem;
  }
  header .inner .nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  header .inner .nav div.sub_menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: min(1.5vw, 20px);
  }
  header .inner .nav div.sub_menu > a {
    padding: 0.5em 1.46em;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--main-color);
    border-radius: 20px;
  }
  header .inner .nav div.sub_menu > a > img {
    width: auto;
    height: 1.1em;
  }
  header .inner .nav div.sub_menu .search_box form {
    padding: 0.6em 1em;
    font-size: 1.3rem;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    border-radius: 0.5em;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  header .inner .nav div.sub_menu .search_box form input[type=submit] {
    width: 14px;
    height: 14px;
    text-indent: 100%;
    white-space: nowrap;
    display: inline-block;
    background: url(../images/union/icon_search_form.svg) no-repeat center center;
    background-size: contain;
  }
  header .inner .nav div.sub_menu .search_box form input[type=submit]:hover {
    cursor: pointer;
  }
  header .inner .nav div.sub_menu .search_box form input[type=submit]:hover {
    cursor: pointer;
  }
  header .inner .nav div.sub_menu .search_box form label input[type=text] {
    width: 10em;
  }
  header .inner .nav ul.main_menu {
    display: flex;
    align-items: center;
    gap: 0.2em 3em;
    transition: all 0.3s;
  }
  header .inner .nav ul.main_menu > li {
    line-height: 1.2;
    position: relative;
  }
  header .inner .nav ul.main_menu > li:first-child:before {
    display: none !important;
  }
  header .inner .nav ul.main_menu > li:before {
    content: "";
    margin: auto;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 100%;
    background: var(--sub-color01);
    position: absolute;
    left: calc(-1.5em - 4px);
    top: 0;
    bottom: -2px;
    transition: all 0.3s;
  }
  header .inner .nav ul.main_menu > li > a {
    color: var(--font-color-default);
    font-size: 1.5rem;
    line-height: 1.1;
  }
  header .inner .nav ul.main_menu > li > a.no_link:hover {
    cursor: default;
    opacity: 1;
  }
  header .inner .nav ul.main_menu > li div.hump {
    content: "";
    margin: auto;
    width: 122px;
    height: 25px;
    background: url(../images/union/menu_hump.svg) no-repeat center bottom;
    background-size: contain;
    position: absolute;
    top: calc(100% - 15px);
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
    transition-delay: 0.2s;
    z-index: 1;
  }
  header .inner .nav ul.main_menu > li > dl.megamenu {
    margin: auto;
    padding: 40px;
    background: var(--main-color);
    width: fit-content;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 40px;
    box-sizing: border-box;
    position: fixed;
    top: 102px;
    left: auto;
    right: 20px;
    z-index: 101;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
    transition-delay: 0.2s;
  }
  header .inner .nav ul.main_menu > li > dl.megamenu.menu01 {
    left: 5%;
    right: 5%;
  }
  header .inner .nav ul.main_menu > li > dl.megamenu.menu02 {
    left: 5%;
    right: min(5%, 40px);
  }
  header .inner .nav ul.main_menu > li > dl.megamenu.menu03 {
    left: 5%;
    right: min(4%, 30px);
  }
  header .inner .nav ul.main_menu > li > dl.megamenu.menu04 {
    margin: 0 0 0 auto;
    left: 5%;
    right: min(4%, 10px);
  }
  header .inner .nav ul.main_menu > li > dl.megamenu dt {
    padding-left: 30px;
    color: #fff;
    font-size: 2.4rem;
    position: relative;
  }
  header .inner .nav ul.main_menu > li > dl.megamenu dt:before {
    content: "";
    margin: auto;
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/union/icon_clover_white.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  header .inner .nav ul.main_menu > li > dl.megamenu dd ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 14px;
  }
  header .inner .nav ul.main_menu > li > dl.megamenu dd ul li a {
    padding: 0.55em 2.375em;
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    background: #fff;
    border-radius: 10px;
  }
  header .inner .nav ul.main_menu > li.active > a {
    color: var(--sub-color01);
  }
  header .inner .nav ul.main_menu > li.active > div.hump {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 5px);
    transition: all 0.25s ease;
    transition-delay: 0.2s;
  }
  header .inner .nav ul.main_menu > li.active > dl.megamenu {
    visibility: visible;
    opacity: 1;
    top: 122px;
    transition: all 0.25s ease;
    transition-delay: 0.2s;
  }
  header .hamburger {
    display: none !important;
  }
  /*=================================================================*/
  /*	footer */
  /*=================================================================*/
  /*<end>============================================================*/
}
@media print and (max-width: 1400px), screen and (min-width: 1000px) and (max-width: 1400px) {
  header .inner .logo {
    width: 300px;
  }
  header .inner .logo > a {
    transform: scale(0.8287292818);
    transform-origin: center left;
  }
}
@media print and (max-width: 1300px), screen and (min-width: 1000px) and (max-width: 1300px) {
  header .inner .logo {
    width: 260px;
  }
  header .inner .logo > a {
    transform: scale(0.7182320442);
    transform-origin: center left;
  }
  header .inner .nav ul.main_menu {
    gap: 0.2em 2em;
  }
  header .inner .nav ul.main_menu > li:before {
    left: calc(-1em - 4px);
  }
  header .inner .nav ul.main_menu > li > a {
    font-size: 1.4rem;
  }
}
@media print and (max-width: 1200px), screen and (min-width: 1000px) and (max-width: 1200px) {
  header .inner .logo {
    width: 240px;
  }
  header .inner .logo > a {
    transform: scale(0.6629834254);
    transform-origin: center left;
  }
}
@media print and (max-width: 1100px), screen and (min-width: 1000px) and (max-width: 1100px) {
  header .inner .nav ul.main_menu {
    flex-wrap: wrap;
    justify-content: end;
  }
}
@media print, screen and (min-width: 1000px) {
  a.topscroll {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    width: 57px;
    height: 57px;
    background: #141414;
  }
  a.page_top {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--sub-color02);
    border-radius: 24px 12px 36px 24px;
    border: 4px solid #fff;
    box-sizing: border-box;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    will-change: transform;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }
  a.page_top.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-10px);
    transition: 0.4s;
    transition-delay: 0.2s;
  }
  a.page_top img {
    width: 56%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    transition: 0.3s;
  }
  a.page_top:hover {
    opacity: 1;
  }
  a.page_top:hover img {
    transform: translateY(-10px);
    transition: 0.3s;
  }
  footer {
    background: var(--main-color) url(../images/union/bg_green_dot.png) repeat center center;
    position: relative;
  }
  footer .inner {
    margin: 0 auto;
    padding: 50px 40px;
    max-width: 1400px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
  }
  footer .inner:before {
    content: url(../images/union/visual_footer_animals.png);
    position: absolute;
    left: 40px;
    bottom: calc(100% - 6px);
  }
  footer .inner .l_box {
    width: calc((100% - 60px) / 2);
    max-width: 640px;
  }
  footer .inner .l_box .info .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  footer .inner .l_box .info .logo > img {
    width: 68px;
    height: auto;
    border: 2px solid #fff;
    border-radius: 100%;
  }
  footer .inner .l_box .info .logo .group_name {
    white-space: nowrap;
  }
  footer .inner .l_box .info .logo .group_name p {
    color: #fff;
    line-height: 1;
  }
  footer .inner .l_box .info .logo .group_name p.cate {
    margin: 0 0 0.4em 0.2em;
    font-size: 1.4rem;
    font-weight: 500;
  }
  footer .inner .l_box .info .logo .group_name p.name {
    font-size: 2.4rem;
    font-weight: 500;
  }
  footer .inner .l_box .info .logo .group_name p.another {
    margin: 0.6em 0 0 0.3em;
    font-size: 1.2rem;
    font-weight: 400;
  }
  footer .inner .l_box .info .access {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
  }
  footer .inner .l_box .info .access p {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
  }
  footer .inner .l_box .map {
    margin-top: 40px;
  }
  footer .inner .l_box .map .gmap_outer {
    border-radius: 40px 40px 40px 160px;
    overflow: hidden;
  }
  footer .inner .l_box .map .gmap_outer iframe {
    width: 100%;
    max-width: 640px;
  }
  footer .inner .r_box {
    margin-top: 30px;
    width: calc((100% - 60px) / 2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 56px;
  }
  footer .inner .r_box > div {
    width: calc((100% - 56px) / 2);
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  footer .inner .r_box > div dl dt {
    border-bottom: 1px solid var(--sub-color01);
    line-height: 1.2;
  }
  footer .inner .r_box > div dl dt:not(:has(a)) {
    padding-bottom: 10px;
  }
  footer .inner .r_box > div dl dt a {
    margin-bottom: 10px;
    padding-right: 20px;
    color: #fff;
    font-weight: 400;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    transition: 0.3s;
  }
  footer .inner .r_box > div dl dt a:after {
    content: "";
    margin: auto;
    width: 17px;
    height: 17px;
    display: inline-block;
    background-image: url(../images/union/icon_allow_right.svg);
    background-repeat: no-repeat;
    background-size: 8px auto;
    background-position: center center;
    border: 1px solid #fff;
    border-radius: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(0px);
    transition: 0.3s;
  }
  footer .inner .r_box > div dl dt a:hover:after {
    transform: translateX(5px);
    transition: 0.3s;
  }
  footer .inner .r_box > div dl dd {
    margin-top: 0.8em;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
  }
  footer .inner .r_box > div dl dd li {
    padding-left: 1.1em;
    position: relative;
  }
  footer .inner .r_box > div dl dd li:before {
    content: "";
    width: 6px;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0.74em;
  }
  footer .inner .r_box > div dl dd li a {
    color: #fff;
    font-weight: 400;
  }
  footer .inner .r_box > div ul.mini_map {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
  }
  footer .inner .r_box > div ul.mini_map li {
    padding-left: 1em;
    position: relative;
  }
  footer .inner .r_box > div ul.mini_map li:before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0.74em;
  }
  footer .inner .r_box > div ul.mini_map li a {
    color: #fff;
    font-weight: 400;
  }
  footer .copy {
    padding: 1.5em;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    background: #555555;
    width: 100%;
    box-sizing: border-box;
  }
}
@media print and (max-width: 1100px), screen and (min-width: 1000px) and (max-width: 1100px) {
  footer .inner .l_box {
    width: 100%;
    max-width: 100%;
  }
  footer .inner .l_box .info {
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }
  footer .inner .l_box .info .access {
    margin-top: 0;
    gap: 0.2em;
  }
  footer .inner .l_box .map .gmap_outer iframe {
    width: 100%;
    max-width: 100%;
    height: 400px;
  }
  footer .inner .r_box {
    margin: 0 auto;
    width: 80%;
    gap: 40px;
  }
  footer .inner .r_box > div {
    width: calc((100% - 40px) / 2);
  }
}
/*******************************************************************/
/* SP */
/*******************************************************************/
@media screen and (max-width: 999px) {
  /*<start>==========================================================*/
  html {
    height: 100%;
    font-size: 62.5%;
    /*10px相当にreset*/
  }
  body {
    height: 100%;
    margin: 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    background: #fff url(../images/union/bg_main_dot.png) repeat center center;
  }
  html,
  body {
    /* iOSの文字サイズ自動調整を防ぐ */
    -webkit-text-size-adjust: 100%;
    /* Safariでフォントを滑らかに見せる */
    -webkit-font-smoothing: antialiased;
  }
  img {
    width: 100%;
    height: auto;
  }
  #wrap {
    position: relative;
  }
  .pc {
    display: none !important;
  }
  main {
    padding-bottom: 20%;
  }
  /*=================================================================*/
  /*	header */
  /*=================================================================*/
  .h_pc {
    display: none !important;
  }
  header {
    width: 100%;
    height: 61px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0px 2px 8px -3px rgba(100, 100, 100, 0.2);
    position: sticky;
    top: -1px;
    z-index: 100;
    /*=================================================================*/
    /*	ドロワーメニュー
    /*=================================================================*/
  }
  header .inner {
    padding: 8px 60px 8px 8px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
  }
  header .inner .logo > a {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  header .inner .logo > a img {
    width: auto;
    height: 44px;
  }
  header .inner .logo > a .group_name {
    white-space: nowrap;
  }
  header .inner .logo > a .group_name p {
    line-height: 1;
  }
  header .inner .logo > a .group_name p.cate {
    margin: 0 0 0.2em 0.1em;
    font-size: 1.1rem;
    font-weight: 600;
  }
  header .inner .logo > a .group_name p.name {
    font-size: 1.6rem;
    font-weight: 600;
  }
  header .inner .logo > a .group_name p.another {
    margin: 0.5em 0 0 0.2em;
    color: var(--font-color-gray);
    font-size: 0.9rem;
  }
  header .hamburger {
    width: 44px;
    aspect-ratio: 1;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
  }
  header .hamburger .bdr {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 54%;
    height: 3px;
    background: #fff;
    transition: all 0.4s;
  }
  header .hamburger .bdr:nth-child(1) {
    top: calc(34% - 1.5px);
  }
  header .hamburger .bdr:nth-child(2) {
    top: calc(50% - 1.5px);
  }
  header .hamburger .bdr:nth-child(3) {
    top: calc(66% - 1.5px);
  }
  header .hamburger.active .bdr:nth-child(1) {
    transform: translateY(7.5px) rotate(-45deg);
  }
  header .hamburger.active .bdr:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  header .hamburger.active .bdr:nth-child(3) {
    transform: translateY(-7.5px) rotate(45deg);
  }
  header nav.drawer {
    margin: auto;
    padding: 0 4% 4%;
    width: 100vw;
    height: 100vh;
    background: #fff url(../images/union/bg_main_lattice.png) repeat center center;
    box-sizing: border-box;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 8;
    transition: 0.5s;
  }
  header nav.drawer.open {
    right: 0;
  }
  header nav.drawer .sub_menu {
    margin-bottom: 3%;
    padding-right: 46px;
    height: 60px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 10px;
  }
  header nav.drawer .sub_menu > a {
    padding: 0.5em 1.2em;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--main-color);
    border-radius: 20px;
  }
  header nav.drawer .sub_menu > a > img {
    width: auto;
    height: 1.1em;
  }
  header nav.drawer .sitemap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  header nav.drawer .sitemap dl {
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 2px 8px -3px rgba(100, 100, 100, 0.2);
  }
  header nav.drawer .sitemap dl dt {
    padding: 0.58em 0.58em 0.58em 2.2em;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    width: 100%;
    background: var(--sub-color01);
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
  }
  header nav.drawer .sitemap dl dt:before {
    content: "";
    margin: auto;
    width: 32px;
    height: 28px;
    display: block;
    background: url(../images/union/icon_clover_green.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.55em;
  }
  header nav.drawer .sitemap dl dt:has(+ dd) {
    padding-right: 2em;
  }
  header nav.drawer .sitemap dl dt:has(+ dd):after {
    content: "";
    margin: auto;
    width: 14px;
    height: 8px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 1.2em;
    bottom: 0;
    transform: rotate(0deg);
    transition: 0.4s;
  }
  header nav.drawer .sitemap dl dt.open:after {
    transform: rotate(-180deg);
    transition: 0.4s;
  }
  header nav.drawer .sitemap dl dt > a,
  header nav.drawer .sitemap dl dt > span {
    color: #fff;
  }
  header nav.drawer .sitemap dl dd {
    margin-top: -16px;
    padding: calc(16px + 1em) 2em 1em;
    background: #fff;
    width: 100%;
    display: none;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
  }
  header nav.drawer .sitemap dl dd ul {
    font-size: 1.8rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.78em;
  }
  header nav.drawer .sitemap dl dd ul > li {
    padding-left: 1.5em;
    position: relative;
  }
  header nav.drawer .sitemap dl dd ul > li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    background: var(--sub-color02);
    border-radius: 100%;
    position: absolute;
    left: 0.4em;
    top: calc(0.6em - 4px);
  }
  header nav.drawer .sitemap dl dd ul > li > a {
    color: var(--font-color-default);
  }
  header nav.drawer .search_box {
    margin-top: 30px;
  }
  header nav.drawer .search_box form {
    padding: 0.6em 1em;
    font-size: 1.8rem;
    background: #f3f3f3;
    border-radius: 0.5em;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  header nav.drawer .search_box form input[type=submit] {
    width: 1em;
    aspect-ratio: 1;
    text-indent: 100%;
    white-space: nowrap;
    display: inline-block;
    background: url(../images/union/icon_search_form.svg) no-repeat center center;
    background-size: contain;
  }
  header nav.drawer .search_box form input[type=submit]:hover {
    cursor: pointer;
  }
  header nav.drawer .search_box form input[type=submit]:hover {
    cursor: pointer;
  }
  header nav.drawer .search_box form label input[type=text] {
    width: 10em;
  }
  /*=================================================================*/
  /*	footer */
  /*=================================================================*/
  a.page_top {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--sub-color02);
    border-radius: 14px 8px 24px 14px;
    border: 4px solid #fff;
    box-sizing: border-box;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10;
    will-change: transform;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }
  a.page_top.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-10px);
    transition: 0.4s;
    transition-delay: 0.2s;
  }
  a.page_top img {
    width: 54%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    transition: 0.3s;
  }
  a.page_top:active {
    opacity: 1;
  }
  a.page_top:active img {
    transform: translateY(-10px);
    transition: 0.3s;
  }
  footer {
    background: var(--main-color) url(../images/union/bg_green_dot.png) repeat center center;
  }
  footer .inner {
    margin: 0 auto;
    padding: 6% 4%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
  }
  footer .inner:before {
    content: "";
    width: 50%;
    max-width: 274px;
    aspect-ratio: 137/45;
    display: block;
    background: url(../images/union/visual_footer_animals.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 4%;
    bottom: calc(100% - 1px);
  }
  footer .inner .l_box {
    width: 100%;
  }
  footer .inner .l_box .info .logo {
    margin: 0 auto;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  footer .inner .l_box .info .logo > img {
    width: 44px;
    height: auto;
    border: 2px solid #fff;
    border-radius: 100%;
  }
  footer .inner .l_box .info .logo .group_name {
    white-space: nowrap;
  }
  footer .inner .l_box .info .logo .group_name p {
    color: #fff;
    line-height: 1;
  }
  footer .inner .l_box .info .logo .group_name p.cate {
    margin: 0 0 0.2em 0.1em;
    font-size: 1.1rem;
    font-weight: 500;
  }
  footer .inner .l_box .info .logo .group_name p.name {
    font-size: 1.6rem;
    font-weight: 500;
  }
  footer .inner .l_box .info .logo .group_name p.another {
    margin: 0.5em 0 0 0.2em;
    font-size: 0.9rem;
    font-weight: 400;
  }
  footer .inner .l_box .info .access {
    margin: 30px auto 0;
    text-align: center;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
  }
  footer .inner .l_box .info .access p {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
  }
  footer .inner .l_box .map {
    margin-top: 30px;
  }
  footer .inner .l_box .map .gmap_outer {
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 20px 20px 20px 100px;
    overflow: hidden;
  }
  footer .inner .l_box .map .gmap_outer iframe {
    width: 100%;
    aspect-ratio: 3/2;
  }
  footer .inner .r_box {
    display: none;
  }
  footer .copy {
    padding: 1.5em 6em;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    word-break: keep-all;
    background: #555555;
    width: 100%;
    box-sizing: border-box;
  }
  /*<end>============================================================*/
}
/*******************************************************************/
/* TB(header only) */
/*******************************************************************/
@media screen and (min-width:800px) and ( max-width:1000px) {
  /*<start>==========================================================*/
  /*<end>============================================================*/
}/*# sourceMappingURL=theme.css.map */