@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.03em;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  color: #1c1c1c;
}

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #1c1c1c;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
}
html body {
  overflow-x: hidden;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0;
    /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
    /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1;
    /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0;
    /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
    /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1;
    /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    /*縦軸の終わりの位置*/
  }
}
.upper {
  text-transform: uppercase;
}

.kb-theme-content-width {
  width: 90%;
}

.cont {
  width: 88.4%;
  max-width: 1160px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex.j-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .sp-block {
    display: block;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-block {
    display: none;
  }
}

.none {
  display: none;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.inter {
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

a {
  color: #1c1c1c;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
}

li {
  list-style: none;
}

@media screen and (min-width: 1240px) {
  .header {
    position: fixed;
    width: 100%;
    height: 95px;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 11;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border-bottom: solid 1px #f2f2f2;
    padding: 0 103px;
  }
  .header__inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .gnav {
    height: 100%;
  }
  .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 30px;
  }
  .gnav ul .ham_block {
    display: none;
  }
  .gnav ul li {
    position: relative;
  }
  .gnav ul li a {
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    font-size: 1.5rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnav ul li a:hover {
    color: #dc000c;
    opacity: 1;
  }
  .gnav ul .header-contact {
    margin-left: 10px;
  }
  .gnav ul .header-contact a {
    color: #fff;
    background: #dc000c;
    padding: 7px 10px 10px;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    line-height: 1;
    border: solid 1px #dc000c;
  }
  .gnav ul .header-contact a::before {
    content: "";
    width: 17px;
    height: auto;
    aspect-ratio: 17/12;
    background-image: url(../img/mail_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: 3px;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .gnav ul .header-contact a:hover {
    background: #fff;
    color: #dc000c;
  }
  .gnav ul .header-contact a:hover::before {
    -webkit-filter: brightness(0) saturate(100%) invert(24%) sepia(54%) saturate(5361%) hue-rotate(343deg) brightness(77%) contrast(134%);
            filter: brightness(0) saturate(100%) invert(24%) sepia(54%) saturate(5361%) hue-rotate(343deg) brightness(77%) contrast(134%);
  }
  .ham-block {
    display: none;
  }
}
.h_logo {
  border-bottom: solid 2px #dc000c;
  margin-top: 13px;
  padding-bottom: 12px;
}
.h_logo img {
  height: 69px;
  display: block;
}

@media screen and (max-width: 1239.9px) {
  .header {
    height: 64px;
    top: 0;
    display: block;
    width: 100%;
    z-index: 11;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
  }
  .header .h_logo {
    position: absolute;
    top: 5px;
    left: 33px;
    border-bottom: solid 1px #dc000c;
    padding-bottom: 5px;
    margin-top: 0;
  }
  .header .h_logo img {
    height: 54px;
  }
  .header .header__inner {
    padding: 0 20px;
    height: 100%;
  }
  .header .header-wrap {
    visibility: hidden;
    opacity: 0;
    border-radius: 0;
    background: #1c1c1c;
    display: block;
    margin: 0;
    width: 100%;
    height: calc(100svh - 64px);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    padding: 40px 8.8% 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 64px;
    left: 0;
    z-index: 90;
    overflow: auto;
  }
  .header .gnav {
    margin-bottom: 40px;
  }
  .header .gnav ul {
    display: block;
    width: 100%;
  }
  .header .gnav ul li {
    border-bottom: solid 1px #fff;
  }
  .header .gnav ul a {
    color: #fff;
    padding: 20px 5px;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
  }
  .header .header-contact {
    display: none;
  }
  .header .f_contact_btn p {
    color: #fff;
  }
  .header .f_contact_btn div {
    max-width: 309px;
    width: 100%;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1239.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 16px;
    right: 22px;
    z-index: 99;
    background: none;
    border: none;
    color: #fff;
    background: #1c1c1c;
    text-align: center;
  }
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    width: 18px;
    height: 1px;
    background: #fff;
  }
  .hamburger__line {
    left: 11px;
    top: 16px;
  }
  .hamburger__line::before {
    content: "";
    top: 4px;
    left: 0;
  }
  .hamburger__line::after {
    content: "";
    top: 8px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active span {
    top: 13px;
    -webkit-transform: translateY(6px) rotate(-35deg);
            transform: translateY(6px) rotate(-35deg);
    width: 20px;
    left: 10px;
  }
  .hamburger.active span::before {
    opacity: 0;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .hamburger.active span::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    width: 20px;
  }
  .header-wrap.active {
    visibility: visible;
    opacity: 1;
  }
}
.btn_wrap {
  margin: 0 auto;
  min-width: 215px;
  min-height: 48px;
  border-radius: 3px;
  overflow: hidden;
  background: #dc000c;
  border: solid 1px #dc000c;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn_wrap a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 43px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.btn_wrap a span {
  width: 21px;
  height: 21px;
  border: solid 1px #fff;
  background: #dc000c;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.btn_wrap a span::before {
  content: "";
  width: 5px;
  height: 9px;
  background-image: url(../img/arrow_solo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}
.btn_wrap a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn_wrap a:hover {
  opacity: 1;
  color: #dc000c;
}
.btn_wrap a:hover::before {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.btn_wrap_bk {
  min-width: 215px;
  min-height: 48px;
  border-radius: 3px;
  overflow: hidden;
  background: #dc000c;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn_wrap_bk a {
  color: #fff;
  background: #1c1c1c;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 43px;
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn_wrap_bk a span {
  width: 21px;
  height: 21px;
  border: solid 1px #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.btn_wrap_bk a span::before {
  content: "";
  width: 5px;
  height: 9px;
  background-image: url(../img/arrow_solo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}
.btn_wrap_bk a:hover {
  background: #dc000c;
  opacity: 1;
}

.page_top {
  margin-top: 95px;
  padding-top: 102px;
  padding-bottom: 90px;
  background: #fff;
}
@media screen and (max-width: 1239.9px) {
  .page_top {
    margin-top: 64px;
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.page_top .page_title h1 {
  color: #dc000c;
  font-size: 2rem;
  margin-bottom: -32px;
  padding-left: 5px;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 1.4444444444;
    padding-left: 0;
  }
}
.page_top .page_title h1::before {
  content: "";
  background: #dc000c;
  width: 11px;
  height: auto;
  aspect-ratio: 11/20;
  clip-path: polygon(70% 0, 100% 0%, 30% 100%, 0% 100%);
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title h1::before {
    width: 10px;
    margin-right: 10px;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.page_top .page_title p {
  font-size: 8rem;
  font-style: italic;
  letter-spacing: -0.01em;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title p {
    font-size: 4.8rem;
    line-height: 1.1458333333;
  }
}
.page_top .cont {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 80px;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont {
    display: block;
  }
}

.page_top2 {
  padding-bottom: 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page_top2 {
    margin-bottom: 40px;
  }
}
.page_top2 picture {
  width: 100%;
  height: 100%;
  display: block;
}
.page_top2 img {
  height: 410px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .page_top2 img {
    height: auto;
    aspect-ratio: 331/210;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top2 .pankuzu {
    margin-bottom: 10px;
  }
}

.pankuzu {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  gap: 0 10px;
}
@media screen and (max-width: 767.9px) {
  .pankuzu {
    margin-bottom: 0;
    margin-top: 5px;
  }
}
.pankuzu a {
  font-size: 1.3rem;
}
.pankuzu span {
  font-size: 1.3rem;
  display: block;
}
.pankuzu span br {
  display: none;
}
.pankuzu .bar {
  width: 8px;
  height: 1px;
  background: #1c1c1c;
}
.pankuzu .current-item {
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .pankuzu .current-item {
    font-weight: 500;
  }
}

.privacy_policy {
  font-weight: 400;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .privacy_policy {
    margin-bottom: 80px;
  }
}
.privacy_policy .cont {
  max-width: 920px;
}
.privacy_policy h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .privacy_policy h2 {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
.privacy_policy h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .privacy_policy h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.privacy_policy p {
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .privacy_policy p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.privacy_policy p:first-child {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .privacy_policy p:first-child {
    margin-bottom: 50px;
  }
}

.form {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: 100%;
  position: relative;
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .form {
    padding-bottom: 80px;
  }
}
.form .wpcf7-response-output {
  position: absolute;
}
.form .cont {
  width: 100%;
}
.form .check {
  color: #dc000c;
  display: inline-block;
  margin-left: 6px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .form .check {
    font-size: 1.4rem;
  }
}
.form .ninni {
  color: #646464;
}
.form table {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table {
    margin-bottom: 40px;
  }
}
.form table tbody {
  display: block;
}
.form table tr {
  margin-bottom: 32px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr {
    margin-bottom: 25px;
  }
}
.form table tr th,
.form table tr .zip_title {
  margin-bottom: 4px;
  display: block;
}
.form table tr th p,
.form table tr .zip_title p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .form table tr th p,
  .form table tr .zip_title p {
    font-size: 1.5rem;
  }
}
.form table tr label {
  display: block;
}
.form table tr label,
.form table tr .wpcf7-list-item-label {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .form table tr label,
  .form table tr .wpcf7-list-item-label {
    font-size: 1.5rem;
  }
}
.form table tr .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.form table tr td {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  line-height: 2;
}
.form table tr td br {
  display: none;
}
.form table tr td input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form table tr td input[type=text],
.form table tr td input[type=email],
.form table tr td input[type=tel],
.form table tr td textarea,
.form table tr td select {
  font-weight: 500;
  width: 100%;
  font-size: 1.6rem;
  border-radius: 8px;
  padding: 20px 24px;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  background: #f2f2f2;
  margin-left: 0;
  height: 64px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td input[type=text],
  .form table tr td input[type=email],
  .form table tr td input[type=tel],
  .form table tr td textarea,
  .form table tr td select {
    padding: 8px 20px;
    height: 38px;
    border-radius: 3px;
  }
}
.form table tr td input[type=text]::-webkit-input-placeholder, .form table tr td input[type=email]::-webkit-input-placeholder, .form table tr td input[type=tel]::-webkit-input-placeholder, .form table tr td textarea::-webkit-input-placeholder, .form table tr td select::-webkit-input-placeholder {
  color: #bebebe;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.form table tr td input[type=text]::-moz-placeholder, .form table tr td input[type=email]::-moz-placeholder, .form table tr td input[type=tel]::-moz-placeholder, .form table tr td textarea::-moz-placeholder, .form table tr td select::-moz-placeholder {
  color: #bebebe;
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
}
.form table tr td input[type=text]:-ms-input-placeholder, .form table tr td input[type=email]:-ms-input-placeholder, .form table tr td input[type=tel]:-ms-input-placeholder, .form table tr td textarea:-ms-input-placeholder, .form table tr td select:-ms-input-placeholder {
  color: #bebebe;
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
}
.form table tr td input[type=text]::-ms-input-placeholder, .form table tr td input[type=email]::-ms-input-placeholder, .form table tr td input[type=tel]::-ms-input-placeholder, .form table tr td textarea::-ms-input-placeholder, .form table tr td select::-ms-input-placeholder {
  color: #bebebe;
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
}
.form table tr td input[type=text]::placeholder,
.form table tr td input[type=email]::placeholder,
.form table tr td input[type=tel]::placeholder,
.form table tr td textarea::placeholder,
.form table tr td select::placeholder {
  color: #bebebe;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767.9px) {
  .form table tr td input[type=text]::-webkit-input-placeholder, .form table tr td input[type=email]::-webkit-input-placeholder, .form table tr td input[type=tel]::-webkit-input-placeholder, .form table tr td textarea::-webkit-input-placeholder, .form table tr td select::-webkit-input-placeholder {
    font-size: 1.5rem;
  }
  .form table tr td input[type=text]::-moz-placeholder, .form table tr td input[type=email]::-moz-placeholder, .form table tr td input[type=tel]::-moz-placeholder, .form table tr td textarea::-moz-placeholder, .form table tr td select::-moz-placeholder {
    font-size: 1.5rem;
  }
  .form table tr td input[type=text]:-ms-input-placeholder, .form table tr td input[type=email]:-ms-input-placeholder, .form table tr td input[type=tel]:-ms-input-placeholder, .form table tr td textarea:-ms-input-placeholder, .form table tr td select:-ms-input-placeholder {
    font-size: 1.5rem;
  }
  .form table tr td input[type=text]::-ms-input-placeholder, .form table tr td input[type=email]::-ms-input-placeholder, .form table tr td input[type=tel]::-ms-input-placeholder, .form table tr td textarea::-ms-input-placeholder, .form table tr td select::-ms-input-placeholder {
    font-size: 1.5rem;
  }
  .form table tr td input[type=text]::placeholder,
  .form table tr td input[type=email]::placeholder,
  .form table tr td input[type=tel]::placeholder,
  .form table tr td textarea::placeholder,
  .form table tr td select::placeholder {
    font-size: 1.5rem;
  }
}
.form table tr td textarea {
  height: 164px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr td textarea {
    height: 170px;
  }
}
.form table tr td .zip_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .zip_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 15px;
  }
}
.form table tr td .zip_wrap::before {
  content: "〒";
  margin-right: 13px;
  font-size: 1.6rem;
  font-weight: 500;
}
.form table tr td .zip_wrap input {
  width: 240px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .zip_wrap input {
    width: 100%;
  }
}
.form table tr td .city_wrap textarea {
  height: 64px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .city_wrap textarea {
    height: 39px;
  }
}
.form table tr td .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .wpcf7-checkbox {
    gap: 3px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form table tr td .wpcf7-checkbox span {
  font-weight: 500;
}
.form table tr .sp-none {
  display: inline;
}
@media screen and (max-width: 767.9px) {
  .form table tr .sp-none {
    display: none;
  }
}
.form table tr .sp-block {
  font-size: 1.3rem;
}
.form table tr .address_wrap textarea {
  height: 60px;
}
@media screen and (max-width: 767.9px) {
  .form table tr .address_wrap textarea {
    height: 48px;
  }
}
.form tr.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}
.form tr.flex-top th {
  width: 100%;
}
.form tr.flex-top td {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767.9px) {
  .form tr.flex-top td {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .form tr.flex-top td:last-child {
    margin-top: 15px;
  }
}
.form tr.flex-top td div p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.form tr.flex-top td div p label {
  min-width: 34px;
}
.form tr.flex-top td div p .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form .wpcf7-not-valid-tip {
  position: absolute;
}
.form input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  margin-right: 8px;
  background: #fff;
  border-radius: 4px;
  padding: 0;
}
@media screen and (max-width: 767.9px) {
  .form input[type=checkbox] {
    width: 17px;
    height: 17px;
    border-radius: 2px;
  }
}
.form .wpcf7-list-item {
  margin-left: 0;
}
.form .wpcf7-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .privacy_policy_check {
  position: relative;
  text-align: center;
  margin-bottom: 4px;
  padding-top: 4px;
}
.form .privacy_policy_check .wpcf7-not-valid-tip {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-wrap: nowrap;
}
.form .privacy_policy_check .wpcf7-list-item {
  margin-left: 0;
}
.form .privacy_policy_check label,
.form .privacy_policy_check p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .privacy_policy_check a,
.form .privacy_policy_check p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check a,
  .form .privacy_policy_check p {
    font-size: 1.6rem;
  }
}
.form .privacy_policy_check .wpcf7-list-item {
  vertical-align: middle;
}
.form .privacy_policy_link {
  margin-bottom: 42px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_link {
    text-align: center;
    margin-bottom: 30px;
  }
}
.form .privacy_policy_link a {
  text-decoration: underline;
  font-size: 1.8rem;
  line-height: 2;
  text-underline-offset: 3px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_link a {
    font-size: 1.5rem;
  }
}
.form .wpcf7-response-output {
  font-size: 1.5rem;
}
.form p.submit {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 215px;
  height: 48px;
  max-width: 100%;
}
.form p.submit::after {
  content: "";
  width: 21px;
  height: 21px;
  background-image: url(../img/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form p.submit br {
  display: none;
}
.form p.submit .wpcf7-spinner {
  position: absolute;
}
.form p.submit input {
  cursor: pointer;
  background: #1c1c1c;
  text-align: left;
  padding-left: 20px;
  color: #fff;
  width: 100%;
  height: 100%;
  font-weight: 600;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;
  border: none;
}
.form p.submit:hover input {
  background: #dc000c;
}
.form p.submit2 {
  margin-top: 20px;
}

.bg_gray {
  background: #f2f2f2;
}

.news_archive {
  padding: 110px 0 160px;
}
@media screen and (max-width: 767.9px) {
  .news_archive {
    padding: 60px 0 80px;
  }
}
.news_archive .cont {
  background: #fff;
  padding: 120px 110px 150px;
}
@media screen and (max-width: 767.9px) {
  .news_archive .cont {
    width: 100%;
    padding: 60px 5.8%;
  }
}
@media screen and (max-width: 767.9px) {
  .news_archive .column_list a {
    padding: 28px 0 25px;
  }
}

@media screen and (max-width: 767.9px) {
  .column_archive .column_list a {
    padding: 30px 0;
  }
}

.column_list {
  border-top: solid 1px #bebebe;
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .column_list {
    margin-bottom: 50px;
  }
}
.column_list li {
  border-bottom: solid 1px #bebebe;
}
.column_list a {
  padding: 36px 0;
  position: relative;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .column_list a {
    padding: 30px 0;
  }
}
.column_list a time {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  display: block;
  margin-bottom: 3px;
}
@media screen and (max-width: 767.9px) {
  .column_list a time {
    margin-bottom: 5px;
  }
}
.column_list a h2 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 60px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 767.9px) {
  .column_list a h2 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-right: 0;
  }
}
.column_list a .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 35px;
  height: auto;
  aspect-ratio: 1/1;
  background: #dc000c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: grid;
  place-content: center;
  border-radius: 50%;
}
@media screen and (max-width: 767.9px) {
  .column_list a .arrow {
    display: none;
  }
}
.column_list a .arrow::before {
  content: "";
  width: 9px;
  height: auto;
  aspect-ratio: 9/15;
  background-image: url(../img/arrow_solo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.column_list a:hover {
  opacity: 1;
}
.column_list a:hover h2 {
  color: #dc000c;
}
.column_list a:hover .arrow {
  background: #1c1c1c;
}

.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagination span,
.pagination a {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination a:hover {
  background: #dc000c;
  color: #fff;
  opacity: 1;
}
.pagination .current {
  background: #dc000c;
  color: #fff;
}
.pagination .prev,
.pagination .next {
  margin: 0 16px;
  border: solid 1px #dc000c;
}
@media screen and (max-width: 767.9px) {
  .pagination .prev,
  .pagination .next {
    margin: 0 10px;
  }
}
.pagination .prev::after,
.pagination .next::after {
  content: "";
  width: 11px;
  height: auto;
  aspect-ratio: 11/16;
  background-image: url(../img/arrow_solo.svg);
  -webkit-filter: brightness(0) saturate(100%) invert(24%) sepia(54%) saturate(5361%) hue-rotate(343deg) brightness(77%) contrast(134%);
          filter: brightness(0) saturate(100%) invert(24%) sepia(54%) saturate(5361%) hue-rotate(343deg) brightness(77%) contrast(134%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}
.pagination .prev:hover::after,
.pagination .next:hover::after {
  -webkit-filter: none;
          filter: none;
}
.pagination .prev::after {
  -webkit-transform: scaleX(-1) translateX(1px);
          transform: scaleX(-1) translateX(1px);
}

.column_archive .column_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-right: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .column_archive .column_list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
}
.column_archive .column_list .img {
  width: 157px;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .column_archive .column_list .img {
    width: 100%;
  }
}
.column_archive .column_list .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 157/106;
  display: block;
  border-radius: 3px;
}
@media screen and (max-width: 767.9px) {
  .column_archive .column_list .img img {
    aspect-ratio: 331/200;
  }
}
.column_archive .column_list .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .column_archive .column_list .detail {
    width: 100%;
  }
}
.column_archive .column_list h2 {
  margin: 0 0 2px;
}
@media screen and (max-width: 767.9px) {
  .column_archive .column_list h2 {
    margin-bottom: 10px;
  }
}
.column_archive .column_list .post_author {
  gap: 8px;
}
@media screen and (max-width: 767.9px) {
  .column_archive .column_list .post_author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.column_archive .column_list .post_author img {
  border-radius: 50%;
}
.column_archive .column_list .post_author .author_name {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}

.page_top_news,
.page_top_column {
  background: #fff;
  margin-top: g1709 95px;
  padding-top: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .page_top_news,
  .page_top_column {
    margin-top: 64px;
    padding-top: 45px;
    padding-bottom: 0;
  }
}
.page_top_news .column_page_title,
.page_top_column .column_page_title {
  max-width: 854px;
  margin: 0 auto;
}
.page_top_news time,
.page_top_column time {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
  line-height: 1.7222222222;
}
@media screen and (max-width: 767.9px) {
  .page_top_news time,
  .page_top_column time {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 2;
  }
}
.page_top_news h1,
.page_top_column h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page_top_news h1,
  .page_top_column h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top_news .cont,
  .page_top_column .cont {
    border-bottom: solid 1px #bebebe;
    padding-bottom: 30px;
  }
}
.page_top_news .post_author,
.page_top_column .post_author {
  margin-top: 5px;
  gap: 15px;
}
@media screen and (max-width: 767.9px) {
  .page_top_news .post_author,
  .page_top_column .post_author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 20px;
  }
}
.page_top_news .post_author img,
.page_top_column .post_author img {
  border-radius: 50%;
}
.page_top_news .post_author .author_name,
.page_top_column .post_author .author_name {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}

.page_top_news .pankuzu {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .page_top_news .pankuzu {
    margin-bottom: 70px;
  }
}

.page_top_column .pankuzu {
  margin-bottom: 65px;
}
@media screen and (max-width: 767.9px) {
  .page_top_column .pankuzu {
    margin-bottom: 70px;
  }
}

.article_news {
  padding: 60px 0 160px;
}
@media screen and (max-width: 767.9px) {
  .article_news {
    background: #fff;
    padding: 30px 0 80px;
  }
}
.article_news .cont {
  max-width: 854px;
}
.article_news .content {
  background: #fff;
  padding: 60px 100px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .article_news .content {
    padding: 0;
    margin-bottom: 50px;
  }
}
.article_news .content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article_news .content p,
.article_news .content a,
.article_news .content span,
.article_news .content li {
  line-height: 2.1;
}
@media screen and (max-width: 767.9px) {
  .article_news .content p,
  .article_news .content a,
  .article_news .content span,
  .article_news .content li {
    line-height: 1.8;
  }
}
.article_news .content figure {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .article_news .content figure {
    margin-bottom: 30px;
  }
}
.article_news .content p {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .article_news .content p {
    margin-bottom: 30px;
  }
}
.article_news .content p:last-child {
  margin-bottom: 0;
}
.article_news .content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .article_news .content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    margin-top: 30px;
  }
}
.article_news .content h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
}
.article_news .content p + ul,
.article_news .content p + ol {
  margin-top: -50px;
}
@media screen and (max-width: 767.9px) {
  .article_news .content p + ul,
  .article_news .content p + ol {
    margin-top: -30px;
  }
}
.article_news .content ul li {
  list-style: disc;
  list-style-position: inside;
}
.article_news .content ol li {
  list-style: decimal;
  list-style-position: inside;
}

.article_column {
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .article_column .content p {
    margin-bottom: 40px;
  }
}
.article_column .content h2 {
  padding-bottom: 10px;
  border-bottom: solid 1px #dc000c;
}
@media screen and (max-width: 767.9px) {
  .article_column .content h2 {
    margin-top: 40px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .article_column .content figure {
    margin-bottom: 40px;
  }
}

#ez-toc-container {
  padding: 60px 65px;
  border-radius: 3px;
  border: none !important;
}
@media screen and (max-width: 767.9px) {
  #ez-toc-container {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 50px 5.8%;
    width: 100vw !important;
  }
}
#ez-toc-container .ez-toc-title {
  font-size: 1.6rem !important;
  font-weight: 500;
  line-height: 2.1;
}
#ez-toc-container .ez-toc-title-container {
  margin-bottom: 20px;
}
#ez-toc-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
#ez-toc-container ul a {
  line-height: 2.1;
  font-size: 1.6rem !important;
}
@media screen and (max-width: 767.9px) {
  #ez-toc-container ul a {
    line-height: 1.6;
    min-height: 34px;
  }
}
#ez-toc-container ul a::before {
  content: counter(item, numeric) !important;
  margin-right: 12px;
}

@media screen and (max-width: 767.9px) {
  .single-works .pankuzu {
    margin-top: 10px;
  }
}

.article_works {
  padding: 128px 0 160px;
}
@media screen and (max-width: 767.9px) {
  .article_works {
    padding: 50px 0 80px;
  }
}
.article_works .cont {
  max-width: 854px;
}
.article_works .works_title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .article_works .works_title {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.article_works .works_youtube_embed {
  margin-bottom: 55px;
  height: auto;
  aspect-ratio: 560/315;
  width: 100%;
  border-radius: 3px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .article_works .works_youtube_embed {
    margin-bottom: 30px;
  }
}
.article_works .works_youtube_embed iframe,
.article_works .works_youtube_embed img {
  width: 100%;
  height: 100%;
}
.article_works table,
.article_works tbody {
  display: block;
}
.article_works table {
  border: solid 1px #9a9a9a;
  border-bottom: none;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .article_works table {
    margin-bottom: 50px;
  }
}
.article_works table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #9a9a9a;
}
.article_works table th,
.article_works table td {
  padding: 17px 20px 17px 30px;
  font-size: 1.7rem;
  font-weight: 600;
}
.article_works table th {
  background: #1c1c1c;
  color: #fff;
  width: 33.7236533958%;
  border-right: solid 1px #9a9a9a;
  display: grid;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .article_works table th {
    width: 140px;
  }
}
.article_works table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background: #fff;
}
.article_works table tr:first-child td .flex {
  gap: 10px 20px;
}
@media screen and (max-width: 767.9px) {
  .article_works table tr:first-child td .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
  }
}
.article_works table tr:first-child td .flex p {
  background: #1c1c1c;
  color: #fff;
  padding: 4px 15px;
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .article_works table tr:first-child td .flex p {
    padding: 4px 5px;
    text-align: center;
    min-width: 134px;
  }
}

