
@charset "utf-8";

/* ------------------
 グローバル変数
------------------ */
:root {
  /* フォント */
  --serif: "Noto Serif JP", serif;

  /* 色 */
  --bg-color: #DCEAFF;
  --main-color: #1F9950;
  --sub-color: #F1A954;
  --start-color: 240, 234, 255;
  --end-color: 224, 237, 255;
  --gradient: linear-gradient(to right, rgba(var(--start-color), 1), rgba(var(--end-color), 1));

  /* 文字サイズ */
  --font-14: 1.4rem;
  --font-16: 1.6rem;
  --font-60: 6rem;
  --font-64: 6.4rem;
  --font-40: 4rem;
  --font-48: 4.8rem;
  --font-32: 3.2rem;
  --font-24: 2.4rem;
  --font-20: 2rem;
  --font-18: 1.8rem;

  /* 余白 */
  --space-65: 65px;
}
@media screen and (max-width: 767px) {
  :root {
    /* 文字サイズ */
    --font-16: 1.5rem;
    --font-40: 2.8rem;
    --font-32: 2.4rem;
    --font-24: 1.8rem;
    --font-20: 1.8rem;
    --font-18: 1.6rem;

      /* 余白 */
      --space-65: 35px;
  }
}

/* ------------------
 フォント
------------------ */
body {
  font-family: 'Noto Sans JP','Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-size: var(--font-16);
  line-height: 2;
  position: relative;
}

/* ------------------
 config、パーツ
------------------ */
/* スマホメニュー非表示 */
.spNav_btn,.spNav_panel {display: none;}

/* スマホ閲覧時のみ表示 */
.sp_block {display: none;}

:where(a:hover) {
  opacity: 0.8;
}

/* レイアウト */
.main {
  padding-top: 100px;
  @media screen and (max-width: 767px) {
    padding-top: 75px;
  }
}
.container {
  max-width: 1024px;
  width: 90%;
  margin: var(--space-65) auto;
}
.paragraph:not(:last-child) {
  margin-bottom: 3em;
  @media screen and (max-width: 767px) {
    margin-bottom: 2em;
  }
}
.sentence:not(:last-child) {
  margin-bottom: 1em;
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2em;
}
.flex_box.flex_box.column2 > * {
  max-width: calc(50% - 10px);
  width: 100%;
}
.flex_box.column3 > * {
  max-width: calc(100% / 3 - 40px / 3);
  width: 100%;
  a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
.flex_box.column3 .top_heading {
  justify-content: center;
  align-items: center;
}

.bg_section {
  width: 100%;
  padding: var(--space-65) 0;
  background: var(--bg-color);
  & > * {
    max-width: 1024px;
    width: 90%;
    padding: 2em;
    background: #fff;
    margin-inline: auto;
    @media screen and (max-width: 767px) {
      padding: 1em;
    }
  }
}

.block_indent {
  padding-left: 1em;
}

/* アイコン */
img[src="/common/img/icon_window.webp"] {
  margin-left: 3px;
}

/* テキスト */
.main_txt {
  margin-bottom: 1em;
  text-indent: 1em;
  a {
    color: var(--main-color);
    text-decoration: underline;
  }
  a:hover {
    text-decoration: none;
  }
  a[target="_blank"]::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../img/icon_window.webp) no-repeat center center;
    background-size: contain;
    margin-inline: 3px;
  }
}
a.link_txt {
  color: var(--main-color);
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
}
.green_txt {
  color: var(--main-color);
}
.lightgreen_txt {
  color: var(--sub-color);
}
a.link_txt {
  color: var(--main-color);
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
}
.center_txt {
  text-align: center;
  img {
    margin-inline: auto;
  }
}
.indent_txt {
  text-indent: -1em;
  padding-left: 1em;
}
.bold_txt {
  font-weight: bold;
}

/* リスト関連 */
.bullet_list li {
  display: flex;
  &::before {
    content: "・";
    display: block;
  }
}
/* 先頭「数値」のリスト */
.decimal_list {
  margin-left: 1.1em;
  li {
    list-style-type: decimal;
  }
}
/* （1）、（2）など */
.num_indent {
  text-indent: -2.6em;
  padding-left: 2.6em;
}

