body {
  font-family: 'Meiryo', 'Yu Gothic', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.4;
  font-size: 14px;
  margin-top: 110px;
}
.container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 60px 0 35px;
}
section {
  margin-bottom: 60px;
}
.section-item p {
  margin-bottom: 1em;
}
@media (max-width: 900px) {
  body {
    margin-top: 50px;
  }
  .container {
    padding: 10px 0 35px;
  }
  .section-item {
    padding: 0 15px;
  }
}
/* パンくず */
.breadcrumb {
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 5px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}
.breadcrumb li a {
  text-decoration: underline;
  color: #003a75;
}
.breadcrumb li a:hover {
   color: #bb0000;
}
.breadcrumb li:not(:last-child)::after {
  display: block;
  content: "＞";
  width: auto;
  height: auto;
  margin: 0 10px;
  flex: 1 1 auto;
}
@media (max-width: 900px) {
  .breadcrumb {
    padding: 0 10px;
  }
}
/* h1 */
.ttl {
  width: 100%;
  background: url(/assets/img/h1_img01.png) no-repeat;
  background-size: cover;
}
.ttl-container {
  max-width: 1210px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 200px;
}
.ttl-container h1 {
  color: #fff;
  line-height: 1.2;
  font-size: 2.2rem;
}
@media (max-width: 900px) {
  .ttl {
    background: #003865;
    margin-top: 90px;
  }
  .ttl-container {
    justify-content: center;
    min-height: 50px;
  }
  .ttl-container h1 {
    font-size: 1.4rem;
    font-weight: bold;
  }
}
/* h2 */
.container h2 {
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.container h2::before {
  content: '';
  width: 4px;
  height: 40px;
  margin-right: 14px;
  background: #2F4994;
}
.h2-underline {
  border: none;
  height: 1px;
  background: #B2B2B2;
  margin: 0 0 30px 0;
}
@media (max-width: 900px) {
  .container h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 16px;
    border: 1px #000 dotted;
    border-left: none;
    border-right: none;
    color: #2F4994;
  }
  .container h2::before {
    height: 50px;
  }
  .h2-underline {
    display: none;
  }
}
/* h2_02 */
section .h2_02 {
  font-size: 1.6rem;
  justify-content: center;
  display: flex;
  text-align: center;
}
section .h2_02::before {
  content: none;
}
.h2_02 + .h2-underline {
  border: none;
  height: 1px;
  background: #B2B2B2;
  margin: 0 0 50px 0;
}
@media (max-width: 900px) {
  section .h2_02 {
    font-size: 2.0rem;
    font-weight: normal;
    margin-bottom: 16px;
    border: none;
    color: #333;
  }
  .h2_02 + .h2-underline {
    display: block;
  }
}
/* h3 */
section h3 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  background: #EBE7EF;
  padding: 20px;
}
section h3 {
  margin-top: 20px
}
@media (max-width: 900px) {
  section h3 {
    padding: 10px;
  }
}
/* h3_02 */
section .h3_02 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: bold;
  background: none;
  padding: 0;
}
section .h3_02 {
  margin-top: 35px
}
@media (max-width: 900px) {
  section .h3_02 {
    margin-top: 20px
  }
}
p {
  line-height: 1.9;
}
.text_right {
  text-align: right;
}
.text_center {
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.text_bold {
  font-weight: bold;
}
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

/* MV */
.visual {
  position: relative;
  overflow: hidden;
}
.visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.8);
}
.slick-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
  margin: 0 auto;
  z-index: 2;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-dots li {
  margin: 0 1px;
}
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 2rem;
}