.page_top.archive-works .page_top_description {
  max-width: 894px;
  margin: 30px auto 0;
}
.page_top.archive-works .page_top_description p {
  line-height: 2.1;
}

.works_category_wrap {
  padding: 47px 0 46px;
}
@media screen and (max-width: 767.9px) {
  .works_category_wrap {
    padding: 40px 0;
  }
}
.works_category_wrap ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .works_category_wrap ul {
    gap: 20px 21px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767.9px) {
  .works_category_wrap li {
    min-width: calc((100% - 21px) / 2);
  }
}
.works_category_wrap li a {
  display: block;
  color: #dc000c;
  border: solid 1px #dc000c;
  background: #fff;
  padding: 2px 18px 5px;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .works_category_wrap li a {
    font-size: 1.7rem;
    text-align: center;
    padding: 4px 10px 4px;
  }
}
.works_category_wrap li a:hover {
  background: #dc000c;
  color: #fff;
  opacity: 1;
}
.works_category_wrap li.current a {
  background: #dc000c;
  color: #fff;
}

.works_archive {
  margin-top: 80px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .works_archive {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}
.works_archive .works_list {
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .works_archive .works_list {
    margin-bottom: 50px;
  }
}

.works_list {
  gap: 80px 33px;
}
@media screen and (max-width: 767.9px) {
  .works_list {
    gap: 30px;
  }
}
.works_list li {
  width: calc((100% - 66px) / 3);
}
@media screen and (max-width: 767.9px) {
  .works_list li {
    width: 100%;
  }
}
.works_list li img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .works_list li img {
    margin-bottom: 15px;
  }
}
.works_list li .works_list_title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .works_list li .works_list_title {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.works_list li .works_list_category_wrap {
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .works_list li .works_list_category_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.works_list li .works_list_category_wrap p {
  color: #9a9a9a;
  border: solid 1px #9a9a9a;
  padding: 2px 8px 3px;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact_top {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .contact_top {
    margin-bottom: 40px;
  }
}
.contact_top h2 {
  margin-bottom: 22px;
  font-size: 3.2rem;
  text-align: center;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .contact_top h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    margin-inline: -5px;
  }
}
.contact_top .description {
  font-size: 1.8rem;
  line-height: 2.1;
  margin-bottom: 30px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .contact_top .description {
    font-size: 1.6rem;
    text-align: left;
    -webkit-font-feature-settings: unset;
            font-feature-settings: unset;
  }
}
.contact_top .tel_box {
  max-width: 534px;
  border: solid 3px #dc000c;
  margin: 0 auto;
  padding: 28px;
  border-radius: 3px;
}
@media screen and (max-width: 767.9px) {
  .contact_top .tel_box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contact_top .tel_box h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3px;
}
@media screen and (max-width: 767.9px) {
  .contact_top .tel_box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.contact_top .tel_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #dc000c;
  font-size: 4rem;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .contact_top .tel_box a {
    font-size: 3.5rem;
    gap: 10px;
    margin-bottom: 5px;
    line-height: 1.1714285714;
  }
}
.contact_top .tel_box a::before {
  content: "";
  background-image: url(../img/tel_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 33px;
  height: 33px;
}
@media screen and (max-width: 767.9px) {
  .contact_top .tel_box a::before {
    width: 26px;
    height: 26px;
  }
}
.contact_top .tel_box p {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .contact_top .tel_box p {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}

.thanks_wrap {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap {
    margin-bottom: 80px;
  }
}
.thanks_wrap h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap h2 {
    font-size: 2.3rem;
  }
}
.thanks_wrap .description {
  font-size: 1.8rem;
  line-height: 2.1;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap .description {
    font-size: 1.6rem;
    text-align: left;
  }
}

.faq_wrap {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap {
    margin-bottom: 80px;
  }
}
.faq_wrap .cont {
  max-width: 926px;
}
.faq_wrap .description {
  line-height: 2;
  padding-top: 6px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .faq_wrap .description {
    padding-top: 0;
    margin-bottom: 40px;
  }
}

.faq_list_wrap {
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .faq_list_wrap {
    margin-bottom: 50px;
  }
}
.faq_list_wrap h2 {
  font-size: 3.5rem;
  font-weight: 700;
  padding-bottom: 25px;
  margin-bottom: 80px;
  border-bottom: solid 2px #f2f2f2;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .faq_list_wrap h2 {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: solid 1px #dc000c;
  }
}
.faq_list_wrap h2::after {
  content: "";
  width: 215px;
  height: 2px;
  background: #dc000c;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .faq_list_wrap h2::after {
    display: none;
  }
}

.faq_list .accordion_item--accordion {
  margin-bottom: 0;
  padding-bottom: 0;
  background: #f2f2f2;
  margin-bottom: 30px;
  border-radius: 3px;
  padding-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .faq_list .accordion_item--accordion {
    margin-bottom: 20px;
  }
}
.faq_list .accordion_toggle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 25px 70px 19px 73px;
  font-weight: 700;
  line-height: 1.6;
  font-size: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .faq_list .accordion_toggle {
    font-size: 1.5rem;
    padding: 20px 33px 10px 57px;
  }
}
.faq_list .accordion_toggle .inter {
  font-size: 3.5rem;
  font-weight: 700;
  position: absolute;
  left: 20px;
  top: 16px;
}
@media screen and (max-width: 767.9px) {
  .faq_list .accordion_toggle .inter {
    font-size: 2.5rem;
    top: 12px;
  }
}
.faq_list .accordion_toggle:focus-visible {
  outline: 1px solid #1c1c1c;
  outline-offset: 1px;
}
.faq_list .accordion_toggle::before, .faq_list .accordion_toggle::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 43px;
  width: 19px;
  height: 4px;
  background: #1c1c1c;
  border-radius: 999px;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 767.9px) {
  .faq_list .accordion_toggle::before, .faq_list .accordion_toggle::after {
    width: 13px;
    height: 2px;
    top: 32px;
    right: 10px;
  }
}
.faq_list .accordion_toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq_list .accordion_toggle::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq_list .accordion_toggle[aria-expanded=true]::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq_list .accordion_panel {
  overflow: hidden;
  -webkit-transition: max-height 0.25s ease;
  transition: max-height 0.25s ease;
  padding: 0 30px 0 73px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .faq_list .accordion_panel {
    padding: 0 4px 10px 59px;
  }
}
.faq_list .accordion_panel span {
  position: absolute;
  left: 20px;
  top: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #dc000c;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .faq_list .accordion_panel span {
    font-size: 2.5rem;
  }
}
.faq_list .accordion_panel .content {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .faq_list .accordion_panel .content {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.faq_list .accordion_panel .content p {
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .faq_list .accordion_panel .content p {
    font-size: 1.4rem;
  }
}

.equipment_wrap h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .equipment_wrap h2 {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
.equipment_wrap .description {
  line-height: 2.1;
  max-width: 879px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767.9px) {
  .equipment_wrap .description {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767.9px) {
  .equipment_list_wrap {
    width: 100%;
    background: #f2f2f2;
  }
}

.equipment_list {
  padding: 160px 118px;
  background: #f2f2f2;
}
@media screen and (max-width: 767.9px) {
  .equipment_list {
    padding: 60px 0 80px;
    width: 88.4%;
    margin: 0 auto;
    background: none;
  }
}
.equipment_list h3 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .equipment_list h3 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.equipment_list .accordion_item--accordion {
  background: #f2f2f2;
  margin-bottom: 30px;
  border-radius: 3px;
  padding-bottom: 4px;
  background: #fff;
}
.equipment_list .accordion_item--accordion:last-child {
  margin-bottom: 0;
}
.equipment_list .accordion_toggle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border: none;
  cursor: pointer;
  background: #fff;
  padding: 25px 70px 20px 30px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  .equipment_list .accordion_toggle {
    padding-left: 25px;
    padding-right: 50px;
    gap: 0 20px;
  }
}
.equipment_list .accordion_toggle span.equipment_heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: capitalize;
}
.equipment_list .accordion_toggle span.equipment_title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1;
  color: #9a9a9a;
}
.equipment_list .accordion_toggle:focus-visible {
  outline: 1px solid #1c1c1c;
  outline-offset: 1px;
}
.equipment_list .accordion_toggle::before, .equipment_list .accordion_toggle::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 43px;
  width: 19px;
  height: 4px;
  background: #1c1c1c;
  border-radius: 999px;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 767.9px) {
  .equipment_list .accordion_toggle::before, .equipment_list .accordion_toggle::after {
    right: 15px;
    top: 43px;
  }
}
.equipment_list .accordion_toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.equipment_list .accordion_toggle[aria-expanded=true]::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.equipment_list .accordion_panel {
  overflow: hidden;
  -webkit-transition: max-height 0.25s ease;
  transition: max-height 0.25s ease;
}
.equipment_list .accordion_panel .equipment_items {
  gap: 0 50px;
  padding: 0 70px 31px 140px;
}
@media screen and (max-width: 767.9px) {
  .equipment_list .accordion_panel .equipment_items {
    padding: 0 15px 16px 25px;
  }
}
.equipment_list .accordion_panel .equipment_items li {
  font-size: 1.5rem;
  line-height: 2;
  min-width: 275px;
}