/* 定義リスト */
.dl_item {
  div {
    display: flex;
    gap: 0 0.2em;
    @media screen and (max-width: 767px) {
      flex-direction: column;
      margin-bottom: 0.5em;
    }
  }
  dt {
    @media print, screen and (min-width: 768px) {
      white-space: nowrap;
    }
  }
}

/* もっと見るボタン */
.more_btn {
  padding: 0.5em 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to right, #BFFFFF, #FFC0FF);
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  &::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
  @media screen and (max-width: 767px) {
    padding: 0.5em 3em;
  }
}
.more_btn.fff {
  background: #fff;
  &::after {
    content: "";
    border-top: 2px solid var(--sub-color);
    border-right: 2px solid var(--sub-color);
  }
}

/* テーブル */
.table_outer {
  width: 100%;
  margin-inline: auto;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .table_outer > table {
    white-space: nowrap;
  }
}
.cmn_table {
  width: 100%;
  th {
    padding: 0.5em 4em;
    font-weight: normal;
    text-align: center;
  }
  a {
    color: var(--main-color);
    text-decoration: underline;
  }
  a[target="_blank"]::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../img/icon_window.webp) no-repeat center center;
    background-size: contain;
    margin-inline: 3px;
  }
  a[href$=".pdf"]::after {
    width: 20px;
    height: 20px;
    background: url(../img/icon_pdf.webp) no-repeat center center;
    transform: translateY(3px);
  }
  a:hover {
    text-decoration: none;
  }
  @media print, screen and (min-width: 768px) {
    th:first-child {
      width: 225px;
    }
  }
  @media screen and (max-width: 767px) {
    th {
      padding: 0.5em 2em;
    }
  }
}
.cmn_table thead {
  border-top: 1px solid #ccc;
  background: var(--bg-color);
}
.cmn_table tbody {
  border-top: 1px solid #ccc;
}
.cmn_table tbody tr {
  border-bottom: 1px solid #ccc;
}

/* 教員紹介用ブロック */
.fac_card--outer {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.fac_card {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  @media screen and (max-width: 767px) {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }
}
.fac_card--block {
  max-width: 502px;
  min-height: 350px;
  width: 100%;
  background: #F2EEE6;
  /* padding: 40px 26px 0 38px; */
  padding: 40px 26px 40px 38px;
  @media screen and (max-width: 767px) {
    padding: 20px 5%;
  }
}
.fac_card--right {
  max-width: 295px;
  width: 100%;
}
.fac_card--right > p {
  padding: 20px 0 0 20px;
  @media screen and (max-width: 767px) {
    padding: 10px 0 0 20px;
  }
}
.fac_card--name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  min-height: 156px;
  background: #F1A954;
  width: 100%;
  max-width: 295px;
  /* padding: 0 8px 0 20px; */
  padding: 8px 20px;
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    min-height: 72px;
  }
}
.fac_card + p {
  margin-bottom: 10px;
}
.fac_card--name .mt-be-column > p {
  /* white-space: nowrap; */
  line-height: 1.5;
  font-size: 1.4rem;
}
.fac_card--name h3 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.25;
  margin-right: 20px;
}
/* ページ内リンク */
.link_btn--outer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto;
  width: 90%;
  @media screen and (max-width: 767px) {
    flex-direction: column;
  }
}
.link_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 20px 0 32px;
  max-width: 294px;
  width: 100%;
  min-height: 78px;
  background: #F2EEE6;
  color: #000;
  font-weight: 700;
}
/* Q&A */
/*
.qa_box {
	width: 100%;
	transition: all .5s;
	margin: 0 auto 20px;
	&[open] {
		margin: 0 auto 30px;
	}
	&:last-of-type {
		margin-bottom: var(--space-80)
	}
	span {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: var(--headline);
		font-weight: bold;
	}
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}
.qa_box--q {
	width: 100%;
  padding: 1em 2em;
	display: flex;
	align-items: center;
  justify-content: space-between;
  gap: 10px;
	margin-bottom: 20px;
	background: var(--bg-color);	
	position: relative;
	list-style: none;
  font-size: var(--font-20);
  font-weight: bold;
  color: var(--main-color);
	&::-webkit-details-marker {
		display:none;
	}
	&:hover {
		cursor: pointer;
	}
  &::after {
    content: "";
    width: 25px;
    height: 3px;
    display: inline-block;
    background: var(--main-color);
    @media screen and (max-width: 767px) {
      width: 20px;
      min-width: 20px;
    }
  }
  @media screen and (max-width: 767px) {
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
  }
}
.qa_box[open] .qa_box--q::before {
  content: "";
  width: 3px;
  height: 25px;
  display: inline-block;
  background: var(--main-color);
  position: absolute;
  right: 2.5em;
  top: 50%;
  transform: translateY(-50%);
  @media screen and (max-width: 767px) {
    right: 1.45em;
    height: 20px;
  }
}
.qa_box--a {
	width: 100%;
}*/


