@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@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;
}
@font-face {
  font-family: "DelaGothicOne-Regular";
  src: url("../fonts/DelaGothicOne-Regular.ttf");
  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 {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 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 dododo {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -1px) rotate(-0.6deg);
  }
  20% {
    transform: translate(2px, 0px) rotate(0.8deg);
  }
  30% {
    transform: translate(-1px, 1px) rotate(-0.4deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(0.3deg);
  }
  50% {
    transform: translate(-2px, 0px) rotate(-0.9deg);
  }
  60% {
    transform: translate(1px, 1px) rotate(0.6deg);
  }
  70% {
    transform: translate(-1px, 0px) rotate(-0.3deg);
  }
  80% {
    transform: translate(2px, -1px) rotate(0.9deg);
  }
  90% {
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* 強め（振幅大きめ） */
@keyframes dododo-strong {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  10% {
    transform: translate(-3px, -2px) rotate(-1.2deg);
  }
  20% {
    transform: translate(4px, 0px) rotate(1.6deg);
  }
  30% {
    transform: translate(-3px, 2px) rotate(-1deg);
  }
  40% {
    transform: translate(3px, -2px) rotate(0.8deg);
  }
  50% {
    transform: translate(-4px, 0px) rotate(-1.6deg);
  }
  60% {
    transform: translate(3px, 2px) rotate(1.2deg);
  }
  70% {
    transform: translate(-2px, 0px) rotate(-0.7deg);
  }
  80% {
    transform: translate(4px, -2px) rotate(1.8deg);
  }
  90% {
    transform: translate(-3px, 2px) rotate(-1.1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* ソフト（振幅小さめ・遅め）*/
@keyframes dododo-soft {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  12% {
    transform: translate(-1px, 0px) rotate(-0.3deg);
  }
  25% {
    transform: translate(1px, -1px) rotate(0.4deg);
  }
  37% {
    transform: translate(-1px, 1px) rotate(-0.2deg);
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
  }
  62% {
    transform: translate(1px, 0px) rotate(0.3deg);
  }
  75% {
    transform: translate(-1px, -1px) rotate(-0.4deg);
  }
  87% {
    transform: translate(1px, 1px) rotate(0.2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/*	font-size  cmn
------------------------------------ */
/* =========================================
  base  PC
========================================= */
body { /* fontはcmn-txtに合わせる */
  width: 100%;
  min-width: 1100px;
  margin: auto;
  color: #000000;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

/* safariの自動CSSを打ち消す */
* {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.disable-auto-tel a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

a[href^=fax] {
  -webkit-tap-highlight-color: transparent !important;
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  text-decoration: none !important;
}

.com-inner,
.bread-inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

.com-inner-lg {
  width: 100%;
  max-width: 1800px;
  margin: auto;
}

.sec-inner-md {
  width: 1280px;
}

.sp-only, .xs-only {
  display: none !important;
}

/*==================================================
お問い合わせフォーム
================================================== */
.contact-form-table {
  width: 100%;
  margin: 30px auto 0 !important;
  background: #fff;
}
.contact-form-table tr:nth-of-type(n+2) th {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 768px) {
  .contact-form-table tr:nth-of-type(n+2) td {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.contact-form-table th, .contact-form-table td {
  padding: 15px 18px;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .contact-form-table th, .contact-form-table td {
    font-size: 1.5rem;
  }
}
.contact-form-table th {
  width: 330px;
  background: #2fb8fd;
  color: #fff;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
}
.contact-form-table a {
  color: #000000;
  text-decoration: underline;
}
.contact-form-table textarea {
  resize: none;
}
.contact-form-table select, .contact-form-table textarea, .contact-form-table input[type=tel], .contact-form-table input[type=text], .contact-form-table input[type=email], .contact-form-table input[type=url] {
  background: #f0f0f0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.contact-form-table .required-mark {
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  height: 30px;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  .contact-form-table {
    margin-top: 30px !important;
  }
  .contact-form-table th, .contact-form-table td {
    padding: 9px 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .contact-form-table label[for=agree] {
    margin: auto;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.contact-form-table .date-list {
  padding-left: 0;
}

.error-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .error-text {
    font-size: 1.5rem;
  }
}

.privacy-wrap {
  display: flex;
  max-width: 334px;
  margin: auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.privacy-wrap .error-text {
  font-size: 14px;
  font-size: 1.4rem;
}
.privacy-wrap a {
  color: #000000;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .privacy-wrap .inline-privacy-policy-txt, .privacy-wrap a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

input[type=radio] + label, input[type=checkbox] + label {
  color: #000;
}

/* =========================================
  タグテンプレート（未使用）
========================================= */
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 20px 0 20px auto;
  max-width: 230px;
}
.tag-select-box::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #000000;
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  border: non6;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #000000;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #000000;
  font-weight: 700;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  color: #006;
}

/*	parts  PC
------------------------------------ */
a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}

.br {
  display: inline-block;
}

.over {
  overflow: hidden;
}

.com-txt,
#privacy .txt-box {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.7rem;
  color: #000000;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .com-txt,
  #privacy .txt-box {
    font-size: 1.5rem;
  }
}

.fit {
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}

/*	com-btn  PC
------------------------------------ */
.com-btn {
  display: flex;
  width: 100%;
  max-width: 395px;
  padding: 15px 40px;
  border: 4px solid #000000;
  border-radius: 999px;
  background: url(../img/ptn/com-btn-arw.png) no-repeat calc(100% - 20px) center, url(../img/ptn/gra-orrange.png) no-repeat 50%/100% 100%;
  text-align: center;
  font-family: "NotoSansCJKjp-Black", sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #000000;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .com-btn {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .com-btn:hover {
    background-position: calc(100% - 15px) center, left center;
    background-size: auto, 150%;
    opacity: 1;
  }
}

#top-entry .contact-submits-wrap {
  text-align: center;
}
#top-entry .contact-submits-btn {
  /*必須*/
  margin: auto;
  padding: 0;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  /*追加*/
  display: flex;
  width: 100%;
  max-width: 395px;
  padding: 15px 40px;
  border: 4px solid #000000;
  border-radius: 999px;
  background: url(../img/ptn/com-btn-arw.png) no-repeat calc(100% - 20px) center, url(../img/ptn/gra-orrange.png) no-repeat 50%/100% 100%;
  text-align: center;
  font-family: "NotoSansCJKjp-Black", sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #000000;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top-entry .contact-submits-btn {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #top-entry .contact-submits-btn:hover {
    background-position: calc(100% - 15px) center, left center;
    background-size: auto, 150%;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  #top-entry .contact-submits-btn {
    border-width: 2px;
    background-position: calc(100% - 15px) center, center;
    background-size: 10px, cover;
    font-size: 1.8rem;
  }
}
#top-entry .contact-submits-btn.mt30 {
  margin-top: 30px !important;
}

/*	com-table  PC
------------------------------------ */
.com-table {
  width: 100%;
  margin: auto;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.com-table th, .com-table td {
  padding: 9px 0;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.7rem;
  line-height: 1.7;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .com-table th, .com-table td {
    font-size: 1.5rem;
  }
}
.com-table th {
  width: 240px;
  text-align: center;
  background: #ff7e22;
  color: #fff;
}
.com-table td {
  padding-left: 20px;
  white-space: pre-line;
}
.com-table-note {
  display: block;
  line-height: 1.1;
}
.com-table-note img {
  vertical-align: middle;
}

/*	heading  PC
------------------------------------ */
.com-ttl01 {
  text-align: center;
}
.com-ttl01-ja {
  margin: 28px auto 0;
}
.com-ttl02 {
  display: flex;
  border-bottom: 4px solid #000000;
  background: url(../img/ptn/pattern__dot__blue.png);
  font-family: "DelaGothicOne-Regular", sans-serif;
  font-size: 3.8rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.8;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .com-ttl02 {
    font-size: 1.9rem;
  }
}
.com-ttl02::before, .com-ttl02::after {
  content: "";
  width: 58px;
  height: 23px;
  background: url(../img/top/job-star.png) no-repeat center/contain;
}
.com-ttl02::before {
  margin-right: 20px;
}
.com-ttl02::after {
  margin-left: 20px;
}
.com-ttl03 {
  border-bottom: 4px solid #000000;
  background: url(../img/work/dot.png);
  text-align: center;
  font-family: "DelaGothicOne-Regular", sans-serif;
  font-size: 3.8rem;
  letter-spacing: 0.02em;
  color: #fcc922;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .com-ttl03 {
    font-size: 1.9rem;
  }
}
.com-ttl04 {
  font-family: "DelaGothicOne-Regular", sans-serif;
  font-size: 3.4rem;
  letter-spacing: 0.04em;
  color: #2fb8fd;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .com-ttl04 {
    font-size: 1.7rem;
  }
}
.com-ttl05 {
  font-size: 2.8rem;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  color: #2fb8fd;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .com-ttl05 {
    font-size: 1.5rem;
  }
}

/*	sidebar  PC
------------------------------------ */
.sidebar {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: 13px;
  right: 13px;
  z-index: 100;
}
.sidebar-entry {
  margin: 25px auto 0;
}

/*	breadcrumb  PC
------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.breadcrumb .bread-inner {
  width: 100%;
  max-width: 1080px;
  padding-right: 20px;
  margin: auto;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li:nth-of-type(3) {
  display: inline;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb li, .breadcrumb a {
  color: #000000;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .breadcrumb li, .breadcrumb a {
    font-size: 1.5rem;
  }
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 4px;
  color: #000000;
}
.breadcrumb a {
  color: #ff7e22;
}

/*	pagenation  PC
------------------------------------ */
.pagenation {
  display: flex;
  margin: 50px auto 0;
  justify-content: center;
  align-items: center;
}
.pagenation li {
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  background: #f0f3f4;
  border-radius: 5px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: #bfbfbf;
  line-height: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pagenation li {
    font-size: 1.5rem;
  }
}
.pagenation li.bg-none {
  background: none;
}
.pagenation li:nth-of-type(n+2) {
  margin-left: 10px;
}
.pagenation a, .pagenation span {
  display: block;
}
.pagenation a {
  color: #00140f;
}
.pagenation .current {
  background: #ff7e22;
  color: #fff;
  pointer-events: none;
}
.pagenation .next-li, .pagenation .back-li {
  background: none;
  border: none;
}
.pagenation .back-arrow, .pagenation .next-arrow {
  display: block;
  height: 100%;
}
.pagenation-arrow {
  width: 100%;
  height: 100%;
}
.pagenation-arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.arrow-left {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: inline-block;
  width: 11.8px;
  height: 19.6px;
}

.arrow-left::before,
.arrow-left::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 15px;
  height: 4px;
  border-radius: 9999px;
  background-color: #ff7e22;
  transform-origin: 2px 50%;
}

.arrow-left::before {
  transform: rotate(45deg);
}

.arrow-left::after {
  transform: rotate(-45deg);
}

.arrow-right {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: inline-block;
  width: 11.8px;
  height: 19.6px;
}

.arrow-right::before,
.arrow-right::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 15px;
  height: 4px;
  border-radius: 9999px;
  background-color: #ff7e22;
  transform-origin: calc(100% - 2px) 50%;
}

.arrow-right::before {
  transform: rotate(45deg);
}

.arrow-right::after {
  transform: rotate(-45deg);
}

/*	detail pagenation  PC
------------------------------------ */
.pagenation-inner {
  width: 100%;
  max-width: 300px;
  margin: 50px auto 0;
  height: 50px;
  text-align: center;
}

.data-nav {
  position: relative;
  text-align: center;
}
.data-nav a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  transition: all 0.3s ease;
}
.data-nav a:hover {
  opacity: 0.7;
}
.data-nav .next a, .data-nav .back a {
  background: none !important;
}

.to-works-btn {
  display: inline-block;
  padding: 0 20px;
  background: #ff7e22;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .to-works-btn {
    font-size: 1.5rem;
  }
}

.arrow-btn {
  width: 50px;
  position: absolute;
  bottom: 0;
}
.arrow-btn::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: auto;
  color: #000000;
  font-size: 1.4rem;
  background: #ff7e22;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .arrow-btn::before {
    font-size: 1.5rem;
  }
}