/* ローディング要素 */
.loading-bg,
.white-swipe,
.green-swipe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
}
.loading-bg {
  z-index: 9997;
  background: #fff;
  transition: background 0.7s cubic-bezier(.77,0,.175,1);
}
.white-swipe {
  background: #fff;
  z-index: 9998;
  left: -100%;
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.green-swipe {
  background: #8EC300;
  z-index: 9999;
  left: -100%;
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.loading-logo {
  position: fixed;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  z-index: 9998;
  width: 220px;
  height: auto;
  text-align: center;
  pointer-events: none;
}
.loading-logo img {
  width: 100%;
  height: auto;
  display: block;
}
 .loading-bar {
  position: fixed;
  left: 25%;
  top: 45%;
  width: 50%;
  height: 12px;
  z-index: 10000;
}

/* 2カラム(サイドバー用) */
.container.-cont-nav {
  max-width: 1210px;
  display: flex;
  justify-content: space-between;
  column-gap: clamp(20px, 4.17vw, 50px);
}
@media (max-width: 900px) {
  .container.-cont-nav {
    flex-direction: column;
  }
}
.cont-area {
  width: 860px;
}
.cont-sidebar {
  width: 300px;
}
.cont-sidebar nav {
  margin-bottom: 30px;
}
.cont-sidebar nav h2 {
  background: #1A005D;
  color: #fff;
  font-size: 1rem;
  padding: 26px 0;
  text-align: center;
  display: block;
  margin-bottom: 0;
}
.cont-sidebar nav ul {
  border: 4px solid #E6E6E6;
  border-top: none;
}
.cont-sidebar nav ul li:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.cont-sidebar nav ul li a {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 15px 8px;
  position: relative;
  color: #333;
  background: none;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.cont-sidebar nav ul li a .icon {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
  margin-right: 12px;
}
.cont-sidebar nav ul li a .icon::before,
.cont-sidebar nav ul li a .icon::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 10px;
  height: 2px;
  background-color: #999A9E;
  border-radius: 1px;
  transform-origin: calc(100% - 1px) 50%;
}
.cont-sidebar nav ul li a .icon::before {
  transform: rotate(45deg);
}
.cont-sidebar nav ul li a .icon::after {
  transform: rotate(-45deg);
}
.cont-sidebar nav ul li a span:last-child {
  margin-left: 0;
}
.cont-sidebar nav ul li:hover {
  background-color: #F7F7F7;
}
.cont-sidebar nav ul li:hover a {
  color: #8EC300;
}
.cont-sidebar nav ul li:hover a .icon::before,
.cont-sidebar nav ul li:hover a .icon::after {
  background-color: #8EC300;
}
@media (max-width: 900px) {
  .cont-area {
    width: 100%;
  }
  .cont-sidebar {
    width: 100%;
    padding: 0 15px;
  }
  .cont-sidebar nav h2 {
    display: none;
  }
  .cont-sidebar nav ul {
    border: 1px solid #E6E6E6;
    border-radius: 5px;
  }
  .cont-sidebar nav ul li {
    background: #F9F9F9;
  }
  .cont-sidebar nav ul li a {
    display: block;
    text-decoration: underline;
    padding: 18px 24px;
  }
  .cont-sidebar nav ul li a .icon {
    display: none;
  }
}

/* マイナビリンク */
.mynavi a {
  width: 195px;
  display: block;
  margin: 0 auto 30px;
}
.mynavi a:hover {
  opacity: 0.7;
}
@media (max-width: 900px) {
  .mynavi {
    display: none;
  }
}

/* サイドバーテキスト */
#sidebar-common > .text {
  border-bottom: 1px #999A9E solid;
  padding-bottom: 13px;
}
#sidebar-common > .text + .text {
  padding-top: 13px;
}
@media (max-width: 900px) {
  #sidebar-common .text {
    display: none;
  }
}

/* 2カラム */
.clm2 {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.clm2_left,
.clm2_right {
  width: calc((100% - 20px) / 2);
}
/* 2カラム 3:7 */
.clm2.ratio-3-7 .clm2_left { width: calc((100% - 20px) * 0.3); }
.clm2.ratio-3-7 .clm2_right { width: calc((100% - 20px) * 0.7); }
/* 2カラム 7:3 */
.clm2.ratio-7-3 .clm2_left { width: calc((100% - 20px) * 0.7); }
.clm2.ratio-7-3 .clm2_right { width: calc((100% - 20px) * 0.3); }

@media (max-width: 900px) {
 .clm2_left,
  .clm2_right {
    width: calc(100% / 2 - 10px);
  }
}

/* テーブル(点線) */
.tbl {
  width: 100%;
  border-collapse: collapse;
}
.tbl th,
.tbl td {
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
  border-left: none;
  border-right: none;
  padding: 14px 8px;
  vertical-align: top;
  background: none;
  vertical-align: middle;
}
.tbl th {
  width: 160px;
  font-weight: normal;
  text-align: start;
  padding: 14px 50px 14px 8px;
}

/* テーブル(点線なし) */
.tbl.-noborder th,
.tbl.-noborder td {
  border-top: none;
  border-bottom: none;
  vertical-align: baseline;
}

/* 数字リスト */
.list .list_item {
  padding: 5px 0;
  margin-left: 20px;
  line-height: 1.9;
}
.list .list_item.-number {
  list-style-type: decimal;
}
#sidebar-common .list .list_item {
  line-height: 1.5;
}
/* 点リスト */
.list .list_item.-disc {
  list-style-type: disc;
}

/* リンクリスト */
.link_list li a {
  display: flex;
  border: #CCC 4px solid;
  border-radius: 4px;
  padding: 6px;
  margin-bottom: 20px;
}
.link_list li a:hover {
  opacity: 0.6;
}
.link_list_left {
  max-width: 30%;
}
.link_list_right {
  padding-left: 8px;
  position: relative;
}
.link_list_right .title {
  font-weight: bold;
  color: #666;
  margin-bottom: 6px;
}
.link_list_right .read_more {
  position: absolute;
  bottom: 0;
  color: #666;
  right: 50%;
  font-size: 0.8rem;
}

