@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #231815;
  font-size: 16px;
  line-height: 1.875;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #ed828b;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.6;
}

strong {
  color: #ef73b5;
  font-weight: bold;
}

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

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
contact
------------------------------------------------- */
#contact {
  background-color: #ed828b;
  padding: 47px 10px 59px;
}
#contact .title {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
}
#contact .contents {
  display: flex;
  align-items: start;
  justify-content: center;
  -moz-column-gap: 19px;
       column-gap: 19px;
}
#contact .contents .coment {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
  background-color: #ffe057;
  margin-top: 32px;
  border-radius: 20px;
  padding: 1px 13px 1px 17px;
}
#contact .contents .right a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#contact .contents .right a:hover {
  opacity: 0.6;
}
#contact .contents .right a {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
}
#contact .contents .right .time {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
  margin-top: -3px;
}
@media (max-width: 999px) {
  #contact {
    padding: 40px 10px;
  }
  #contact .title {
    font-size: 30px;
  }
  #contact .contents .coment {
    font-size: 20px;
    margin-top: 20px;
  }
  #contact .contents .right a {
    font-size: 40px;
  }
  #contact .contents .right .time {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #contact {
    padding: 30px 10px;
  }
  #contact .title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  #contact .contents {
    flex-direction: column;
    align-items: center;
  }
  #contact .contents .coment {
    font-size: 18px;
    margin-top: 0px;
  }
  #contact .contents .right a {
    font-size: 30px;
  }
  #contact .contents .right a img {
    max-width: 40px;
  }
  #contact .contents .right .time {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  #contact .contents .right a {
    font-size: 24px;
  }
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
}
#side a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#side a:hover {
  opacity: 0.6;
}
#side a {
  background: url(../images/arow.webp) no-repeat center right 17px #fff;
  border: 2px solid #ed828b;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
  display: block;
  padding: 14px 43px 14px 50px;
}
#side a .coment {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
  position: relative;
  z-index: 1;
}
#side a .coment::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #f7e233;
  z-index: -1;
}
#side a .title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #ed828b;
}
@media (max-width: 999px) {
  #side a {
    padding: 10px 40px;
  }
  #side a .coment {
    font-size: 14px;
  }
  #side a .title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
voice
------------------------------------------------- */
#voice .contents {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2.8248587571%;
}
#voice .contents .block {
  width: 22.8813559322%;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  border-radius: 10px;
}
#voice .contents .block:not(:has(a)) {
  padding: 20px 20px 44px;
}
#voice .contents .block a {
  display: block;
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#voice .contents .block a:hover {
  opacity: 0.6;
}
#voice .contents .block a {
  padding: 20px 20px 44px;
}
#voice .contents .block .image {
  aspect-ratio: 230/140;
  margin-bottom: 18px;
}
#voice .contents .block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#voice .contents .block .title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  color: #231815;
  margin-bottom: 11px;
}
#voice .contents .block .text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
  color: #231815;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media (max-width: 999px) {
  #voice .contents .block:not(:has(a)) {
    padding: 15px 15px 30px;
  }
  #voice .contents .block a {
    padding: 15px 15px 30px;
  }
  #voice .contents .block .title {
    font-size: 16px;
  }
  #voice .contents .block .text {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #voice .contents {
    -moz-column-gap: 6%;
         column-gap: 6%;
  }
  #voice .contents .block {
    width: 47%;
  }
  #voice .contents .block:not(:has(a)) {
    padding: 10px 10px 20px;
  }
  #voice .contents .block a {
    padding: 10px 10px 20px;
  }
  #voice .contents .block .title {
    font-size: 14px;
  }
  #voice .contents .block .text {
    font-size: 10px;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header a:hover {
  opacity: 0.6;
}
#header .top {
  display: flex;
  align-items: center;
  padding: 20px 3.125% 30px 3.75%;
}
#header .logo {
  max-width: 300px;
  padding-top: 34px;
}
#header .right {
  margin-left: auto;
}
#header .right > * {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  row-gap: 10px;
}
#header .right .tels {
  margin-bottom: 8px;
}
#header .right .tels .coment {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
  background-color: #ffe057;
  padding: 2px 10px;
  border-radius: 13px;
}
#header .right .tels a {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #ef73b5;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  margin-left: 10px;
}
#header .right .tels a img {
  width: 30px;
}
#header .right .tels a img:nth-child(2) {
  display: none;
}
#header .right .tels .time {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
  margin-left: 2px;
}
#header .right .bottom {
  -moz-column-gap: 29px;
       column-gap: 29px;
}
#header .right #gnav {
  overflow-x: clip;
}
#header .right #gnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px 0;
  margin-right: -32px;
}
#header .right #gnav ul li {
  display: flex;
  align-items: center;
}
#header .right #gnav ul li a {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
}
#header .right #gnav ul li::after {
  content: "│";
  margin: 0 8px;
}
#header .right .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: 160px;
  height: 40px;
  background-color: #ed828b;
  border-radius: 10px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
}
#header .right .contact a img {
  width: 16px;
}
@media (max-width: 1100px) {
  #header .top {
    padding: 15px 10px 20px;
  }
  #header .logo {
    padding-top: 0;
  }
  #header .right .tels a {
    font-size: 26px;
  }
  #header .right #gnav ul li a {
    font-size: 16px;
  }
  #header .right .contact a {
    width: 140px;
    height: 35px;
    font-size: 14px;
  }
}
@media (max-width: 999px) {
  #header .top {
    padding: 10px;
  }
  #header .logo {
    max-width: 220px;
  }
  #header .right .tels .coment {
    font-size: 11px;
  }
  #header .right .tels a {
    font-size: 20px;
  }
  #header .right .tels a img {
    max-width: 25px;
  }
  #header .right .tels .time {
    font-size: 11px;
  }
  #header .right #gnav ul {
    margin-right: -16px;
  }
  #header .right #gnav ul li a {
    font-size: 14px;
  }
  #header .right #gnav ul li::after {
    margin: 0;
  }
  #header .right .contact a {
    width: 120px;
    height: 30px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #header .top {
    padding-right: 70px;
  }
  #header .right .tels {
    display: none;
  }
  #header .right #gnav ul {
    margin-right: 0px;
  }
  #header .right #gnav ul li.tel a img {
    width: 32px;
  }
  #header .right #gnav ul li.tel a img:nth-child(1) {
    display: none;
  }
  #header .right #gnav ul li a {
    color: #fff;
  }
  #header .right #gnav ul li a .coment {
    font-size: 14px;
  }
  #header .right #gnav ul li::after {
    display: none;
  }
  #header .right .contact {
    display: none;
  }
}

