@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*変数設定用*/
@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .vpc {
    display: none;
  }
}

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

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #333;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-size: 1.6rem;
  color: #333;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

main {
  padding: 0;
}

.dib {
  display: inline-block;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 767px) and (max-width: 1080px) {
  .inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}

.section-ttl {
  margin: 0 0 40px;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .section-ttl {
    margin-bottom: 30px;
  }
}

.template-btn {
  display: grid;
  place-items: center;
  width: 190px;
  height: 40px;
  color: #333;
  margin: 10px 0 0;
  border-radius: 20px;
  border: 1.5px solid #333;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}
.template-btn::after {
  content: "";
  position: absolute;
  background: url(../img/common/arrow.png) no-repeat center center;
  background-size: 100%;
  width: 12px;
  height: 8px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.template-btn.center {
  margin: 0 auto;
}
.template-btn.right {
  margin: 10px 0 0 auto;
}
.template-btn.white {
  color: white;
  border: 1.5px solid white;
}
.template-btn.white::after {
  background: url(../img/common/arrow-white.png) no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .template-btn.white {
    display: none;
  }
}
.template-btn.mt60 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .template-btn.mt60 {
    margin-top: 30px;
  }
}
.template-btn.trans:hover {
  opacity: 0.7;
}
.template-btn.trans:hover::after {
  right: 10px;
}
.template-btn.detail-btn::after {
  left: 20px;
  right: initial;
  background: url(../img/common/arrow-back.png) no-repeat center center;
  background-size: 100%;
}
.template-btn.detail-btn:hover::after {
  left: 10px;
}

.bread-crumbs-area {
  margin: 0 0 20px;
}
.bread-crumbs-area .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 8px;
  justify-content: flex-end;
  font-size: 1.2rem;
  line-height: 1;
}

.works-area .works-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 387px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .works-area .works-list {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
  }
}
.works-area .works-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .works-area .works-list li a {
    flex-direction: column;
  }
}
.works-area .works-list li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s;
}
@media screen and (max-width: 768px) {
  .works-area .works-list li a::after {
    display: none;
  }
}
.works-area .works-list li a:hover::after {
  background-color: rgba(0, 14, 62, 0.6);
}
.works-area .works-list li a:hover .works-abs {
  opacity: 1;
}
.works-area .works-list li a .works-abs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .works-area .works-list li a .works-abs {
    position: static;
    transform: none;
    opacity: 1;
    padding: 10px 0 0;
    color: #333;
    width: 100%;
    align-items: flex-start;
  }
}
.works-area .works-list li a .works-ttl {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .works-area .works-list li a .works-ttl {
    text-align: left;
    margin-bottom: 0px;
    font-size: 1.4rem;
  }
}
.works-area .works-list img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .works-area .works-list img {
    height: 225px;
  }
}

.info-contact {
  text-align: center;
  background-color: #F7F7F7;
  padding: 40px 20px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .info-contact {
    margin-top: 30px;
  }
}
.info-contact .contact-text {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.info-contact .contact-tel a {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .info-contact .contact-tel a {
    font-size: 1.4rem;
  }
}
.info-contact .contact-tel span {
  font-size: 1.4rem;
}

#page-top {
  position: fixed;
  bottom: 32px;
  right: 1.6%;
  z-index: 1;
}
#page-top a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #333;
  padding: 13px 14.5px;
  border-radius: 3px;
}
#page-top a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
}
#page-top a::after {
  color: #fff;
  font-size: 1.2rem;
  content: "TOP";
}

header {
  height: 60px;
  width: 100%;
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
}
header .header-inner {
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .header-inner {
    padding: 0 0 0 15px;
  }
}
header .header-inner .logo-wrap {
  width: 104px;
  height: 38px;
}
header .header-inner .nav-wrap {
  background-color: #333;
  position: fixed;
  top: 0px;
  left: 100%;
  width: 320px;
  height: 100%;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap {
    width: 100%;
  }
}
header .header-inner .nav-wrap nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
header .header-inner .nav-wrap nav .header-list {
  display: flex;
  row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
}
header .header-inner .nav-wrap nav .header-list li {
  text-align: center;
}
header .header-inner .nav-wrap nav .header-list li a {
  color: white;
  font-size: 2rem;
  letter-spacing: 0.2em;
}
header .header-inner .nav-wrap nav .nav-logo {
  width: 67px;
  padding-bottom: 40px;
}
header .header-inner .nav-wrap nav .icon-ins {
  width: 20px;
  height: 20px;
  display: block;
  margin-top: 40px;
}
header .header-inner .nav-wrap.open {
  left: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap.open {
    left: 0;
  }
}
header .header-inner .hamburger-btn {
  display: block;
  height: 100%;
  width: 60px;
  position: relative;
}
header .header-inner .hamburger-btn span {
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.4s;
}
header .header-inner .hamburger-btn span:nth-of-type(1) {
  opacity: 0;
}
header .header-inner .hamburger-btn span:nth-of-type(2) {
  top: 43%;
}
header .header-inner .hamburger-btn span:nth-of-type(3) {
  top: 57%;
}
header .header-inner .hamburger-btn.open span {
  background-color: white;
}
header .header-inner .hamburger-btn.open span:nth-of-type(1) {
  opacity: 0;
}
header .header-inner .hamburger-btn.open span:nth-of-type(2) {
  top: 50%;
  rotate: 30deg;
}
header .header-inner .hamburger-btn.open span:nth-of-type(3) {
  top: 50%;
  rotate: -30deg;
}

footer {
  width: 100%;
  background: #333;
  color: #fff;
}
footer a {
  color: #fff;
}
footer .ft-content {
  display: flex;
  padding: 50px 0;
  justify-content: space-between;
  column-gap: 50px;
  align-items: end;
}
@media screen and (max-width: 768px) {
  footer .ft-content {
    display: block;
    padding: 40px 0;
  }
}
footer .ft-content .ft-left {
  display: flex;
  gap: 60px;
  align-items: end;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-left {
    display: block;
  }
}
footer .ft-content .ft-left .logo-wrap {
  width: 84px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-left .logo-wrap {
    margin: 0 auto 25px;
  }
}
footer .ft-content .ft-left .add-txt {
  font-size: 1.4rem;
  margin-top: 15px;
}
footer .ft-content .ft-left .ft-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-left .ft-info {
    flex-direction: column;
    row-gap: 10px;
  }
}
footer .ft-content .ft-left .ft-access {
  padding-left: 20px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-left .ft-access {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #fff;
    padding-top: 12px;
  }
}
footer .ft-content .ft-left .icon-ins {
  width: 20px;
  height: 20px;
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right {
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: initial;
    margin: 25px 0 0;
    row-gap: 12px;
  }
}
footer .ft-content .ft-right .ft-link-list {
  display: flex;
  gap: 45px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right .ft-link-list {
    justify-content: center;
  }
}
footer .copy-area {
  padding: 42px 0 0;
}
@media screen and (max-width: 768px) {
  footer .copy-area {
    padding-top: 30px;
  }
}
footer .copy-area p {
  font-size: 1.2rem;
}

