@charset "UTF-8";
html {
  scroll-behavior: smooth;
  max-width: 100%;
  margin: 0 auto;
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  color: #404e66;
  width: 100%;
}

a {
  text-decoration: none;
}

a, a:visited, a:hover, a:active {
  color: inherit;
}

.font-sm {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #404e66;
  font-weight: 400;
}
@media (min-width: 960px) {
  .font-sm {
    font-size: 16px;
  }
}

.font-pri {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #404e66;
  font-weight: 700;
}
@media (min-width: 960px) {
  .font-pri {
    font-size: 20px;
  }
}

.font-md {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #404e66;
  font-weight: 400;
}
@media (min-width: 960px) {
  .font-md {
    font-size: 16px;
  }
}

.font-lr {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #404e66;
  font-weight: 400;
  line-height: 2;
}
@media (min-width: 960px) {
  .font-lr {
    font-size: 22px;
    line-height: 2.5;
  }
}

.font-lg, .title {
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #404e66;
  font-weight: 700;
}
@media (min-width: 960px) {
  .font-lg, .title {
    font-size: 40px;
  }
}

.title {
  font-weight: 700;
  margin-bottom: 0;
  display: block;
  color: #404e66;
}

.content-width {
  width: 90%;
  margin: 0 auto;
  max-width: 600px;
}
@media (min-width: 600px) {
  .content-width {
    width: 66%;
    max-width: 1280px;
  }
}

.flex {
  display: flex;
  flex-direction: column;
}
@media (min-width: 600px) {
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.mb-sm {
  margin-bottom: 20px !important;
}

.mb-sec {
  margin-bottom: 70px !important;
}

.mb-md {
  margin-bottom: 40px !important;
}
@media (min-width: 960px) {
  .mb-md {
    margin-bottom: 60px !important;
  }
}

.mb-lg {
  margin-bottom: 120px !important;
}
@media (min-width: 960px) {
  .mb-lg {
    margin-bottom: 160px !important;
  }
}

.pb-sm {
  padding-bottom: 20px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media (min-width: 960px) {
  .pb-lg {
    margin-bottom: 160px !important;
  }
}

.btn-sm {
  display: inline-block;
  color: #404e66;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0 0 0 60px;
  background-image: url(images/btn_off.png);
  background-repeat: no-repeat;
  background-size: 50px;
}
.btn-sm:hover {
  background-image: url(images/btn_on.png);
}

.ttl-img {
  height: 77px;
  position: absolute;
  top: -50px;
  left: 40px;
  z-index: -10;
}
@media (min-width: 600px) {
  .ttl-img {
    height: 100px;
    position: absolute;
    top: -60px;
    left: 20%;
    z-index: -10;
  }
}
@media (min-width: 960px) {
  .ttl-img {
    height: 100px;
    position: absolute;
    top: -60px;
    left: 150px;
    z-index: -10;
  }
}
@media (min-width: 1280px) {
  .ttl-img {
    height: 100px;
    position: absolute;
    top: -63px;
    left: 244px;
    z-index: -10;
  }
}

.pc-only {
  display: none;
}

.tab-only {
  display: none;
}

/* ===========================================
 * SP_ヘッダー
 * ======================================== */
#header {
  background-color: white;
  width: 100vw;
  height: 70px;
  position: fixed;
  top: 0;
  z-index: 200;
}
#header .header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-section .header-logo a {
  display: flex;
  width: 200px;
  padding-left: 20px;
}
#header #menu-button {
  display: block;
  width: 60px;
  height: 60px;
  padding: 20px 10px;
  margin-right: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1000;
}
#header .menu-button-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
#header .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #404e66;
  position: absolute;
  z-index: 100;
}
#header .bar_top {
  top: 0;
}
#header .bar_mid {
  top: 0;
  bottom: 0;
  margin: auto;
}
#header .bar_bottom {
  bottom: 0;
}
#header .menu-text {
  display: inline-block;
  text-align: center;
  font-size: 14px;
}
#header .menu-text-close {
  display: none;
}
#header .menu-text.close {
  display: none;
}
#header .menu-text-close.close {
  display: inline-block;
  text-align: center;
  font-size: 12px;
}
#header #menu-button.close .bar_top {
  transform: translate(0, 10px) rotate(45deg);
  transition: transform 0.3s;
}
#header #menu-button.close .bar_mid {
  opacity: 0;
  transition: opacity 0.3s;
}
#header #menu-button.close .bar_bottom {
  transform: translate(0, -8px) rotate(-45deg);
  transition: transform 0.3s;
}
#header .gnav-sp-wrap {
  display: none;
  background-color: white;
  padding: 30px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
}
#header .header-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 90;
}
#header .nav-list {
  margin: 0 auto;
  display: block;
  list-style: none;
  position: absolute;
  text-align: left;
  padding-left: 0;
}
#header .header-link {
  display: flex;
  margin-top: 90px;
  margin-bottom: 40px;
}
#header .header-link .left {
  display: block;
  font-size: 14px;
  line-height: 3;
  margin-right: 47px;
}
#header .header-link .right {
  display: block;
  font-size: 14px;
  line-height: 3;
}
#header .header-link ul {
  padding-left: 0;
}
#header .header-link li {
  list-style: none;
}
#header .nav-item {
  margin-bottom: 40px;
}
#header .nav-item a {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #404e66;
  font-weight: bold;
}
#header .button-contact-header {
  display: block;
  width: 100%;
  max-width: 335px;
  height: auto;
  color: white;
  background-color: #ffa615;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  background: #ffa615 url(images/mail.png) no-repeat 20px center/30px auto;
  padding: 15px 15px 15px 50px;
}
#header .button-contact-header .contact-text {
  display: inline-block;
}
#header .call .call-ttl {
  font-size: 20px;
  font-weight: 400;
}
#header .call .number {
  font-size: 32px;
  font-weight: 700;
  color: #ffa615;
  background: url(images/tel.png) no-repeat 5px center/24px auto;
  padding: 10px 0 10px 36px;
}
#header .call .business-hours {
  font-size: 14px;
  font-weight: 400;
  color: #404e66;
}