.back-btn {
  right: auto;
}

.next-btn {
  left: auto;
}

/*	ggmap  PC
------------------------------------ */
.ggmap {
  width: 100%;
  height: 0;
  padding-top: 400px;
  position: relative;
}

.ggmap iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

/* =========================================
  header  PC
========================================= */
/*	headline  PC
------------------------------------ */
.headline {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 20px 0;
  background: #fff;
}

.logo, .ent-logo {
  display: inline-block;
  transition: all 0.3s ease;
}
.logo:hover, .ent-logo:hover {
  opacity: 0.7;
}
.logo a, .logo img, .ent-logo a, .ent-logo img {
  display: block;
}
.logo img, .ent-logo img {
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .logo {
    width: 200px;
  }
}

/*	gnav  PC
------------------------------------ */
.gnav {
  margin-top: 16px;
}
.gnav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1;
}
.gnav-list-item:nth-of-type(n+2) {
  margin-left: 23px;
}
.gnav-list-link {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .gnav-list-link {
    font-size: 1.5rem;
  }
}
.gnav-list-link.current {
  color: #ff7e22;
}

/*	mv  PC
------------------------------------ */
.mv {
  width: 100%;
  height: 0;
  padding-top: 47.76%;
  background: url(../img/top/mv-syutyu.png) no-repeat left top/89.27% 100%, url(../img/top/mv-img.jpg) no-repeat center top/cover;
  position: relative;
  z-index: 1;
}
.mv::before {
  content: "";
  width: 48.4%;
  height: 0;
  padding-top: 46.8%;
  background: url(../img/top/mv-do.png) no-repeat right top/contain;
  position: absolute;
  bottom: 5.7%;
  right: 4.9%;
  z-index: -1;
  animation: dododo-soft 0.12s linear infinite;
}
.mv::after {
  content: "";
  width: 44.8%;
  height: 77.6%;
  background: url(../img/top/mv-rightbottom.png) no-repeat right bottom/contain;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.mv-chara-item {
  position: absolute;
}
.mv-chara-item-left {
  width: 34.4%;
  right: 32.8%;
  bottom: 0;
}
.mv-chara-item-center {
  width: 30.2%;
  right: 19.7%;
  bottom: 0;
}
.mv-chara-item-right {
  width: 17.1%;
  right: 14%;
  bottom: 0;
}
.mv-catch {
  width: 52.96%;
  height: 60.4%;
  background: url(../img/top/mv-catch-deco__effect.png) no-repeat 2% 0px/44.48%;
  position: absolute;
  left: 11.25%;
  bottom: 17.66%;
  line-height: 1;
}
.mv-catch span {
  position: absolute;
}
.mv-catch img {
  width: 100%;
}
.mv-catch01-a {
  width: 27.2%;
  left: 0;
  top: 19.1%;
}
.mv-catch01-b {
  width: 9.4%;
  top: 24.9%;
  left: 24%;
}
.mv-catch01-c {
  width: 14.8%;
  top: 14.9%;
  left: 30.9%;
}
.mv-catch01-d {
  width: 29.4%;
  top: 17.3%;
  left: 41.6%;
}
.mv-catch02-a {
  width: 16.2%;
  top: 39.7%;
  left: 1.17%;
}
.mv-catch02-b {
  width: 24.7%;
  top: 41.7%;
  left: 14.6%;
}
.mv-catch03-a {
  width: 28.7%;
  left: 3.34%;
  bottom: 9.9%;
}
.mv-catch03-b {
  width: 9.2%;
  bottom: 18.4%;
  left: 29.9%;
}
.mv-catch03-c {
  width: 53.3%;
  bottom: 18.4%;
  left: 36%;
}
.mv-catch03-d {
  width: 20.8%;
  bottom: 20.57%;
  left: 75.9%;
}
.mv-catch03-e {
  width: 6.6%;
  left: 93.8%;
  bottom: 18.4%;
}

/* =========================================
  footer  PC
========================================= */
#footer .foo-bg {
  background: #333333;
}
#footer .foo-inner {
  padding: 50px 0 60px;
  text-align: center;
}
#footer .foo-address {
  margin: 22px auto 0;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #footer .foo-address {
    font-size: 1.5rem;
  }
}
#footer .foo-list {
  margin: 35px auto 0;
}
#footer .foo-list-item:nth-of-type(n+2) {
  margin-left: 30px;
}
#footer .foo-list-tel {
  display: block;
}
#footer .foo-list-tel-link {
  padding-left: 43px;
  background: url(../img/top/f-tel.png) no-repeat left center;
  font-family: "DelaGothicOne-Regular", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #footer .foo-list-tel-link {
    font-size: 1.6rem;
  }
}
#footer .foo-list-tel-note {
  display: block;
  margin: 10px auto 0;
}
#footer .foo-list-btn {
  width: 350px;
  height: 70px;
  border-radius: 999px;
  border: 4px solid #fff;
  font-family: "NotoSansCJKjp-Black", sans-serif;
  font-size: 2.1rem;
  color: #fff;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #footer .foo-list-btn {
    font-size: 1.5rem;
  }
}
#footer .foo-list-btn::before {
  content: "";
  width: 30px;
  height: 20px;
  margin-right: 10px;
  background: url(../img/top/f-mail.png) no-repeat center/contain;
}

