@charset "UTF-8";
/* フォント */
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900

.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
/* 共通部分 */
:root{
  --black:#242424;
  --white:#fff;
  --gray:#b3b3b3;
  --textcolor:#333333;
}
*,::before,::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family:"Noto Serif JP", serif;
  line-height:1.7;
  color: var(--textcolor);
  background:url("../image/background2.jpg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  background-color:rgba(244, 245, 255, 0.3);
  background-blend-mode:lighten;
}
img {
  max-width:100%;
  height: auto;
}
a {
  color: var(--graycolor);
  text-decoration-line: none;
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.top_button>li:nth-child(2){
  background-color: var(--black);
  color: var(--white);
  /* transform: translateY(1.5px); */
  /* box-shadow: none; */
}
.top_button > li:nth-child(2):before{
  border-left: 1.5em solid var(--white);
}

/* 募集要項 */
h3{
  display: flex;
  align-items: center;
  width: 100%;
  margin: 4.5% 0 2% 0;
  font-size: clamp(14px,2.25vw,32px);
  font-weight: 800;
}
/* h3::after{
  content: "";
  display: block;
  background: var(--black);
  width: 20%;
  height: 1px;
  flex-grow: 1;
  margin-left: 1em;
} */
.youkou,
.hukuri{
  width: 100%;
}
.youkou,
.hukuri,
th,
td{
  border-collapse: collapse;
}
tbody{
  border: none;
}
th,
td{
  padding-top: 5%;
  padding-bottom: 5%;
}
tr{
  border-bottom: 1px solid #000000;
}
tr:last-child{
  border-bottom: none;
}
th, td {
  border-right: 1px solid #000000;
}
th:last-child, td:last-child {
  border-right: none;
}

th{
  background: var(--gray);
  text-align: center;
  font-size: clamp(10px,1.75vw,20px);
  width: 15%;
}
td{
  background: var(--white);
  padding-left: 2%;
  font-size: clamp(8px,1.5vw,18px);
}

.bold{
  font-weight: 700;
}