@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1000px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 999.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #000;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  background: #FCFAF2;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

body.no-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a,
button {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
}

/*========================
common
========================*/
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 30px;
  }
}

.btn {
  font-size: 15px;
  min-width: 150px;
  display: inline-block;
  text-align: center;
  padding: 8px;
  border-radius: 100px;
  font-weight: bold;
}
.btn.btn--1 {
  background: #6CA5D9;
  color: white;
}
.btn.btn--2 {
  background: #FFD000;
  color: #633825;
}

.center {
  text-align: center;
}

.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wave-bg {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wave-bg img {
    width: 900px;
  }
}

.sec-title {
  padding: 3px;
  font-size: 24px;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 18px;
  }
}
.sec-title.sec-title--1 {
  background: #D1E1F2;
}
.sec-title.sec-title--2 {
  background: #FFD000;
  color: #633825;
}

/*========================
header
========================*/
.header {
  width: 100%;
  z-index: 100;
  padding: 27px 0;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
}
.header .inner {
  max-width: 1200px;
}

.header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header__flex .logo {
  max-width: 229px;
}
@media screen and (max-width: 767px) {
  .header__flex .logo {
    max-width: 140px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: #633825;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav li {
  margin: 0 10px;
}
.header__nav li:has(.btn) {
  margin: 0;
}

.menu-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 6px;
  background: #6CA5D9;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #FFD000;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-btn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.9);
  z-index: 1000;
  display: none;
  text-align: center;
}

.drawer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  height: 100%;
  padding: 0 37px;
}

.drawer ul li {
  width: 100%;
}

.drawer ul li a {
  display: block;
  border-radius: 100px;
  padding: 10px;
  width: 100%;
}

/*========================
footer
========================*/
.footer {
  background: #FFF2CA;
}

.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 75px 0 155px;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .footer__flex {
    padding: 19px 0 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__left {
  width: 100%;
  max-width: 325px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .footer__left {
    font-size: 13px;
    max-width: 238px;
  }
}
.footer__left .logo {
  max-width: 229px;
  display: block;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .footer__left .logo {
    margin: 0 auto 11px;
    max-width: 175px;
  }
}

.footer__right {
  width: calc(100% - 325px - 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
}
@media screen and (max-width: 767px) {
  .footer__right {
    display: none;
  }
}
.footer__right .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.footer__copyright {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 246.154% */
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 11px;
    padding: 5px;
  }
}

/*========================
page-common
========================*/
.page-head {
  height: 360px;
}
@media screen and (max-width: 767px) {
  .page-head {
    height: 104px;
  }
}
.page-head img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/*========================
mv
========================*/
.mv .inner {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .mv .inner {
    padding: 0 10px;
  }
}

/*========================
top-intro
========================*/
.top-intro {
  padding: 23px 0 50px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-intro {
    padding: 18px 0 26px;
  }
}
@media screen and (max-width: 767px) {
  .top-intro .inner {
    padding: 0 10px;
  }
}
.top-intro .wave-bg {
  top: -255px;
}
@media screen and (max-width: 767px) {
  .top-intro .wave-bg {
    top: 21px;
  }
}
.top-intro p {
  font-size: 18px;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-intro p {
    font-size: 13px;
  }
}
.top-intro .text {
  line-height: 2;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .top-intro .text {
    margin-top: 40px;
    line-height: 1.5;
  }
}
.top-intro .img {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .top-intro .img {
    margin-top: 15px;
  }
}

.top-news {
  background: white;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  padding: 20px 50px 42px;
  margin: 22px 0 29px;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 14px 20px 24px;
    margin: 12px 0 29px;
  }
}
.top-news h2 {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-news h2 {
    font-size: 18px;
  }
}

.news-item {
  margin-top: 14px;
}
.news-item a {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  border-bottom: 1px solid #707070;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .news-item a {
    gap: 8px;
  }
}
.news-item .date {
  font-size: 15px;
  width: 105px;
}
@media screen and (max-width: 767px) {
  .news-item .date {
    font-size: 11px;
    width: 80px;
  }
}
.news-item .title {
  font-size: 18px;
  display: inline-block;
  width: calc(100% - 105px - 24px);
}
@media screen and (max-width: 767px) {
  .news-item .title {
    font-size: 13px;
    width: calc(100% - 80px - 8px);
  }
}

