@charset "UTF-8";
:root {
  --main-red: #E50012;
  --main-blue: #3A6DB9;
  --font-black: #000000;
  --font-semiblack: #333;
  --link-color: #00CBEB;
}

/*=================================================================*/
/*	webフォントセット
---------------------------------------------------------------*/
/* Inter */
@font-face {
  font-family: "Inter";
  font-style: Regular;
  font-weight: 400;
  src: url("../font/Inter-Regular.woff2") format("woff2"), url("../font/Inter-Regular.woff") format("woff"), url("../font/Inter-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Inter";
  font-style: Medium;
  font-weight: 500;
  src: url("../font/Inter-Medium.woff2") format("woff2"), url("../font/Inter-Medium.woff") format("woff"), url("../font/Inter-Medium.ttf") format("ttf");
}
@font-face {
  font-family: "Inter";
  font-style: SemiBold;
  font-weight: 600;
  src: url("../font/Inter-SemiBold.woff2") format("woff2"), url("../font/Inter-SemiBold.woff") format("woff"), url("../font/Inter-SemiBold.ttf") format("ttf");
}
@font-face {
  font-family: "Inter";
  font-style: Bold;
  font-weight: 700;
  src: url("../font/Inter-Bold.woff2") format("woff2"), url("../font/Inter-Bold.woff") format("woff"), url("../font/Inter-Bold.ttf") format("ttf");
}
/* NotoSansJP */
@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: 700;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff"), url("../font/NotoSansJP-Bold.ttf") format("ttf");
}
/* Marcellus */
@font-face {
  font-family: "Marcellus";
  font-style: Regular;
  font-weight: 400;
  src: url("../font/Marcellus-Regular.woff2") format("woff2"), url("../font/Marcellus-Regular.woff") format("woff"), url("../font/Marcellus-Regular.ttf") format("ttf");
}
/* NotoSerifJP */
@font-face {
  font-family: "NotoSerifJP";
  font-style: Medium;
  font-weight: 500;
  src: url("../font/NotoSerifJP-Medium.woff2") format("woff2"), url("../font/NotoSerifJP-Medium.woff") format("woff"), url("../font/NotoSerifJP-Medium.ttf") format("ttf");
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: SemiBold;
  font-weight: 600;
  src: url("../font/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../font/NotoSerifJP-SemiBold.woff") format("woff"), url("../font/NotoSerifJP-SemiBold.ttf") format("ttf");
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: Bold;
  font-weight: 700;
  src: url("../font/NotoSerifJP-Bold.woff2") format("woff2"), url("../font/NotoSerifJP-Bold.woff") format("woff"), url("../font/NotoSerifJP-Bold.ttf") format("ttf");
}
/*=================================================================*/
/* ローディング画面
/*=================================================================*/
#fade {
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 11;
}

.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 var(--main-red);
  -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;
}

/*	table
----------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

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

a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

/*	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;
}

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

/*	p
---------------------------------------------------------------*/
p {
  color: var(--font-semiblack);
}

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

/*	sampleBox(構築時削除してください)
---------------------------------------------------------------*/
.sampleBox {
  background: #eee;
  height: 2000px;
}

