html {
  overflow-y: scroll;
}

.wrapper {
  padding: 20px 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .wrapper {
    padding: 60px 0;
  }
}

.sp-br {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

.btn {
  border-radius: 4px;
  display: block;
  text-decoration: none;
}
.btn:hover {
  opacity: 0.8;
}

body {
  color: #333;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.title-wrapper {
  text-align: center;
}

.naka-midashi {
  color: #00a0e8;
  font-size: 2rem;
  margin-bottom: 1em;
  margin-left: auto;
  padding: 0 2em;
  position: relative;
  display: inline-block;
  letter-spacing: 0.2em;
}

.naka-midashi::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #00a0e8;
  transform: rotate(-60deg);
  left: 0;
}

.naka-midashi:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #00a0e8;
  transform: rotate(-60deg);
  right: 0;
}

.annotation {
  vertical-align: super;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .naka-midashi {
    font-size: 3.2rem !important;
  }
}
.chuigaki {
  color: #333;
  display: inline-block;
  font-size: 1.4rem;
}

body {
  color: #333;
}

.sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.sp-mr-0 {
  margin-right: 0 !important;
}
@media screen and (min-width: 768px) {
  .sp-mr-0 {
    margin-right: 8px;
  }
}

body.noscroll {
  overflow: hidden;
}

.header {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
}

.header-flex {
  display: flex;
  justify-content: space-between;
}
.header-flex .site-title {
  margin: 15px 0;
  width: 70%;
}
.header-flex .site-title img {
  max-width: 100%;
  height: auto;
}
.header-flex .burger-btn {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 3;
  border: none;
  margin-top: auto;
  margin-bottom: auto;
}
.header-flex .bar {
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00a0e8;
}
.header-flex .bar_top {
  top: 10px;
}
.header-flex .bar_mid {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-flex .bar_bottom {
  bottom: 10px;
}
.header-flex .burger-btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
  transition: transform 0.3s;
  background-color: #fff;
}
.header-flex .burger-btn.close .bar_mid {
  opacity: 0;
  transition: opacity 0.3s;
}
.header-flex .burger-btn.close .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
  transition: transform 0.3s;
  background-color: #fff;
}