.fnav {
  margin: 40px auto 0;
  padding-top: 40px;
  border-top: 1px solid #8c8c8c;
}
.fnav-list {
  line-height: 1;
}
.fnav-list-item:nth-of-type(n+2) {
  margin-left: 14px;
}
.fnav-list-link {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fnav-list-link {
    font-size: 1.5rem;
  }
}
.fnav-list-link.current {
  opacity: 0.7;
}

.copy-txt, .copy-link {
  color: #fff;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

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

  sub layout  PC

========================================= */
/*	sub mv  PC
------------------------------------ */
.sv {
  height: 460px;
  border-bottom: 9px solid #000000;
  position: relative;
}
.sv::before {
  width: 314px;
  height: 275px;
  background: url(../img/work/sv-fuki.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  content: "";
}
.sv-catch {
  font-family: "DelaGothicOne-Regular", sans-serif;
  font-size: 7.8rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  text-shadow: rgb(0, 0, 0) 3px 0px 0px, rgb(0, 0, 0) 2.83487px 0.981584px 0px, rgb(0, 0, 0) 2.35766px 1.85511px 0px, rgb(0, 0, 0) 1.62091px 2.52441px 0px, rgb(0, 0, 0) 0.705713px 2.91581px 0px, rgb(0, 0, 0) -0.287171px 2.98622px 0px, rgb(0, 0, 0) -1.24844px 2.72789px 0px, rgb(0, 0, 0) -2.07227px 2.16926px 0px, rgb(0, 0, 0) -2.66798px 1.37182px 0px, rgb(0, 0, 0) -2.96998px 0.42336px 0px, rgb(0, 0, 0) -2.94502px -0.571704px 0px, rgb(0, 0, 0) -2.59586px -1.50383px 0px, rgb(0, 0, 0) -1.96093px -2.27041px 0px, rgb(0, 0, 0) -1.11013px -2.78704px 0px, rgb(0, 0, 0) -0.137119px -2.99686px 0px, rgb(0, 0, 0) 0.850987px -2.87677px 0px, rgb(0, 0, 0) 1.74541px -2.43999px 0px, rgb(0, 0, 0) 2.44769px -1.73459px 0px, rgb(0, 0, 0) 2.88051px -0.838247px 0px, rgb(0, 0, 0) 0 4px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sv-catch {
    font-size: 3.9rem;
  }
}
.sv-work {
  background: url(../img/sub/work.jpg) no-repeat center/cover;
}
.sv-flow {
  background: url(../img/sub/flow.jpg) no-repeat center/cover;
}
.sv-news {
  background: url(../img/sub/news.jpg) no-repeat center/cover;
}
.sv-privacy {
  background: url(../img/sub/privacy.jpg) no-repeat center/cover;
}
.sv-site {
  background: url(../img/sub/site.jpg) no-repeat center/cover;
}
.sv-notfound {
  background: url(../img/sub/notfound.jpg) no-repeat center/cover;
}
.sv-complete {
  background: url(../img/sub/complete.jpg) no-repeat center/cover;
}

/*	news  PCSP
------------------------------------ */
#news .com-news {
  margin: 60px auto 0;
}
#news .com-news-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #news .com-news-item:nth-of-type(n+2) {
    margin-top: 50px;
  }
}
#news .com-news-link {
  display: flex;
  width: 100%;
  padding: 40px;
}
#news .com-news-img {
  width: 40%;
  height: 0;
  padding-top: 28%;
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  #news .com-news-img {
    width: 250px;
    padding-top: 200px;
  }
}
#news .com-news-img-none {
  display: none;
  filter: grayscale(100%);
}
#news .com-news-con {
  width: 100%;
  margin-left: 5.8%;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0;
  color: #000000;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #news .com-news-con {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #news .com-news-con {
    margin-left: 2%;
  }
}
#news .com-news-con-none {
  margin-left: 0;
}
#news .com-news-flx {
  margin-top: 2%;
}
#news .com-news-ttl {
  padding: 0 10px;
  background-color: #ff7e22;
  color: #fff;
  font-size: 2.2rem;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  letter-spacing: 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #news .com-news-ttl {
    font-size: 1.5rem;
  }
}
#news .com-news-txt {
  margin-top: 2%;
}
@media screen and (max-width: 767px) {
  #news .com-news {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
  #news .com-news-item:nth-of-type(n+2) {
    margin: 30px auto 0;
  }
  #news .com-news-link {
    padding: 3%;
    align-items: flex-start;
  }
  #news .com-news-ttl {
    font-size: 3.3vw;
  }
  #news .com-news-txt-index {
    font-size: 3.4vw;
    line-height: 1.5;
  }
}
#news .detail .news-box {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  #news .detail .news-box {
    padding: 25px 15px;
  }
}
#news .detail .news-post-flx {
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#news .detail .com-news-flx {
  margin: 15px auto 0;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  #news .detail .com-news-flx {
    margin: 10px auto 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