/*流れるテキスト*/
.loop-wrap {
  width: 100vw;
  height: 576px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .loop-wrap {
    height: 248px;
  }
}

.loop-wrap p {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.loop-wrap p img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 567px;
  width: auto;
  aspect-ratio: 4157/567;
  max-width: unset;
}
@media screen and (max-width: 767.9px) {
  .loop-wrap p img {
    height: 248px;
  }
}

.loop-wrap p:nth-child(1) {
  -webkit-animation: MoveLeft 100s -50s infinite linear;
  animation: MoveLeft 100s -50s infinite linear;
}

.loop-wrap p:nth-child(2) {
  -webkit-animation: MoveLeft2 100s infinite linear;
  animation: MoveLeft2 100s infinite linear;
}

.loop-wrap--reverse p:nth-child(1),
.loop-wrap--reverse p:nth-child(2) {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

@-webkit-keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.aboutUsSwiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.aboutUsSwiper .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 510px;
  height: auto;
  aspect-ratio: 510/360;
}
@media screen and (max-width: 767.9px) {
  .aboutUsSwiper .swiper-slide {
    width: 210px;
    aspect-ratio: 210/150;
  }
}
.aboutUsSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.company1,
.service_top {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .company1,
  .service_top {
    margin-bottom: 53px;
  }
}
.company1 h2,
.service_top h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .company1 h2,
  .service_top h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.6;
  }
}
.company1 p,
.service_top p {
  line-height: 2.1;
  max-width: 879px;
  margin: 0 auto;
}