/* ------------------
 header
------------------ */
.header {
  width: 100%;
  height: 100px;
  padding: 10px 0 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 5px solid #1F9950;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  @media screen and (max-width: 767px) {
    height: 75px;
    padding: 10px;
    position: fixed;
    z-index: 10;
  }
}
.header_logo {
  display: flex;
  align-items: center;
  gap: 20px 10px;
  .header_logo--jp {
    font-size: 2.2rem;
    line-height: 1.5;
    white-space: nowrap;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .header_logo--text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #31705A;
  }
  .header_logo--jp::first-line {
    font-size: 1.4rem;
  }
  @media screen and (max-width: 767px) {
    height: 50px;
    align-items: center;
    gap: 8px;
    img {
      height: 40px;
      width: auto;
    }
    .header_logo--jp {
      font-size: 1.4rem;
    }
    .header_logo--text {
      display: inline-block;
      font-size: 1rem;
      line-height: 1.5;
    }
  }
}
.pc_nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content:flex-start;
  gap: 0.5em 15px;
  margin-right: 30px;
}
.pc_nav--icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  li {
    &:last-child {
      color: #000;
      font-weight: 500;
      letter-spacing: 1.6px;
      line-height: 1.3;
    }
  }
  select {
    height: 100%;
    transition: all 0.2s ease;
    border: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 8px 1.2em 8px 1em;
    position: relative;
    z-index: 1;
    background: none;
  }
}
.pc_nav--top {
  width: 100%;
  padding: 0.5em 0;
  display: flex;
  align-items: center;
  justify-content:flex-end;
  gap: 2em;
}
.pc_nav--list {
  display: flex;
  align-items: center;
}
.pc_nav--item {
  position: relative;
  padding-bottom: 0.25em;
  border-bottom: 2px solid transparent;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  & > a {
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #000;
  }
  &:last-child > a {
    padding-right: 0;
  }
  & > a:hover {
    text-decoration: 2px underline var(--main-color);
    text-underline-offset: 1ex;
    opacity: 1;
  }
}
.pc_nav--arrow {
  position: relative;
  display: inline-block;
  width: 9.1px;
  height: 9.4px;
  left: -20px;
  z-index: 0;
  cursor: pointer;
}
.pc_nav--arrow::before,
.pc_nav--arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: #0D3D17;
  transform-origin: 50% calc(100% - 0.5px);
}
.pc_nav--arrow::before {
  transform: translateX(2px) rotate(25deg);
}
.pc_nav--arrow::after {
  transform: translateX(2px) rotate(-25deg);
}

/* ------------------
 main
------------------ */