#news .detail .com-news-ttl {
  padding: 5px 10px;
  font-size: 2.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #news .detail .com-news-ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  #news .detail .com-news-tag-txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  #news .news-index-tag-txt {
    font-size: 3.3vw;
  }
}

/*	contact  PC
------------------------------------ */
#contact .contact-txt {
  margin: 50px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #contact .contact-txt {
    margin-top: 20px;
  }
}
#contact .complete-box {
  text-align: center;
}
#contact .complete-link {
  margin: 30px auto 0;
  color: inherit;
  text-decoration: underline;
}

/*	privacy  PC
------------------------------------ */
@media screen and (min-width: 768px) {
  #privacy .sec-inner {
    padding: 120px 0;
  }
}
#privacy .privacy-box {
  max-width: 1080px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  #privacy .privacy-box {
    margin-top: 20px;
  }
}
#privacy .privacy-box p {
  margin: 10px auto 0;
}
#privacy .privacy-box ul {
  padding-left: 20px;
}
#privacy .privacy-box li {
  list-style: disc;
}
#privacy .privacy-box-ttl {
  padding-bottom: 10px;
  border-bottom: 1px solid #000000;
  font-size: 2.4rem;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #privacy .privacy-box-ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  #privacy .privacy-box-ttl {
    font-size: 1.8rem;
    padding-bottom: 5px;
  }
}
#privacy .ttl05 {
  background-color: #fcc922;
  color: #fff;
  padding: 10px 15px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #privacy .com-inner {
    padding-top: 20px;
  }
}