/*=================================================================*/
/*	ハンバーガーボタンと連動したドロワーメニュー */
/*=================================================================*/
.drawer_menu {
  padding: 4%;
  width: 100vw;
  height: 100vh;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: 0.5s;
  position: fixed;
  z-index: 10;
}
.drawer_menu.left {
  left: -100vw;
}
.drawer_menu.left.open {
  left: 0;
}
.drawer_menu.right {
  right: -100vw;
}
.drawer_menu.right.open {
  right: -17px;
}
.drawer_menu.top {
  top: -100vh;
}
.drawer_menu.top.open {
  top: 0;
}
.drawer_menu.fade {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.2);
}
.drawer_menu.fade.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.drawer_menu .site_menu {
  font-family: Marcellus;
  font-weight: 400;
  color: #fff;
}
.drawer_menu .site_menu ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.drawer_menu .site_menu ul li {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.drawer_menu .site_menu ul li a {
  color: #fff;
  font-size: 5.6rem;
  line-height: 1;
  padding: 0 0.2em;
  text-decoration: none;
  background-image: linear-gradient(#830202, #830202);
  background-repeat: no-repeat;
  background-size: 0% 4px;
  /* 最初は線がない */
  background-position: 0 calc(50% + 2px);
  /* 中央に配置 */
  transition: background-size 0.3s ease;
}
.drawer_menu .site_menu ul li a:hover {
  opacity: 1;
  background-size: 100% 4px;
}
.drawer_menu .site_menu ul li span {
  margin-left: 0.3em;
  font-size: 1.4rem;
}

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

body.noScroll {
  overflow: hidden;
}
body.noScroll header.fixed {
  background: none;
}
body.noScroll header a.logo .logo_text path {
  fill: #fff !important;
}
body.noScroll header .box_right ul.sns li.note > a > svg path,
body.noScroll header .box_right ul.sns li.instagram > a > svg path,
body.noScroll header .box_right ul.sns li.contact > a > svg path {
  fill: #fff !important;
}
body.noScroll header .hamburger span.bdr {
  background: #fff;
}

/*******************************************************************/
/* Print */
/*******************************************************************/
@media print {
  header {
    position: absolute !important;
    top: 0;
  }
}
/*******************************************************************/
/* PC */
/*******************************************************************/
@media print, screen and (min-width: 769px) {
  /*<start>==========================================================*/
  html {
    height: 100%;
    font-size: 62.5%;
    /*10px相当にreset*/
  }
  body {
    height: 100%;
    margin: 0;
    font-size: 16px;
    /*css3の効かないブラウザ用*/
    font-size: 1.6rem;
    /*bodyのベースサイズをセット（ここでは16px）以下各要素は10pxを基準にサイズ指定1.2rem（12px）1.4rem（14px）など）*/
    font-weight: 500;
  }
  #wrap {
    position: relative;
  }
  .sp {
    display: none !important;
  }
  /*=================================================================*/
  /*	共通パーツ */
  /*=================================================================*/
  ul.post_list {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1142px;
    display: flex;
    flex-wrap: wrap;
    gap: 52px;
  }
  ul.post_list li {
    background: #fff;
    width: calc((100% - 104px) / 3);
  }
  ul.post_list li a {
    color: var(--font-black);
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-weight: 400;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  ul.post_list li a:hover .img_wrap img.thumbnail {
    transform: scale(1.08);
    transition: 0.3s;
  }
  ul.post_list li a:hover .text span.more:after {
    right: -10px;
    transition: 0.3s;
  }
  ul.post_list li a .img_wrap {
    width: 100%;
    aspect-ratio: 5/4;
    overflow: hidden;
  }
  ul.post_list li a .img_wrap img.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
  }
  ul.post_list li a .text {
    margin-top: -17%;
    padding: 24px 24px 54px;
    background: #fff;
    box-sizing: border-box;
    width: 80%;
    flex: 1;
    position: relative;
  }
  ul.post_list li a .text p.date {
    margin-bottom: 18px;
    color: var(--main-blue);
    font-size: 1.4rem;
    line-height: 1;
  }
  ul.post_list li a .text p.post_title {
    font-size: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  ul.post_list li a .text span.more {
    padding-right: 16px;
    font-size: 1.2rem;
    position: absolute;
    bottom: 18px;
    right: 0;
  }
  ul.post_list li a .text span.more:after {
    content: "";
    margin: auto;
    width: 10px;
    aspect-ratio: 256/82;
    background: url(../images/union/icon_line_arrow.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transition: 0.3s;
  }
  /*	ハンバーガーメニュー
  ---------------------------------------------------------------*/
  /*=================================================================*/
  /*	header */
  /*=================================================================*/
  /*=================================================================*/
  /*	footer */
  /*=================================================================*/
  /*<end>============================================================*/
}
@media print and (max-width: 1000px), screen and (min-width: 769px) and (max-width: 1000px) {
  ul.post_list li {
    width: calc((100% - 52px) / 2);
  }
}
@media print, screen and (min-width: 769px) {
  .btnNormal {
    padding: 14px 20px;
    color: #fff;
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    width: fit-content;
    min-width: 120px;
    background: var(--main-red);
    box-sizing: border-box;
    position: relative;
  }
  .btnNormal.large {
    padding: 18px 48px;
    font-size: 1.8rem;
  }
  .btnNormal:after {
    content: "";
    margin: auto;
    width: 16px;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transition: 0.3s;
  }
  .btnNormal:hover:after {
    background: #878787;
    right: -6px;
    transition: 0.3s;
  }
  .btnNormal.disabled {
    background: #878787;
    pointer-events: none;
    cursor: default;
    user-select: none;
  }
  .menuTriggerBox {
    position: fixed;
    top: 23px;
    right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    z-index: 10;
    cursor: pointer;
    transition: 0.2s;
  }
  .menuTriggerBox.compact {
    height: 55px;
  }
  .menuTriggerBox.active {
    height: 68px !important;
  }
  .menuTrigger,
  .menuTrigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menuTrigger {
    position: relative;
    top: 0;
    width: 30px;
    height: 27px;
  }
  .menuTrigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #1e1e1e;
    border-radius: 4px;
  }
  .menuTrigger span:nth-of-type(1) {
    top: 0;
  }
  .menuTrigger span:nth-of-type(2) {
    top: 11px;
  }
  .menuTrigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menuTrigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .menuTrigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menuTrigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-13px) rotate(45deg);
  }
  header {
    padding: 40px 50px;
    width: 100%;
    position: fixed;
    box-sizing: border-box;
    z-index: 20;
    /*=================================================================*/
    /*	ドロワーメニュー
    /*=================================================================*/
  }
  header .inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  header .inner a.logo {
    height: 42px;
    display: inline-block;
  }
  header .inner a.logo img {
    height: 100%;
    width: auto;
  }
  header .inner a.logo svg {
    height: 100%;
    width: auto;
    transition: 0.3s;
  }
  header .inner a.logo .logo_text path {
    fill: #fff !important;
    transition: 0.3s;
  }
  header .inner .box_right {
    display: flex;
    align-items: center;
    gap: 66px;
  }
  header .inner .box_right ul.sns {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  header .inner .box_right ul.sns li.note {
    display: flex;
  }
  header .inner .box_right ul.sns li.note > a {
    height: 12px;
    display: flex;
    align-items: center;
  }
  header .inner .box_right ul.sns li.note > a > svg {
    height: 100%;
    width: auto;
  }
  header .inner .box_right ul.sns li.note > a > svg path {
    transition: 0.3s;
  }
  header .inner .box_right ul.sns li.instagram > a,
  header .inner .box_right ul.sns li.contact > a {
    height: 22px;
    display: flex;
    align-items: center;
  }
  header .inner .box_right ul.sns li.instagram > a > svg,
  header .inner .box_right ul.sns li.contact > a > svg {
    height: 100%;
    width: auto;
  }
  header .inner .box_right ul.sns li.instagram > a > svg path,
  header .inner .box_right ul.sns li.contact > a > svg path {
    transition: 0.3s;
  }
  header .hamburger {
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  header .hamburger:hover {
    cursor: pointer;
  }
  header .hamburger .bdr {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #fff;
    transform-origin: center;
    transition: all 0.4s;
  }
  header .hamburger .bdr:nth-child(1) {
    top: calc(50% - 11px);
    transform: translateY(-50%);
  }
  header .hamburger .bdr:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header .hamburger .bdr:nth-child(3) {
    top: calc(50% + 11px);
    transform: translateY(-50%);
  }
  header .hamburger.active .bdr:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  header .hamburger.active .bdr:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  header .hamburger.active .bdr:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
  }
  a.topscroll {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    width: 57px;
    height: 57px;
    background: #141414;
  }
  section.contact {
    padding: 40px 40px 100px;
  }
  section.contact dl.info_box {
    margin: 0 auto;
    padding: 80px 60px;
    color: var(--font-black);
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    box-sizing: border-box;
    background: #f3f3f3;
  }
  section.contact dl.info_box dt .title {
    margin: 0 auto;
    padding: 14px 0 0 14px;
    width: fit-content;
    position: relative;
  }
  section.contact dl.info_box dt .title h3 {
    font-size: 4.8rem;
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-weight: 400;
    line-height: 1;
  }
  section.contact dl.info_box dt .title h3:before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    background: var(--main-red);
    position: absolute;
    left: 0;
    top: 0;
  }
  section.contact dl.info_box dt .title p {
    color: var(--font-black);
    font-size: 1.6rem;
    font-weight: 500;
  }
  section.contact dl.info_box dd {
    display: flex;
    align-items: center;
  }
  section.contact dl.info_box dd .tel_form {
    padding: 20px 60px 20px 0;
    border-right: 1px solid #D2D2D2;
  }
  section.contact dl.info_box dd .tel_form > p.sub {
    margin-bottom: 6px;
    color: var(--font-black);
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 400;
  }
  section.contact dl.info_box dd .tel_form > p.tel_num {
    margin-bottom: 6px;
    color: var(--font-black);
    font-size: 3.2rem;
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-weight: 400;
    line-height: 1.2;
  }
  section.contact dl.info_box dd .tel_form > span {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 400;
  }
  section.contact dl.info_box dd .tel_form a.btnNormal {
    margin-top: 30px;
    font-size: 1.8rem;
    min-width: 280px;
  }
  section.contact dl.info_box dd ul.banner {
    padding: 20px 0 20px 60px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 16px;
  }
  section.contact dl.info_box dd ul.banner li a {
    display: flex;
  }
  section.contact dl.info_box dd ul.banner li a img {
    width: 100%;
    height: auto;
  }
  footer {
    background: #262626;
    display: flex;
    justify-content: space-between;
  }
  footer .left {
    padding: 120px 46px 20px 40px;
    flex: 1;
  }
  footer .left .inner {
    margin-left: auto;
    display: flex;
    justify-content: space-between;
  }
  footer .left .inner .info img.logo {
    width: 328px;
    height: auto;
  }
  footer .left .inner .info .adress {
    margin-top: 14px;
  }
  footer .left .inner .info .adress p {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
  }
  footer .left .inner .info .tel {
    margin-top: 18px;
    color: #fff;
  }
  footer .left .inner .info .tel p {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
  }
  footer .left .inner .info ul.sns {
    margin-top: 28px;
    display: flex;
    gap: 12px;
  }
  footer .left .inner .info ul.sns li a {
    background: #474747;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  footer .left .inner .info .copy {
    margin-top: 100px;
    color: #B9B9B9;
    font-size: 1.2rem;
    font-weight: 400;
    display: inline-block;
  }
  footer .left .inner ul.menu {
    margin-top: 50px;
  }
  footer .left .inner ul.menu li:nth-child(n+2) {
    margin-top: 8px;
  }
  footer .left .inner ul.menu li a {
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    padding: 0 0.2em;
    text-decoration: none;
    background-image: linear-gradient(#830202, #830202);
    background-repeat: no-repeat;
    background-size: 0% 4px;
    /* 最初は線がない */
    background-position: 0 calc(50% + 1px);
    /* 中央に配置 */
    transition: background-size 0.3s ease;
  }
  footer .left .inner ul.menu li a:hover {
    opacity: 1;
    background-size: 100% 4px;
  }
  footer .map {
    width: 40%;
    max-width: 740px;
    aspect-ratio: 185/52;
    background: url(../images/union/footer_map.png) no-repeat center center;
    background-size: cover;
  }
  a.page_top {
    width: 60px;
    height: 60px;
    background: #333;
    border: 3px solid #fff;
    box-sizing: border-box;
    will-change: transform;
    opacity: 0;
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 8;
    transition: 0.4s;
  }
  a.page_top.active {
    opacity: 1;
    pointer-events: auto;
    bottom: 30px;
    transition: 0.4s;
    transition-delay: 0.3s;
  }
  a.page_top:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -20%) rotate(-45deg);
  }
}
/*******************************************************************/
/* SP */
/*******************************************************************/
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  html {
    font-size: 62.5%;
    /*10px相当にreset*/
  }
  body {
    font-size: 15px;
    /*css3の効かないブラウザ用*/
    font-size: 1.5rem;
    /*bodyのベースサイズをセット（ここでは20px）以下各要素は10pxを基準にサイズ指定2.2rem（22px）2.4rem（24px）など）*/
  }
  html,
  body {
    -webkit-text-size-adjust: 100%;
    /* iPhoneでのフォントサイズ自動変換OFF  縦横でのフォントサイズが固定される */
    -webkit-font-smoothing: antialiased;
  }
  #wrap {
    position: relative;
  }
  .pc {
    display: none !important;
  }
  /*=================================================================*/
  /*	共通パーツ */
  /*=================================================================*/
  ul.post_list {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  ul.post_list li {
    background: #fff;
    width: calc((100% - 20px) / 2);
  }
  ul.post_list li a {
    color: var(--font-black);
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-weight: 400;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  ul.post_list li a:hover .img_wrap img.thumbnail {
    transform: scale(1.08);
    transition: 0.3s;
  }
  ul.post_list li a:hover .text span.more:after {
    right: -10px;
    transition: 0.3s;
  }
  ul.post_list li a .img_wrap {
    width: 100%;
    aspect-ratio: 5/4;
    overflow: hidden;
  }
  ul.post_list li a .img_wrap img.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
  }
  ul.post_list li a .text {
    margin: -14% -1px 0 0;
    padding: 20px 20px 40px;
    background: #fff;
    box-sizing: border-box;
    width: 90%;
    flex: 1;
    position: relative;
  }
  ul.post_list li a .text p.date {
    margin-bottom: 14px;
    color: var(--main-blue);
    font-size: 1.4rem;
    line-height: 1;
  }
  ul.post_list li a .text p.post_title {
    font-size: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  ul.post_list li a .text span.more {
    padding-right: 16px;
    font-size: 1.2rem;
    position: absolute;
    bottom: 10px;
    right: 0;
  }
  ul.post_list li a .text span.more:after {
    content: "";
    margin: auto;
    width: 10px;
    aspect-ratio: 256/82;
    background: url(../images/union/icon_line_arrow.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transition: 0.3s;
  }
  /*	img
  ----------------------------------------------------*/
  /*=================================================================*/
  /*	footer */
  /*=================================================================*/
  /*=================================================================*/
  /*	header */
  /*=================================================================*/
  /*=================================================================*/
  /*	ハンバーガーボタンと連動したメニュー */
  /*=================================================================*/
  /*=================================================================*/
  /*	footer */
  /*=================================================================*/
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) and (max-width: 440px) {
  ul.post_list li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .btnNormal {
    padding: 14px 20px;
    color: #fff;
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    width: fit-content;
    min-width: 120px;
    background: var(--main-red);
    box-sizing: border-box;
    position: relative;
  }
  .btnNormal.large {
    padding: 18px 48px;
    font-size: 1.8rem;
  }
  .btnNormal:after {
    content: "";
    margin: auto;
    width: 16px;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transition: 0.3s;
  }
  .btnNormal:active:after {
    background: #878787;
    right: -6px;
    transition: 0.3s;
  }
  img {
    width: 100%;
    height: auto;
  }
  footer .copy {
    text-align: center;
  }
  header {
    padding: 2% 4%;
    width: 100%;
    position: fixed;
    box-sizing: border-box;
    z-index: 20;
    transition: 0.3s;
    /*=================================================================*/
    /*	ドロワーメニュー
    /*=================================================================*/
  }
  header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  header .inner a.logo {
    height: 42px;
    flex: 1;
    max-width: 100%;
  }
  header .inner a.logo img {
    width: 100%;
    height: auto;
  }
  header .inner a.logo svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
    transition: 0.3s;
  }
  header .inner a.logo .logo_text path {
    fill: #fff !important;
    transition: 0.3s;
  }
  header .inner .box_right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  header .inner .box_right ul.sns {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  header .inner .box_right ul.sns li.note {
    display: flex;
  }
  header .inner .box_right ul.sns li.note > a {
    height: 11px;
    display: flex;
    align-items: center;
  }
  header .inner .box_right ul.sns li.note > a > svg {
    height: 100%;
    width: auto;
  }
  header .inner .box_right ul.sns li.note > a > svg path {
    transition: 0.3s;
  }
  header .inner .box_right ul.sns li.instagram > a,
  header .inner .box_right ul.sns li.contact > a {
    height: 18px;
    display: flex;
    align-items: center;
  }
  header .inner .box_right ul.sns li.instagram > a > svg,
  header .inner .box_right ul.sns li.contact > a > svg {
    height: 100%;
    width: auto;
  }
  header .inner .box_right ul.sns li.instagram > a > svg path,
  header .inner .box_right ul.sns li.contact > a > svg path {
    transition: 0.3s;
  }
  header .hamburger {
    width: 40px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  header .hamburger:hover {
    cursor: pointer;
  }
  header .hamburger .bdr {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 36px;
    height: 2px;
    background: #fff;
    transform-origin: center;
    transition: all 0.4s;
  }
  header .hamburger .bdr:nth-child(1) {
    top: calc(50% - 11px);
    transform: translateY(-50%);
  }
  header .hamburger .bdr:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header .hamburger .bdr:nth-child(3) {
    top: calc(50% + 11px);
    transform: translateY(-50%);
  }
  header .hamburger.active .bdr:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  header .hamburger.active .bdr:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  header .hamburger.active .bdr:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
  }
  .navMenu {
    background: #aaa;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    position: fixed;
    box-sizing: border-box;
    transition: 0.5s;
  }
  .navMenu.left {
    left: -100vw;
  }
  .navMenu.left.active {
    left: 0;
  }
  .navMenu.right {
    right: -100vw;
  }
  .navMenu.right.active {
    right: -17px;
  }
  .navMenu.top {
    top: -100vh;
  }
  .navMenu.top.active {
    top: 0;
  }
  .navMenu.fade {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.01);
  }
  .navMenu.fade.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  a.topscroll {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    width: 57px;
    height: 57px;
    background: #141414;
  }
  section.contact {
    padding: 6% 10% 10%;
  }
  section.contact dl.info_box {
    margin: 0 auto;
    padding: 40px 40px;
    color: var(--font-black);
    box-sizing: border-box;
    background: #f3f3f3;
  }
  section.contact dl.info_box dt .title {
    margin: 0 auto 30px;
    padding: 14px 0 0 14px;
    width: fit-content;
    position: relative;
  }
  section.contact dl.info_box dt .title h3 {
    font-size: 4rem;
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-weight: 400;
    line-height: 1;
  }
  section.contact dl.info_box dt .title h3:before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    background: var(--main-red);
    position: absolute;
    left: 0;
    top: 0;
  }
  section.contact dl.info_box dt .title p {
    color: var(--font-black);
    font-size: 1.6rem;
    font-weight: 500;
  }
  section.contact dl.info_box dd .tel_form {
    padding: 30px 0;
    border-top: 1px solid #D2D2D2;
  }
  section.contact dl.info_box dd .tel_form > p.sub {
    margin-bottom: 6px;
    color: var(--font-black);
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 400;
  }
  section.contact dl.info_box dd .tel_form > p.tel_num {
    margin-bottom: 6px;
    color: var(--font-black);
    font-size: 3.6rem;
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-weight: 400;
    line-height: 1.2;
  }
  section.contact dl.info_box dd .tel_form > span {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 400;
  }
  section.contact dl.info_box dd .tel_form a.btnNormal {
    margin: 30px auto 0;
    font-size: 1.8rem;
  }
  section.contact dl.info_box dd ul.banner {
    padding: 30px 0 0;
    border-top: 1px solid #D2D2D2;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  section.contact dl.info_box dd ul.banner li {
    margin: 0 auto;
    width: fit-content;
  }
  section.contact dl.info_box dd ul.banner li a img {
    width: 100%;
    height: auto;
  }
  footer {
    background: #262626;
    display: flex;
    flex-direction: column;
  }
  footer .left {
    padding: 10% 4% 4%;
  }
  footer .left .inner .info img.logo {
    width: 100%;
    max-width: 328px;
    height: auto;
  }
  footer .left .inner .info .adress {
    margin-top: 14px;
  }
  footer .left .inner .info .adress p {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
  }
  footer .left .inner .info .tel {
    margin-top: 18px;
    color: #fff;
  }
  footer .left .inner .info .tel p {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
  }
  footer .left .inner .info ul.sns {
    margin-top: 28px;
    display: flex;
    gap: 12px;
  }
  footer .left .inner .info ul.sns li a {
    background: #474747;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  footer .left .inner .info ul.sns li a img {
    width: fit-content;
  }
  footer .left .inner .info .copy {
    margin-top: 100px;
    color: #B9B9B9;
    font-size: 1.2rem;
    font-weight: 400;
    display: inline-block;
  }
  footer .left .inner ul.menu {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .left .inner ul.menu li a {
    color: #fff;
    font-family: "Marcellus", "Inter", "NotoSansJP";
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: underline;
  }
  footer .map {
    width: 100%;
    aspect-ratio: 16/9;
    background: url(../images/union/footer_map.png) no-repeat center center;
    background-size: 120%;
  }
  footer .copy {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    padding: 10px 10px;
    width: 100%;
    box-sizing: border-box;
  }
  a.page_top {
    width: 50px;
    height: 50px;
    background: #333;
    border: 3px solid #fff;
    box-sizing: border-box;
    will-change: transform;
    opacity: 0;
    position: fixed;
    right: 20px;
    bottom: 0px;
    z-index: 8;
    transition: 0.4s;
  }
  a.page_top.active {
    opacity: 1;
    pointer-events: auto;
    bottom: 20px;
    transition: 0.4s;
    transition-delay: 0.3s;
  }
  a.page_top:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -20%) rotate(-45deg);
  }
}
/*******************************************************************/
/* TB(header only) */
/*******************************************************************/
@media screen and (min-width:769px) and (max-width:1100px) {
  /*<start>==========================================================*/
  /*<end>============================================================*/
}/*# sourceMappingURL=theme.css.map */