@media (min-width: 768px) {
  #header.m_fixed {
    left: 0;
    position: fixed;
    top: 0;
    z-index: 4;
    width: 100%;
  }
  #header.m_fixed .top {
    background: #fff;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #header.m_fixed #gnav {
    color: #0c0c0c;
  }
  #header.m_fixed #gnav > ul > li ul {
    padding-top: 20px;
  }
  #header.m_fixed #gnav > ul > .recruit,
  #header.m_fixed #gnav > ul .contact {
    height: 70px;
  }
}
/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 100px;
  right: 90px;
  z-index: 1;
  width: 60px;
  height: 60px;
}
#pagetop.fin {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  bottom: unset;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ed828b;
}
@media (max-width: 999px) {
  #pagetop {
    right: 20px;
  }
}
@media (max-width: 767px) {
  #pagetop {
    width: 40px;
    height: 40px;
    bottom: 70px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  position: relative;
  background-color: #f8f8ef;
  padding: 89px max((100% - 1180px) / 2, 10px);
}
#footer a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#footer a:hover {
  opacity: 0.6;
}
#footer .contents {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 10px;
}
#footer .contents .logo {
  max-width: 300px;
}
#footer .contents #fnav {
  overflow-x: clip;
  margin-left: auto;
  margin-top: -12px;
}
#footer .contents #fnav ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  margin-right: -32px;
}
#footer .contents #fnav ul li a {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 2.2222222222;
  letter-spacing: 0.08em;
  color: #231815;
}
#footer .contents #fnav ul li::after {
  content: "│";
  margin: 0 8px;
}
#footer .copyright {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #231815;
}
@media (max-width: 999px) {
  #footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #footer .contents .logo {
    max-width: 220px;
  }
  #footer .contents #fnav ul {
    margin-right: -16px;
  }
  #footer .contents #fnav ul li a {
    font-size: 14px;
  }
  #footer .contents #fnav ul li::after {
    margin: 0;
  }
  #footer .copyright {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #footer .contents {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    margin-bottom: 30px;
  }
  #footer .contents #fnav {
    margin-top: 0;
    margin-left: unset;
  }
  #footer .contents #fnav ul {
    margin-right: 0;
    justify-content: center;
  }
  #footer .contents #fnav ul li {
    display: flex;
    align-items: center;
  }
  #footer .contents #fnav ul li::after {
    margin: 0 4px;
    display: block;
  }
  #footer .copyright {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */