@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url("../fonts/Montserrat-ExtraBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url("../fonts/ZenKakuGothicNew-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Regular";
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Medium";
  src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Bold";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Black";
  src: url("../fonts/NotoSansCJKjp-Black.woff2") format("woff2");
  font-display: swap;
}
/*	layout
------------------------------------ */
/* animation
例）animation: fadedown .5s ease-in-out;
遅延）animation-delay: 0.5s;
最後の状態維持）animation-fill-mode: forwards;
------------------------------------ */
@keyframes fadedown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes grad-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--amp));
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*	font-size  cmn
------------------------------------ */
/************************************************

  SP layout

************************************************/
/*	cmn parts  SP
------------------------------------ */
.com-inner {
  padding: 80px 15px 50px;
}

.com-md-inner {
  padding: 50px 15px;
}

.no-sb {
  margin: 30px auto 0;
}

.com-ib {
  display: inline;
}

.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}

.anchor-mp {
  margin: -70px auto 0;
  padding-top: 70px;
}

.com-txt-box p:nth-of-type(n+2) {
  margin-top: 15px;
}

/*  共通パーツ
------------------------------------ */
.com-illu01 {
  background-position: 15px 15px, 15px calc(100% + 10px);
  background-size: 80px, 100px;
}
.com-illu02 {
  background-position: 15px 15px;
  background-size: 80px;
}
.com-illu03 {
  background-position: 15px 15px, calc(100% - 20px) calc(100% + 10px);
  background-size: 80px, 100px;
}

.news-post-link {
  padding: 20px 0;
}
.news-post-time {
  font-size: 1.3rem;
}
.news-post-tag {
  margin-left: 10px;
}
.news-post-tag-txt {
  margin: 0 5px 5px 0;
  padding: 3px 5px;
  font-size: 1.3rem;
}

.com-tag {
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
}
.com-tag-item:nth-of-type(n+2) {
  margin: 25px auto 0;
}
.com-tag-link {
  background-size: 14px;
  background-position-x: calc(100% - 15px);
}

/* =========================================

  main  SP

========================================= */
/* top-news  SP
------------------------------------ */
#top-news {
  background-size: 100px;
  background-position: left calc(100% - 0px);
}
#top-news .news-inner {
  padding-bottom: 100px;
}
#top-news .news-left {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
#top-news .news-btn {
  max-width: 165px;
  margin: 0;
}
#top-news .news-post {
  margin: 50px auto 0;
}

/* top-greeting  SP
------------------------------------ */
#top-greeting .greeting-bg {
  background-size: 100px;
  background-position-x: calc(100% - 20px);
}
#top-greeting .greeting-inner {
  padding-bottom: 100px;
}
#top-greeting .greeting-txt {
  margin-top: 20px;
}
#top-greeting .greeting-btn {
  margin: 25px auto 0;
}
#top-greeting .greeting-img {
  width: 100%;
  margin: 25px auto 0;
}

/* top-service  SP
------------------------------------ */
#top-service .service-flx {
  align-items: flex-start;
}
#top-service .service-flx-txt {
  margin: 20px auto 0;
}
#top-service .service-list {
  margin-top: 30px;
  justify-content: space-between;
}
#top-service .service-list-item {
  width: 49%;
}
#top-service .service-list-item:nth-of-type(n+3) {
  margin-top: 2%;
}
#top-service .service-list-link {
  padding: 23px 13px 13px;
  background-size: 30px;
  background-position: calc(100% - 10px) 15px;
}
#top-service .service-list-ttl {
  font-size: 1.6rem;
}
#top-service .service-list-img {
  margin-top: 20px;
}

/* top-works  SP
------------------------------------ */
#top-works .works-bg {
  background-size: 150px;
  background-position: left calc(100% + 5px);
}
#top-works .works-inner {
  padding-bottom: 130px;
}
#top-works .works-left {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
#top-works .works-btn {
  max-width: 140px;
  margin: 0;
}
#top-works .works-list {
  margin: 30px auto 0;
  justify-content: space-between;
}
#top-works .works-list-item {
  width: 49%;
}
#top-works .works-list-item:nth-of-type(n+3) {
  margin-top: 15px;
}
#top-works .works-list-ttl {
  margin-top: 5px;
  -webkit-line-clamp: 2;
}

/* top-information  SP
------------------------------------ */
#top-information .information-en {
  display: none;
  position: static;
}
#top-information .information-bg::before {
  width: 100%;
  border-radius: 0;
}
#top-information .information-flx {
  justify-content: center;
}
#top-information .information-list {
  margin-top: 25px;
  overflow-x: scroll;
}
#top-information .information-list li {
  width: 458px;
}
#top-information .information-btn-wrap {
  margin: 30px auto 0;
}

/* com-company  SP
------------------------------------ */
.com-company {
  background-size: 100px, 100px;
  background-position: 2% 10px, calc(100% - 20px) calc(100% + 10px);
}
.com-company .company-inner {
  padding: 100px 15px;
}
.com-company .company-flx {
  margin-top: 30px;
  flex-direction: column-reverse;
  align-items: center;
}
.com-company .ggmap {
  margin: 25px auto 0;
}

/* =========================================

sub layout  SP

========================================= */
/* about  SP
------------------------------------ */
#about .concept-inner {
  padding: 80px 15px;
}
#about .concept-txt {
  margin-top: 25px;
}
#about .concept-list {
  margin-top: 30px;
}
#about .concept-list-item:nth-of-type(n+2) {
  margin: 30px auto 0;
}
#about .concept-detail {
  margin-top: 25px;
}
#about .concept-detail li {
  flex-direction: column;
  align-items: center;
}
#about .concept-detail li:nth-of-type(n+2) {
  margin-top: 30px;
  padding-top: 30px;
}
#about .concept-detail-contents {
  margin: 10px auto 0;
}
#about .concept-detail-ttl {
  text-align: center;
}
#about .concept-detail-txt {
  margin-top: 15px;
}
#about .concept-detail-btn::after {
  width: 30px;
  height: 30px;
}
#about .faq-list {
  margin-top: 25px;
}
#about .faq-list-item:nth-of-type(n+2) {
  margin: 35px auto 0;
}
#about .faq-list-dl div {
  padding: 25px 15px;
}
#about .faq-list-dl dt {
  font-size: 1.7rem;
}
#about .faq-list-dl dt::before {
  margin-right: 8px;
  font-size: 2.4rem;
  line-height: 1.2;
}

/* works  SP
------------------------------------ */
#works .works-list {
  margin-top: 50px;
}
#works .works-list-item:nth-of-type(n+2) {
  margin-top: 50px;
}
#works .works-list-tag_post {
  margin-top: 20px;
}
#works .works-list-tag_post .works-list-tag_post-item:nth-of-type(n+2) {
  margin-top: 30px;
  padding-top: 30px;
}
#works .works-list-img li {
  width: 49%;
  padding-top: 49%;
}
#works .works-list-img li:nth-of-type(n+3) {
  margin-top: 2%;
}
#works .works-list-contents {
  margin-top: 25px;
}

/* information  SP
------------------------------------ */
#information .information-sb3 {
  padding: 0 15px;
  flex-direction: column;
  align-items: center;
}
#information .information-sb3 li {
  overflow-x: scroll;
}
#information .information-sb3 li:nth-of-type(n+2) {
  margin: 30px auto 0 !important;
}
#information .information-sb3 iframe {
  width: 458px;
}
#information .information-sb3_02 iframe {
  width: 687px;
}

/* company  SP
------------------------------------ */
#company .greeting-inner {
  padding-bottom: 80px;
}
#company .greeting-flx {
  margin-top: 25px;
}
#company .greeting-flx-con {
  margin: 10px auto 0;
}
#company .greeting-flx-ttl {
  text-align: center;
}
#company .greeting-flx-txt {
  margin-top: 15px;
}
#company .staff::before {
  width: 100%;
  border-radius: 0;
}
#company .staff-inner {
  padding: 50px 15px;
}
#company .staff-list {
  margin-top: 20px;
}
#company .staff-list-item {
  flex-direction: column;
  align-items: center;
}
#company .staff-list-img {
  width: 80%;
  margin: auto;
  text-align: center;
}
#company .staff-list-con {
  margin: 15px auto 0;
}
#company .staff-list-ttl {
  text-align: center;
}
#company .staff-list-txt {
  margin-top: 10px;
}
#company .company-ttl .com-ttl01-en {
  font-size: 3.8rem;
}

/* contact  SP
------------------------------------ */
#contact .contact-inner {
  padding-bottom: 100px;
}
#contact .contact-txt {
  margin-top: 20px;
  text-align: left;
}
#contact .contact-box {
  margin-top: 20px;
}
#contact .contact-box-link {
  font-size: 2rem;
}
#contact .contact-box-list {
  margin: 10px auto 0;
  flex-direction: column;
  align-items: center;
}
#contact .contact-box-list li {
  text-align: left;
}
#contact .contact-box-list li:nth-of-type(n+2) {
  margin: 10px auto 0;
}
#contact .contact-box-list-txt {
  font-size: 1.6rem;
  line-height: 1.5;
}
#contact .mail::before {
  width: 100%;
  border-radius: 0;
}/*# sourceMappingURL=style_sp.css.map */