.company2 {
  padding-top: 150px;
  padding-bottom: 120px;
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .company2 {
    padding-top: 60px;
    padding-bottom: 73px;
  }
}
.company2 .cont {
  max-width: 1016px;
  position: relative;
  z-index: 2;
}
.company2 h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .company2 h2 {
    font-size: 2.4rem;
    margin-bottom: 46px;
  }
}
.company2 .flex-top {
  gap: 86px;
}
@media screen and (max-width: 767.9px) {
  .company2 .flex-top {
    gap: 30px;
  }
}
.company2 .flex-top .img {
  width: 370px;
  margin-left: 5px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .company2 .flex-top .img {
    margin: 0;
  }
}
.company2 .flex-top .img img {
  display: block;
  height: auto;
  aspect-ratio: 370/444;
}
@media screen and (max-width: 767.9px) {
  .company2 .flex-top .img img {
    aspect-ratio: 331/370;
  }
}
.company2 .flex-top .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-right: 5px;
}
@media screen and (max-width: 767.9px) {
  .company2 .flex-top .detail {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    padding-right: 0;
  }
}
.company2 .flex-top .detail .description {
  line-height: 2.1;
  margin-bottom: 35px;
}
@media screen and (max-width: 767.9px) {
  .company2 .flex-top .detail .description {
    line-height: 1.8;
    margin-bottom: 25px;
  }
}
.company2 .flex-top .detail .sign {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 26px;
  padding-right: 14px;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .company2 .flex-top .detail .sign {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.company2 .flex-top .detail .sign span {
  font-size: 2rem;
  margin-top: -1px;
}
@media screen and (max-width: 767.9px) {
  .company2 .flex-top .detail .sign span {
    line-height: 2;
  }
}
.company2 .loop-wrap {
  position: absolute;
  bottom: -60px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767.9px) {
  .company2 .loop-wrap {
    bottom: -88px;
  }
}

.company_title {
  position: relative;
  border-bottom: solid 2px #f2f2f2;
}
@media screen and (max-width: 767.9px) {
  .company_title {
    padding-top: 20px;
  }
}
.company_title::after {
  content: "";
  width: 180px;
  height: 2px;
  background: #dc000c;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .company_title::after {
    width: 130px;
  }
}
.company_title h2 {
  font-size: 4rem;
  font-weight: 700;
  padding-bottom: 18px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .company_title h2 {
    font-size: 2.5rem;
    line-height: 1.44;
    padding-bottom: 20px;
  }
}
.company_title p {
  position: absolute;
  right: 0;
  bottom: -33px;
  color: #f2f2f2;
  font-size: 13rem;
  letter-spacing: -0.01em;
  font-style: italic;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767.9px) {
  .company_title p {
    font-size: 6.4rem;
    bottom: 0;
    line-height: 1.203125;
  }
}

.company3 {
  padding-top: 160px;
  margin-bottom: 176px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .company3 {
    padding-top: 70px;
    margin-bottom: 70px;
  }
}
.company3 .company_title {
  margin-bottom: 68px;
}
@media screen and (max-width: 767.9px) {
  .company3 .company_title {
    margin-bottom: 20px;
  }
}
.company3 .company_table {
  max-width: 736px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767.9px) {
  .company3 .company_table {
    margin-bottom: 50px;
  }
}
.company3 .company_table table,
.company3 .company_table tbody {
  display: block;
}
.company3 .company_table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0;
  border-bottom: solid 1px #bebebe;
}
@media screen and (max-width: 767.9px) {
  .company3 .company_table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
}
.company3 .company_table tr td,
.company3 .company_table tr th {
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .company3 .company_table tr td,
  .company3 .company_table tr th {
    font-size: 1.6rem;
  }
}
.company3 .company_table tr th {
  width: 235px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .company3 .company_table tr th {
    width: 100%;
    margin-bottom: 8px;
  }
}
.company3 .company_table tr td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .company3 .company_table tr td {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.company4 {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .company4 {
    margin-bottom: 80px;
  }
}
.company4 .company_title {
  margin-bottom: 95px;
}
@media screen and (max-width: 767.9px) {
  .company4 .company_title {
    margin-bottom: 20px;
  }
}
.company4 .map {
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .company4 .map {
    margin-bottom: 20px;
  }
}
.company4 .map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1160/547;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  display: block;
}
@media screen and (max-width: 767.9px) {
  .company4 .map iframe {
    aspect-ratio: 331/180;
  }
}
.company4 .flex {
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767.9px) {
  .company4 .flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.company4 .flex p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .company4 .flex p {
    font-size: 1.7rem;
  }
}

