@charset "UTF-8";
/*component*/
* {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}

body {
  padding-top: 100px;
}
@media screen and (max-width: 1140px) {
  body {
    padding-top: 93px;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 78px;
  }
}

img {
  max-width: 100%;
}

a:hover {
  text-decoration: underline;
}

a.no-link {
  text-decoration: none;
  cursor: default;
}

.page {
  padding: 80px 0 200px;
}

[class*="--inner"] {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}

figure {
  margin: 0;
}

.sns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.sns ul {
  display: flex;
  gap: 10px;
}
.sns ul li a {
  display: block;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 768px) {
  .sns ul li a {
    width: 40px;
    height: 40px;
  }
}
.header {
  padding: 10px 0 20px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header--upper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.header--lower {
  margin-top: 12px;
}
.header--logo {
  margin-left: 0;
  margin-right: 0;
}
.header--logo img {
  height: 42px;
}
.header--nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-left: 10px;
  margin: 0 auto;
}
.header--nav-main a {
  display: block;
  width: 110px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  position: relative;
  padding-bottom: 4px;
}
.header--nav-main a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.header--nav-main a:hover {
  text-decoration: none;
}
.header--nav-main a:hover::after {
  transform: scaleX(1);
  transition: transform 0.3s ease-in-out;
}
.header--nav-sub {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 0;
  width: fit-content;
}
.header--nav-sub a {
  display: block;
  width: fit-content;
  padding: 10px 20px;
  background: #12275E;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1140px) {
  .header {
    padding-top: 0;
  }
  .header--inner {
    padding-top: 10px;
    display: block;
  }
  .header--logo {
    margin-bottom: 10px;
  }
  .header--nav-main {
    width: fit-content;
    margin: 0 auto;
  }
  .header--nav-sub {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header--inner {
    padding-top: 20px;
  }
  .header--logo {
    margin-bottom: 0;
  }
  .header--nav-sub {
    right: 90px;
    font-size: 12px;
    padding: 10px 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header--nav-main {
    display: none;
    padding-top: 10px;
    background-color: #fff;
    position: fixed;
    top: 75px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    z-index: 100;
    flex-direction: column;
    gap: 10px;
  }
  .header--nav-main a {
    color: #12275E;
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    background: #fff;
    font-size: 16px;
    border-bottom: 1px solid #c7c2c2;
    padding-left: 40px;
  }
  .header--nav-main a::after {
    display: none;
  }
  .header--nav-main a::before {
    content: ">";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #12275E;
  }
  .header--nav-main a:hover::after {
    transform: scaleX(0);
  }
  .header--nav-main.is-open {
    display: block;
  }
  .header--nav-main a span {
    font-size: 1.8rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .header--nav-sub {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 60px;
  height: 44px;
  cursor: pointer;
  margin-left: auto;
  position: absolute;
  padding: 8px;
  right: 20px;
  top: 10px;
  background-color: #12275E;
}
.hamburger span {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}
.hamburger::before {
  content: "menu";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.footer {
  background-color: #12275E;
}
.footer--inner {
  text-align: center;
  padding: 10px 20px;
}
.footer--logo img {
  height: 48px;
  margin-bottom: 10px;
}
.footer--address {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}
.footer--copyright {
  background: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 8px;
}

.flex {
  display: flex;
}
.flex--divide2 {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.flex--divide2 > * {
  flex-basis: calc(50% - 10px);
}
.flex--template01 {
  gap: 30px;
  justify-content: space-between;
}
.flex--template01 > *:nth-child(1) {
  flex-basis: 70%;
}
.flex--template01 > *:nth-child(2) {
  flex-basis: 30%;
}

@media screen and (max-width: 768px) {
  .flex {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .flex--divide2 > * {
    flex-basis: 100%;
    width: 100%;
  }
}
input[type=checkbox] {
  display: none;
}

.checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.checkbox::before {
  background: #fff;
  border: 1px solid #231815;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.checkbox::after {
  border-right: 3px solid #12275E;
  border-bottom: 3px solid #12275E;
  content: "";
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number] {
  padding: 8px;
  font-size: 1.4rem;
  border: #121111 solid 1px;
  border-radius: 5px;
  width: 98%;
}

.submit {
  width: fit-content;
  margin: 20px auto;
  position: relative;
  text-align: center;
}
.submit::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/arrow-right.svg") no-repeat;
  filter: invert(1);
  background-size: 100% auto;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.submit input[type=submit] {
  background: #FF0000;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #fff;
  padding: 10px;
  width: 400px;
  max-width: 100%;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
}
.submit input[type=submit]:hover {
  background: #FF0000;
}
.submit input[type=submit].dark {
  background: #121111;
}
@media screen and (max-width: 600px) {
  .submit input[type=submit] {
    width: 300px;
  }
}
.submit.login input[type=submit], .submit.passwordReset input[type=submit] {
  background: #12275E;
}

select {
  padding: 8px 15px 8px 8px;
  font-size: 1.4rem;
  border: #121111 solid 1px;
  border-radius: 5px;
  width: auto;
}

textarea {
  width: 98%;
  padding: 8px;
  font-size: 1.4rem;
  border: #121111 solid 1px;
  border-radius: 5px;
  min-height: 200px;
}

.f-radio {
  display: inline-block;
  border: solid 1px #121111;
  padding: 15px 0px 15px 10px;
  border-radius: 5px;
}
.f-radio input[type=radio] {
  /* コンテンツの流れから切り離す */
  position: absolute;
  /* 誤ったコードに対処するための回避策 */
  white-space: nowrap;
  /* 可能な限り文字サイズを小さくするための処理
  * (スクリーンリーダー中には height と width が 0 のものを無視するため)
  */
  width: 1px;
  height: 1px;
  /* オーバーフローしているコンテンツを隠す */
  overflow: hidden;
  /* 要素サイズを変更しうるプロパティのリセット */
  border: 0;
  padding: 0;
  /* 要素のどの部分が表示されるかを定義するもの */
  /* 古いブラウザでは使用できない */
  clip: rect(0 0 0 0);
  /* 最近のブラウザ用
  * コンテンツを非表示にする設定  */
  clip-path: inset(50%);
  /* 今現在なぜ-1pxがここで設定されるかは分かっていないそうです。
  * それに加えていくつか問題もあるそうです 
  * (参考: https://github.com/h5bp/html5-boilerplate/issues/1985)
  */
  margin: -1px;
}
.f-radio label {
  cursor: pointer;
  padding-left: 30px;
  padding-right: 45px;
  position: relative;
  font-size: 1.4rem;
}
.f-radio label::before,
.f-radio label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.f-radio label::before {
  background-color: #fff;
  border: 1px solid #12275E;
  height: 20px;
  width: 20px;
  left: 5px;
}
.f-radio label::after {
  background-color: #12275E;
  opacity: 0;
  height: 16px;
  width: 16px;
  left: 8px;
}
.f-radio input[type=radio]:checked + label::after {
  opacity: 1;
}

.f-radio-input {
  margin: 10px 0;
  border: solid 1px #121111;
  padding: 10px 0px 10px 10px;
  border-radius: 5px;
}
.f-radio-input input[type=radio] {
  /* コンテンツの流れから切り離す */
  position: absolute;
  /* 誤ったコードに対処するための回避策 */
  white-space: nowrap;
  /* 可能な限り文字サイズを小さくするための処理
  * (スクリーンリーダー中には height と width が 0 のものを無視するため)
  */
  width: 1px;
  height: 1px;
  /* オーバーフローしているコンテンツを隠す */
  overflow: hidden;
  /* 要素サイズを変更しうるプロパティのリセット */
  border: 0;
  padding: 0;
  /* 要素のどの部分が表示されるかを定義するもの */
  /* 古いブラウザでは使用できない */
  clip: rect(0 0 0 0);
  /* 最近のブラウザ用
  * コンテンツを非表示にする設定  */
  clip-path: inset(50%);
  /* 今現在なぜ-1pxがここで設定されるかは分かっていないそうです。
  * それに加えていくつか問題もあるそうです 
  * (参考: https://github.com/h5bp/html5-boilerplate/issues/1985)
  */
  margin: -1px;
}
.f-radio-input .inputPeriod {
  cursor: pointer;
  padding-left: 40px;
  padding-right: 45px;
  position: relative;
  font-size: 1.4rem;
}
.f-radio-input .inputPeriod::before,
.f-radio-input .inputPeriod::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.f-radio-input .inputPeriod::before {
  background-color: #fff;
  border: 1px solid #12275E;
  height: 20px;
  width: 20px;
  left: 5px;
}
.f-radio-input .inputPeriod::after {
  background-color: #12275E;
  opacity: 0;
  height: 16px;
  width: 16px;
  left: 8px;
}
.f-radio-input input[type=radio]:checked + .inputPeriod::after {
  opacity: 1;
}

form {
  max-width: 780px;
  margin: 0 auto;
}

.thenkmsg {
  line-height: 2.8rem;
  background: #fff;
  padding: 20px 0;
  margin-bottom: 40px;
}

dl.formGroup {
  display: flex;
  margin-bottom: 20px;
}
dl.formGroup dd, dl.formGroup dt {
  box-sizing: border-box;
  padding: 10px;
}
dl.formGroup dt {
  flex-basis: 25%;
  display: flex;
  align-items: center;
}
dl.formGroup dt label {
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  width: 100%;
}
dl.formGroup dt label.required::after {
  content: "必須";
  position: absolute;
  width: 30px;
  padding: 3px 0;
  font-size: 1rem;
  text-align: center;
  background: #FF0000;
  letter-spacing: 0.1rem;
  color: #fff;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
dl.formGroup dd {
  flex-basis: 65%;
}
@media screen and (max-width: 768px) {
  dl.formGroup {
    flex-direction: column;
  }
  dl.formGroup dd, dl.formGroup dt {
    flex-basis: 100%;
  }
}

.inputName {
  display: flex;
  max-width: 400px;
}
.inputName input {
  margin-right: 10px;
}

.inputEmail {
  max-width: 400px;
}

.inputBirth input, .inputPeriod input, .inputPrice input, .inputNum input {
  max-width: 80px;
}

.inputPassword {
  max-width: 400px;
}

.inputAcademic {
  display: flex;
  justify-content: flex-start;
}
.inputAcademic > div {
  box-sizing: border-box;
  margin: 0;
  margin-right: 1%;
}
.inputAcademic > div:nth-child(1) {
  flex-basis: 30%;
}
.inputAcademic > div:nth-child(2) {
  flex-basis: 20%;
  padding: 0 20px;
}
.inputAcademic > div:nth-child(3), .inputAcademic > div:nth-child(4) {
  flex-basis: 20%;
  max-width: 90px;
}
.inputAcademic > div:nth-child(3) input, .inputAcademic > div:nth-child(4) input {
  width: 50%;
  margin-right: 10px;
}

.privacyCheck {
  text-align: center;
  padding: 20px;
}

.formback {
  text-align: center;
}
.formback button {
  border: none;
  background: none;
  color: #12275E;
  cursor: pointer;
  border-bottom: solid 1px #fff;
  font-weight: bold;
}
.formback button::before {
  content: "＜ ";
}
.formback button:hover {
  border-bottom: solid 1px #12275E;
}
.formback a {
  color: #12275E;
  border-bottom: solid 1px #fff;
  display: inline-block;
}
.formback a::before {
  content: "＜ ";
}
.formback a:hover {
  border-bottom: solid 1px #12275E;
}

.complate h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.complate p {
  width: fit-content;
  margin: 20px auto;
  line-height: 2.4rem;
}
.complate .topback {
  padding: 40px 0;
  text-align: center;
}

.recruitSearchForm {
  margin: 0 auto;
}
.recruitSearchForm .age {
  display: flex;
}
.recruitSearchForm .age li {
  box-sizing: border-box;
  padding: 10px;
}
.recruitSearchForm .age input {
  max-width: 80px;
}
.recruitSearchForm ul.qualifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.recruitSearchForm ul.qualifications li {
  box-sizing: border-box;
  margin: 0;
  margin-right: 1%;
  flex-basis: 24.25%;
  /* (100 / x - (margin(%) - (margin(%) / x))   */
  margin-bottom: 2%;
  border: solid 1px #121111;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.3rem;
}
.recruitSearchForm ul.qualifications li:nth-child(4n) {
  margin-right: 0;
}

.offerForm {
  margin: 40px 0;
}

.ma-0 {
  margin: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.pa-0 {
  padding: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.ma-5 {
  margin: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.pa-5 {
  padding: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.ma-10 {
  margin: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.pa-10 {
  padding: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.ma-15 {
  margin: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.pa-15 {
  padding: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.ma-20 {
  margin: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.pa-20 {
  padding: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.ma-25 {
  margin: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.pa-25 {
  padding: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.ma-30 {
  margin: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.pa-30 {
  padding: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.ma-40 {
  margin: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.pa-40 {
  padding: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.ma-50 {
  margin: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.pa-50 {
  padding: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.ma-60 {
  margin: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.pa-60 {
  padding: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.ma-70 {
  margin: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.pa-70 {
  padding: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.ma-80 {
  margin: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.pa-80 {
  padding: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.ma-90 {
  margin: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.pa-90 {
  padding: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.ma-100 {
  margin: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.pa-100 {
  padding: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.ma-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.map {
  height: 0;
  overflow: hidden;
  padding-bottom: 61%;
  position: relative;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media (max-width: 600px) {
  .map {
    padding-bottom: 75%;
  }
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.lh-100 {
  line-height: 1 !important;
}

.lh-110 {
  line-height: 1.1 !important;
}

.lh-120 {
  line-height: 1.2 !important;
}

.lh-130 {
  line-height: 1.3 !important;
}

.lh-140 {
  line-height: 1.4 !important;
}

.lh-150 {
  line-height: 1.5 !important;
}

.lh-160 {
  line-height: 1.6 !important;
}

.lh-170 {
  line-height: 1.7 !important;
}

.lh-180 {
  line-height: 1.8 !important;
}

.lh-190 {
  line-height: 1.9 !important;
}

.lh-200 {
  line-height: 2 !important;
}

.w-100 {
  max-width: 100px;
}

.w-110 {
  max-width: 110px;
}

.w-120 {
  max-width: 120px;
}

.w-130 {
  max-width: 130px;
}

.w-140 {
  max-width: 140px;
}

.w-150 {
  max-width: 150px;
}

.w-160 {
  max-width: 160px;
}

.w-170 {
  max-width: 170px;
}

.w-180 {
  max-width: 180px;
}

.w-190 {
  max-width: 190px;
}

.w-200 {
  max-width: 200px;
}

.w-210 {
  max-width: 210px;
}

.w-220 {
  max-width: 220px;
}

.w-230 {
  max-width: 230px;
}

.w-240 {
  max-width: 240px;
}

.w-250 {
  max-width: 250px;
}

.w-260 {
  max-width: 260px;
}

.w-280 {
  max-width: 280px;
}

.w-300 {
  max-width: 300px;
}

.w-320 {
  max-width: 320px;
}

.w-340 {
  max-width: 340px;
}

.w-360 {
  max-width: 360px;
}

.w-380 {
  max-width: 380px;
}

.w-400 {
  max-width: 400px;
}

.w-450 {
  max-width: 450px;
}

.w-500 {
  max-width: 500px;
}

.w-550 {
  max-width: 550px;
}

.w-600 {
  max-width: 600px;
}

.w-650 {
  max-width: 650px;
}

.w-700 {
  max-width: 700px;
}

.w-750 {
  max-width: 750px;
}

.w-800 {
  max-width: 800px;
}

.w-850 {
  max-width: 850px;
}

.w-900 {
  max-width: 900px;
}

.w-950 {
  max-width: 950px;
}

.w-1000 {
  max-width: 1000px;
}

.w-1050 {
  max-width: 1050px;
}

.w-1100 {
  max-width: 1100px;
}

.w-1150 {
  max-width: 1150px;
}

.w-1200 {
  max-width: 1200px;
}

.w-max {
  width: 100%;
}

.h-50 {
  height: 50px;
}

.h-100 {
  height: 100px;
}

.h-150 {
  height: 150px;
}

.h-200 {
  height: 200px;
}

.h-250 {
  height: 250px;
}

.h-300 {
  height: 300px;
}

.h-350 {
  height: 350px;
}

.h-400 {
  height: 400px;
}

.h-450 {
  height: 450px;
}

.h-500 {
  height: 500px;
}

.w-10p {
  max-width: 10%;
}

.w-20p {
  max-width: 20%;
}

.w-30p {
  max-width: 30%;
}

.w-40p {
  max-width: 40%;
}

.w-50p {
  max-width: 50%;
}

.w-60p {
  max-width: 60%;
}

.w-70p {
  max-width: 70%;
}

.w-80p {
  max-width: 80%;
}

.w-90p {
  max-width: 90%;
}

.w-100p {
  max-width: 100%;
}

.display-flex {
  display: flex;
}

.al-c {
  text-align: center !important;
}
.al-l {
  text-align: left !important;
}
.al-r {
  text-align: right !important;
}

.val-t {
  vertical-align: top;
}
.val-m {
  vertical-align: middle;
}
.val-b {
  vertical-align: bottom;
}

.title--page {
  font-size: 25px;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
  border-bottom: 1px solid #121111;
  padding-bottom: 10px;
  letter-spacing: 0.1em;
}
.title--page--sub {
  font-size: 20px;
  padding-bottom: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.title--page--sub span {
  display: inline-block;
  font-size: 15px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .title--page {
    margin: 0 auto 80px;
  }
}
.title--section {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: fit-content;
  margin-bottom: 20px;
}
.title--section span:first-child {
  font-size: 30px;
  border-right: 1px solid #121111;
  padding-right: 10px;
  color: #12275E;
}
.title--section span:last-child {
  letter-spacing: 0.2em;
  font-size: 15px;
}

.news-item {
  display: flex;
  gap: 10px;
}
.news-item--title {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
}
.news-item--date {
  font-size: 16px;
  height: 60px;
  background: #12275E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  color: #fff;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.news-item--date small {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
.news-item--discription {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

.iframe-gmap {
  width: 100%;
  aspect-ratio: 16/5;
  position: relative;
}
.iframe-gmap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.iframe-youtube {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.iframe-youtube iframe {
  width: 100%;
  height: 100%;
}

.iframe-root {
  width: 100%;
  aspect-ratio: 16/12;
  position: relative;
}
.iframe-root iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .iframe-gmap {
    aspect-ratio: 16/10;
  }
}
a.btn {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  background: #12275E;
  display: inline-block;
  padding: 10px 20px;
  color: #fff !important;
  font-size: 14px;
  text-decoration: none !important;
}
a.btn:hover {
  background: #9D8357;
  color: #fff;
  text-decoration: none;
}
a.btn--large {
  padding: 10px 30px;
  font-size: 16px;
  line-height: 1.2;
}

.breadcrumb {
  padding: 14px 0;
  background: #12275E;
  border-bottom: 1px solid #fff;
}
.breadcrumb-list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: #fff;
}
.breadcrumb-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-list li:not(:last-child):after {
  content: ">";
  display: block;
}
.breadcrumb-list li a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb-list li a:hover {
  text-decoration: underline;
}
.breadcrumb-list li:last-child a {
  pointer-events: none;
}

a.pdf {
  display: inline-block;
  padding-right: 20px;
  background: url(../images/icon_pdf.png) no-repeat right center;
  background-size: 16px;
}

.text--note {
  font-size: 14px !important;
}
.text--note a {
  font-size: 100% !important;
}
.text--note.small {
  font-size: 12px !important;
}

.top-headline-news {
  background: #121111;
  padding: 20px 0 10px;
}
.top-headline-news h3 {
  text-align: center;
  background: #9D8357;
  color: #fff;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 20px;
  font-weight: normal;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1;
}
.top-headline-news--list {
  width: fit-content;
  margin: 0 auto;
}
.top-headline-news--list a {
  color: #fff;
  display: block;
  padding: 10px 0;
}
.top-news {
  padding: 40px 0 80px;
}
.top-news--title {
  background: #8E8E8E;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 20px;
}
.top-ivents {
  padding-bottom: 80px;
}
.top-access {
  padding: 40px 0 120px;
  background: #F8F4E7;
}
.top-access--link {
  padding-top: 40px;
  text-align: center;
}

.top-ivents--list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-ivents--list li {
  width: calc(25% - 10px);
}
.top-ivents--card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-ivents--card--content {
  padding: 10px 0;
}
.top-ivents--card--title {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
}
.top-ivents--card--date {
  font-size: 12px;
  color: #8E8E8E;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
}
.top-ivents--card a.top-ivents--card--link {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  display: block;
  background: #F8F4E7;
  padding: 10px 30px;
  text-align: center;
  color: #121111;
  font-weight: bold;
  font-size: 12px;
  margin-top: 10px;
  width: fit-content;
  margin: 0 auto;
}
.top-ivents--card a.top-ivents--card--link:hover {
  background: #12275E;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .top-ivents--list {
    flex-direction: column;
    gap: 40px;
  }
  .top-ivents--list li {
    width: 100%;
  }
}

.ivent--inner {
  display: flex;
  gap: 40px 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.ivent--inner > * {
  width: calc(50% - 10px);
}
.ivent--inner > *:nth-child(odd) {
  margin-left: 0;
}
.ivent--card {
  display: flex;
  gap: 10px;
  padding-bottom: 50px;
  position: relative;
}
.ivent--card--date-title {
  flex-basis: 50%;
}
.ivent--card--date {
  background: #121111;
  padding: 10px 20px;
  color: #fff;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-size: 13px;
  margin-bottom: 10px;
}
.ivent--card--title {
  font-size: 17px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-weight: normal;
  line-height: 1.3;
  cursor: pointer;
}
.ivent--card--image {
  flex-basis: 70%;
}
.ivent--card a.ivent--card--link {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #12275E;
  color: #fff;
  padding: 10px 40px;
  font-size: 13px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
}
@media screen and (max-width: 768px) {
  .ivent--inner {
    gap: 40px;
  }
  .ivent--inner > * {
    width: 100%;
  }
  .ivent--card {
    flex-direction: column;
  }
  .ivent--card--date-title {
    width: 100%;
  }
}

.ivent-view {
  padding: 40px 0 90px;
}
.ivent-view * {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
}
.ivent-view a, .ivent-view a:checked {
  text-decoration: underline;
  color: #284da9;
}
.ivent-view--title {
  font-size: 24px;
  border-left: 5px solid #12275E;
  padding-left: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 40px;
  font-weight: normal;
  font-size: 20px;
}
.ivent-view--discription {
  display: flex;
  flex-wrap: wrap;
  font-size: 17px;
}
.ivent-view--discription dt, .ivent-view--discription dd {
  box-sizing: border-box;
}
.ivent-view--discription dt {
  width: 140px;
  border-bottom: 1px solid #8E8E8E;
  padding-bottom: 20px;
  padding-top: 20px;
}
.ivent-view--discription dd {
  flex-basis: calc(100% - 140px);
  border-bottom: 1px solid #8E8E8E;
  padding-bottom: 20px;
  padding-top: 20px;
  line-height: 1.4;
}
.ivent-view--content {
  padding-top: 40px;
}
.ivent-view--content--inner {
  max-width: 740px;
  margin: 0 auto;
}
.ivent-view--content h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #8E8E8E;
  margin-bottom: 20px;
}
.ivent-view--content p {
  line-height: 1.8;
  font-size: 17px;
}

.shisetsu {
  padding: 80px 0 120px;
}
.shisetsu--map {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.shisetsu--map a {
  display: block;
  width: 100%;
  text-align: center;
}
.shisetsu--map figure {
  border: solid 1px #121111;
  position: relative;
  width: 100%;
  aspect-ratio: 10/7;
  margin-bottom: 10px;
}
.shisetsu--map figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  object-fit: cover;
}
.shisetsu--tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.shisetsu--tiles > * {
  width: calc(50% - 10px);
}
.shisetsu--card figure {
  position: relative;
  width: 100%;
  aspect-ratio: 10/6;
  overflow: hidden;
}
.shisetsu--card figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.shisetsu--card--title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.shisetsu--card--content {
  padding: 10px 50px 10px 10px;
  position: relative;
}
.shisetsu--card--content p {
  font-size: 14px;
  line-height: 1.5;
}
.shisetsu--card--content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(../images/arrow-right.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .shisetsu--map {
    flex-wrap: wrap;
  }
  .shisetsu--map a {
    width: calc(50% - 10px);
  }
}

.shisetsu-disc--inner {
  max-width: 1000px;
  margin: 0 auto;
}
.shisetsu-disc--img {
  position: relative;
  width: 100%;
  aspect-ratio: 10/5.6;
  overflow: hidden;
}
.shisetsu-disc--img img {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.shisetsu-disc--content {
  padding-top: 40px;
}
.shisetsu-disc--content--inner {
  max-width: 1000px;
}
.shisetsu-disc--content h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #8E8E8E;
  margin-bottom: 20px;
}
.shisetsu-disc--content p {
  line-height: 1.8;
  font-size: 17px;
}

.riyo-guide {
  padding: 80px 0 200px;
}
.riyo-guide--inner {
  max-width: 1000px;
  margin: 0 auto;
}
.riyo-guide--inner * {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
}
.riyo-guide h1 {
  margin-bottom: 30px;
  font-size: 24px;
  padding: 10px 10px;
  border-left: 5px solid #12275E;
}
.riyo-guide h1.title--page {
  border-left: none;
  margin-bottom: 40px;
}
.riyo-guide h2 {
  font-size: 20px;
  padding: 10px 10px;
  border-bottom: 1px solid #12275E;
  margin-bottom: 20px;
}
.riyo-guide p {
  line-height: 1.8;
  font-size: 17px;
}
.riyo-guide ul {
  margin: 20px 0;
}
.riyo-guide ul li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}
.riyo-guide table th {
  background: #12275E;
  color: #fff;
  font-weight: normal;
  padding: 10px 10px;
  border-bottom: 1px solid #12275E;
  border-right: 1px solid #12275E;
  width: 200px;
  line-height: 1.8;
}
.riyo-guide table td {
  line-height: 1.8;
  padding: 10px 10px;
  border-bottom: 1px solid #12275E;
  border-right: 1px solid #12275E;
}
.riyo-guide table tr:first-child td {
  border-top: 1px solid #12275E;
}
.riyo-guide ul.riyo-guide--list {
  margin-bottom: 40px;
}
.riyo-guide ul.riyo-guide--list > li {
  list-style: none;
  margin-left: 0;
  font-size: 18px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.riyo-guide ul.riyo-guide--list > li a {
  display: block;
  font-size: 18px;
  font-weight: normal;
}
.riyo-guide ul.riyo-guide--list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #865F5F;
}
.riyo-guide ul.riyo-guide--list > li > ul {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.riyo-guide ul.riyo-guide--list > li > ul a {
  font-size: 15px;
  text-decoration: underline;
}

.access {
  padding: 80px 0 200px;
}
.access--map {
  margin-bottom: 80px;
}
.access--info {
  margin-bottom: 80px;
}
.access--train {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.access--train dt {
  padding: 20px;
  background: #F8F4E7;
  width: 200px;
}
.access--train dd {
  padding: 20px;
}
.access--car {
  margin-bottom: 40px;
}
.access--car * {
  font-family: "ヒラギノ角ゴシック", sans-serif;
}
.access--car dt {
  margin-bottom: 10px;
  font-size: 17px;
}
.access--root {
  margin-bottom: 80px;
}
.access--parking {
  margin-bottom: 80px;
}
.access--traffic--categories {
  display: flex;
  gap: 40px;
}
.access--traffic--categories * {
  font-family: "ヒラギノ角ゴシック", sans-serif;
}
.access--traffic--categories dl {
  width: 25%;
}
.access--traffic--categories dl dt {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 20px;
}
.access--traffic--categories dl dd ul li {
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}
.access--traffic--categories dl dd ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #12275E;
  border-radius: 50%;
}
.access--traffic--categories dl dd ul li span {
  display: inline-block;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .access--traffic--categories {
    flex-wrap: wrap;
  }
  .access--traffic--categories dl {
    width: calc(50% - 20px);
  }
}

.infomation form {
  padding-top: 40px;
  border-top: solid 1px #eeeeee;
}
.infomation form * {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
}
.infomation--info {
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.7rem;
  margin: 0 auto;
  padding-bottom: 40px;
}
.infomation--info dt {
  width: 100px;
  text-align: right;
}
.infomation--info dd {
  width: calc(100% - 120px);
}

.news--list li {
  margin-bottom: 30px;
}
.news--card {
  display: flex;
  align-items: center;
}
.news--card--date {
  width: 140px;
}
.news--card--date span {
  display: block;
  font-size: 12px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  background: #121111;
  color: #fff;
  padding: 10px 10px;
  border-radius: 5px;
  width: fit-content;
}
.news--card--title {
  font-size: 16px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  margin-left: 20px;
  width: calc(100% - 240px);
  display: block;
}
.news--card--title:hover {
  text-decoration: underline;
}
.news--card--link {
  font-size: 12px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  background: #12275E;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
  width: 100px;
  cursor: pointer;
}
.news--card--link:hover {
  background: rgba(238, 238, 238, 0.9333333333);
  color: #121111;
  text-decoration: none;
}
.news--card:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .news--card {
    flex-wrap: wrap;
  }
  .news--card--date {
    width: 100%;
    margin-bottom: 10px;
  }
  .news--card--date span {
    padding: 4px 10px;
  }
  .news--card--title {
    width: 100%;
  }
  .news--card--link {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */