@charset "UTF-8";
.p-kv {
  width: 100%;
  height: auto;
  position: relative;
}
.p-kv picture {
  text-align: center;
}
.p-kv picture img {
  object-fit: cover;
  width: 100%;
  height: auto;
  object-position: 0 30%;
  aspect-ratio: 1344/600;
  max-width: 1980px;
  margin: 0 auto;
}
.p-kv img.kv-kaname {
  position: absolute;
  width: 500px;
  top: 50%;
  left: calc((100% - 500px) * 0.5);
  filter: drop-shadow(0 0 5px rgb(255, 255, 255)); /* 青い光 */
}

@media only screen and (max-width: 1160px) {
  .p-kv {
    width: 100%;
    height: auto;
  }
  .p-kv picture img {
    object-fit: cover;
    object-position: 50% 0px;
    aspect-ratio: 16/14;
    width: 100%;
    height: auto;
  }
  .p-kv img.kv-kaname {
    width: 80%;
    top: 50%;
    left: 10%;
    filter: drop-shadow(0px 0px 1px rgb(255, 255, 255));
  }
}
.p-branch .p-list-branch {
  display: flex;
  justify-content: center;
}
.p-branch .p-list-branch .p-list-branch-item {
  flex-basis: 275px;
  text-align: center;
}
.p-branch .p-list-branch .p-list-branch-item .p-list-branch-item-img {
  margin-bottom: 20px;
  border-radius: 8px;
}

.p-info {
  font-size: 1.6rem;
}
.p-info .p-info-list a {
  text-decoration: none;
}
.p-info .p-info-list .p-info-list-item {
  background-color: #EBF4FB;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  transition: 0.4s;
}
.p-info .p-info-list .p-info-list-item:hover {
  transform: scale(1.01);
}
.p-info .p-info-list .p-info-list-item dl {
  display: flex;
  justify-content: space-between;
}
.p-info .p-info-list .p-info-list-item dl dt {
  flex-basis: 140px;
}
.p-info .p-info-list .p-info-list-item dl dd {
  text-align: left;
  flex-basis: calc(100% - 160px);
}
.p-info .p-info-list .p-info-list-item dl dd a {
  text-decoration: none;
}
.p-info .p-info-list .p-info-list-item dl dd a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1160px) {
  .p-info .p-info-list .p-info-list-item dl {
    display: block;
  }
}
.p-recruit .p-recruit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.p-recruit .p-recruit-list > a {
  text-decoration: none;
  transition: 0.2s;
  flex-basis: 48%;
}
.p-recruit .p-recruit-list > a:hover {
  transform: scale(1.01);
}
.p-recruit .p-recruit-list .p-recruit-list-item {
  border: 1px solid #F2F2F2;
  background-color: #FFF;
  padding: 15px;
  box-shadow: 1px 1px 5px #CDD6DD;
}
.p-recruit .p-recruit-list .p-recruit-list-item .p-recruit-list-item-h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.7em;
}
.p-recruit .p-recruit-list .p-recruit-list-item .p-recruit-list-item-content {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 2em;
}
.p-recruit .p-recruit-list .p-recruit-list-item .p-recruit-list-item-label {
  text-align: right;
}
.p-recruit .p-recruit-list .p-recruit-list-item .p-recruit-list-item-label .p-recruit-list-item-label-inner {
  font-size: 1.6rem;
  display: inline-block;
  background-color: #005B98;
  color: #FFF;
  margin: 0 0 0 auto;
  padding: 2px 25px;
  border-radius: 135px;
  font-weight: 600;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .p-recruit .p-recruit-list {
    display: block;
  }
  .p-recruit .p-recruit-list a {
    margin-bottom: 20px;
    display: block;
  }
}
.p-greeting .p-greeting-inner {
  font-size: 1.6rem;
}
.p-greeting .p-greeting-inner p {
  line-height: 1.7;
}
.p-greeting .p-greeting-inner .p-greeting-catch {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 800;
}
.p-greeting .p-greeting-inner .p-greeting-inner-img {
  width: 200px;
  float: right;
  margin: 0 0 20px 20px;
}
.p-greeting .p-greeting-inner .p-greeting-inner-img .p-greeting-inner-name {
  display: block;
  text-align: center;
  margin-top: 10px;
}

.p-catch {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: #666;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .p-catch {
    font-size: 1.6rem;
  }
}
.p-catch--h1 {
  font-size: 2rem;
  text-align: center;
  line-height: 1.7;
  color: #005B98;
}

.box-catch {
  display: flex;
  justify-content: space-between;
}
.box-catch > picture {
  flex-basis: 200px;
}
.box-catch > picture img {
  border-radius: 12px;
}
.box-catch > div {
  flex-basis: calc(100% - 200px - 20px);
}
.box-catch .p-catch {
  font-size: 1.6rem;
  text-align: left;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .box-catch {
    display: block;
  }
  .box-catch > picture {
    text-align: center;
    width: 100%;
  }
  .box-catch > picture img {
    width: 60%;
    max-width: 300px;
    margin: 0 auto;
  }
  .box-catch > div {
    padding-top: 15px;
  }
}
.p-greeting-inner-img {
  border-radius: 12px;
}

@media only screen and (max-width: 767px) {
  .kv-kaname {
    position: absolute;
    width: 30%;
  }
}