.nav-wrapper {
  display: none;
  width: 100%;
  height: 40vh;
  background-color: #00a0e8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.nav-wrapper .nav-list {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.nav-wrapper .nav-item a {
  display: block;
  line-height: 50px;
  width: 100%;
  text-decoration: none;
  color: #fff;
  text-align: center;
  border-top: 1px solid #fff;
}
.nav-wrapper .nav-item a:first-child {
  border-top: none;
}
.nav-wrapper .nav-item a:last-child {
  border-bottom: 1px solid #fff;
}
.nav-wrapper .nav-item a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .header {
    box-shadow: none;
  }

  .header-flex {
    display: flex;
    justify-content: center;
  }
  .header-flex .site-title {
    width: 100%;
    text-align: center;
  }
  .header-flex .site-title img {
    max-width: 100%;
    height: auto;
  }
  .header-flex .burger-btn {
    display: none;
  }

  .nav-wrapper {
    display: block;
    width: 100%;
    height: 54px;
    background-color: #00a0e8;
    position: relative;
  }
  .nav-wrapper .nav-list {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .nav-wrapper .nav-item {
    display: block;
    display: flex;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    height: 54px;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #fff;
  }
  .nav-wrapper .nav-item:first-child {
    border-top: none;
  }
  .nav-wrapper .nav-item:last-child {
    border-bottom: none;
    border-right: 1px solid #fff;
  }
  .nav-wrapper .nav-item a {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.3;
    text-decoration: none;
    padding: 1em;
    color: #fff;
  }
  .nav-wrapper .nav-item a:hover {
    opacity: 0.8;
  }
  .nav-wrapper .nav-item a:last-child {
    border-bottom: none;
  }
}
@media print, screen and (min-width: 992px) {
  .nav-wrapper {
    height: 72px;
  }
  .nav-wrapper .nav-item {
    height: 72px;
  }
  .nav-wrapper .nav-item a {
    display: inline-block;
    font-size: 1.6rem !important;
    line-height: 1.3;
    text-decoration: none;
    padding: 1em;
    color: #fff;
  }
  .nav-wrapper .nav-item a:hover {
    opacity: 0.8;
  }
  .nav-wrapper .nav-item a:last-child {
    border-bottom: none;
  }
}
.footer {
  margin-top: 40px;
  width: 100%;
  padding: 20px 0 5px 0;
  border-top: 1px solid #333;
  border-bottom: 10px solid #00a0e8;
}
.footer .address-name {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 0.67em;
}
.footer .copyright-text {
  text-align: center;
  margin: 20px 0 10px 0;
}
.footer .footer-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.footer .footer-list .footer-list-item {
  position: relative;
  margin-left: 15px;
}
.footer .footer-list .footer-list-item:before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: -1em;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #00a0e8;
}
.footer .footer-list .footer-nav-item-child {
  padding: 10px 0;
  color: #00a0e8;
  text-decoration: none;
}
.footer .footer-list .footer-nav-item-child:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .footer-list {
    display: flex;
    flex-direction: row !important;
    margin-top: 0;
  }
  .footer-list .footer-list-item {
    position: relative;
    margin-left: 40px !important;
  }
  .footer-list .footer-list-item:before {
    position: absolute;
    content: "";
    top: 0.5em;
    left: -1em;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #00a0e8;
  }
  .footer-list .footer-nav-item-child {
    padding: 0;
  }
}
.intro-wrapper {
  padding: 20px 0 !important;
  margin-bottom: 20px;
  background-image: url("../img/top/main-visual.jpg");
  background-position: top !important;
  background-repeat: no-repeat;
}
.intro-wrapper .intro-message-text {
  color: #0068b6;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 15px;
}
.intro-wrapper .intro-message-text--annotation {
  color: #0068b6;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  line-height: 2;
  margin-bottom: 20px;
}
.intro-wrapper .intro-message-syomei {
  width: 50%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
.intro-wrapper .intro-message-syomei img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .intro-wrapper .intro--message-box {
    display: flex;
    flex-direction: row-reverse;
  }
  .intro-wrapper .intro-message {
    flex-basis: 680px;
    margin-left: 40px;
  }
  .intro-wrapper .intro-message-text {
    font-size: 1.6rem;
  }
  .intro-wrapper .intro-message-text--annotation {
    font-size: 1.4rem;
  }

  .intro-message-syomei {
    width: 250px !important;
  }
}
.top-news {
  width: 100%;
}
.top-news dl {
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.top-news dl:nth-last-child(1) {
  border-bottom: none;
}
.top-news dt {
  color: #00a0e8;
}
.top-news a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  margin: 0 0 0.5em 0;
}
.top-news a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .top-news {
    width: 60%;
    margin: 0 auto;
  }
  .top-news dl {
    display: flex;
    flex-direction: row !important;
  }
  .top-news dt {
    width: 250px !important;
  }
  .top-news dd {
    width: 800px;
  }
}
.top-recruit-box {
  width: 100%;
  background-color: #fafafa;
  padding: 20px;
  margin-bottom: 20px;
}
.top-recruit-box .top-recruit-title {
  display: inline;
  font-size: 1.8rem;
  font-weight: bold;
  color: #00a0e8;
  background: linear-gradient(transparent 70%, #ffff00 0%);
}
.top-recruit-box .top-recruit-text {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.top-recruit-box .senkyo-schedule .senkyo-schedule-title {
  margin: 0.5em 0;
}
.top-recruit-box .senkyo-schedule .scroll {
  white-space: nowrap;
}
.top-recruit-box .senkyo-schedule .senkyo-table {
  font-size: 1.4rem;
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 8px;
}
.top-recruit-box .senkyo-schedule .senkyo-table .senkyo-table-tr {
  border-bottom: 1px solid #ccc;
}
.top-recruit-box .senkyo-schedule .senkyo-table .senkyo-table-tr:last-child {
  border-bottom: none;
}
.top-recruit-box .senkyo-schedule .senkyo-table .senkyo-table-th {
  font-weight: 400;
  padding: 0.5em;
  vertical-align: middle;
  border-right: 1px solid #ccc;
}
.top-recruit-box .senkyo-schedule .senkyo-table .senkyo-table-th:last-child {
  border-right: none;
}
.top-recruit-box .senkyo-schedule .senkyo-table .senkyo-table-td {
  padding: 0.5em;
  vertical-align: middle;
}
.top-recruit-box .sp-span {
  display: none;
}
.top-recruit-box .recruit-btn {
  text-decoration: none;
  position: relative;
  width: 100%;
  color: #fff;
  background-color: #0068b6;
  text-align: center;
  padding: 1em 0;
  margin: 8px 0 0 0;
}
.top-recruit-box .recruit-btn::before {
  content: "";
  position: absolute;
  top: 46%;
  right: 12px;
  width: 10px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.top-recruit-box .recruit-btn::after {
  content: "";
  position: absolute;
  top: 54%;
  right: 12px;
  width: 10px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}

.top-banner-item {
  width: 320px;
  height: 100px;
  margin-bottom: 20px;
}
.top-banner-item img {
  width: 100%;
  height: 100%;
}
.top-banner-item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .senkyo-table {
    font-size: 1.6rem !important;
  }
  .senkyo-table .senkyo-table-th {
    width: 100px;
  }
  .senkyo-table .senkyo-table-td {
    width: 400px;
  }

  .top-banner-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-banner-item {
    flex-basis: 320px;
    margin-right: 40px;
  }
  .top-banner-item:nth-child(even) {
    margin-right: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit-banner-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .recruit-banner-box .top-recruit-box {
    flex-basis: 720px;
    margin-right: 40px;
    margin-bottom: 0;
  }

  .top-banner-box {
    flex-basis: 320px;
  }
  .top-banner-box .top-banner-item {
    margin-right: 0;
  }

  .sp-span {
    display: inline !important;
  }

  .recruit-btn {
    width: 50% !important;
    margin: 16px auto 0 auto !important;
  }
}
.member-wrapper .members-box .pr-member {
  margin-bottom: 20px;
}
.member-wrapper .members-box .pr-member .pr-member-list {
  margin-bottom: 20px;
}
.member-wrapper .members-box .pr-member .pr-member-list .pr-member-photo {
  flex: none;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.member-wrapper .members-box .pr-member .pr-member-list .pr-member-photo img {
  width: 100%;
}
.member-wrapper .members-box .pr-member .pr-member-list .pr-member-profile .pr-member-name {
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: left;
  color: #00a0e8;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.member-wrapper .members-box .pr-member .pr-member-list .pr-member-profile .pr-member-name .pr-member-furigana {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.2;
}
.member-wrapper .members-box .pr-member .pr-member-list .pr-member-profile .katagaki {
  width: 100%;
  text-align: left;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.member-wrapper .members-box .pr-member .pr-member-list .pr-member-profile .pr-member-site {
  display: block;
  width: 100%;
  text-align: left;
  color: #0068b6;
}

@media screen and (min-width: 768px) {
  .pr-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .pr-member {
    margin-bottom: 40px !important;
  }
  .pr-member .pr-member-list {
    display: flex;
  }
  .pr-member .pr-member-list .pr-member-photo {
    width: 200px !important;
    height: auto;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .pr-member .pr-member-list .pr-member-photo img {
    width: 100%;
  }
}
.member-wrapper .members-box .other-member-list {
  margin-bottom: 20px;
}
.member-wrapper .members-box .other-member-list .other-member-photo {
  flex: none;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.member-wrapper .members-box .other-member-list .other-member-photo img {
  width: 100%;
}
.member-wrapper .members-box .other-member-list .other-member-name {
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: left;
  color: #00a0e8;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.member-wrapper .members-box .other-member-list .other-member-name .other-member-furigana {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
}
.member-wrapper .members-box .other-member-list .katagaki {
  width: 100%;
  text-align: left;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.member-wrapper .members-box .other-member-list .other-member-site {
  width: 100%;
  display: block;
  width: 100%;
  text-align: left;
  color: #0068b6;
}

@media screen and (min-width: 768px) {
  .members-box .other-member {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .members-box .other-member .other-member-list {
    display: flex;
    flex-basis: 50%;
    margin-bottom: 40px;
  }
  .members-box .other-member .other-member-list .other-member-photo {
    width: 150px !important;
    height: auto;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .members-box .other-member .other-member-list .other-member-photo img {
    width: 100%;
  }
}
@media print, screen and (min-width: 992px) {
  .members-box .other-member {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .members-box .other-member .other-member-list {
    display: flex;
    flex-basis: 30%;
    margin-bottom: 40px;
    margin-right: 20px;
  }
  .members-box .other-member .other-member-list .other-member-photo {
    width: 150px !important;
    height: auto;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .members-box .other-member .other-member-list .other-member-photo img {
    width: 100%;
  }
}
.recruit-wrapper .recruit-text {
  margin: 0 0 1.5em 0;
}
.recruit-wrapper .recruit-komidashi {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1em;
}
.recruit-wrapper .recruit-fax {
  padding: 1em;
  background-color: #f7f8f9;
  margin-bottom: 20px;
}
.recruit-wrapper .resume-btn {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ccc;
  background-color: #fff;
  margin-bottom: 8px;
}
.recruit-wrapper .resume-btn:hover {
  color: #fff;
  background-color: #333;
}
.recruit-wrapper .ouboform {
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid #ccc;
}
.recruit-wrapper .ouboform .oubo-form-tr {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}
.recruit-wrapper .ouboform .oubo-form-tr:last-child {
  border-bottom: none;
}
.recruit-wrapper .ouboform .oubo-form-th {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  background-color: #f7f8f9;
  padding: 0.5em;
  vertical-align: middle;
  font-weight: 400;
}
.recruit-wrapper .ouboform .oubo-form-td {
  width: 100%;
  display: inline-block;
  padding: 0.5em;
  vertical-align: middle;
}
.recruit-wrapper .ouboform .hissu {
  font-size: 1.4rem;
  color: red;
  font-weight: 400;
}
.recruit-wrapper input {
  border: 1px solid #ccc;
  padding: 0.5em;
  margin: 0 8px;
}
.recruit-wrapper label {
  white-space: nowrap;
}
.recruit-wrapper textarea {
  width: 95%;
  border: 1px solid #ccc;
  padding: 0.5em;
  margin: 0 8px;
}
.recruit-wrapper select {
  border: 1px solid #ccc;
  padding: 0.5em;
  margin: 0 0 0 8px;
}
.recruit-wrapper .line {
  width: 95%;
}
.recruit-wrapper .year {
  width: 80px;
}
.recruit-wrapper .month,
.recruit-wrapper .daily {
  width: 50px;
}
.recruit-wrapper .zipcode3 {
  width: 80px;
}
.recruit-wrapper .zipcode4 {
  width: 100px;
}
.recruit-wrapper .nenrei {
  width: 80px;
}
.recruit-wrapper .submit-btn-center {
  text-align: center;
}
.recruit-wrapper .submit-btn {
  text-align: center;
  display: inline-block;
  width: 100%;
  background-color: #f47100;
  color: #fff;
  padding: 1em 0;
  margin: 8px 0 0 0;
}
.recruit-wrapper .submit-btn:hover {
  color: #f47100;
  background: #fff;
  border: 1px solid #f47100;
}

@media screen and (min-width: 768px) {
  .recruit-fax {
    margin-bottom: 40px !important;
  }

  .download-pdf {
    display: flex;
    justify-content: space-between;
  }

  .resume-btn {
    flex-basis: 50%;
    margin-bottom: 0;
    margin-right: 40px;
  }
  .resume-btn:first-of-type {
    margin-bottom: 0;
  }
  .resume-btn:last-of-type {
    margin-right: 0;
  }

  .ouboform .oubo-form-tr {
    display: flex;
    flex-wrap: nowrap !important;
  }
  .ouboform .oubo-form-th {
    flex-basis: 400px;
    border-right: 1px solid #ccc;
  }
  .ouboform .oubo-form-th:last-child {
    border-right: none;
  }

  .line {
    width: 300px !important;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit-komidashi {
    font-size: 2.4rem !important;
  }

  .submit-btn {
    width: 540px !important;
    margin: 16px auto 0 auto;
  }
}
.activity-wrapper .activity-box {
  margin-bottom: 20px;
}
.activity-wrapper .activity-date {
  display: inline-block;
  color: #fff;
  background-color: #0068b6;
  font-size: 1.4rem;
  padding: 0.5em 1em;
  margin-bottom: 0.5em;
}
.activity-wrapper .activity-komidashi {
  color: #0068b6;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin: 0.5em 0;
}
.activity-wrapper .activity-photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.activity-wrapper .activity-photo .activity-photo-item {
  flex-basis: 48%;
  margin-bottom: 8px;
  margin-right: 8px;
}
.activity-wrapper .activity-photo .activity-photo-item:nth-child(even) {
  margin-right: 0;
}
.activity-wrapper .activity-photo .activity-photo-item img {
  width: 100%;
  height: auto;
}
.activity-wrapper .activity-photo .activity-photo-item .movie {
  width: 320px;
}

@media screen and (min-width: 768px) {
  .activity-wrapper .activity-box {
    margin-bottom: 40px;
  }
  .activity-wrapper .activity-komidashi {
    font-size: 2rem;
  }
  .activity-wrapper .activity-photo-item {
    flex-basis: 48%;
    margin-bottom: 16px !important;
  }
  .activity-wrapper .activity-photo-item:nth-child(even) {
    margin-right: 0;
  }
  .activity-wrapper .activity-photo-item img {
    width: 100%;
    height: auto;
  }
  .activity-wrapper .activity-photo-item .movie {
    width: 340px !important;
  }
}
@media print, screen and (min-width: 992px) {
  .activity-photo-item {
    flex-basis: 30% !important;
    margin-right: 0 !important;
    margin-bottom: 0;
  }
}
.member-recruitment-wrapper .member-recruitment-komidashi {
  font-size: 18px;
  font-weight: bold;
  padding: 0.5em;
  background-color: #f7f8f9;
  margin: 2em 0 1em 0;
}
.member-recruitment-wrapper .member-recruitment-text {
  margin: 0 0 1.5em 0;
}
.member-recruitment-wrapper .membership-btn {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ccc;
  background-color: #fff;
  margin-bottom: 8px;
}
.member-recruitment-wrapper .membership-btn:hover {
  color: #fff;
  background-color: #333;
}

@media print, screen and (min-width: 992px) {
  .member-recruitment-komidashi {
    font-size: 20px !important;
  }

  .membership-btn {
    margin-left: auto;
    margin-right: auto;
    width: 50% !important;
  }
}
/*# sourceMappingURL=style.css.map */