.top-header-line {
  width: 100%;
  height: 2px;
  position: fixed;
  top: 70px;
  z-index: 5;
}

/* ===========================================
 * SP_メインビジュアル
 * ======================================== */
#mainvisual {
  position: relative;
  top: 70px;
}
#mainvisual.top-kv-sp {
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
#mainvisual .copy-wrap {
  padding-top: 20px;
}
#mainvisual .copy-wrap .subcopy {
  font-size: 14px;
  font-weight: 400;
}
#mainvisual .copy-wrap .maincopy {
  font-size: 32px;
  font-weight: 700;
}

/* ===========================================
 * SP_わたしたちの想い
 * ======================================== */
#concept {
  position: relative;
  top: 70px;
  display: block;
  height: auto;
  z-index: 2;
}
#concept .title-concept {
  padding-top: 60px;
}
#concept .ttl-img-concept {
  height: 77px;
  position: absolute;
  top: 15px;
  left: 40px;
  z-index: -10;
}

/* ===========================================
* SP_下層ページ_わたしたちの想い
* ======================================== */
#page-concept {
  position: relative;
  top: 70px;
  display: block;
  height: auto;
  z-index: 2;
}
#page-concept span {
  display: block;
  margin-bottom: 20px;
}

#page-career {
  position: relative;
  top: 70px;
  display: block;
  height: auto;
  z-index: 2;
}
#page-career .name {
  font-weight: 700;
  font-size: 22px;
}
#page-career span {
  display: block;
  margin-bottom: 20px;
}

/* ===========================================
* SP_サービス内容
* ======================================== */
#service {
  position: relative;
  display: block;
  height: auto;
}
#service .title-service {
  padding-top: 60px;
}
#service .ttl-img-service {
  height: 77px;
  position: absolute;
  top: 15px;
  left: 40px;
  z-index: -10;
}

/* ===========================================
* SP_下層ページ_サービス内容
* ======================================== */
#page-plan {
  position: relative;
  top: 70px;
  display: block;
  height: auto;
  z-index: 2;
}
#page-plan .ttl-img-plan-sp {
  height: 77px;
  position: absolute;
  top: -30px;
  left: 40px;
  z-index: -10;
}
#page-plan .box-wrap {
  display: flex;
  width: 100%;
}
#page-plan .box-img {
  width: 20px;
  margin-right: 20px;
}
#page-plan .box-text {
  padding-top: 20px;
  width: 300px;
  display: block;
  margin-right: 0;
}
#page-plan .term-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
#page-plan .pack-title {
  font-size: 22px;
  font-weight: 700;
}
#page-plan img {
  margin: 0 auto;
  padding-bottom: 20px;
}
#page-plan .illust {
  width: 70%;
}