/* PDFリンクリスト */
.link_list.-pdf li {
  margin: 20px 0;
  border-bottom: 1px dotted #000;
}
.link_list.-pdf p {
  background: #EBE7EF;
  padding: 14px;
}
.link_list.-pdf li a {
  display: flex;
  align-items: center;
  border: none;
  padding: 10px;
  margin-bottom: 10px;
}
.link_list_left.-pdf {
  margin-right: 10px;
}

/* ボタン(枠線) */
.btn_01 {
  display: block;
  border: 1px #333 solid;
  padding: 10px;
  border-radius: 5px;
}
/* ボタン(ネイビー枠なし) */
.btn_02 {
  display: block;
  color: #8EC300;
  background: #1A005D;
  padding: 10px;
  border-radius: 5px;
}

/* 下線部付きリンク */
.link_line {
  text-decoration: underline;
  color: #003a75;
}
.link_line:hover {
  color: #bb0000;
}
/* 下線部付きリンク(下線のみ) */
.link_line_02 {
  text-decoration: underline;
}

/* アイコン付きリンク */
.link_ico {
  position: relative;
}
.link_ico::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  background-color: currentColor;
  mask-image: none;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: none;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
/* アイコン付きリンク(外部) */
.link_ico.-another::before {
  mask-image: url(/assets/img/cmn/ico_link.svg);
  -webkit-mask-image: url(/assets/img/cmn/ico_link.svg);
}

/* アイコン付きリンク(≪) */
.link_ico.-left_arrow::before {
  mask-image: url(/assets/img/cmn/ico-arr-01.svg);
  -webkit-mask-image: url(/assets/img/cmn/ico-arr-01.svg);
}
/* アイコン付きリンク(<) */
.link_ico.-left_arrow::before {
  mask-image: url(/assets/img/cmn/ico-arr-02.svg);
  -webkit-mask-image: url(/assets/img/cmn/ico-arr-02.svg);
}
/* アイコン付きリンク(>) */
.link_ico.-right_arrow::before {
  mask-image: url(/assets/img/cmn/ico-arr-02.svg);
  -webkit-mask-image: url(/assets/img/cmn/ico-arr-02.svg);
  transform: rotate(180deg);
  width: 14px;
  height: 14px;
}
/* アイコン付きリンク(○) */
.link_ico.-circle::before {
  mask-image: url(/assets/img/cmn/ico-circle-01.svg);
  -webkit-mask-image: url(/assets/img/cmn/ico-circle-01.svg);
}
/* アイコン付きリンク(家) */
.link_ico.-home::before {
  mask-image: url(/assets/img/cmn/ico-home.svg);
  -webkit-mask-image: url(/assets/img/cmn/ico-home.svg);
  width: 13px;
  height: 13px;
}
/* アイコン付きリンク(電話) */
.link_ico.-phone::before {
  mask-image: url(/assets/img/cmn/ico-phone.svg);
  -webkit-mask-image: url(/assets/img/cmn/ico_phone.svg);
  width: 23px;
  height: 23px;
}

/* 印刷ボタン */
.link_ico.-print::before {
  mask-image: url(/assets/img/cmn/ico-print.svg);
  -webkit-mask-image: url(/assets/img/cmn/ico-print.svg);
  width: 15px;
  height: 14px;
}
.btn_01.-print {
  width: 80px;
}

/* PhotoSwipe */
#my-gallery a {
  position: relative;
  display: inline-block;
}
#my-gallery a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 15px;
  height: 15px;
  background: url(/assets/img/cmn/ico-zoom.svg) no-repeat center center;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
}
#my-gallery a:hover::after {
  opacity: 1;
}

/* Google Map iframe */
iframe.map-place {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  height: 645px !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 900px) {
  iframe.map-place {
    width: 100% !important;
    margin: 0 auto;
    height: 300px !important;
    padding: 15px;
  }
}

#recruit_news {
  scroll-margin-top: 130px;
}

.mt0 {
  margin-top: 0;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mb0 {
  margin-bottom: 0;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.pt0 {
  padding-top: 0;
}
.pt10 {
  padding-top: 10px;
}
.pt20 {
  padding-top: 20px;
}
.w10 {
  width: 10%;
}
.w20 {
  width: 20%;
}
.w30 {
  width: 30%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.w70 {
  width: 70%;
}
.w80 {
  width: 80%;
}
.w90 {
  width: 90%;
}
.w100 {
  width: 100%;
}
@media (min-width: 901px) {
  .sp_br {
    display: none;
  }
}
@media (max-width: 900px) {
  .pc_br {
    display: none;
  }
}