@charset "UTF-8";
/*=================================================================*/
/*	webフォント
/*=================================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 100;
  src: url("../font/NotoSansJP-Thin.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 300;
  src: url("../font/NotoSansJP-Light.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  src: url("../font/NotoSansJP-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Yu Mincho";
  font-weight: 400;
  src: url("../font/yu-mincho-regular.woff") format("woff");
}
@font-face {
  font-family: "Yu Mincho";
  font-weight: 600;
  src: url("../font/yu-mincho-demibold.woff") format("woff");
}
/*=================================================================*/
/* ローディング画面
/*=================================================================*/
#fade {
  display: none;
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1000;
}

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

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

.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 #2f75bd;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@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;
  max-width: 100%;
  height: auto;
}

/*	table
----------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
  background-color: #FFF;
}
table th, table td {
  border: solid 1px #DDD;
  padding: 15px;
}
table th {
  background-color: #fbfbfb;
  font-weight: 700;
}

/*	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 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a,
a:visited,
a:active {
  text-decoration: none;
}

@media print, screen and (min-width: 769px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/*	space
---------------------------------------------------------------*/
#wrap .mb0 {
  margin-bottom: 0 !important;
}

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

#wrap .mb15 {
  margin-bottom: 15px;
}

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

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

#wrap .mb60 {
  margin-bottom: 50px;
}

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

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

html {
  height: 100%;
  font-size: 62.5%;
} /*10px相当にreset*/
body {
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
  word-break: break-all;
  font-family: "Noto Sans JP";
  color: #000;
  background: #fff;
}
body.noScroll {
  overflow: hidden;
}

/*=================================================================*/
/* body */
/*=================================================================*/
body, a {
  color: #333;
}

body {
  position: relative;
}

body.noScroll {
  overflow: hidden;
}

/*=================================================================*/
/*	header */
/*=================================================================*/
header {
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  top: 0;
  position: fixed;
}
header > .inner {
  background-color: #fff;
  padding: 20px 120px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(196, 196, 196, 0.4);
  transition: all 0.3s ease;
}
header > .inner .logo > a {
  display: flex;
  align-items: center;
  gap: 12px;
}
header > .inner .logo > a > img {
  width: 47px;
  height: auto;
}
header > .inner .logo > a .group_name h1, header > .inner .logo > a .group_name .h1_title {
  font-weight: 700;
  text-align: left;
  font-size: 2.7rem;
  line-height: 3rem;
  margin-bottom: 2px;
}
header > .inner .logo > a .group_name h1 span, header > .inner .logo > a .group_name .h1_title span {
  font-size: 2rem;
}
header > .inner .logo > a .group_name .english {
  color: #999;
  font-weight: 500;
  letter-spacing: 3.6px;
  font-size: 1.2rem;
}
header > .inner .nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
header > .inner .nav li {
  letter-spacing: 0.7px;
  font-size: 1.4rem;
}
header > .inner .nav li a {
  padding: 14px 30px 50px;
  position: relative;
}
header > .inner .nav li a span {
  color: #1786D5;
  font-weight: 500;
  letter-spacing: 0.6px;
  font-size: 1.2rem;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%);
}
header > .inner .nav li:nth-child(3) a {
  margin-right: 40px;
}
header > .inner .nav .box_menu {
  padding: 19px 20px 13px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
header > .inner .nav .box_menu a {
  display: block;
  padding: 0;
}
header > .inner .nav .box_menu a img {
  width: 27px;
  height: auto;
  margin-bottom: 5px;
  transform: translateY(0px);
  transition: all 0.3s;
}
header > .inner .nav .box_menu a p {
  letter-spacing: 0.8px;
}
header > .inner .nav .box_menu a:hover img {
  transform: translateY(-5px);
  transition: all 0.3s;
}
header .mega_list.pc {
  position: relative;
}
header .mega_list.pc .megamenu.menu01 {
  position: absolute;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  right: 120px;
  border-radius: 0;
  background-color: rgba(23, 134, 213, 0.9);
  width: 48%;
  color: #fff;
  padding: 15px 30px 28px;
  max-width: 590px;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.5s ease;
}
header .mega_list.pc .megamenu.menu01::after {
  content: "";
  position: absolute;
  top: -23px;
  left: 37%;
  color: rgba(23, 134, 213, 0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
  border: 11px solid transparent;
  border-bottom: 14px solid rgba(23, 134, 213, 0.9);
}
header .mega_list.pc .megamenu.menu01 .inner .head_title {
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}
header .mega_list.pc .megamenu.menu01 .inner .head_title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
header .mega_list.pc .megamenu.menu01 .inner .head_title a p {
  font-family: "Yu Mincho";
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.2px;
  position: relative;
  padding: 18px 0;
}
header .mega_list.pc .megamenu.menu01 .inner .head_title a p span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  position: absolute;
  top: 0;
}
header .mega_list.pc .megamenu.menu01 .inner .head_title a img {
  transform: translateX(0px);
  transition: all 0.3s;
}
header .mega_list.pc .megamenu.menu01 .inner .head_title a:hover {
  opacity: 1;
}
header .mega_list.pc .megamenu.menu01 .inner .head_title a:hover img {
  transform: translateX(5px);
  transition: 0.3s;
}
header .mega_list.pc .megamenu.menu01 .inner .menu_list ul {
  display: grid;
  row-gap: 6px;
  grid-auto-flow: row;
  grid-template-columns: repeat(3, auto);
  text-align: left;
}
header .mega_list.pc .megamenu.menu01 .inner .menu_list ul li a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.7px;
  padding: 0 20px;
  position: relative;
}
header .mega_list.pc .megamenu.menu01 .inner .menu_list ul li a::before {
  position: absolute;
  content: "";
  background: url(../images/union/arrow.svg) no-repeat 0 0/100% auto;
  width: 6px;
  height: 12px;
  left: 0;
  top: 6px;
  transition: 0.3s;
}
header .mega_list.pc .megamenu.menu01 .inner .menu_list ul li a:hover {
  opacity: 1;
}
header .mega_list.pc .megamenu.menu01 .inner .menu_list ul li a:hover::before {
  left: 5px;
  transition: 0.3s;
}
header .mega_list.pc .megamenu.active {
  opacity: 1;
  z-index: 3;
  transform: translateY(-15px);
  visibility: visible;
}