/*　お知らせ */
.news {
  width: 100%;
  height: 230px;
  overflow: auto;
  margin-top: 1em;
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
section:has(.news) {
  max-width: calc(100% - 356px);
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
.news_item {
  width: 100%;
  padding: 0.8em 0;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
  gap: 5px 1.5em;
  time {
    white-space: nowrap;
  }
  h3 {
    font-size: var(--main-color);
    font-weight: normal;
    line-height: 2;
  }
  h2 {
    font-size: var(--main-color);
    font-weight: normal;
    line-height: 2;
  }
  &:last-child {
    border-bottom: 1px solid #ccc;
  }
  a {
    color: var(--main-color);
    text-decoration: underline;
  }
  a:hover {
    text-decoration: none;
  }
  @media screen and (max-width: 767px) {
    padding: 0.5em 3%;
    flex-wrap: wrap;
    h3 {
      line-height: 1.8;
    }
  }
}

/* ------------------
 footer
------------------ */
.footer {
  width: 100%;
  background: url(../img/ft_bg.png) no-repeat center/cover;
  & > .container {
    padding: 80px 0 var(--space-65);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px 80px;
    margin: 0 auto;
    @media screen and (max-width: 767px){
      padding: 32px 0 200px;
    }
  }
}
.footer .container {
  position: relative;
  &::after {
    content: "";
    background: url(../img/ft_img.png) no-repeat center/cover;
    width: 506px;
    height: 236px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    @media screen and (max-width: 767px){
      background: url(../img/ft_img_sp.png) no-repeat left/cover;
      width: 100%;
      max-width: 357px;
      height: 167px;
    }
  }
  @media screen and (max-width: 767px){
    flex-direction: column;
    align-items: center;
  }
}
.address_head {
  font-size: 2rem;
  padding-bottom: 0.5em;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  @media screen and (max-width: 767px){
    font-size: 1.8rem;
  }
}
.address_body {
  font-weight: 400;
  line-height: 150%;
  a {
    color: #000;
  }
}
.footer_nav {
  padding: 0 1.5em;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #FFF;
  border-right: 3px solid #FFF;
}
.spNav_panel > .footer_nav  {
  padding: 25px 20px;
}
.footer_nav--item {
  a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    letter-spacing: 0.64px;
  }
  a[target="_blank"]::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(../img/external_icon.webp) no-repeat center center;
  }
  a:hover {
    text-decoration: underline;
    opacity: 1;
  }
  a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border-top: 1px solid var(--sub-color);
    border-right: 1px solid var(--sub-color);
    transform: rotate(45deg);
  }
}
.copyright {
  width: 100%;
  height: 60px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

/* ------------------
下層ページ共通
------------------ */
/* slider */
.prev-arrow, .next-arrow {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../../img/arrow_back.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 20px);
  right: -50px;
  z-index: 2;
}
.prev-arrow {
  right: auto;
  left: -50px;
  @media screen and (max-width: 767px){
    left: -20px;
    transform: scale(.8);
  }
}
.next-arrow {
  transform: rotate(180deg);
  @media screen and (max-width: 767px){
    right: -20px;
    transform: scale(.8) rotate(180deg);
  }
}
/* ページタイトル */
.page_title--box {
  width: 100%;
  height: 250px;
  padding-bottom: 40px;
  background: url(../img/page_mv.png) no-repeat center center;
  background-size: cover;
  margin: 0 auto var(--space-65);
  position: relative;
  @media screen and (max-width: 767px){
    padding-bottom: 37.5px;
  }
}
.page_title {
  margin-inline: auto;
  max-width: 1024px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: var(--font-48);
  font-weight: 700;
  color: #FFF;
  letter-spacing: 4.8px;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.50);
  line-height: 1.5;
  @media screen and (max-width: 767px){
    padding: 0 5%;
    font-size: 3.2rem;
    line-height: 1.25;
  }
}
/* パンくずリスト */
.breadcrumb {
  width: 100%;
  background: rgba(255, 255, 255, 0.50);
  @media screen and (max-width: 767px){
    overflow: auto;
    padding: 0 5%;
  }
}
.breadcrumb_list {
  max-width: 1024px;
  width: 100%;
  padding: 0.5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 15px;
  line-height: 1.5;
  margin-inline: auto;
  @media screen and (max-width: 767px){
    width: auto;
    flex-wrap: nowrap;
  }
}
.breadcrumb_item {
  color: #000;
  a {
    text-decoration: underline;
		color: #000;
    &:hover {text-decoration: none;}
    @media screen and (max-width: 767px){
      font-size: var(--font-14);
    }
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 15px;
  }
  &:has(a[href])::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--sub-color);
    border-right: 1px solid var(--sub-color);
    transform: rotate(45deg);
  }
  @media screen and (max-width: 767px){
    white-space: nowrap;
  }
}