.f_contact {
  padding-top: 160px;
  padding-bottom: 38px;
  background-image: url(../img/f_contact.jpg);
  background-size: cover;
  background-position: bottom right;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .f_contact {
    padding-top: 40px;
    padding-bottom: 133px;
    background-image: url(../img/f_contact-sp.jpg);
  }
}
.f_contact .cont {
  background: #fff;
  max-width: 839px;
  margin: 0 auto;
  padding: 65px 20px 33px;
  border-radius: 3px;
}
@media screen and (max-width: 767.9px) {
  .f_contact .cont {
    padding: 40px 28px 28px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
  }
}
.f_contact .inner {
  width: 90%;
  max-width: 661px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .f_contact .inner {
    width: 100%;
  }
}
.f_contact h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
  color: #dc000c;
}
@media screen and (max-width: 767.9px) {
  .f_contact h2 {
    font-size: 1.7rem;
    margin-bottom: 5px;
  }
}
.f_contact h2::before {
  content: "";
  background: #dc000c;
  width: 11px;
  height: auto;
  aspect-ratio: 11/20;
  clip-path: polygon(70% 0, 100% 0%, 30% 100%, 0% 100%);
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 767.9px) {
  .f_contact h2::before {
    width: 10px;
    margin-right: 10px;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.f_contact .f_contact_title {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .f_contact .f_contact_title {
    margin-bottom: 12px;
    display: block;
  }
}
.f_contact .f_contact_title .sub_title {
  font-style: italic;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767.9px) {
  .f_contact .f_contact_title .sub_title {
    font-size: 4.5rem;
    line-height: 1.2;
  }
}
.f_contact .f_contact_title .f_contact_title_circle {
  gap: 10px;
  margin-top: -5px;
}
@media screen and (max-width: 767.9px) {
  .f_contact .f_contact_title .f_contact_title_circle {
    margin-top: 0;
    position: absolute;
    top: 16px;
    right: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.f_contact .f_contact_title .f_contact_title_circle p {
  display: grid;
  place-content: center;
  background: #dc000c;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  width: 72px;
  height: 72px;
}
@media screen and (max-width: 767.9px) {
  .f_contact .f_contact_title .f_contact_title_circle p {
    font-size: 1.3rem;
    width: 68px;
    height: 68px;
  }
}
.f_contact h3 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 11px;
}
@media screen and (max-width: 767.9px) {
  .f_contact h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: left;
    margin-right: -10px;
  }
}
.f_contact .description {
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 28px;
}
@media screen and (max-width: 767.9px) {
  .f_contact .description {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: left;
  }
}

.f_contact_btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .f_contact_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.f_contact_btn div {
  width: 265px;
  max-width: 100%;
}
.f_contact_btn a {
  color: #fff;
  background: #dc000c;
  height: 59px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
}
.f_contact_btn .tel a {
  margin-bottom: 3px;
  gap: 12px;
  font-size: 2.8rem;
  font-weight: 600;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.f_contact_btn .tel a::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../img/tel_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(101%);
}
.f_contact_btn .tel p {
  text-align: center;
  font-size: 1.3rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 600;
}
.f_contact_btn .mail a {
  gap: 12px;
  font-size: 1.8rem;
}
.f_contact_btn .mail a::before {
  content: "";
  width: 23px;
  height: 17px;
  background-image: url(../img/mail_icon2.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.letter20 {
  letter-spacing: -0.2em;
}

.letter30 {
  letter-spacing: -0.3em;
  margin-right: -3px;
}

.footer {
  margin-top: -1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #111113), color-stop(90%, #141416));
  background: linear-gradient(90deg, #111113 10%, #141416 90%);
  padding-top: 30px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding-top: 0;
    padding-bottom: 25px;
  }
}
.footer .cont {
  max-width: 840px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 44px 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .footer .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.footer * {
  color: #fff;
}
.footer .left {
  position: relative;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .footer .left {
    margin-top: -112px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer .left .f_logo a {
  display: block;
  background: #fff;
  border-radius: 3px;
  padding: 21px 14px 22px;
}
@media screen and (max-width: 767.9px) {
  .footer .left .f_logo a {
    padding: 13px 8px 14px 9px;
  }
}
.footer .left .f_logo a img {
  width: 155px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .footer .left .f_logo a img {
    width: 100px;
  }
}
.footer .left .company_name {
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 2;
  font-size: 1.6rem;
  margin-top: 3px;
}
@media screen and (max-width: 767.9px) {
  .footer .left .company_name {
    margin: 0;
  }
}
.footer .left address {
  margin-bottom: 5px;
  font-style: normal;
  font-size: 1.4rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767.9px) {
  .footer .left address {
    margin-bottom: 0;
  }
}
.footer .left a {
  font-size: 1.4rem;
  text-decoration: underline;
}
.footer .fnav {
  margin-left: auto;
  margin-top: 20px;
  margin-right: -30px;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
}
.footer .fnav ul {
  gap: 15px 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
}
@media screen and (max-width: 767.9px) {
  .footer .fnav ul {
    gap: 10px 18px;
  }
}
.footer .fnav ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .fnav ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  gap: 5px;
  font-size: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav ul a {
    font-size: 1.5rem;
    line-height: 1.4666666667;
  }
}
.footer .fnav ul a::before {
  content: "";
  width: 11px;
  height: 20px;
  background: #dc000c;
  clip-path: polygon(70% 0, 100% 0%, 30% 100%, 0% 100%);
}
.footer .f_bottom {
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .footer .f_bottom {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
}
.footer .f_bottom a,
.footer .f_bottom small {
  font-size: 1.3rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .footer .f_bottom small {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 767.9px) {
  .service_top {
    margin-bottom: 70px;
  }
}
.service_top p {
  max-width: 697px;
}

.service_list {
  background: #1c1c1c;
  padding: 22px 0 20px;
}
@media screen and (max-width: 767.9px) {
  .service_list {
    padding: 25px 0;
  }
}
.service_list .cont {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 60px;
}
@media screen and (max-width: 767.9px) {
  .service_list .cont {
    gap: 15px 17px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.service_list a {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: solid 1px transparent;
}
@media screen and (max-width: 767.9px) {
  .service_list a {
    padding-bottom: 0;
    border: none;
  }
}
@media screen and (max-width: 767.9px) {
  .service_list a {
    font-size: 1.5rem;
  }
}
.service_list a::after {
  content: "";
  background-image: url(../img/arrow_solo.svg);
  width: 8px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: inline-block;
  margin-left: 13px;
  vertical-align: middle;
}
@media screen and (max-width: 767.9px) {
  .service_list a::after {
    width: 4px;
    height: 7px;
    margin-left: 5px;
  }
}
.service_list a:hover {
  border-bottom: solid 1px #dc000c;
  opacity: 1;
}

.service_section {
  padding: 160px 0;
}
@media screen and (max-width: 767.9px) {
  .service_section {
    padding: 60px 0;
  }
}
.service_section .service_two_col {
  margin-bottom: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_two_col {
    margin-bottom: 40px;
    gap: 30px;
  }
}
.service_section .service_two_col .service_col_text {
  width: 42.2%;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_two_col .service_col_text {
    width: 100%;
  }
}
.service_section .service_two_col .service_col_text .service_section_label {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 22px;
  color: #dc000c;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.service_section .service_two_col .service_col_text .service_section_label img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  -o-object-position: left;
     object-position: left;
}
.service_section .service_two_col h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 25px;
  margin-right: -10px;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_two_col h2 {
    margin-bottom: 15px;
  }
}
.service_section .service_two_col h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_two_col h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
.service_section .service_two_col .service_description {
  margin-bottom: 30px;
  line-height: 2.1;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_two_col .service_description {
    margin-bottom: 0;
    line-height: 1.8;
  }
}
.service_section .service_two_col .btn_wrap {
  margin-left: 0;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_two_col .btn_wrap {
    margin-top: 30px;
  }
}
.service_section .service_col_image {
  width: 48.3%;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_col_image {
    width: 100%;
  }
}
.service_section .service_col_image img {
  display: block;
  height: auto;
  aspect-ratio: 56/60;
  border-radius: 3px;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_col_image img {
    aspect-ratio: 331/350;
  }
}
.service_section .service_price {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_price {
    margin-bottom: 35px;
  }
}
.service_section .service_price h3 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 42px;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_price h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.service_section .service_price .service_price_contact {
  text-align: center;
  z-index: 2;
  width: 100%;
  font-weight: 600;
  position: relative;
}
.service_section .service_price .service_price_contact span {
  font-size: 2.2rem;
  text-decoration: underline;
  text-decoration-thickness: 9px;
  text-decoration-color: #ffa0a6;
  text-underline-offset: -4px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_price .service_price_contact span {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.service_section .service_price .service_price_note {
  margin-bottom: 24px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .service_section .service_price .service_price_note {
    font-size: 1.6rem;
    margin-bottom: 22px;
  }
  .service_section .service_price .service_price_note span {
    display: block;
    height: 10px;
  }
}

.service_tv .service_price .service_price_note {
  margin-left: 0;
  padding-left: 30px;
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  .service_tv .service_price .service_price_note {
    padding: 0;
    margin: 0 -10px 24px;
  }
}

.service_price_table_tv {
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service_price_table_tv {
    margin-bottom: 10px;
  }
}
.service_price_table_tv tbody {
  display: block;
  border-bottom: solid 1px #9a9a9a;
  border-bottom: none;
}
.service_price_table_tv tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #9a9a9a;
}
@media screen and (max-width: 767.9px) {
  .service_price_table_tv tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service_price_table_tv th {
  width: 47.2%;
  background: #1c1c1c;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 30px 30px 28px;
}
@media screen and (max-width: 767.9px) {
  .service_price_table_tv th {
    width: 100%;
    padding: 15px 17px;
    font-size: 1.7rem;
    text-align: center;
    min-height: 84px;
    display: grid;
    place-items: center;
  }
}
.service_price_table_tv td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 32px 80px 29px;
  font-size: 1.8rem;
  font-weight: 600;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .service_price_table_tv td {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    padding: 16px 10px 14px;
    font-size: 1.7rem;
    min-height: 84px;
    display: grid;
    place-items: center;
    text-align: center;
  }
}

.service_works .cont {
  background: #fff;
  padding: 80px 68px;
  border-radius: 3px;
}
@media screen and (max-width: 767.9px) {
  .service_works .cont {
    padding: 50px 30px;
    overflow: hidden;
  }
}
.service_works .cont.bg_gray {
  background: #f2f2f2;
}
.service_works h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .service_works h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    margin-inline: -15px;
  }
}
.service_works .works_list {
  gap: 30px;
  margin-bottom: 40px;
}
.service_works .works_list li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767.9px) {
  .service_works .works_list li {
    width: 100%;
  }
}
.service_works .btn_wrap a {
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767.9px) {
  .service_works_swiper {
    position: relative;
  }
  .service_works_swiper .works_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
  }
  .service_works_swiper .works_list > li.swiper-slide {
    width: 100%;
  }
  .service_works_swiper .top_works_prev,
  .service_works_swiper .top_works_next {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    background: #dc000c;
    position: absolute;
    top: 54px;
    z-index: 10;
    display: grid;
    place-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
  }
  .service_works_swiper .top_works_prev::before,
  .service_works_swiper .top_works_next::before {
    content: "";
    width: 13px;
    height: 22px;
    background-image: url(../img/arrow_solo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .service_works_swiper .top_works_prev.swiper-button-disabled,
  .service_works_swiper .top_works_next.swiper-button-disabled {
    opacity: 0.6;
    pointer-events: none;
  }
  .service_works_swiper .top_works_prev {
    left: -20px;
  }
  .service_works_swiper .top_works_prev::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .service_works_swiper .top_works_next {
    right: -20px;
  }
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_two_col h2 {
    font-size: 3.6rem;
    line-height: 1.6;
  }
}

.service_corporate .service_price .service_price_title {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_title {
    margin-bottom: 40px;
  }
}
.service_corporate .service_price .scroll-hint {
  margin-bottom: 46px;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .scroll-hint {
    display: none;
  }
}
.service_corporate .service_price .service_price_table_corporate_sp {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_table_corporate_sp {
    display: block;
  }
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_item--accordion {
    overflow: hidden;
    background: #fff;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_item--accordion:not(:last-child) {
    margin-bottom: 30px;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_toggle {
    width: 100%;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 20px 20px 24px;
    position: relative;
    display: block;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_toggle {
    padding: 10px 12px 13px 20px;
    border: none;
  }
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_toggle .accordion_icon {
    position: absolute;
    top: 50px;
    right: 12px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_toggle .accordion_icon::before,
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_toggle .accordion_icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 21px;
    height: 2px;
    background: #000000;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 999px;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_toggle .accordion_icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_toggle[aria-expanded=true] .accordion_icon::after {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .service_corporate .service_price .service_price_plan--3 {
    padding-top: 49px;
    margin-top: 42px;
  }
  .service_corporate .service_price .service_price_plan--3 .accordion_toggle {
    position: relative;
  }
  .service_corporate .service_price .service_price_plan--3 .accordion_toggle .recommend {
    position: absolute;
    top: -49px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .service_corporate .service_price .service_price_plan--3 .service_price_plan_panel {
    border-color: #dc000c !important;
    background: #fdf2f3;
  }
  .service_corporate .service_price .service_price_plan--4 .price {
    padding-left: 64px;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan--1 .accordion_toggle,
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan--4 .accordion_toggle {
    background: #000;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan--2 .accordion_toggle {
    background: #242834;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan--3 .accordion_toggle {
    background: #dc000c;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .price {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .price .inter {
    font-size: 4.8rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .price .kara {
    margin: 0 5px;
    font-size: 2.6rem;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_toggle .text {
    background: #fff;
    text-align: center;
    padding: 3px 10px 1px;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: -5px;
    max-width: 241px;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .recommend {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    color: #dc000c;
    font-size: 2.4rem;
    font-weight: 700;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .recommend::before, .service_corporate .service_price .service_price_table_corporate_sp .recommend::after {
    content: "";
    width: 22px;
    height: 40px;
    background-image: url(../img/slash.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .recommend::after {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .service_corporate .service_price .service_price_table_corporate_sp .accordion_panel {
    overflow: hidden;
    -webkit-transition: max-height 0.25s ease;
    transition: max-height 0.25s ease;
    background: #fff;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan_panel {
    padding: 0;
    border: solid 2px #1c1c1c;
    border-top: none;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan_panel > .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem;
    font-weight: 600;
    background: transparent;
    padding: 24px 30px 23px 34px;
    border-bottom: solid 1px #1c1c1c;
    margin-top: 0;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan_panel > .text span {
    min-width: 34px;
    display: inline-grid;
    place-items: center;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan_panel .description {
    border-bottom: solid 1px #9a9a9a;
    padding: 23px 0 20px;
    margin: 0 34px;
    font-size: 1.5rem;
  }
  .service_corporate .service_price .service_price_table_corporate_sp .service_price_plan_panel .usage {
    padding: 15px 34px 23px;
    font-size: 1.5rem;
  }
}
.service_corporate .service_price .service_price_table_corporate {
  min-width: 1160px;
  padding-top: 45px;
  display: block;
  padding-bottom: 4px;
}
.service_corporate .service_price .service_price_table_corporate tbody,
.service_corporate .service_price .service_price_table_corporate thead {
  display: block;
}
.service_corporate .service_price .service_price_table_corporate tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service_corporate .service_price .service_price_table_corporate td,
.service_corporate .service_price .service_price_table_corporate th {
  width: 25%;
  border-right: solid 2px #000;
}
.service_corporate .service_price .service_price_table_corporate thead th:nth-child(1) {
  background: #000;
}
.service_corporate .service_price .service_price_table_corporate thead th:nth-child(2) {
  background: #242834;
  border-right: solid 3px #dc000c;
}
.service_corporate .service_price .service_price_table_corporate thead th:nth-child(3) {
  background: #dc000c;
  position: relative;
  border-right: solid 4px #dc000c;
}
.service_corporate .service_price .service_price_table_corporate thead th:nth-child(3) .recommend {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  top: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  color: #dc000c;
  font-size: 2.4rem;
  font-weight: 700;
}
.service_corporate .service_price .service_price_table_corporate thead th:nth-child(3) .recommend::before, .service_corporate .service_price .service_price_table_corporate thead th:nth-child(3) .recommend::after {
  content: "";
  width: 22px;
  height: 40px;
  background-image: url(../img/slash.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.service_corporate .service_price .service_price_table_corporate thead th:nth-child(3) .recommend::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.service_corporate .service_price .service_price_table_corporate thead th:nth-child(4) {
  background: #000;
}
.service_corporate .service_price .service_price_table_corporate thead th {
  padding: 20px 20px 30px;
}
.service_corporate .service_price .service_price_table_corporate thead .price {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: -15px;
}
.service_corporate .service_price .service_price_table_corporate thead .price .inter {
  font-size: 4.8rem;
  line-height: 1.6041666667;
  font-weight: 700;
}
.service_corporate .service_price .service_price_table_corporate thead .price .kara {
  margin: 0 5px;
  font-size: 2.6rem;
}
.service_corporate .service_price .service_price_table_corporate thead .text {
  background: #fff;
  text-align: center;
  padding: 9px 10px 7px;
  font-size: 1.9rem;
  font-weight: 600;
}
.service_corporate .service_price .service_price_table_corporate tbody {
  border-left: solid 2px #000;
  border-bottom: solid 2px #000;
}
.service_corporate .service_price .service_price_table_corporate tbody tr {
  border-bottom: solid 1px #9a9a9a;
}
.service_corporate .service_price .service_price_table_corporate tbody tr:last-child {
  border-bottom: none;
}
.service_corporate .service_price .service_price_table_corporate tbody td {
  padding: 24px 20px;
  font-size: 1.5rem;
}
.service_corporate .service_price .service_price_table_corporate tbody td .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 600;
}
.service_corporate .service_price .service_price_table_corporate tbody td:nth-child(2),
.service_corporate .service_price .service_price_table_corporate tbody td:nth-child(3) {
  border-right: 4px solid #dc000c;
}
.service_corporate .service_price .service_price_table_corporate tbody td:nth-child(3) {
  background: #fdf2f3;
}
.service_corporate .service_price .service_price_table_corporate tbody tr.description_row {
  border: none;
}
.service_corporate .service_price .service_price_table_corporate tbody tr.description_row td {
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 0;
}
.service_corporate .service_price .service_price_table_corporate tbody tr.description_row td .description {
  border-bottom: solid 1px #9a9a9a;
  padding-bottom: 20px;
  height: 100%;
}
.service_corporate .service_price .service_price_table_corporate tbody tr.usage_row td {
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 15px;
}
.service_corporate .service_price .service_price_table_corporate tbody tr.usage_row td:nth-child(3) {
  position: relative;
}
.service_corporate .service_price .service_price_table_corporate tbody tr.usage_row td:nth-child(3)::after {
  content: "";
  width: calc(100% + 4px);
  height: 4px;
  background: #dc000c;
  position: absolute;
  left: -2px;
  bottom: -2px;
  z-index: 2;
}
.service_corporate .service_price .service_price_corporate_list_wrap {
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_corporate_list_wrap {
    margin-top: 20px;
    margin-bottom: 22px;
  }
}
.service_corporate .service_price .service_price_corporate_list_wrap table {
  border: solid 2px #1c1c1c;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.service_corporate .service_price .service_price_corporate_list_wrap table tr {
  border-bottom: solid 1px #1c1c1c;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_corporate_list_wrap table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.service_corporate .service_price .service_price_corporate_list_wrap table th,
.service_corporate .service_price .service_price_corporate_list_wrap table td {
  font-size: 1.8rem;
  padding: 15px 20px;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_corporate_list_wrap table th,
  .service_corporate .service_price .service_price_corporate_list_wrap table td {
    font-size: 1.6rem;
    padding: 15px 12px;
  }
}
.service_corporate .service_price .service_price_corporate_list_wrap table th {
  width: 180px;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_corporate_list_wrap table th {
    width: 138px;
    padding-right: 0;
  }
}
.service_corporate .service_price .service_price_corporate_list_wrap table td {
  border-left: solid 1px #1c1c1c;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_corporate_list_wrap table td {
    border-left: none;
  }
}
.service_corporate .service_price .service_price_corporate_list_wrap table td:nth-child(2) {
  width: 220px;
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_corporate_list_wrap table td:nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .service_corporate .service_price .service_price_corporate_list_wrap table td:last-child {
    width: 100%;
    border-top: dotted 1px #9a9a9a;
    font-size: 1.5rem;
    padding: 15px;
  }
}

.service_price .service_price_table_drone_wrap {
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .service_price .service_price_table_drone_wrap {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.service_price .service_price_table_drone {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  min-width: 380px;
  max-width: 560px;
}
@media screen and (max-width: 767.9px) {
  .service_price .service_price_table_drone {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
    min-width: unset;
  }
}
.service_price .service_price_table_drone_title {
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .service_price .service_price_table_drone_title {
    font-size: 2.4rem;
    padding: 20px;
  }
}
.service_price .service_price_table_drone_title span {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 767.9px) {
  .service_price .service_price_table_drone_title span {
    font-size: 1.5rem;
  }
}
.service_price .price_flex {
  background: #fff;
  padding: 10px 0 33px;
  position: relative;
  border: solid 2px #1c1c1c;
}
@media screen and (max-width: 767.9px) {
  .service_price .price_flex {
    padding: 25px 0 27px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.service_price .price_flex div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-left: 10px;
}
.service_price .price_flex .text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .service_price .price_flex .text {
    font-size: 1.6rem;
  }
}
.service_price .price_flex .price {
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: -6px;
}
.service_price .price_flex .price .inter {
  font-size: 6.5rem;
  font-weight: 700;
  margin-right: 5px;
  line-height: 1.6;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
@media screen and (max-width: 767.9px) {
  .service_price .price_flex .price .inter {
    line-height: 1.2153846154;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    margin-right: 0;
  }
}
.service_price .price_flex .price .kara {
  margin-left: 8px;
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .service_price .price_flex .price .kara {
    margin-left: 2px;
  }
}
.service_price .service_price_note {
  margin: 0 auto;
}
.service_price .service_price_drone_set {
  margin-top: 70px;
  border: solid 2px #1c1c1c;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .service_price .service_price_drone_set {
    margin-top: 40px;
  }
}
.service_price .service_price_drone_set .service_price_drone_set_title {
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .service_price .service_price_drone_set .service_price_drone_set_title {
    font-size: 2.4rem;
    padding: 20px;
  }
}
.service_price .service_price_drone_set .service_price_drone_set_text {
  background: #fff;
  padding: 48px;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .service_price .service_price_drone_set .service_price_drone_set_text {
    font-size: 2rem;
    padding: 30px 20px;
  }
}

.service_drone .service_price .service_price_note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.service_drone .service_price .service_price_note span {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .service_drone .service_price .service_price_note span {
    height: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .service_drone {
    padding-bottom: 70px;
  }
}

.post_production {
  padding: 212px 0 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .post_production {
    padding-top: 165px;
  }
}
.post_production::before {
  content: "";
  width: 100%;
  height: calc(100% - 64px);
  background-image: url(../img/post_production_bg2.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .post_production::before {
    background-image: url(../img/post_production_bg-sp.jpg);
    height: 250px;
  }
}
.post_production .cont {
  max-width: 930px;
  background: #fff;
  padding: 2px 40px 92px;
}
@media screen and (max-width: 767.9px) {
  .post_production .cont {
    padding: 30px 0 0;
  }
}
.post_production h2 {
  color: #dc000c;
  font-style: italic;
  font-size: 8rem;
  line-height: 2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .post_production h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
.post_production h3 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .post_production h3 {
    font-size: 2.3rem;
  }
}
.post_production p {
  line-height: 2.1;
  max-width: 636px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .post_production p {
    line-height: 1.8;
  }
}

.service_flow {
  padding-top: 100px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .service_flow {
    padding-top: 60px;
    margin-bottom: 80px;
  }
}
.service_flow .cont {
  max-width: 931px;
}
.service_flow .company_title {
  margin-bottom: 68px;
}
@media screen and (max-width: 767.9px) {
  .service_flow .company_title {
    margin-bottom: 20px;
  }
}
.service_flow .company_title h2 {
  font-size: 3.5rem;
  padding-bottom: 26px;
}
@media screen and (max-width: 767.9px) {
  .service_flow .company_title h2 {
    padding-bottom: 20px;
    font-size: 2.5rem;
  }
}
.service_flow .company_title p {
  font-size: 11.5rem;
}
@media screen and (max-width: 767.9px) {
  .service_flow .company_title p {
    font-size: 6.4rem;
  }
}
.service_flow ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 71px;
}
@media screen and (max-width: 767.9px) {
  .service_flow ol {
    gap: 20px;
  }
}
.service_flow ol li {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .service_flow ol li {
    position: relative;
    padding-bottom: 28px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 6px;
  }
  .service_flow ol li::before {
    content: "";
    width: 8px;
    height: 13px;
    display: block;
    background-image: url(../img/arrow_solo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(4310%) hue-rotate(347deg) brightness(95%) contrast(106%);
            filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(4310%) hue-rotate(347deg) brightness(95%) contrast(106%);
  }
}
.service_flow ol li .no {
  line-height: 1;
  width: 105px;
  font-size: 5rem;
  color: #9a9a9a;
  font-weight: 500;
  font-style: italic;
  position: relative;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767.9px) {
  .service_flow ol li .no {
    position: absolute;
    top: 7px;
    left: 0;
    font-size: 4rem;
  }
}
.service_flow ol li .no::before {
  content: "";
  width: 8px;
  height: 13px;
  display: block;
  background-image: url(../img/arrow_solo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 27px;
  bottom: -10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(4310%) hue-rotate(347deg) brightness(95%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(4310%) hue-rotate(347deg) brightness(95%) contrast(106%);
}
@media screen and (max-width: 767.9px) {
  .service_flow ol li .no::before {
    display: none;
  }
}
.service_flow ol li .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .service_flow ol li .detail {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.service_flow ol li .detail h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}
@media screen and (max-width: 767.9px) {
  .service_flow ol li .detail h3 {
    padding-left: 59px;
    margin-bottom: 15px;
    font-size: 2.3rem;
  }
  .service_flow ol li .detail h3 span {
    font-size: 2rem;
  }
  .service_flow ol li .detail h3 .small_text {
    font-size: 1.5rem;
    display: inline-block;
    margin-right: -10px;
  }
}
.service_flow ol li .detail p {
  font-size: 1.5rem;
  padding-bottom: 24px;
  border-bottom: solid 1px #f2f2f2;
}
@media screen and (max-width: 767.9px) {
  .service_flow ol li .detail p {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.service_flow ol li:last-child .no::before {
  display: none;
}
.service_flow ol li:last-child::before {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .service_flow ol li:last-child {
    padding-bottom: 0;
  }
}

.home header:not(.active) {
  background: none;
}
@media screen and (max-width: 1239.9px) {
  .home header:not(.active) {
    background: #fff;
  }
}

.main_visual.hidden .image {
  opacity: 0;
}

.main_visual {
  height: 100vh;
}
@media screen and (max-width: 1239.9px) {
  .main_visual {
    height: calc(100svh - 64px);
    margin-top: 64px;
  }
}
.main_visual .image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 1;
}
@media screen and (max-width: 1239.9px) {
  .main_visual .image {
    height: calc(100svh - 64px);
    top: 64px;
  }
}
.main_visual .image.is-fadeout {
  opacity: 0;
  pointer-events: none;
}
.main_visual .image video,
.main_visual .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
  -o-object-position: center;
     object-position: center;
}
.main_visual .main_visual_title {
  position: absolute;
  right: 42px;
  bottom: 45px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_title {
    right: auto;
    left: 22px;
    bottom: 40px;
  }
}
.main_visual .main_visual_title p {
  color: #fff;
}
.main_visual .main_visual_title .inter {
  font-size: 8.9rem;
  font-style: italic;
  line-height: 1.0449438202;
  letter-spacing: 0;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_title .inter {
    font-size: 4.6rem;
    line-height: 1.1956521739;
    margin-bottom: 8px;
  }
}
.main_visual .main_visual_title .inter span {
  width: 20px;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_title .inter span {
    width: 10px;
  }
}
.main_visual .main_visual_title .description {
  font-size: 2rem;
  font-weight: 600;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_title .description {
    font-size: 1.5rem;
    -webkit-transform: none;
            transform: none;
    margin-left: 12px;
    line-height: 1.3;
  }
}

.top_section {
  position: relative;
  z-index: 2;
}
.top_section .top_heading {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .top_section .top_heading {
    margin-bottom: 40px;
  }
}
.top_section .top_heading .sub_title {
  font-size: 8rem;
  line-height: 2;
  font-style: italic;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767.9px) {
  .top_section .top_heading .sub_title {
    font-size: 4.5rem;
    line-height: 1.2;
  }
}
.top_section .top_heading .sub_title span {
  display: inline-block;
  width: 20px;
}
@media screen and (max-width: 767.9px) {
  .top_section .top_heading .sub_title span {
    width: 15px;
  }
}
.top_section .top_heading h2 {
  color: #dc000c;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .top_section .top_heading h2 {
    font-size: 1.7rem;
  }
}
.top_section .top_heading h2::before {
  content: "";
  background: #dc000c;
  width: 11px;
  height: auto;
  aspect-ratio: 11/20;
  clip-path: polygon(70% 0, 100% 0%, 30% 100%, 0% 100%);
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 767.9px) {
  .top_section .top_heading h2::before {
    width: 10px;
    margin-right: 10px;
  }
}
.top_section .btn_wrap a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.top_about_main {
  padding-top: 135px;
  padding-bottom: 124px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_about_main {
    padding: 70px 0;
  }
}
.top_about_main::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/top_about_bg.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.top_about_main .cont {
  position: relative;
  z-index: 2;
  gap: 44px;
  max-width: 1306px;
  width: 96%;
}
@media screen and (max-width: 1024px) {
  .top_about_main .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about_main .cont {
    width: 88.4%;
    gap: 50px;
  }
}
.top_about_main .top_heading .sub_title {
  color: #fff;
}
.top_about_main .detail {
  margin-top: 5px;
  width: 494px;
  margin-left: 10.8%;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top_about_main .detail {
    margin-left: 0;
    margin-top: 0;
  }
}
.top_about_main h3 {
  color: #fff;
  font-size: 3.2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .top_about_main h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
}
.top_about_main .description {
  color: #fff;
  line-height: 2.1;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .top_about_main .description {
    margin-bottom: 30px;
  }
}
.top_about_main .btn_wrap {
  margin-left: 0;
}
@media screen and (max-width: 767.9px) {
  .top_about_main .btn_wrap {
    margin-left: auto;
  }
}
.top_about_main .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .top_about_main .img {
    margin-left: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about_main .img {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.top_about_main .img img {
  display: block;
}
.top_about_main .img img:nth-child(1) {
  margin-left: auto;
  width: 30%;
  height: auto;
  aspect-ratio: 190/245;
}
@media screen and (max-width: 767.9px) {
  .top_about_main .img img:nth-child(1) {
    width: 46.5%;
  }
}
.top_about_main .img img:nth-child(2) {
  width: 70%;
  height: auto;
  aspect-ratio: 438/570;
}
@media screen and (max-width: 767.9px) {
  .top_about_main .img img:nth-child(2) {
    width: 69.5%;
  }
}

.top_links {
  background: #dc000c;
  padding: 50px 0;
}
@media screen and (max-width: 767.9px) {
  .top_links {
    padding: 40px 0;
  }
}
.top_links .cont {
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .top_links .cont {
    gap: 30px;
  }
}
.top_links .top_links_inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  min-width: 400px;
  max-width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767.9px) {
  .top_links .top_links_inner {
    min-width: unset;
  }
}
.top_links .top_links_inner a {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 44px 85px 40px 60px;
  z-index: 2;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .top_links .top_links_inner a {
    padding: 40px 30px 75px;
  }
}
.top_links .top_links_inner a::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #1c1c1c;
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  z-index: -1;
}
.top_links .top_links_inner a .inter {
  color: #dc000c;
  line-height: 2.1;
}
@media screen and (max-width: 767.9px) {
  .top_links .top_links_inner a .inter {
    margin-bottom: 8px;
    line-height: 1.1875;
  }
}
.top_links .top_links_inner a h3 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .top_links .top_links_inner a h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top_links .top_links_inner a .description {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #fff;
  max-width: 345px;
}
@media screen and (max-width: 767.9px) {
  .top_links .top_links_inner a .description {
    max-width: unset;
  }
}
.top_links .top_links_inner a .arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 40px;
  bottom: 46px;
}
@media screen and (max-width: 767.9px) {
  .top_links .top_links_inner a .arrow {
    right: auto;
    left: 30px;
    bottom: 20px;
  }
}
.top_links .top_links_inner a .arrow::before {
  content: "";
  width: 9px;
  height: 15px;
  background-image: url(../img/arrow_solo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(1065%) hue-rotate(214deg) brightness(103%) contrast(99%);
          filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(1065%) hue-rotate(214deg) brightness(103%) contrast(99%);
}
.top_links .top_links_inner a:hover {
  opacity: 1;
}
.top_links .top_links_inner a:hover::before {
  opacity: 0.9;
}
.top_links .top_links_inner a:hover .arrow {
  background: #dc000c;
}
.top_links .top_links_inner a:hover .arrow::before {
  -webkit-filter: none;
          filter: none;
}
.top_links .tv {
  background-image: url(../img/top_link1.jpg);
}
.top_links .company {
  background-image: url(../img/top_link2.jpg);
}

.top_point {
  padding-top: 150px;
  padding-bottom: 174px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_point {
    padding: 70px 0 58px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_point .top_heading .sub_title span {
    display: none;
  }
}
.top_point .top_point_heading {
  gap: 20px 60px;
  margin-bottom: 54px;
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_heading {
    margin-bottom: 40px;
  }
}
.top_point .top_point_heading h3 {
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_heading h3 {
    font-size: 2.3rem;
  }
}
.top_point .top_point_heading p {
  margin-top: 9px;
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_heading p {
    margin-top: 0;
    line-height: 1.8;
  }
}
.top_point .top_point_list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top_point .top_point_swiper {
  height: calc(100vh - 95px);
  position: sticky;
  top: 95px;
  width: 48.3%;
}
.top_point .top_point_swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  position: relative;
}
.top_point .top_point_swiper .swiper-slide img {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: auto;
  aspect-ratio: 560/607;
  -o-object-position: center;
     object-position: center;
}
.top_point .top_point_detail {
  width: 46.1%;
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_detail {
    width: 100%;
  }
}
.top_point .top_point_detail .top_point_detail_item {
  min-height: calc(100vh - 95px);
  padding-top: 75px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_detail .top_point_detail_item {
    min-height: unset;
    padding-bottom: 50px;
    padding-top: 0;
  }
}
.top_point .top_point_detail .top_point_detail_item .img {
  margin-bottom: 30px;
}
.top_point .top_point_detail .top_point_detail_item .img img {
  aspect-ratio: 331/340;
  display: block;
  width: 100%;
}
.top_point .top_point_detail .top_point_detail_item h3 {
  color: #dc000c;
  font-size: 3.4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_detail .top_point_detail_item h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    gap: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 1.4;
  }
}
.top_point .top_point_detail .top_point_detail_item h3 span {
  font-size: 6.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-style: italic;
  margin-top: 3px;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_detail .top_point_detail_item h3 span {
    width: 100%;
    font-size: 5rem;
    line-height: 1.22;
    -webkit-transform: unset;
            transform: unset;
  }
}
.top_point .top_point_detail .top_point_detail_item h4 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_detail .top_point_detail_item h4 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
.top_point .top_point_detail .top_point_detail_item p {
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .top_point .top_point_detail .top_point_detail_item p {
    font-size: 1.5rem;
  }
}
.top_point .loop-wrap {
  position: absolute;
  left: 0;
  bottom: -40px;
  height: 160px;
}
@media screen and (max-width: 767.9px) {
  .top_point .loop-wrap {
    height: 84px;
    bottom: -22px;
  }
}
.top_point .loop-wrap p img {
  height: 160px;
  aspect-ratio: 2134/160;
}
@media screen and (max-width: 767.9px) {
  .top_point .loop-wrap p img {
    height: 84px;
  }
}

.top_section_wrap {
  background: #1c1c1c;
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .top_section_wrap {
    padding-bottom: 50px;
  }
}
.top_section_wrap .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .top_section_wrap .bg_img {
    display: none;
  }
}

.top_service {
  padding-top: 150px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .top_service {
    background-image: url(../img/top_service_bg2-sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 70px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.top_service .top_heading {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .top_service .top_heading {
    margin-bottom: 40px;
  }
}
.top_service .top_heading p,
.top_service .top_heading h2 {
  text-align: center;
  color: #fff;
}
.top_service h3 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top_service h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
}
.top_service .description {
  color: #fff;
  line-height: 2.1;
  margin-bottom: 60px;
  max-width: 697px;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top_service .description {
    margin-bottom: 40px;
    line-height: 1.8;
  }
}
.top_service .top_service_list {
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .top_service .top_service_list {
    gap: 50px;
    margin-bottom: 30px;
  }
}
.top_service .top_service_list li {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 767.9px) {
  .top_service .top_service_list li {
    width: 100%;
  }
}
.top_service .top_service_list li img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 36/30;
  margin-bottom: 30px;
  border-radius: 3px;
}
@media screen and (max-width: 767.9px) {
  .top_service .top_service_list li img {
    margin-bottom: 20px;
    aspect-ratio: 331/250;
  }
}
.top_service .top_service_list li h4 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .top_service .top_service_list li h4 {
    font-size: 2.3rem;
  }
}
.top_service .top_service_list li h4::before {
  content: "";
  background: #dc000c;
  width: 17px;
  height: auto;
  aspect-ratio: 11/20;
  clip-path: polygon(70% 0, 100% 0%, 30% 100%, 0% 100%);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.top_service .top_service_list li p {
  color: #fff;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .top_service .top_service_list li p {
    font-size: 1.5rem;
  }
}

.top_works .cont {
  background: #fff;
  border-radius: 3px;
  padding: 70px 68px 80px;
}
@media screen and (max-width: 767.9px) {
  .top_works .cont {
    padding: 60px 29px;
    overflow: hidden;
  }
}
.top_works .top_works_heading_wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .top_works .top_works_heading_wrap {
    gap: 30px;
  }
}
.top_works .top_works_heading_wrap .description {
  margin-top: 54px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 21px;
  max-width: 611px;
  line-height: 2.1;
}
@media screen and (max-width: 767.9px) {
  .top_works .top_works_heading_wrap .description {
    margin-top: 0;
    padding-right: 0;
    line-height: 1.8;
  }
}
.top_works .top_works_heading_wrap .top_heading {
  margin-bottom: 0;
}
.top_works .top_works_swiper {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  margin-bottom: 40px;
  margin-top: -30px;
}
@media screen and (max-width: 767.9px) {
  .top_works .top_works_swiper {
    padding: 0;
    margin-top: 30px;
    overflow: unset;
  }
}
.top_works .top_works_swiper .works_list {
  gap: 0;
}
.top_works .top_works_swiper .works_list > li.swiper-slide {
  width: 321px;
  max-width: 100%;
}
.top_works .top_works_prev,
.top_works .top_works_next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #dc000c;
  position: absolute;
  top: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}
@media screen and (max-width: 767.9px) {
  .top_works .top_works_prev,
  .top_works .top_works_next {
    top: 54px;
  }
}
.top_works .top_works_prev::before,
.top_works .top_works_next::before {
  content: "";
  width: 13px;
  height: 22px;
  background-image: url(../img/arrow_solo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.top_works .top_works_prev.swiper-button-disabled,
.top_works .top_works_next.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.top_works .top_works_prev:hover,
.top_works .top_works_next:hover {
  background: #1c1c1c;
  opacity: 1;
}
.top_works .top_works_prev {
  right: 62px;
}
@media screen and (max-width: 767.9px) {
  .top_works .top_works_prev {
    left: -29px;
  }
}
.top_works .top_works_prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.top_works .top_works_next {
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .top_works .top_works_next {
    right: -29px;
  }
}

.top_parallax {
  aspect-ratio: 1366/600;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .top_parallax {
    aspect-ratio: 375/250;
  }
}
.top_parallax img {
  position: fixed;
  top: 95px;
  left: 0;
  width: 100%;
  height: calc(100vh - 95px);
  z-index: -1;
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media screen and (max-width: 1239.9px) {
  .top_parallax img {
    height: calc(100svh - 64px);
    top: 64px;
  }
}

.top_news {
  padding: 150px 0;
}
@media screen and (max-width: 767.9px) {
  .top_news {
    padding: 70px 0;
  }
}
.top_news .cont {
  max-width: 940px;
  position: relative;
}
.top_news .top_heading {
  margin-bottom: 56px;
}
@media screen and (max-width: 767.9px) {
  .top_news .top_heading {
    margin-bottom: 40px;
  }
}
.top_news .btn_wrap {
  position: absolute;
  top: 128px;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .top_news .btn_wrap {
    position: relative;
    top: auto;
    right: auto;
  }
}
.top_news .btn_wrap a {
  gap: 16px;
}
.top_news .column_list {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .top_news .column_list {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_news .column_list a {
    padding: 28px 0 25px;
  }
}

.top_column_bg {
  position: relative;
  background-image: url(../img/top_column_bg.jpg);
  background-position: bottom right;
  background-size: cover;
}
@media screen and (max-width: 767.9px) {
  .top_column_bg {
    background: none;
  }
}
@media (min-width: 768px) {
  .top_column_bg .f_contact {
    background: none;
    padding-top: 0;
  }
}

.top_column {
  padding-top: 150px;
  margin-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .top_column {
    padding: 70px 0;
    margin-bottom: 0;
    background-image: url(../img/top_column_bg-sp.jpg);
    background-position: bottom right;
    background-size: cover;
  }
}
.top_column .cont {
  max-width: 940px;
  position: relative;
}
.top_column .btn_wrap {
  position: absolute;
  top: 128px;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .top_column .btn_wrap {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 40px;
  }
}
.top_column .btn_wrap a {
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .top_column .column_list {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_column .column_list a {
    padding: 30px 0 25px;
  }
}
.top_column .top_heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .top_column .top_heading {
    margin-bottom: 40px;
  }
}
.top_column .top_heading .sub_title {
  color: #fff;
}
.top_column .column_list time,
.top_column .column_list h2,
.top_column .column_list .author_name {
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.top_column a:hover time,
.top_column a:hover h2,
.top_column a:hover .author_name {
  color: #1c1c1c;
}

@media (min-width: 768px) {
  .home .footer {
    padding-top: 10px;
  }
}

.page-id-16 .privacy_policy_check {
  margin-bottom: 40px;
}

@media screen and (max-width: 767.9px) {
  .page-id-3 .page_top .page_title p {
    line-height: 1;
  }
  .page-id-3 .pankuzu {
    margin-top: 0;
  }
}

#scroll-top {
  position: fixed;
  z-index: 2;
  bottom: 12px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: none;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

@media screen and (max-width: 767.9px) {
  #scroll-top {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    right: 8px;
    bottom: 0;
  }
}
#scroll-top:hover {
  bottom: 16px;
}

@media screen and (max-width: 767.9px) {
  #scroll-top:hover {
    bottom: 6px;
  }
}
#scroll-top a {
  width: 100%;
  height: 100%;
  display: block;
}

#scroll-top a span {
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 29px;
  right: 11px;
}

#scroll-top a span::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 9px;
  right: 9px;
}/*# sourceMappingURL=common.css.map */