/* ===========================================
* SP_よくあるご質問
* ======================================== */
#faq {
  position: relative;
  display: block;
  height: auto;
}
#faq .ttl-img-faq {
  height: 77px;
  position: absolute;
  top: -50px;
  left: 40px;
  z-index: -10;
}
#faq .faq-body {
  color: #404e66;
}
#faq h3 {
  font-size: 16px;
  font-weight: 700;
  color: #404e66;
}
#faq h3 .Q {
  font-size: 22px;
  font-weight: 700;
  color: #ffa615;
  display: inline-block;
  padding-right: 10px;
}
#faq h4 {
  font-size: 14px;
  font-weight: 400;
  display: inline;
}
#faq h4 .A {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  padding: 0 10px 0 4px;
}
#faq .faq-inner {
  max-width: 75vw;
  margin: 0 auto;
}
#faq .faq-wrap {
  background-color: #FFF2D0;
  padding: 20px;
  margin: 20px auto;
}
#faq .dot-faq {
  height: 1px;
  position: relative;
  margin: 20px auto;
  width: 100%;
}
#faq .dot-faq::before {
  content: "";
  background-image: linear-gradient(to right, #404e66, #404e66 3px, transparent 3px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#faq #faq .dot-right {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
#faq .bg-faq {
  position: absolute;
  z-index: -10;
  right: 0px;
  width: 70%;
  height: 500px;
  top: 400px;
}
#faq .faq-head {
  position: relative;
}
#faq .faq-head::after {
  content: "";
  display: block;
  background-image: url(images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 10px;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
}
#faq .faq-head.open::after {
  transform: rotate(180deg);
  transform-origin: center center;
}
#faq .faq-body {
  display: none;
}
#faq span {
  display: inline;
}
#faq .ttl-img-first-consultation {
  height: 50px;
  width: auto;
  position: absolute;
  top: -28px;
  left: 30px;
  z-index: -10;
}

/* ===========================================
* SP_会社情報
* ======================================== */
#company {
  position: relative;
  display: block;
  height: auto;
}
#company .sns {
  align-items: center;
}
#company .btn-sns {
  width: 50px;
  display: inline-block;
  margin: 0 20px 20px 0;
}
#company .btn-sns:hover {
  opacity: 0.8;
}
#company iframe {
  width: 100%;
  aspect-ratio: 1/1;
}

/* ===========================================
* SP_下層ページ_会社情報
* ======================================== */
#page-company {
  position: relative;
  top: 70px;
  display: block;
  height: auto;
  z-index: 2;
}
#page-company .box-text {
  text-align: center;
}
#page-company .ttl-img-company-info {
  height: 77px;
  position: absolute;
  top: -51px;
  left: 0px;
  z-index: -10;
}
#page-company .ttl-img-access {
  height: 77px;
  position: absolute;
  top: 1050px;
  left: 80px;
  z-index: -10;
}
#page-company .table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  color: #404e66;
  border-top: 1px solid #D5D5D5;
  font-size: 14px;
}
#page-company .table thead {
  background: white;
}
#page-company .table tr {
  border-bottom: 1px solid #D5D5D5;
}
#page-company .table th, #page-company .table td {
  padding: 30px;
  text-align: left;
}
#page-company iframe {
  width: 100%;
  aspect-ratio: 2/1;
}

/* ===========================================
* SP_お問い合わせ
* ======================================== */
#contact {
  background-image: url(images/top-contact-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: -20;
  padding: 125px 0 80px 0;
}
#contact .contact-wrap {
  max-width: 90%;
  margin: 0 auto;
}
#contact .contact-wrap .title {
  text-align: center;
}
#contact .contact-wrap .ttl-img-contact {
  height: 77px;
  position: absolute;
  top: 85px;
  left: 20%;
  z-index: -10;
}
#contact .contact-wrap .font-lr {
  text-align: center;
}
#contact .contact-wrap .button-contact-footer {
  display: block;
  width: 100%;
  max-width: 335px;
  height: auto;
  color: white;
  background-color: #ffa615;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  background: #ffa615 url(images/mail.png) no-repeat 20px center/30px auto;
  padding: 15px 15px 15px 50px;
  margin: 0 auto;
}
#contact .contact-wrap .button-contact-footer:hover {
  opacity: 0.8;
}
#contact .contact-wrap .button-contact-footer .contact-text {
  display: inline-block;
}
#contact .contact-wrap .call .call-ttl {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
#contact .contact-wrap .call .number {
  font-size: 32px;
  font-weight: 700;
  color: #ffa615;
  background: url(images/tel.png) no-repeat 13% center/24px auto;
  padding: 10px 0 10px 36px;
  text-align: center;
}
#contact .contact-wrap .call .business-hours {
  font-size: 14px;
  font-weight: 400;
  color: #404e66;
  text-align: center;
}

