/* CSS Document */

body {
  padding-bottom: 50px;
}

.indexContents {
  margin: 0 auto;
  max-width: 100%;
}

.indexContents * {
  box-sizing: inherit;
  transition-property: all;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.indexContents h1.header_txt {
  display: block;
  padding: 5px 0;
  width: 100%;
  height: auto;
  background-image: url(../images/sp_header_bg.jpg);
  background-size: contain;
  text-align: center;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .indexContents h1.header_txt {
    font-size: 12px;
  }
}

.indexContents__head {
  left: 0;
  right: 0;
  margin: 0px auto;
  width: 100%;
  padding: 0;
}

.indexContents__head .logo {
  margin: 0 auto;
  width: 100%;
  height: auto;
  background: url(../images/background_index.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: auto;
}

.indexContents__head .logo h1 {
  padding: 25px 0;
  display: flex;
  justify-content: center;
}

.indexContents__head .logo h1 span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.6);
}

.indexContents__head .logo h1 img {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .indexContents__head .logo h1 {
    padding: 50px 0;
  }
  .indexContents__head .logo h1 span {
    width: 500px;
    height: 500px;
  }
}

.indexContents__text {
  padding: 10px;
  margin: 0 auto;
  max-width: 626px;
  text-align: center;
}

.indexContents__text p {
  display: inline-block;
  color: #000000;
  font-size: 10px;
  text-align: left;
}

.indexContents__text p span {
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .indexContents__text p {
    font-size: 14px;
  }
  .indexContents__text p span {
    font-size: 14px;
  }
}

.btnArea {
  padding: 0 10px;
  width: 100%;
  height: auto;
}

.btnArea__container {
  margin-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 10%;
}

.btnArea .enter {
  position: relative;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 240px;
  height: 50px;
  background-image: url(../images/index_btn.png);
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  letter-spacing: 1px;
}

.btnArea .enter:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
}

.btnArea .enter span:first-child {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.btnArea .enter span:last-child {
  display: block;
  font-size: 10px;
  text-decoration: none;
}

.btnArea .recruit {
  position: relative;
  padding: 10px 0;
  margin: 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 240px;
  height: 50px;
  background-image: url(../images/index_btn.png);
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  letter-spacing: 1px;
}

.btnArea  .recruit:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
}

@media screen and (min-width: 768px) {
  .btnArea__container {
    align-items: initial;
    flex-direction: initial;
  }
  .btnArea .enter {
    max-width: 280px;
    height: 75px;
    padding: 10px 0;
    margin: 0 40px 20px 0;
  }
  .btnArea .enter span:first-child {
    font-size: 22px;
    line-height: 32px;
  }
  .btnArea .enter span:last-child {
    font-size: 12px;
  }
  .btnArea .recruit {
    max-width: 280px;
    height: 75px;
    font-size: 22px;
  }
}

.indexContents__body .linkList {
  padding: 0 10px;
  margin: 0 auto;
  max-width: 100%;
}

.indexContents__body .linkList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.indexContents__body .linkList li {
}

.indexContents__body .linkList li:nth-of-type(even) {
    margin-right: 0;
}

.indexContents__body .linkList li img {
    vertical-align: top;
}

.indexContents__body .linkList table * {
    line-height: 0;
}

.indexContents footer {
  position: fixed;
  display: block;
  padding: 5px 0;
  width: 100%;
  height: 16px;
  background-image: url(../images/sp_header_bg.jpg);
  background-size: contain;
  text-align: center;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .indexContents footer {
    height: 32px;
  }
}

span.t_br::before {
  content: "";
  white-space: initial;
}