/*	site  PCSP
------------------------------------ */
@media screen and (max-width: 767px) {
  #site .com-bg-sub {
    background-size: auto;
  }
}
@media screen and (min-width: 768px) {
  #site .sec-inner {
    padding: 120px 0;
  }
}
#site .site-box {
  max-width: 960px;
  margin: 0 auto 0;
  padding: 20px 50px;
}
@media screen and (max-width: 767px) {
  #site .site-box {
    padding: 5px 15px;
  }
}
#site .site-ul {
  width: 100%;
  max-width: 880px;
  margin: auto;
}
#site .site-li:nth-of-type(n+2) {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#site .site-link {
  display: block;
  padding: 15px 30px;
  color: #000000;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  #site .site-link {
    padding: 12px 25px;
  }
}
#site .site-link::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  #site .site-link:hover::before {
    left: 10px;
  }
}

/*	e404  PCSP
------------------------------------ */
#e404 .sec-inner {
  box-sizing: border-box;
  color: #00140f;
}
@media screen and (min-width: 768px) {
  #e404 .sec-inner {
    padding: 100px 0;
  }
}
#e404 .top {
  display: inline-block;
  color: #00140f;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#e404 .top:hover {
  opacity: 0.7;
}
#e404 .section-content {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #e404 .section-content {
    margin-top: 0;
  }
}

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

  sub layout  SP