/* ===========================================
 * SP_下層ページ_お問い合わせ
 * ======================================== */
#page-contact .number {
  font-size: 32px;
  font-weight: 700;
  color: #ffa615;
  background: url(images/tel.png) no-repeat 5px center/24px auto;
  padding: 10px 0 10px 36px;
}
#page-contact .business-hours {
  font-size: 14px;
  font-weight: 400;
  color: #404e66;
}

#formWrap .label-wrap {
  display: flex;
  color: #404e66;
  font-size: 18px;
  align-items: center;
}
#formWrap .necessary {
  color: white;
  background-color: #ffa615;
  font-size: 12px;
  padding: 5px;
  border-radius: 5%;
  margin-left: 10px;
}
#formWrap .link-privacy-policy {
  text-align: center;
}
#formWrap .external-link {
  display: inline-block;
}

/* ===========================================
* 下層ページ_サンクス
* ======================================== */
#thanks {
  height: 300px;
  margin-bottom: 30px;
}
#thanks .thanks-wrap {
  margin-top: 120px;
}
#thanks .return {
  width: 335px;
  height: 100px;
  background-color: white;
  border: solid 1px #404e66;
  color: #404e66;
  line-height: 100px;
  text-align: center;
  margin: 0 auto;
}
#thanks .return:hover {
  color: white;
  background-color: #ffa615;
  border: solid 1px #ffa615;
}

/* ===========================================
* SP_フッター
* ======================================== */
#footer {
  background-image: white;
  padding: 80px 0px;
}
#footer .footer-logo {
  width: 250px;
}
#footer .footer-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#footer .copyright {
  font-size: 10px;
  font-weight: 400;
}
#footer .footer-link {
  display: flex;
}
#footer .footer-link .left {
  display: block;
  font-size: 12px;
  line-height: 3;
  margin-right: 47px;
}
#footer .footer-link .right {
  display: block;
  font-size: 12px;
  line-height: 3;
}
#footer .footer-link ul {
  padding-left: 0;
}
#footer .footer-link li {
  list-style: none;
}
#footer .footer-link li:hover {
  color: #ffa615;
}

/* ===========================================
 * タブレット用のスタイル
 * ======================================== */