body.home .mv-area {
  position: relative;
  height: 100vh;
}
body.home .mv-area img {
  width: 133px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.home .works-area {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  body.home .works-area {
    padding: 60px 0;
  }
}
body.home .path-area {
  padding: 120px 0 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.home .path-area {
    padding: 60px 0 30px;
  }
}
body.home .path-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 70%;
  background: linear-gradient(to right, #e3e3e3, #fff);
  z-index: -1;
}
body.home .path-area .path-list {
  display: flex;
  height: 200px;
}
@media screen and (max-width: 768px) {
  body.home .path-area .path-list {
    flex-direction: column;
    height: auto;
  }
}
body.home .path-area .path-list.mt60 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  body.home .path-area .path-list.mt60 {
    margin-top: 30px;
  }
}
body.home .path-area .path-list:hover {
  opacity: 0.9;
}
body.home .path-area .path-list:hover .path-left h3::after {
  right: -52px;
}
body.home .path-area .path-list .path-left {
  width: 320px;
  flex-shrink: 0;
  background: #333;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.home .path-area .path-list .path-left {
    width: 100%;
  }
}
body.home .path-area .path-list .path-left h3 {
  font-size: 2.8rem;
  font-weight: 300;
  color: white;
  position: absolute;
  bottom: 40px;
  left: 40px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body.home .path-area .path-list .path-left h3 {
    position: relative;
    bottom: initial;
    left: initial;
    padding: 15px 20px;
  }
}
body.home .path-area .path-list .path-left h3::after {
  content: "";
  position: absolute;
  background: url(../img/common/circle-arrow.png) no-repeat center center;
  background-size: 100%;
  width: 26px;
  height: 26px;
  top: 52%;
  right: -36px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  body.home .path-area .path-list .path-left h3::after {
    right: initial;
    left: 140px;
  }
}
@media screen and (max-width: 768px) {
  body.home .path-area .path-list .path-left h3.path02::after {
    left: 160px;
  }
}
body.home .path-area .path-list .path-right {
  object-fit: cover;
  height: 100%;
  width: 100%;
  background: url(../img/top/img03.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  body.home .path-area .path-list .path-right {
    background: url(../img/top/img03-sp.jpg) no-repeat center center;
    background-size: cover;
    height: 150px;
  }
}
body.home .path-area .path-list .path-right.path02 {
  background: url(../img/top/img04.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  body.home .path-area .path-list .path-right.path02 {
    background: url(../img/top/img04-sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

.under-page .under-mv-area {
  height: 300px;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .under-page .under-mv-area {
    height: 220px;
  }
}
.under-page .under-mv-area .inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.under-page .under-mv-area .inner .under-main-ttl {
  font-size: 4rem;
  letter-spacing: 0.2em;
  margin: auto;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .under-page .under-mv-area .inner .under-main-ttl {
    font-size: 3.4rem;
  }
}

.news-content-wrap {
  font-size: 1.6rem;
  padding: 70px 20px 70px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news-content-wrap {
    padding: 30px 10px 30px;
  }
}
.news-content-wrap > * + * {
  margin-top: 20px;
}
.news-content-wrap p {
  font-weight: normal;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.news-content-wrap p img {
  display: block;
  width: fit-content;
}
.news-content-wrap p img.aligncenter {
  margin: 0 auto;
}
.news-content-wrap p img.alignright {
  margin: 0 0 0 auto;
}
.news-content-wrap strong {
  font-weight: bold;
}
.news-content-wrap h1 {
  font-size: 3.3rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h1 {
    line-height: 1.3;
  }
}
.news-content-wrap h2 {
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h2 {
    line-height: 1.3;
  }
}
.news-content-wrap h3 {
  font-size: 2.7rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h3 {
    line-height: 1.3;
  }
}
.news-content-wrap h4 {
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h4 {
    line-height: 1.3;
  }
}
.news-content-wrap h5 {
  font-size: 2.1rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h5 {
    line-height: 1.3;
  }
}
.news-content-wrap h6 {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h6 {
    line-height: 1.3;
  }
}
.news-content-wrap em {
  font-style: italic;
}
.news-content-wrap ul {
  list-style-type: decimal;
  list-style-position: inside;
}
.news-content-wrap ul li {
  list-style: initial;
  list-style-position: inside;
  font-weight: normal;
}
.news-content-wrap ul li + li {
  margin-top: 5px;
}
.news-content-wrap ol {
  list-style-type: disc;
  list-style-position: inside;
}
.news-content-wrap ol li {
  list-style: auto;
  list-style-position: inside;
  font-weight: normal;
}
.news-content-wrap ol li + li {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .news-content-wrap iframe {
    max-width: 700px;
    width: 100%;
    height: 400px;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap iframe {
    width: 100%;
    height: 250px;
  }
}
.news-content-wrap a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.news-content-wrap video {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .news-content-wrap video {
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap video {
    width: 100%;
  }
}
.news-content-wrap .wp-video {
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .news-content-wrap .wp-video {
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap .wp-video {
    width: 100%;
  }
}
.news-content-wrap blockquote {
  position: relative;
}
.news-content-wrap blockquote::before {
  content: '"';
  display: inline-block;
  position: absolute;
  font-size: 3rem;
  top: 4px;
  left: 12px;
  color: #fff;
  font-weight: bold;
}
.news-content-wrap blockquote p {
  background-color: #aaa;
  padding: 25px 30px;
  color: #fff;
}
.news-content-wrap blockquote cite {
  display: block;
  text-align: right;
  font-style: italic;
}
.news-content-wrap .wp-block-table .wp-element-caption {
  text-align: right;
  font-style: italic;
  font-weight: normal;
}

.under-page.company .business-area {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .under-page.company .business-area {
    padding: 60px 0;
  }
}
.under-page.company .business-area .business-group {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .under-page.company .business-area .business-group {
    flex-direction: column;
    row-gap: 20px;
  }
}
.under-page.company .business-area .business-group.rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .under-page.company .business-area .business-group.rev {
    flex-direction: column;
  }
}
.under-page.company .business-area .business-group.mb70 {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .under-page.company .business-area .business-group.mb70 {
    margin-bottom: 30px;
  }
}
.under-page.company .business-area .business-left {
  font-size: 1.4rem;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .under-page.company .business-area .business-left {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.under-page.company .business-area .business-right {
  width: 510px;
}
@media screen and (max-width: 768px) {
  .under-page.company .business-area .business-right {
    width: 100%;
  }
}
.under-page.company .business-area .business-full {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .under-page.company .business-area .business-full {
    margin-top: 30px;
  }
}
.under-page.company .info-area {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .under-page.company .info-area {
    margin-bottom: 60px;
  }
}
.under-page.company .info-area .info {
  display: flex;
  gap: 180px;
}
@media screen and (max-width: 768px) {
  .under-page.company .info-area .info {
    flex-direction: column;
    gap: 0px;
  }
}
.under-page.company .info-area .info-dl {
  display: flex;
  padding: 20px 0;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .under-page.company .info-area .info-dl {
    padding: 10px 0;
  }
}
.under-page.company .info-area .info-dl.pt05 {
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .under-page.company .info-area .info-dl {
    flex-direction: column;
    row-gap: 10px;
  }
}
.under-page.company .info-area .info-dl dt {
  font-weight: bold;
  width: 180px;
}
@media screen and (max-width: 768px) {
  .under-page.company .info-area .info-dl dt {
    width: 100%;
  }
}
.under-page.company .info-area .info-dl dd {
  width: calc(100% - 180px);
}
@media screen and (max-width: 768px) {
  .under-page.company .info-area .info-dl dd {
    width: 100%;
  }
}
.under-page.company .info-area .info-history {
  display: flex;
  padding: 5px 0;
  gap: 30px;
  font-size: 12px;
}
.under-page.company .info-area .info-history li:nth-child(1) {
  flex-shrink: 0;
  width: 50px;
}

.under-page.p-recruit .recruit-area {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .under-page.p-recruit .recruit-area {
    padding: 60px 0;
  }
}
.under-page.p-recruit .recruit-area .recruit {
  max-width: 860px;
  margin: 0 auto;
}
.under-page.p-recruit .recruit-area .recruit-info {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.25;
  padding-bottom: 60px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .under-page.p-recruit .recruit-area .recruit-info {
    font-size: 1.4rem;
    line-height: 2;
    padding-bottom: 30px;
  }
}
.under-page.p-recruit .recruit-area .recruit .info-dl {
  display: flex;
  padding: 30px 40px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  line-height: 1.7142857143;
}
@media screen and (max-width: 768px) {
  .under-page.p-recruit .recruit-area .recruit .info-dl {
    padding: 10px 0;
  }
}
.under-page.p-recruit .recruit-area .recruit .info-dl.pt05 {
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .under-page.p-recruit .recruit-area .recruit .info-dl {
    flex-direction: column;
    row-gap: 10px;
  }
}
.under-page.p-recruit .recruit-area .recruit .info-dl dt {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .under-page.p-recruit .recruit-area .recruit .info-dl dt {
    width: 100%;
  }
}
.under-page.p-recruit .recruit-area .recruit .info-dl dd {
  width: calc(100% - 180px);
}
@media screen and (max-width: 768px) {
  .under-page.p-recruit .recruit-area .recruit .info-dl dd {
    width: 100%;
  }
}
.under-page.p-recruit .recruit-area .recruit .info-dl dd span {
  width: 10px;
  height: 10px;
  background-color: black;
  display: inline-block;
  margin-right: 5px;
}

.under-page.p-works .works-area,
.p-single .works-area {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .under-page.p-works .works-area,
  .p-single .works-area {
    padding: 60px 0;
  }
}
.under-page.p-works .works-area .works-list,
.p-single .works-area .works-list {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .under-page.p-works .works-area .works-list,
  .p-single .works-area .works-list {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }
}
.under-page.p-works .works-area .works-list img,
.p-single .works-area .works-list img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .under-page.p-works .works-area .works-list img,
  .p-single .works-area .works-list img {
    height: 225px;
  }
}

.p-single .slider-area {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .p-single .slider-area {
    padding: 60px 0;
  }
}
.p-single .main-swiper {
  position: relative;
  overflow-x: hidden;
}
.p-single .main-swiper .swiper-slide {
  max-height: 800px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-single .main-swiper .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 800px;
}
.p-single .main-swiper .main-swiper-pagination {
  text-align: center;
}
.p-single .swiper-button-next,
.p-single .swiper-button-prev {
  width: 41px;
  height: 41px;
}
.p-single .swiper-button-next::after,
.p-single .swiper-button-prev::after {
  content: "";
  display: block;
  width: 41px;
  height: 41px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.p-single .swiper-button-next::after {
  background-image: url(../img/common/arrow-slider-right.png);
}
.p-single .swiper-button-prev::after {
  background-image: url(../img/common/arrow-slider-left.png);
}
.p-single .thumb-swiper {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-single .thumb-swiper {
    margin-top: 15px;
  }
}
.p-single .thumb-swiper .swiper-wrapper.center-thumbs {
  justify-content: center;
}
.p-single .thumb-swiper .swiper-slide {
  cursor: pointer;
  height: 100%;
}
.p-single .detail-content {
  text-align: center;
  margin-top: 6rem;
}
.p-single .detail-content h3 {
  font-size: 2rem;
}
.p-single .detail-content p {
  font-size: 14px;
}