/*========================
top-about
========================*/
.top-about {
  padding-bottom: 115px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-bottom: 45px;
  }
}
.top-about .wave-bg {
  bottom: 58px;
  top: inherit;
}
@media screen and (max-width: 767px) {
  .top-about .wave-bg {
    bottom: 268px;
  }
}

.top-about__item.item1 h3 {
  color: #6CA5D9;
}
.top-about__item.item2 {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .top-about__item.item2 {
    margin-top: 46px;
  }
}
.top-about__item.item2 h2 {
  background: #FFAA00;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top-about__item.item2 h2 {
    margin-bottom: 19px;
  }
}
.top-about__item.item2 h3 {
  color: #633825;
}
.top-about__item.item2 .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-about__item.item2 .img {
    width: 100%;
  }
}
.top-about__item.item2 .content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-about__item.item2 .content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-about__item.item2 .top-about__flex {
    gap: 0;
  }
}
.top-about__item h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .top-about__item h2 {
    font-size: 18px;
    padding: 3px;
  }
}
.top-about__item p {
  line-height: 1.75;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .top-about__item p {
    font-size: 13px;
    margin-bottom: 18px;
  }
}
.top-about__item .img img {
  border-radius: 20px;
}
.top-about__item h3 {
  margin: 15px 0 3px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-about__item h3 {
    font-size: 18px;
    margin: 20px 0 16px;
  }
}

.top-about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .top-about__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-about__flex-item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-about__flex-item {
    width: 100%;
  }
}
.top-about__flex-item .head-txt {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin: 9px 0 14px;
}
@media screen and (max-width: 767px) {
  .top-about__flex-item .head-txt {
    font-size: 13px;
  }
}

/*========================
outline
========================*/
.outline {
  position: relative;
  padding: 50px 0 33px;
}
@media screen and (max-width: 767px) {
  .outline {
    padding: 22px 0 29px;
  }
}
.outline .wave-bg {
  top: 1060px;
}
@media screen and (max-width: 767px) {
  .outline .wave-bg {
    top: 1011px;
  }
}

.outline-about ul {
  max-width: 600px;
  margin: 32px auto 90px;
}
@media screen and (max-width: 767px) {
  .outline-about ul {
    margin: 25px 0;
  }
}
.outline-about ul li {
  margin-top: 9px;
  padding-bottom: 3px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .outline-about ul li {
    margin-top: 5px;
    gap: 15px;
    font-size: 13px;
  }
}
.outline-about ul .head {
  width: 75px;
}
@media screen and (max-width: 767px) {
  .outline-about ul .head {
    width: 60px;
  }
}
.outline-about ul .body {
  width: calc(100% - 75px - 29px);
}
@media screen and (max-width: 767px) {
  .outline-about ul .body {
    width: calc(100% - 60px - 15px);
  }
}

.outline-target p {
  margin: 32px 0 46px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .outline-target p {
    margin: 22px 0 20px;
    font-size: 13px;
  }
}

.outline-content .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 2px solid #707070;
}
@media screen and (max-width: 767px) {
  .outline-content .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 22px 0;
    gap: 24px;
  }
}
.outline-content .flex:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .outline-content .flex:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.outline-content .flex:last-child {
  margin-bottom: 50px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .outline-content .flex:last-child {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }
}
.outline-content .content {
  width: 50%;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .outline-content .content {
    width: 100%;
    margin-top: 0;
  }
}
.outline-content .content .head-txt {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin: 9px 0 14px;
}
@media screen and (max-width: 767px) {
  .outline-content .content .head-txt {
    font-size: 13px;
    margin: 0;
  }
}
.outline-content .content h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 24px 0 16px;
  text-align: center;
  color: #6CA5D9;
}
@media screen and (max-width: 767px) {
  .outline-content .content h3 {
    font-size: 18px;
    margin: 10px 0 23px;
  }
}
.outline-content .content p {
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .outline-content .content p {
    font-size: 13px;
  }
}
.outline-content .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .outline-content .img {
    width: 100%;
  }
}
.outline-content .img img {
  border-radius: 20px;
}

.outline-access .map {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .outline-access .map {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 21px;
  }
}
.outline-access .map iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .outline-access .map iframe {
    height: 375px;
  }
}
.outline-access .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .outline-access .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 22px;
    gap: 24px;
  }
}
.outline-access .item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .outline-access .item {
    width: 100%;
  }
}
.outline-access .body {
  margin-top: 15px;
  text-align: center;
  line-height: 1.75;
}

/*========================
floormap
========================*/
.floormap .top-txt {
  max-width: 760px;
  margin: 47px auto 51px;
}
@media screen and (max-width: 767px) {
  .floormap .top-txt {
    margin: 21px 0 27px;
  }
}

.floormap__features .items {
  margin: 40px 0 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .floormap__features .items {
    margin: 26px 0 21px;
    gap: 27px;
  }
}
.floormap__features .item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .floormap__features .item {
    width: 100%;
  }
}
.floormap__features .item .img img {
  border-radius: 20px;
}
.floormap__features .item h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 13px 0 3px;
  text-align: center;
  color: #6CA5D9;
}
@media screen and (max-width: 767px) {
  .floormap__features .item h3 {
    font-size: 18px;
    margin: 10px 0 9px;
  }
}
.floormap__features .item p {
  line-height: 1.75;
}

.floormap__map {
  padding-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .floormap__map {
    padding-bottom: 43px;
  }
}
.floormap__map .maparea {
  margin-top: 40px;
  background: #D5D5D5;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 72px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .floormap__map .maparea {
    font-size: 20px;
    height: 150px;
    margin-top: 20px;
  }
}

/*========================
about
========================*/
.about {
  padding: 50px 0 193px;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 20px 0 30px;
  }
}

.about__greeting .inner2 {
  max-width: 760px;
  margin: 0 auto;
  padding: 79px 0 100px;
}
@media screen and (max-width: 767px) {
  .about__greeting .inner2 {
    padding: 20px 0 50px;
  }
}
.about__greeting p {
  line-height: 2;
}
.about__greeting .name {
  max-width: 284px;
  margin-left: auto;
  margin-top: 40px;
  display: block;
}
@media screen and (max-width: 767px) {
  .about__greeting .name {
    max-width: 234px;
    margin-top: 24px;
  }
}

.about__rinen .rinen {
  max-width: 687px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .about__rinen .rinen {
    margin: 50px 0;
  }
}

/*========================
contact
========================*/
.contact {
  padding: 50px 0 60px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 21px 0;
  }
}

.form {
  max-width: 800px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .form {
    margin: 0 auto;
  }
}
.form .form__item {
  margin-top: 20px;
}
.form .form__item .label {
  font-size: 13px;
  display: block;
  margin-bottom: 3px;
}
.form .form__item input,
.form .form__item textarea {
  background: white;
  width: 100%;
  border: 1px solid #8A8A8A;
  padding: 3px;
}
.form .form__item textarea {
  height: 200px;
  resize: vertical;
}
.form .form__item.submit-btn {
  margin-top: 35px;
}
.form .form__item.submit-btn--2 input[type=submit] {
  background: #FFD000;
  color: #633825;
}
.form .form__item input[type=submit] {
  background: #6CA5D9;
  color: white;
  padding: 11px 52px;
  border-radius: 100px;
  width: auto;
  border: none;
  font-size: 15px;
}
.form .wpcf7-spinner {
  display: none;
}
.form .wpcf7-list-item {
  margin-top: 7px;
  margin-left: 20px;
}
.form .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.form .wpcf7-list-item input {
  width: auto;
}

.contact__privacy {
  margin-top: 63px;
}
@media screen and (max-width: 767px) {
  .contact__privacy {
    margin-top: 50px;
  }
}
.contact__privacy h3 {
  font-size: 16px;
  margin-bottom: 23px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__privacy h3 {
    font-size: 13px;
  }
}
.contact__privacy p {
  font-weight: 400;
  line-height: 1.6;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .contact__privacy p {
    font-size: 11px;
  }
}

/*========================
recruit
========================*/
.recruit {
  margin-top: 50px;
  padding-bottom: 71px;
}
@media screen and (max-width: 767px) {
  .recruit {
    margin-top: 21px;
    padding-bottom: 21px;
  }
}
.recruit .txt1 {
  margin: 21px 0 16px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .recruit .txt1 {
    font-size: 18px;
  }
}
.recruit p {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .recruit .p1 {
    margin: 0 -18px;
  }
}
.recruit .img {
  margin: 23px 0 47px;
}
@media screen and (max-width: 767px) {
  .recruit .img {
    width: 100vw;
    margin: 30px calc(50% - 50vw);
  }
}

.recruit-about {
  padding-bottom: 118px;
}
@media screen and (max-width: 767px) {
  .recruit-about {
    padding-bottom: 29px;
  }
}
.recruit-about .inner2 {
  max-width: 760px;
  margin: 46px auto 0;
}
@media screen and (max-width: 767px) {
  .recruit-about .inner2 {
    margin: 30px auto 0;
  }
}
.recruit-about .inner2 p {
  line-height: 2;
}
.recruit-about .inner2 .recruit-about__table {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .recruit-about .inner2 .recruit-about__table {
    margin: 0 -18px;
    margin-top: 24px;
  }
}
.recruit-about .inner2 .recruit-about__table table {
  width: 100%;
  background: white;
}
.recruit-about .inner2 .recruit-about__table table,
.recruit-about .inner2 .recruit-about__table td,
.recruit-about .inner2 .recruit-about__table th {
  border: 1px solid #595959;
  border-collapse: collapse;
  vertical-align: middle;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .recruit-about .inner2 .recruit-about__table table,
  .recruit-about .inner2 .recruit-about__table td,
  .recruit-about .inner2 .recruit-about__table th {
    font-size: 11px;
    font-weight: 500;
  }
}
.recruit-about .inner2 .recruit-about__table td,
.recruit-about .inner2 .recruit-about__table th {
  padding: 14px 19px;
}
@media screen and (max-width: 767px) {
  .recruit-about .inner2 .recruit-about__table td,
  .recruit-about .inner2 .recruit-about__table th {
    padding: 9px 6px;
  }
}
.recruit-about .inner2 .recruit-about__table th {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .recruit-about .inner2 .recruit-about__table th {
    width: 68px;
  }
}
.recruit-about .inner2 .recruit-about__table td {
  width: calc(100% - 200px);
}
@media screen and (max-width: 767px) {
  .recruit-about .inner2 .recruit-about__table td {
    width: calc(100% - 68px);
  }
}
.recruit-about .inner2 .recruit-about__table td span {
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .recruit-about .inner2 .recruit-about__table td span {
    font-size: 15px;
  }
}
.recruit-about .inner2 .recruit-about__table td span.is-sp {
  font-size: 11px;
}
.recruit-about .inner2 .recruit-about__table .even {
  background: #fbf8f0;
}
.recruit-about .inner2 .recruit-about__table .odd {
  background: #fefcf9;
}

.recruit-privacy {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .recruit-privacy {
    padding-bottom: 32px;
  }
}

/*========================
news
========================*/
.news {
  padding: 50px 0 42px;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 21px 0 29px;
  }
}

.news__items {
  margin: 50px 50px 40px;
}
@media screen and (max-width: 767px) {
  .news__items {
    margin: 22px 0;
  }
}

.pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.pagination span,
.pagination a {
  color: #CBCBCB;
  font-size: 13px;
}
.pagination .current {
  color: #000;
}

.news-single {
  padding: 50px 0 54px;
}
@media screen and (max-width: 767px) {
  .news-single {
    padding: 20px 0 30px;
  }
}

.news-single__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.3%;
}
@media screen and (max-width: 767px) {
  .news-single__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.news-single__wrap article {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .news-single__wrap article {
    width: 100%;
  }
}
.news-single__wrap .date {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .news-single__wrap .date {
    font-size: 16px;
  }
}
.news-single__wrap .title {
  font-size: 24px;
  font-weight: bold;
  padding-right: 3em;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .news-single__wrap .title {
    padding-right: 0;
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.news-single__wrap .article p {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .news-single__wrap .article p {
    margin: 20px 0;
  }
}
.news-single__wrap .article .wp-block-gallery {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .news-single__wrap .article .wp-block-gallery {
    margin: 20px 0;
  }
}
.news-single__wrap aside {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .news-single__wrap aside {
    width: 100%;
  }
}
.news-single__wrap .sidebar {
  list-style: none;
}
.news-single__wrap .sidebar .wp-block-heading {
  font-size: 20px;
  border-bottom: 1px solid #707070;
  padding-bottom: 2px;
  margin-bottom: 24px;
}
.news-single__wrap .sidebar .wp-block-categories-list {
  padding-left: 1em;
}
.news-single__wrap .sidebar .wp-block-categories-list li:not(:first-child) {
  margin-top: 1em;
}