.pc.is_scroll {
  transition: 0.3s;
}
.pc.is_scroll > .inner {
  padding: 5px 120px;
}
.pc.is_scroll .mega_list.pc .megamenu.active {
  transform: translateY(-7px);
}

/*=================================================================*/
/*	breadcrumb
/*=================================================================*/
/*=================================================================*/
/*	footer
/*=================================================================*/
footer {
  background: url(../images/union/footer_bg.jpg) no-repeat 0 0/100% auto;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
footer .page_top {
  position: fixed;
  display: block;
  background-image: url(../images/union/page_top.svg);
  cursor: pointer;
  transition-duration: 0.2s;
  opacity: 0;
  visibility: hidden;
  bottom: 30px;
  right: 40px;
  background-size: 50px 50px;
  width: 50px;
  height: 50px;
  z-index: 10;
}
footer .page_top.active {
  opacity: 1;
  visibility: visible;
}
footer .inner {
  margin: 0 auto;
  max-width: 1200px;
  color: #fff;
  padding: 52px 30px 40px;
  display: flex;
  justify-content: space-between;
}
footer .inner .fleft .logo {
  margin-bottom: 5px;
}
footer .inner .fleft .logo a {
  display: flex;
  align-items: center;
  gap: 13px;
}
footer .inner .fleft .logo a img {
  width: 47px;
  height: auto;
}
footer .inner .fleft .logo a .group_name p {
  color: #fff;
  font-weight: 700;
  text-align: left;
  font-size: 2.7rem;
  line-height: 30px;
  font-size: 27px;
}
footer .inner .fleft .logo a .group_name p span {
  font-size: 20px;
  font-weight: 700;
}
footer .inner .fleft .logo a .group_name .english {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4.92px;
}
footer .inner .fleft address {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  text-align: left;
  margin-bottom: 8px;
}
footer .inner .fleft .tel, footer .inner .fleft .fax {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.48px;
  text-align: left;
  padding-left: 25px;
}
footer .inner .fleft .tel a, footer .inner .fleft .fax a {
  position: relative;
}
footer .inner .fleft .tel a::before, footer .inner .fleft .fax a::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: -25px;
  top: calc(50% + 3px);
  transform: translateY(-50%);
}
footer .inner .fleft .tel {
  margin-bottom: 5px;
}
footer .inner .fleft .tel a {
  color: #fff;
}
footer .inner .fleft .tel a::before {
  background: url(../images/union/footer_tel.svg) no-repeat 0 0/100% auto;
}
footer .inner .fleft .fax {
  position: relative;
}
footer .inner .fleft .fax::before {
  content: "";
  position: absolute;
  left: -1px;
  top: calc(50% + 3px);
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: url(../images/union/footer_fax.svg) no-repeat 0 0/100% auto;
}
footer .inner .fleft .mail {
  text-align: left;
  position: relative;
  padding: 0 0 0 21px;
  font-size: 82%;
  margin: 10px 0 0;
}
footer .inner .fleft .mail::after {
  content: "";
  width: 20px;
  height: 16px;
  display: inline-block;
  position: absolute;
  top: 6px;
  left: -2px;
  background-size: contain;
  background-image: url(../images/union/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
footer .inner .fright {
  width: 52%;
  text-align: right;
}
footer .inner .fright .about_union .title a, footer .inner .fright .union_services .title a {
  color: #FFF;
  font-family: "Yu Mincho";
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: block;
  margin-bottom: 10px;
}
footer .inner .fright .about_union ul, footer .inner .fright .union_services ul {
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 5px;
}
footer .inner .fright .about_union ul li a, footer .inner .fright .union_services ul li a {
  padding-left: 20px;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.7px;
  position: relative;
}
footer .inner .fright .about_union ul li a::before, footer .inner .fright .union_services ul li a::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 0.7em;
  left: 0;
}
footer .inner .fright .about_union {
  margin-bottom: 40px;
}
footer .inner .fright .union_services {
  margin-bottom: 50px;
}
footer .inner .fright .bottom {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 7px;
  margin-bottom: 80px;
}
footer .inner .fright .bottom li a {
  padding-left: 26px;
  position: relative;
  color: #FFF;
  font-family: "Yu Mincho";
  font-size: 16px;
  font-weight: 600;
  display: block;
}
footer .inner .fright .bottom li a::before {
  position: absolute;
  content: "";
  background: url(../images/union/footer_round_arrow.svg) no-repeat 0 0/100% auto;
  width: 16px;
  height: 16px;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  transition: 0.3s;
}
footer .inner .fright .bottom li a:hover {
  opacity: 1;
}
footer .inner .fright .bottom li a:hover::before {
  left: 5px;
  transition: 0.3s;
}
footer small {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.28px;
}

/*=================================================================*/
/*	ハンバーガーボタンと連動したメニュー
/*=================================================================*/
/*=================================================================*/
/*	topscroll
/*=================================================================*/
/*******************************************************************/
/* PC
/*******************************************************************/
@media print, screen and (min-width: 769px) {
  /*<start>==========================================================*/
  body {
    height: 100%;
    margin: 0;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
  }
  #wrap {
    position: relative;
    overflow: hidden;
  }
  .sp {
    display: none !important;
  }
  /*=================================================================*/
  /*	footer
  /*=================================================================*/
  footer .copy {
    text-align: center;
  }
  /*<end>============================================================*/
}
/*******************************************************************/
/* TB
/*******************************************************************/
@media screen and (min-width:769px) and ( max-width:1200px) {
  /*<start>==========================================================*/
  /*<end>============================================================*/
}
/*******************************************************************/
/* SP
/*******************************************************************/
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  .pc {
    display: none !important;
  }
  body {
    min-width: unset;
  }
  html, body {
    overflow-x: hidden;
    touch-action: pan-y;
  }
  /*=================================================================*/
  /*	header */
  /*=================================================================*/
  header {
    position: sticky;
    top: 0;
    z-index: 10;
    min-width: unset;
  }
  header .inner {
    width: 100%;
    height: 60px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0px 2px 10px -3px rgba(100, 100, 100, 0.4);
    display: flex;
    align-items: center;
    padding: unset;
  }
  header .inner .logo {
    padding: 10px;
    flex: 1;
  }
  header .inner .logo a {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  header .inner .logo a img {
    width: auto;
    height: 40px;
  }
  header .inner .logo a .group_name h1, header .inner .logo a .group_name .h1_title {
    font-size: 1.8rem;
    line-height: 1.75rem;
  }
  header .inner .logo a .group_name h1 span, header .inner .logo a .group_name .h1_title span {
    font-size: 1.2rem;
  }
  header .inner .logo a .group_name .english {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-align: left;
    margin-left: 2px;
  }
  header .inner .right_box {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  header .inner .right_box .menu_contact .btn_contact {
    width: 36px;
    aspect-ratio: 1;
    display: flex;
    background: #fff;
    border-radius: 100%;
    position: relative;
    border: #666 1px solid;
  }
  header .inner .right_box .menu_contact .btn_contact::before {
    content: "";
    margin: auto;
    width: 18px;
    height: 15px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    right: 0;
    background: url(../images/union/sp_mail.svg) no-repeat 0 0/100% auto;
  }
  header .inner .right_box .menu_contact .btn_contact:hover::before {
    opacity: 0.8;
    transition: 0.3s;
  }
  header .inner .right_box .hamburger {
    width: 60px;
    aspect-ratio: 1;
    background: #0158a7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  header .inner .right_box .hamburger .bdr {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 40%;
    height: 2px;
    background: #fff;
    transition: all 0.4s;
  }
  header .inner .right_box .hamburger .bdr:nth-child(1) {
    top: calc(36% - 1.5px);
  }
  header .inner .right_box .hamburger .bdr:nth-child(2) {
    top: calc(50% - 1.5px);
  }
  header .inner .right_box .hamburger .bdr:nth-child(3) {
    top: calc(64% - 1.5px);
  }
  header .inner .right_box .hamburger.active .bdr:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  header .inner .right_box .hamburger.active .bdr:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  header .inner .right_box .hamburger.active .bdr:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  .drawer_menu.sp {
    margin: auto;
    padding: calc(66px + 4%) 4% 50px 4%;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 8;
    transition: 0.5s;
    background-color: rgba(1, 88, 167, 0.76);
    backdrop-filter: blur(0.875em);
  }
  .drawer_menu.sp.open {
    left: 0;
  }
  .drawer_menu.sp a {
    color: #fff;
    letter-spacing: 0.1rem;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    padding: 15px 15px 15px 10px;
  }
  .drawer_menu.sp .sitemap ul {
    box-sizing: border-box;
    text-align: left;
    margin: 0 10px 0 15px;
  }
  .drawer_menu.sp .sitemap ul .toggle_box {
    display: none;
  }
  .drawer_menu.sp .sitemap ul > li:first-child {
    font-weight: 500;
  }
  .drawer_menu.sp .sitemap ul > li a {
    position: relative;
    padding: 15px 15px 15px 25px;
  }
  .drawer_menu.sp .sitemap ul > li a::before {
    position: absolute;
    content: "";
    background: url(../images/union/footer_round_arrow.svg) no-repeat 0 0/100% auto;
    width: 14px;
    height: 14px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .drawer_menu.sp .sitemap ul > li a:hover::before {
    left: 5px;
  }
  .drawer_menu.sp .sitemap ul li:not(.head) a {
    position: relative;
  }
  .drawer_menu.sp .sitemap .head {
    position: relative;
  }
  .drawer_menu.sp .sitemap .head::before, .drawer_menu.sp .sitemap .head::after {
    position: absolute;
    content: "";
    display: block;
    background: #ebf2f8;
    transition-duration: 0.2s;
  }
  .drawer_menu.sp .sitemap .head::before {
    top: calc(50% - 7px);
    right: 21px;
    height: 14px;
    width: 2px;
  }
  .drawer_menu.sp .sitemap .head::after {
    top: calc(50% - 1px);
    right: 15px;
    width: 14px;
    height: 2px;
  }
  .drawer_menu.sp .sitemap .head.open .toggle_box {
    display: block;
    margin-left: 10px;
  }
  .drawer_menu.sp .sitemap .head.open .toggle_box li a {
    border-bottom: none;
  }
  .drawer_menu.sp .sitemap .head.open::before {
    transform: rotate(90deg);
    transition: all 0.4s;
  }
  .drawer_menu.sp .sitemap .toggle_box {
    display: block;
    margin: 0 10px 0 0;
  }
  .drawer_menu.sp .sitemap .toggle_box .top {
    padding-top: 10px;
  }
  .drawer_menu.sp .sitemap .toggle_box li a {
    border-bottom: none;
    padding: 10px 10px 10px 40px;
    font-size: 13px;
  }
  .drawer_menu.sp .sitemap .toggle_box li a::after {
    right: 37px;
  }
  /*=================================================================*/
  /*	footer */
  /*=================================================================*/
  footer .page_top {
    bottom: 5vw;
    right: 5vw;
    width: 45px;
    height: 45px;
    background-size: 45px 45px;
  }
  footer .page_top.active {
    transition: 0.4s;
    transition-delay: 0.2s;
  }
  footer > .inner {
    display: block;
    padding: 30px 3% 110px;
  }
  footer > .inner .fleft .logo {
    padding: 10px;
  }
  footer > .inner .fleft .logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }
  footer > .inner .fleft .logo a img {
    width: auto;
    height: 50px;
  }
  footer > .inner .fleft .logo a .group_name p {
    font-size: 23px;
    line-height: 25px;
    letter-spacing: 0.05rem;
    text-align: left !important;
  }
  footer > .inner .fleft .logo a .group_name p span {
    font-size: 15px;
  }
  footer > .inner .fleft .logo a .group_name .english {
    line-height: 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-align: left;
    margin-left: 2px;
  }
  footer > .inner .fleft address, footer > .inner .fleft p {
    text-align: center !important;
  }
  footer > .inner .fleft address {
    font-size: 14px;
    line-height: 20px;
  }
  footer > .inner .fleft .tel, footer > .inner .fleft .fax {
    font-size: 20px;
    line-height: 22px;
  }
  footer > .inner .fleft .tel a::before {
    width: 15px;
    height: 16px;
    left: -23px;
  }
  footer > .inner .fleft .fax {
    display: inline-block;
  }
  footer > .inner .fleft .fax::before {
    left: 2px;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    width: 16px;
    height: 17px;
  }
  footer > .inner .fleft .mail {
    padding: 0;
  }
  footer > .inner .fleft .mail::after {
    content: none;
  }
  footer small {
    font-size: 11px;
    width: 80%;
    line-height: 15px;
  }
  /*<end>============================================================*/
}
@media screen and (min-width: 769px) and (max-width: 1169px) {
  /*=================================================================*/
  /*	header */
  /*=================================================================*/
  header.pc {
    display: none;
  }
  header.sp {
    display: block !important;
    position: fixed;
  }
  .drawer_menu.sp {
    display: block !important;
  }
  header {
    position: sticky;
    top: 0;
    z-index: 10;
    min-width: unset;
  }
  header .inner {
    width: 100%;
    height: 70px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0px 2px 10px -3px rgba(100, 100, 100, 0.4);
    display: flex;
    align-items: center;
    padding: unset;
  }
  header .inner .logo {
    padding: 10px;
    flex: 1;
  }
  header .inner .logo a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  header .inner .logo a img {
    width: auto;
    height: 50px;
  }
  header .inner .logo a .group_name h1, header .inner .logo a .group_name .h1_title {
    font-size: 2.2rem;
    line-height: 2.1rem;
    margin-bottom: 1px;
  }
  header .inner .logo a .group_name h1 span, header .inner .logo a .group_name .h1_title span {
    font-size: 1.5rem;
  }
  header .inner .logo a .group_name .english {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-align: left;
    margin-left: 2px;
  }
  header .inner .right_box {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  header .inner .right_box .menu_contact .btn_contact {
    width: 42px;
    aspect-ratio: 1;
    display: flex;
    background: #fff;
    border-radius: 100%;
    position: relative;
    border: #666 1px solid;
  }
  header .inner .right_box .menu_contact .btn_contact::before {
    content: "";
    margin: auto;
    width: 22px;
    height: 18px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    right: 0;
    background: url(../images/union/sp_mail.svg) no-repeat 0 0/100% auto;
  }
  header .inner .right_box .menu_contact .btn_contact:hover::before {
    opacity: 0.8;
    transition: 0.3s;
  }
  header .inner .right_box .hamburger {
    width: 70px;
    aspect-ratio: 1;
    background: #0158a7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  header .inner .right_box .hamburger .bdr {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 40%;
    height: 2px;
    background: #fff;
    transition: all 0.4s;
  }
  header .inner .right_box .hamburger .bdr:nth-child(1) {
    top: calc(36% - 1.5px);
  }
  header .inner .right_box .hamburger .bdr:nth-child(2) {
    top: calc(50% - 1.5px);
  }
  header .inner .right_box .hamburger .bdr:nth-child(3) {
    top: calc(64% - 1.5px);
  }
  header .inner .right_box .hamburger.active .bdr:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  header .inner .right_box .hamburger.active .bdr:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  header .inner .right_box .hamburger.active .bdr:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  .drawer_menu.sp {
    margin: auto;
    padding: calc(66px + 4%) 4% 50px 4%;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 8;
    transition: 0.5s;
    background-color: rgba(1, 88, 167, 0.76);
    backdrop-filter: blur(0.875em);
  }
  .drawer_menu.sp.open {
    left: 0;
  }
  .drawer_menu.sp a {
    color: #fff;
    letter-spacing: 0.1rem;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    padding: 15px 15px 15px 10px;
  }
  .drawer_menu.sp .sitemap ul {
    box-sizing: border-box;
    text-align: left;
    margin: 0 10px 0 15px;
  }
  .drawer_menu.sp .sitemap ul .toggle_box {
    display: none;
  }
  .drawer_menu.sp .sitemap ul > li:first-child {
    font-weight: 500;
  }
  .drawer_menu.sp .sitemap ul > li a {
    position: relative;
    padding: 15px 15px 15px 25px;
  }
  .drawer_menu.sp .sitemap ul > li a::before {
    position: absolute;
    content: "";
    background: url(../images/union/footer_round_arrow.svg) no-repeat 0 0/100% auto;
    width: 14px;
    height: 14px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .drawer_menu.sp .sitemap ul > li a:hover::before {
    left: 5px;
  }
  .drawer_menu.sp .sitemap ul li:not(.head) a {
    position: relative;
  }
  .drawer_menu.sp .sitemap .head {
    position: relative;
  }
  .drawer_menu.sp .sitemap .head::before, .drawer_menu.sp .sitemap .head::after {
    position: absolute;
    content: "";
    display: block;
    background: #ebf2f8;
    transition-duration: 0.2s;
  }
  .drawer_menu.sp .sitemap .head::before {
    top: calc(50% - 7px);
    right: 21px;
    height: 14px;
    width: 2px;
  }
  .drawer_menu.sp .sitemap .head::after {
    top: calc(50% - 1px);
    right: 15px;
    width: 14px;
    height: 2px;
  }
  .drawer_menu.sp .sitemap .head.open .toggle_box {
    display: block;
    margin-left: 10px;
  }
  .drawer_menu.sp .sitemap .head.open .toggle_box li a {
    border-bottom: none;
  }
  .drawer_menu.sp .sitemap .head.open::before {
    transform: rotate(90deg);
    transition: all 0.4s;
  }
  .drawer_menu.sp .sitemap .toggle_box {
    display: block;
    margin: 0 10px 0 0;
  }
  .drawer_menu.sp .sitemap .toggle_box .top {
    padding-top: 10px;
  }
  .drawer_menu.sp .sitemap .toggle_box li a {
    border-bottom: none;
    padding: 10px 10px 10px 40px;
    font-size: 13px;
  }
  .drawer_menu.sp .sitemap .toggle_box li a::after {
    right: 37px;
  }
  /*=================================================================*/
  /*	footer */
  /*=================================================================*/
  footer .page_top {
    bottom: 5vw;
    right: 5vw;
    width: 45px;
    height: 45px;
    background-size: 45px 45px;
  }
  footer .page_top.active {
    transition: 0.4s;
    transition-delay: 0.2s;
  }
  footer > .inner {
    display: block;
    padding: 30px 3% 110px;
  }
  footer > .inner .fleft .logo {
    padding: 10px;
  }
  footer > .inner .fleft .logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }
  footer > .inner .fleft .logo a img {
    width: auto;
    height: 50px;
  }
  footer > .inner .fleft .logo a .group_name p {
    font-size: 23px;
    line-height: 25px;
    letter-spacing: 0.05rem;
    text-align: left !important;
  }
  footer > .inner .fleft .logo a .group_name p span {
    font-size: 15px;
  }
  footer > .inner .fleft .logo a .group_name .english {
    line-height: 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-align: left;
    margin-left: 2px;
  }
  footer > .inner .fleft address, footer > .inner .fleft p {
    text-align: center !important;
  }
  footer > .inner .fleft address {
    font-size: 14px;
    line-height: 20px;
  }
  footer > .inner .fleft .tel, footer > .inner .fleft .fax {
    font-size: 20px;
    line-height: 22px;
  }
  footer > .inner .fleft .tel a::before {
    width: 15px;
    height: 16px;
    left: -23px;
  }
  footer > .inner .fleft .fax {
    display: inline-block;
  }
  footer > .inner .fleft .fax::before {
    left: 2px;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    width: 16px;
    height: 17px;
  }
  footer > .inner .fleft .mail {
    padding: 0;
  }
  footer > .inner .fleft .mail::after {
    content: none;
  }
  footer > .inner .fright {
    display: none;
  }
  footer small {
    font-size: 11px;
    width: 80%;
    line-height: 15px;
  }
}/*# sourceMappingURL=theme.css.map */