========================================= */
@media screen and (max-width: 767px) {
  /* =========================================
    base  SP
  ========================================= */
  body {
    width: 100%;
    margin: auto;
    min-width: 350px;
    line-height: 2.1;
  }
  body.active { /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  /*	parts  SP
  ------------------------------------ */
  /*	com-btn  SP
  ------------------------------------ */
  /*	com-table  SP
  ------------------------------------ */
  /*	heading  SP
  ------------------------------------ */
  /*	sidebar  SP
  ------------------------------------ */
  /*	pagenation  SP
  ------------------------------------ */
  /* =========================================
  header  SP
  ========================================= */
  /*	headline  SP
  ------------------------------------ */
  /*	mv  SP
  ------------------------------------ */
  /*	gnav  SP
  ------------------------------------ */
  /*	gnav-add  SP
  ------------------------------------ */
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================

    sub  SP

  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /*	sub mv  SP
  ------------------------------------ */
  /*	------- */
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .xs-only {
    display: inherit !important;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
  .ib {
    display: inline-block;
  }
  .com-inner,
  .bread-inner,
  .middle-inner,
  .lg-inner .com-inner.md {
    width: 100% !important;
  }
  .com-txt, #privacy .txt-box {
    line-height: 2.1;
  }
  .com-btn {
    border-width: 2px;
    background-position: calc(100% - 15px) center, center;
    background-size: 10px, cover;
    font-size: 1.8rem;
  }
  .com-table th, .com-table td {
    padding: 10px 0;
    font-size: 1.4rem;
  }
  .com-table th {
    width: 100px;
  }
  .com-table td {
    padding-left: 5px;
  }
  .com-table-note img {
    height: 13px;
  }
  .com-ttl01-en img {
    height: 35px;
  }
  .com-ttl01-ja {
    margin-top: 5px;
  }
  .com-ttl01-ja img {
    height: 25px;
  }
  .com-ttl02 {
    font-size: 2rem;
  }
  .com-ttl02::before, .com-ttl02::after {
    width: 31px;
    height: 12px;
  }
  .com-ttl02::before {
    margin-right: 10px;
  }
  .com-ttl02::after {
    margin-left: 10px;
  }
  .com-ttl03 {
    border-width: 2px;
    font-size: 2.5rem;
  }
  .com-ttl04 {
    text-align: center;
    font-size: 2.5rem;
  }
  .com-ttl05 {
    font-size: 1.8rem;
  }
  .sidebar {
    bottom: 50px;
  }
  .sidebar-pagetop {
    width: 70px;
  }
  .sidebar-entry {
    width: 143px;
    margin-top: 15px;
  }
  .pagenation {
    margin-top: 50px;
  }
  .pagenation li {
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .pagenation li:nth-of-type(n+2) {
    margin-left: 15px;
  }
  .data-nav a {
    height: 50px;
    line-height: 50px;
  }
  .arrow-btn::before {
    width: 50px;
    height: 50px;
  }
  .headline {
    padding: 20px 15px;
    text-align: left;
    align-items: flex-start;
  }
  .logo, .drawer-logo, .foo-logo {
    width: 180px !important;
  }
  .mv {
    padding-top: 87%;
  }
  .mv::before {
    width: 79.4%;
    height: 0;
    padding-top: 85.8%;
    bottom: 2.7%;
    right: 1.9%;
  }
  .mv-chara-item-left {
    width: 59.4%;
    right: 47%;
  }
  .mv-chara-item-right {
    width: 29.1%;
    right: 19%;
  }
  .mv-chara-item-center {
    width: 51.2%;
    right: 27.7%;
  }
  .mv-catch {
    width: 91.96%;
    height: 64.4%;
    left: 3.25%;
    bottom: -0.34%;
  }
  .sp-menu-btn-wrp {
    top: 11px;
    background: #FEA025;
    background: linear-gradient(90deg, rgb(254, 160, 37) 0%, rgb(252, 201, 34) 100%);
  }
  .sp-menu-btn-wrp .sp-menu-btn-txt {
    font-size: 1.1rem;
    font-family: "NotoSansCJKjp-Regular", sans-serif;
    color: #fff;
  }
  .sp-menu-btn-wrp .sp-menu-btn span {
    background: #fff;
  }
  #drawer-nav {
    padding: 0 0 30px;
    background: #fff;
  }
  #drawer-nav.active {
    z-index: 1000;
  }
  #drawer-nav .drawer-logo {
    max-width: none;
    margin-bottom: 0;
  }
  #drawer-nav .drawer-logo-wrap {
    margin-bottom: 15px;
    padding: 20px 15px 0;
    justify-content: center;
  }
  #drawer-nav .drawer-logo img {
    vertical-align: middle;
  }
  #drawer-nav .drawer-info {
    padding: 0 15px 0;
  }
  #drawer-nav #nav {
    padding: 0;
  }
  #drawer-nav #nav .drawer-item {
    padding: 0 15px;
  }
  #drawer-nav #nav .drawer-link {
    display: block;
    padding: 12px 12px 12px;
    font-family: "NotoSansCJKjp-Bold", sans-serif;
    border-color: rgba(0, 0, 0, 0.4);
    color: #000000;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
  #drawer-nav #nav .drawer-link.current {
    color: #ff7e22;
  }
  #drawer-nav .drawer-nav__link {
    display: block;
    padding: 12px 12px 12px;
    font-family: "NotoSansCJKjp-Regular", sans-serif;
    color: #9c8868;
    text-align: left;
    border-color: rgba(255, 126, 34, 0.1);
    font-size: 1.7rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
  #drawer-nav .drawer-nav__link.current {
    color: #ff7e22;
  }
  #drawer-nav .drawer-dropdown__list {
    border-bottom: 1px solid rgba(255, 126, 34, 0.1);
  }
  #drawer-nav .drawer-dropdown__list li:nth-of-type(1) {
    display: none;
  }
  .drawer-info {
    margin: 30px auto 0;
    text-align: center;
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .foo-inner {
    padding: 50px 15px;
  }
  #footer .foo-list {
    margin-top: 20px;
  }
  #footer .foo-list-item:nth-of-type(n+2) {
    margin: 30px auto 0;
  }
  #footer .foo-list-tel-link {
    padding-left: 25px;
    background-size: 20px;
    font-size: 2.5rem;
  }
  #footer .foo-list-btn {
    width: 250px;
    height: 60px;
    border-width: 2px;
    font-size: 1.8rem;
  }
  #footer .foo-list-btn::before {
    width: 23px;
  }
  .fnav-list {
    flex-direction: column;
    align-items: flex-start;
  }
  .fnav-list-item:nth-of-type(n+2) {
    margin: 25px 0 0;
  }
  .copy {
    margin: 25px auto 0;
    text-align: center;
  }
  .copy-txt, .copy-link {
    font-size: 1rem;
  }
  .sv {
    height: 200px;
    border-width: 4px;
  }
  .sv::before {
    width: 148px;
    height: 128px;
  }
  .sv-privacy {
    background-position: 84% center;
  }
  .sv-privacy .sv-catch {
    font-size: 3.3rem;
  }
  .sv-notfound .sv-catch {
    font-size: 3rem;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= *//*# sourceMappingURL=common.css.map */