/* テーブル */
.table_outer {
  width: 100%;
  margin: 0 auto 2em;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .table_outer > table {
    white-space: nowrap;
  }
}
.cmn_table {
  width: 100%;
  border: 1px solid #ccc;
  th {
    padding: 0.5em 0.8em;
    background: #F2EEE6;
    font-weight: bold;
    text-align: center;
  }
  a {
    color: var(--main-color);
    text-decoration: underline;
  }
  a[target="_blank"]::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../img/icon_window.webp) no-repeat center center;
    background-size: contain;
    margin-inline: 3px;
  }
  a[href$=".pdf"]::after {
    width: 20px;
    height: 20px;
    background: url(../img/icon_pdf.webp) no-repeat center center;
    transform: translateY(3px);
  }
  a:hover {
    text-decoration: none;
  }
}
.cmn_table thead th:not(:last-child) {
  border-right: 1px solid #ccc;
}
.cmn_table tbody th {
  border-right: 1px solid #ccc;
}
.cmn_table tbody tr {
  border-top: 1px solid #ccc;
}
.cmn_table td {
  padding: 0.5em 0.8em;
}
.cmn_table tbody td:not(:last-child) {
  border-right: 1px solid #ccc;
}


/* 見出し */
.cmn_heading {
  width: 100%;
  margin-bottom: .3em;
  font-size: var(--font-40);
  color: #000;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 4px;
  &::first-letter {
    color: var(--sub-color);
  }
}

/* 小見出し */
.cmn_subheading {
  width: 100%;
  padding: 0.5em 0.8em;
  font-size: var(--font-24);
  font-weight: bold;
  background: var(--sub-color);
  margin-bottom: 1em;
}

/* テキスト＋画像 */
.cmn_flex {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto 2em;
  & > .cmn_flex--txt {
    max-width: calc(100% - 380px);
    width: 100%;
  }
  & > .cmn_flex--img {
    max-width: 360px;
    width: 100%;
  }
  figcaption {
    padding: 0.5em;
  }
  @media screen and (max-width: 767px){
    & > .cmn_flex--txt {
      max-width: 100%;
    }
    & > .cmn_flex--img {
      max-width: 100%;
    }
  }
}
@media screen and (max-width: 767px){
  .cmn_flex.rev {
    flex-direction: column-reverse;
  }
}

/* リンク画像 */
p.sentence:has(a img) {
  text-align: center;
}
p.sentence a img {
  display: inline-block!important;
}

/* リード文 */
.cmn_lead {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto 2em;
}

/* ページ内リンク */
.page_nav {
  max-width: 1024px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin: 0 auto var(--space-65);
  a {
    padding: 0.2em 3em;
  }
  a::after {
    transform: rotate(135deg) translate(-5px, -3px);
  }
  @media screen and (max-width: 767px){
    flex-direction: column;
  }
}

/* 関連リンク */
.related_pages {
  width: 100%;
  padding: var(--space-65) 0;
  background: var(--bg-color);
}
.related_pages--list {
  max-width: 1024px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-inline: auto;
}
.related_pages--item {
  max-width: calc(50% - 10px);
  width: 100%;
  a {
    width: 100%;
    padding: 1em 1.5em;
    display: flex;
    align-items: center;
    background: #fff;
    font-size: var(--font-24);
    color: #000;
    font-weight: bold;
  }
  @media screen and (max-width: 767px){
    max-width: 100%;
    a {
      padding: 0.8em 1.2em;
    }
  }
}

.related_page02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  & > * {
    max-width: 328px;
    width: 100%;
  }
  a {
    width: 100%;
    height: 100%;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--font-32);
    font-weight: bold;
    color: #000;
    text-align: center;
    line-height: 1.5;
    background: var(--bg-color);
  }
  span {
    font-size: var(--font-24);
    color: var(--main-color);
  }
}

/* お知らせ一覧 */
.topics_outer {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 32px 20px;
  @media screen and (max-width: 767px){
    gap: 16px;
  }
}
.topics_cell {
  max-width: 241px;
  @media screen and (max-width: 767px){
    max-width: calc(50% - 8px);
    width: 100%;
  }
  span img {
    width: 100%;
    height: auto;
  }
}
.topics_text {
  background: #F2EEE6;
  padding: 12px 20px;
  line-height: 150%;
  color: #000;
}