@media (min-width: 600px) {
  .tab-only {
    display: block;
  }
  #header .header-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 90;
    left: 30%;
  }
  #mainvisual .top-kv-sp {
    display: none;
  }
  #mainvisual .tab-only {
    display: block;
  }
  #mainvisual .top-kv-pc {
    display: none;
  }
  #concept .ttl-img-concept {
    height: 100px;
    position: absolute;
    top: 0px;
    left: 170px;
    z-index: -10;
  }
  #service .ttl-img-service {
    height: 100px;
    position: absolute;
    top: -4px;
    left: 20%;
    z-index: -10;
  }
  #contact {
    background-image: url(images/top-contact-sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: -20;
    padding: 125px 0 80px 0;
  }
  #contact .contact-wrap {
    max-width: 90%;
    margin: 0 auto;
  }
  #contact .contact-wrap .title {
    text-align: center;
  }
  #contact .contact-wrap .ttl-img-contact {
    height: 77px;
    position: absolute;
    top: 85px;
    left: 35%;
    z-index: -10;
  }
  #contact .contact-wrap .call .number {
    font-size: 32px;
    font-weight: 700;
    color: #ffa615;
    background: url(images/tel.png) no-repeat 32% center/24px auto;
    padding: 10px 0 10px 36px;
    text-align: center;
  }
  #faq .ttl-img-faq {
    height: 77px;
    position: absolute;
    top: -50px;
    left: 20%;
    z-index: -10;
  }
  #faq .ttl-faq {
    margin-top: 110px;
  }
  #faq .ttl-img-first-consultation {
    height: 80px;
    width: auto;
    position: absolute;
    top: -50px;
    left: 18%;
    z-index: -10;
  }
  #kv-concept .concept-kv-sp {
    display: none;
  }
  #kv-concept .concept-kv-tab {
    display: block;
  }
  #kv-service .service-kv-sp {
    display: none;
  }
  #kv-service .service-kv-tab {
    display: block;
  }
  #page-plan .ttl-img-plan-sp {
    height: 77px;
    position: absolute;
    top: -36px;
    left: 147px;
    z-index: -10;
  }
  #kv-faq .faq-kv-sp {
    display: none;
  }
  #kv-faq .faq-kv-tab {
    display: block;
  }
  #kv-company .company-kv-sp {
    display: none;
  }
  #kv-company .company-kv-tab {
    display: block;
  }
  #kv-privacy .privacy-kv-sp {
    display: none;
  }
  #kv-privacy .privacy-kv-tab {
    display: block;
  }
  #page-company {
    position: relative;
    top: 70px;
    display: block;
    height: auto;
    z-index: 2;
  }
  #page-company .box-text {
    text-align: center;
  }
  #page-company .ttl-img-company-info {
    height: 77px;
    position: absolute;
    top: -51px;
    left: 26%;
    z-index: -10;
  }
  #page-company .ttl-img-access {
    height: 77px;
    position: absolute;
    top: 974px;
    left: 30%;
    z-index: -10;
  }
  #kv-contact .concept-kv-sp {
    display: none;
  }
  #kv-contact .concept-kv-tab {
    display: block;
  }
}
/* ===========================================
* PC用のスタイル
* ======================================== */
@media (min-width: 960px) {
  .pc-only {
    display: block;
  }
  .tab-only {
    display: none;
  }
  .sp-only {
    display: none;
  }
  /* ===========================================
  * PC_ヘッダー_960
  * ======================================== */
  #header {
    width: 100vw;
    padding: 0 40px;
    height: 100px;
    position: fixed;
    align-items: center;
  }
  #header .header-section {
    height: 100%;
    align-items: center;
  }
  #header .header-logo a {
    display: flex;
    align-items: center;
  }
  #header .gnav-pc-wrap {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
  }
  #header .gnav-pc {
    display: block;
    margin-right: 10px;
  }
  #header .gnav-pc li {
    margin-right: 10px;
    display: inline;
    list-style: none;
  }
  #header .gnav-pc li:hover {
    color: #ffa615;
  }
  #header .gnav .pc li a {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    position: relative;
  }
  #header .button-small {
    display: block;
    width: 100%;
    max-width: 160px;
    height: 50px;
    color: white;
    background-color: #ffa615;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    border-radius: 4px;
    background: #ffa615 url(images/mail.png) no-repeat 20px center/30px auto;
    padding: 0px 15px 15px 50px;
  }
  #header .button-small:hover {
    opacity: 0.8;
  }
  #header .button-small .contact-text {
    display: inline-block;
  }
  .top-header-line {
    width: 100%;
    height: 3px;
    position: fixed;
    top: 100px;
    z-index: 5;
  }
  /* ===========================================
  * PC_メインビジュアル_960
  * ======================================== */
  #mainvisual {
    position: relative;
    height: calc(100vh - 100px);
    width: 100%;
    top: 100px;
  }
  #mainvisual.top-kv-pc {
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #mainvisual .copy-wrap {
    position: absolute;
    top: 22%;
    left: 60%;
  }
  #mainvisual .copy-wrap .subcopy {
    font-size: 22px;
    font-weight: 400;
    padding-left: 10px;
  }
  #mainvisual .copy-wrap .maincopy {
    font-size: 60px;
    font-weight: 700;
  }
  #mainvisual .scroll a {
    display: inline-block;
    position: absolute;
    left: 50px;
    top: 365px;
    z-index: 4;
    /* 長さを変えたい時は210を変える */
    padding: 10px 10px 210px;
    overflow: hidden;
    color: #404e66;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
  }
  #mainvisual .scroll a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    /* 長さを変えたい時は200を変える */
    height: 200px;
    background: #404e66;
  }
  #mainvisual .scroll a::after {
    animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
  }
  @keyframes sdl {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    30% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    70% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }
  /* ===========================================
  * PC_わたしたちの想い
  * ======================================== */
  #concept .box-wrap {
    display: flex;
    align-items: center;
  }
  #concept .box-text {
    width: 580px;
    margin-right: 20%;
  }
  #concept .box-img {
    width: 580px;
  }
  #concept .ttl-img-concept {
    height: 100px;
    position: absolute;
    top: 0px;
    left: 150px;
    z-index: -10;
  }
  /* ===========================================
  * PC_下層ページ_わたしたちの想い
  * ======================================== */
  #kv-concept .kv-wrap {
    top: 80px;
    position: relative;
  }
  #kv-concept .kv-copy-wrap {
    position: absolute;
    top: 100px;
    left: 100px;
  }
  #page-concept span {
    text-align: center;
  }
  #page-concept .item {
    display: block;
  }
  #page-career .box-wrap {
    display: flex;
    align-items: center;
  }
  #page-career .box-img {
    width: 580px;
    max-width: 40%;
    margin-right: 120px;
  }
  /* ===========================================
  * PC_サービス内容
  * ======================================== */
  #service .box-wrap {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  #service .title-service {
    padding-top: 0px;
  }
  #service .ttl-img-service {
    height: 100px;
    position: absolute;
    top: -60px;
    left: 700px;
    z-index: -10;
  }
  #service .box-text {
    width: 580px;
  }
  #service .box-img {
    width: 580px;
    margin-right: 20%;
  }
  /* ===========================================
  * PC_下層ページ_サービス内容
  * ======================================== */
  #kv-service .kv-wrap {
    top: 80px;
    position: relative;
  }
  #kv-service .kv-copy-wrap {
    position: absolute;
    top: 100px;
    left: 100px;
  }
  #page-plan {
    position: relative;
  }
  #page-plan .ttl-img-plan {
    height: 120px;
    position: absolute;
    top: -56px;
    left: 577px;
    z-index: -10;
  }
  #page-plan .title {
    text-align: center;
  }
  #page-plan .font-md {
    text-align: center;
    margin-bottom: 40px;
  }
  #page-plan .font-lg {
    text-align: center;
  }
  #page-plan .term-wrap {
    display: flex;
  }
  #page-plan .pack-wrap {
    display: flex;
  }
  #page-plan .term {
    margin-right: 20px;
    flex-direction: column;
  }
  #page-plan .box-wrap {
    display: block;
  }
  #page-plan .box-text {
    padding-top: 20px;
    width: 100%;
    display: flex;
    margin-right: 20px;
  }
  #page-plan .term-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-right: 70px;
    margin-left: 30px;
  }
  #page-plan .pack-title {
    font-size: 20px;
    font-weight: 700;
    width: 25%;
    margin-right: 10px;
    margin-left: 20px;
  }
  #page-plan .text {
    font-size: 16px;
    line-height: 2;
    margin-right: 10px;
  }
  #page-plan img {
    margin: 0 auto;
    padding-bottom: 20px;
  }
  /* ===========================================
  * PC_下層ページ_よくあるご質問
  * ======================================== */
  #faq .title {
    text-align: center;
    margin-top: 200px;
  }
  #faq .ttl-faq {
    margin-top: 220px;
  }
  #faq .ttl-img-faq {
    height: 77px;
    position: absolute;
    top: -50px;
    left: 45%;
    z-index: -10;
  }
  #faq .ttl-img-first-consultation {
    height: 100px;
    width: auto;
    position: absolute;
    top: -60px;
    left: 310px;
    z-index: -10;
  }
  #kv-faq .kv-wrap {
    top: 80px;
    position: relative;
  }
  #kv-faq .kv-copy-wrap {
    position: absolute;
    top: 100px;
    left: 100px;
  }
  /* ===========================================
  * PC_会社情報
  * ======================================== */
  #company .box-wrap {
    display: flex;
  }
  #company .box-text {
    width: 580px;
    margin-right: 20%;
  }
  #company .box-text .sns {
    align-items: center;
  }
  #company .box-text .btn-sns {
    width: 35px;
  }
  #company .box-text .qr-line {
    width: 50px;
    display: inline-block;
    padding-bottom: 10px;
    margin-right: 20px;
  }
  #company .box-img {
    width: 580px;
  }
  /* ===========================================
  * PC_下層ページ_会社情報
  * ======================================== */
  #kv-company .kv-wrap {
    top: 80px;
    position: relative;
  }
  #kv-company .kv-copy-wrap {
    position: absolute;
    top: 100px;
    left: 100px;
  }
  #page-company {
    position: relative;
  }
  #page-company .ttl-img-company-info {
    height: 100px;
    position: absolute;
    top: -51px;
    left: 400px;
    z-index: -10;
  }
  #page-company .ttl-img-access {
    height: 100px;
    position: absolute;
    top: 990px;
    left: 500px;
    z-index: -10;
  }
  #page-company .table {
    font-size: 16px;
  }
  #page-company .btn-google {
    text-align: right;
  }
  /* ===========================================
  * PC_下層ページ_プライバシーポリシー
  * ======================================== */
  #kv-privacy .kv-wrap {
    top: 80px;
    position: relative;
  }
  #kv-privacy .kv-copy-wrap {
    position: absolute;
    top: 100px;
    left: 100px;
  }
  /* ===========================================
  * PC_問い合わせ
  * ======================================== */
  #contact {
    background-image: url(images/top-contact-sp.png);
    padding: 200px 0 100px 0;
  }
  #contact .contact-wrap {
    margin: 0 auto;
    width: 90%;
  }
  #contact .contact-wrap .ttl-img-contact {
    height: 100px;
    position: absolute;
    top: 140px;
    left: 32%;
    z-index: -10;
  }
  #contact .contact-wrap .title {
    text-align: center;
  }
  #contact .contact-wrap .font-lr {
    text-align: center;
  }
  #contact .contact-wrap .button-contact-footer {
    margin: 0 auto;
  }
  #contact .contact-wrap .call {
    text-align: center;
  }
  #contact .contact-wrap .call .number {
    background: url(images/tel.png) no-repeat 40% center/24px auto;
  }
  /* ===========================================
  * PC_下層ページ_お問い合わせ
  * ======================================== */
  #kv-contact .kv-wrap {
    top: 80px;
    position: relative;
  }
  #kv-contact .kv-copy-wrap {
    position: absolute;
    top: 100px;
    left: 100px;
  }
  #page-contact .number-wrap {
    display: flex;
    align-items: baseline;
  }
  /* ===========================================
  * PC_下層ページ_サンクス
  * ======================================== */
  #thanks {
    height: 300px;
    margin-bottom: 30px;
  }
  #thanks .thanks-wrap {
    margin-top: 150px;
  }
  #thanks .thanks-title {
    text-align: center;
  }
  #thanks .thanks-text {
    text-align: center;
  }
  #thanks .button {
    margin: 0 auto;
  }
  #thanks .return {
    width: 335px;
    height: 100px;
    background-color: white;
    border: solid 1px #404e66;
    color: #404e66;
    line-height: 100px;
    text-align: center;
  }
  #thanks .return:hover {
    color: white;
    background-color: #ffa615;
    border: solid 1px #ffa615;
  }
}
/* ===========================================
* PC_1200px以上
* ======================================== */
@media (min-width: 1200px) {
  .pc-only {
    display: block;
  }
  .tab-only {
    display: none;
  }
  .sp-only {
    display: none;
  }
  #header {
    width: 100vw;
    padding: 0 80px;
    height: 100px;
    position: fixed;
    align-items: center;
  }
  #header .header-section {
    height: 100%;
    align-items: center;
  }
  #header .header-logo a {
    display: flex;
    align-items: center;
  }
  #header .gnav-pc-wrap {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
  }
  #header .gnav-pc {
    display: block;
    margin-right: 10px;
  }
  #header .gnav-pc span {
    display: inline;
  }
  #header .gnav-pc li {
    margin-right: 20px;
    display: inline;
    list-style: none;
  }
  #header .gnav .pc li a {
    font-size: 22px;
    font-weight: 400;
    display: inline-block;
    position: relative;
  }
  #header .button-small {
    display: block;
    width: 100%;
    max-width: 195px;
    height: 50px;
    color: white;
    background-color: #ffa615;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    border-radius: 4px;
    background: #ffa615 url(images/mail.png) no-repeat 20px center/30px auto;
    padding: 0px 15px 15px 50px;
  }
  #header .button-small .contact-text {
    display: inline-block;
  }
  .top-header-line {
    width: 100%;
    height: 3px;
    position: fixed;
    top: 100px;
    z-index: 5;
  }
  /* ===========================================
  * PC_メインビジュアル_1200
  * ======================================== */
  #mainvisual {
    position: relative;
    height: 100%;
    width: 100%;
    top: 100px;
    margin-bottom: 0;
  }
  #mainvisual.top-kv-pc {
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #mainvisual .copy-wrap {
    position: absolute;
    top: 35%;
    left: 50%;
  }
  #mainvisual .copy-wrap .subcopy {
    font-size: 22px;
    font-weight: 400;
    padding-left: 10px;
  }
  #mainvisual .copy-wrap .maincopy {
    font-size: 70px;
    font-weight: 700;
  }
  #mainvisual .scroll a {
    display: inline-block;
    position: absolute;
    left: 50px;
    top: 365px;
    z-index: 4;
    /* 長さを変えたい時は210を変える */
    padding: 10px 10px 210px;
    overflow: hidden;
    color: #404e66;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
  }
  #mainvisual .scroll a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    /* 長さを変えたい時は200を変える */
    height: 200px;
    background: #404e66;
  }
  #mainvisual .scroll a::after {
    animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
  }
  @keyframes sdl {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    30% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    70% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }
  /* ===========================================
  * PC_お問い合わせ_1200
  * ======================================== */
  #contact .contact-wrap {
    margin: 0 auto;
    width: 90%;
  }
  #contact .contact-wrap .ttl-img-contact {
    height: 100px;
    position: absolute;
    top: 140px;
    left: 41%;
    z-index: -10;
  }
}
/* ===========================================
* PC_1500px以上
* ======================================== */
@media (min-width: 1500px) {
  .pc-only {
    display: block;
  }
  .tab-only {
    display: none;
  }
  .sp-only {
    display: none;
  }
  #mainvisual .scroll a {
    display: inline-block;
    position: absolute;
    left: 90px;
    top: 569px;
    z-index: 4;
    padding: 10px 10px 210px;
    overflow: hidden;
    color: #404e66;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
  }
  #concept .ttl-img-concept {
    height: 100px;
    position: absolute;
    top: 0px;
    left: 301px;
    z-index: -10;
  }
  #service .ttl-img-service {
    height: 100px;
    position: absolute;
    top: -40px;
    left: 919px;
    z-index: -10;
  }
  #company .ttl-img {
    height: 100px;
    position: absolute;
    top: -63px;
    left: 244px;
    z-index: -10;
  }
  #page-plan .ttl-img-plan {
    height: 120px;
    position: absolute;
    top: -56px;
    left: 684px;
    z-index: -10;
  }
  #page-plan .term-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-right: 90px;
    margin-left: 30px;
  }
}
/* ===========================================
* PC_1920px以上
* ======================================== */
@media (min-width: 1920px) {
  .pc-only {
    display: block;
  }
  .tab-only {
    display: none;
  }
  .sp-only {
    display: none;
  }
  #page-company .ttl-img-company-info {
    height: 100px;
    position: absolute;
    top: -51px;
    left: 692px;
    z-index: -10;
  }
  #contact .contact-wrap .call .number {
    background: url(images/tel.png) no-repeat 43% center/24px auto;
  }
  #page-company .ttl-img-access {
    height: 100px;
    position: absolute;
    top: 990px;
    left: 800px;
    z-index: -10;
  }
}
/* ===========================================
* PC_2540px以上
* ======================================== */
@media (min-width: 2540px) {
  .pc-only {
    display: block;
  }
  .tab-only {
    display: none;
  }
  .sp-only {
    display: none;
  }
  #mainvisual .copy-wrap .maincopy {
    font-size: 120px;
    font-weight: 700;
  }
  #mainvisual .copy-wrap .subcopy {
    font-size: 50px;
    font-weight: 400;
    padding-left: 10px;
  }
  #mainvisual .copy-wrap {
    position: absolute;
    top: 28%;
    left: 52%;
  }
  #concept .ttl-img-concept {
    height: 100px;
    position: absolute;
    top: 18px;
    left: 554px;
    z-index: -10;
  }
  #service .ttl-img-service {
    height: 100px;
    position: absolute;
    top: 27px;
    left: 1333px;
    z-index: -10;
  }
  #company .ttl-img {
    height: 100px;
    position: absolute;
    top: -60px;
    left: 558px;
    z-index: -10;
  }
  #page-plan .ttl-img-plan {
    height: 120px;
    position: absolute;
    top: -56px;
    left: 43%;
    z-index: -10;
  }
  #page-plan .term-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-right: 154px;
    margin-left: 30px;
  }
  #faq .ttl-img-first-consultation {
    height: 100px;
    width: auto;
    position: absolute;
    top: -63px;
    left: 906px;
    z-index: -10;
  }
  #page-company .ttl-img-company-info {
    height: 100px;
    position: absolute;
    top: -51px;
    left: 40%;
    z-index: -10;
  }
  #page-company .ttl-img-access {
    height: 100px;
    position: absolute;
    top: 990px;
    left: 44%;
    z-index: -10;
  }
  #formWrap {
    width: auto;
    margin: 0 auto;
    color: #404e66;
    font-size: 90%;
  }
}/*# sourceMappingURL=style.css.map */