/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  background: url(../img/backtop.svg) no-repeat center/cover;
  width: 90px;
  height: 142px;
  right: 3%;
  bottom: 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
}
#backtop.active {
  opacity: 1;
  visibility: visible;
  z-index: 50;
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #000;
  }
}

@media screen and (max-width: 767px) {
	
	/* ------------------
	 config
	------------------ */
	/* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }
	/* スマホのみ表示する要素を表示、PCのみ表示する要素を非表示 */
	.sp_block {display: block;}
	.pc_block,.pc_nav {display: none;}
	
  /* ------------------
  スマホメニュー
  ------------------ */
  /* ボタン */
  .spNav_btn {
    display: flex;align-items: flex-end;justify-content: center;position: fixed; width: 50px;height: 50px;padding-bottom: 3px;background: var(--main-color);top:15px;right: 15px;transition: all 0.5s;z-index: 100;font-size:1.2rem;color:#fff;font-weight:bold;
    span {position: absolute;display: block;height: 2px;background: #fff;margin: auto;}
    
    /* 閉じた状態 */
    &[aria-pressed="false"] span {width: 25px;transition: all 0.5s;}
    &[aria-pressed="false"] span:nth-child(1) {top: 10px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(2) {top: 17px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(3) {top: 24px;left: 0;right: 0;}
    
    /* 開いた状態 */
    &[aria-pressed="true"] span {width: 25px;transition: all 0.5s;}
    &[aria-pressed="true"] span:nth-child(1) {top: 12px;transform: rotate(45deg);left: 13px;}
    &[aria-pressed="true"] span:nth-child(2) {display: none;}
    &[aria-pressed="true"] span:nth-child(3) {top: 12px;transform: rotate(-45deg);left: 13px;}
  }

  /* メニューパネル */
  .spNav_panel {
    display: block;
    height: 100vh;
    width: 260px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background: var(--main-color);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    overflow: auto;
    z-index: 99;
    
    /* パネルが閉じている状態 */
    &[aria-hidden="true"] {
      visibility: hidden;
      pointer-events: none;
      transform: translateX(100%);
    }

    /* パネルが開いている状態 */
    &[aria-hidden="false"] {
      visibility: visible;
      transform: translateX(0);
    }
  }

  /* メニューパネル内の項目 */
  .spNav_list {
    width: 100%;
    padding: 56px 0 0;
    font-size: 1.5rem;
    margin-bottom: 120px;
  }
  .spNav_list--item {
    border-bottom: 1px solid var(--bg-color);
    a {
      display: block;
      padding: 12px 20px;
      color: #fff;
    }
  }
  .spNav_accordion--title {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-align: start;
    &::after {
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }
    
    /* アコーディオン開閉時の状態表示 */
    &[aria-expanded="false"]::after {content: "+";font-size: var(--font-24);}
    &[aria-expanded="true"]::after {content: "-";font-size: var(--font-24);}

    /* アコーディオン内の項目 */
    &[aria-expanded="false"] + .spNav_accordion {
      max-height: 0;
      height: auto;
    }
    &[aria-expanded="true"] + .spNav_accordion {
      max-height: 1000px;
    }
  }
  .spNav_accordion {
    overflow: hidden;
    background: #fff;
    transition: all 0.5s;
    a {
      width: 100%;
      padding-left: 2em;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #000;
      border-bottom: 1px dashed #ccc;
    }
    a::after {
      content: "";
      width: 8px;
      height: 8px;
      display: inline-block;
      border-top: 1px solid var(--main-color);
      border-right: 1px solid var(--main-color);
      transform: rotate(45deg);
    }
  }
  /* bodyをタッチ不可に */
  #onbody {position: absolute;height: 100%;width: 100%; top: 0;left: 0;z-index: 98;overflow: hidden;pointer-events: none;}
  body:has(#onbody[aria-hidden="true"]) {height: 100%; overflow: hidden;}

  .spNav_icon {
    padding:0 20px;
  }
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
}
@page {
  size: A4;margin: 5px;
}