@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1001px) {
  .is-sp {
    display: none !important;
  }
}
body,
html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  color: #1f1f1f;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: #fff;
  font-weight: 500;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 14px;
    max-width: 450px;
    margin: 0 auto;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 20px;
  }
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .header-inner {
    padding: 0 20px;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  .header-inner {
    padding: 0 20px;
    background: initial;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

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

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #544a4a;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
  background: #f4f4f4;
}

.header {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 1001;
  margin: 0 auto;
  padding: 0 40px;
  letter-spacing: 2px;
  color: #000;
}
@media screen and (max-width: 1000px) {
  .header {
    max-width: 450px;
    padding: 0;
    top: 0;
    width: 100%;
  }
}
.header .flex {
  padding: 10px 0px;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header-inner {
  border-radius: 60px;
}
.header .logo {
  max-width: 180px;
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  .header .logo {
    max-width: 150px;
  }
}
.header .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .logo a:hover {
  opacity: 0.6;
}
.header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .right ul li {
  margin-right: 30px;
}
.header .right ul li a {
  color: #000;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
.header .right ul li a:hover {
  color: #38c1cb;
}
.header .header-btn a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 5px 40px;
  border-radius: 50px;
  font-size: 18px;
  color: #fff;
  background: #fff;
  border: 1px solid #11bcc8;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  font-weight: 600;
  white-space: nowrap;
}
.header .header-btn a span {
  position: relative;
  z-index: 2;
}
.header .header-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1fc9d5), to(#11bcc8));
  background: linear-gradient(to right, #1fc9d5 0%, #11bcc8 100%);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1;
  border-radius: 60px;
}
.header .header-btn a:hover {
  color: #11bcc8;
}
.header .header-btn a:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.mv {
  position: relative;
}
.mv .contents {
  position: absolute;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .mv .contents {
    bottom: -19px;
  }
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 1000px) {
  .section {
    padding: 50px 0;
  }
}

.top1 {
  background: -webkit-gradient(linear, left top, right top, from(#e4e4e4), to(#fbffff));
  background: linear-gradient(to right, #e4e4e4, #fbffff);
}

.drawer-icon {
  position: absolute;
  top: 21px;
  right: 20px;
  z-index: 1000;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 1001px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(#6fc4d3), color-stop(75%, #69b5c2), to(#64aab5));
  background: linear-gradient(to right, #6fc4d3, #69b5c2 75%, #64aab5);
  z-index: 250;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  padding: 0 20px;
  padding-top: 100px;
}
.drawer-icon-nav ul .li {
  padding: 15px 0;
  border-bottom: 0.2px solid white;
  text-align: left;
}
.drawer-icon-nav ul .li.parent {
  position: relative;
}
.drawer-icon-nav ul .li.parent .toggle-btn {
  width: 12px;
  height: 7px;
  content: "";
  position: absolute;
  right: 15px;
  top: 22px;
}
.drawer-icon-nav ul .li a {
  display: inline-block;
  color: #ffffff;
  text-align: left;
}
.drawer-icon-nav ul .li a .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-icon-nav ul .li a .en {
  font-size: 32px;
  font-weight: 600;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  width: 160px;
}
.drawer-icon-nav ul .li a .ja {
  font-size: 14px;
  font-weight: 700;
}
.drawer-icon-nav ul .li .sub-area a {
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.drawer-icon-nav ul .li .sub-area a:last-child {
  margin-bottom: 0;
}
.drawer-icon-nav ul .li .sub-area {
  display: none;
}
.drawer-icon-nav ul .li .parent.active .sub-area {
  display: block;
}
.drawer-icon-nav .toggle-btn img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer-icon-nav .parent.active .toggle-btn img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

@media screen and (max-width: 1000px) {
  .header {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, right top, from(#6fc4d3), color-stop(75%, #69b5c2), to(#64aab5));
    background: linear-gradient(to right, #6fc4d3, #69b5c2 75%, #64aab5);
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    z-index: -1;
  }
  .header.active::before {
    opacity: 1;
  }
}

.footer {
  color: #fff;
}
.footer a {
  color: #fff;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer a:hover {
  opacity: 0.6;
}
.footer {
  background: -webkit-gradient(linear, left top, right top, from(#6fc4d3), color-stop(50%, #69b5c2), to(#64aab5));
  background: linear-gradient(to right, #6fc4d3 0%, #69b5c2 50%, #64aab5 100%);
  padding: 100px 0 60px;
}
@media screen and (max-width: 1000px) {
  .footer {
    padding: 50px 0;
  }
}
.footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .footer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer .flex .left {
  width: 35%;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left {
    width: 100%;
    margin-top: 40px;
  }
}
.footer .flex .left .logo {
  width: 200px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .logo {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .address-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .flex .left .address {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .address {
    margin-bottom: 30px;
    margin-bottom: 0;
  }
}
.footer .flex .left .address span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
}
.footer .flex .right {
  width: 60%;
}
@media screen and (max-width: 1000px) {
  .footer .flex .right {
    width: 100%;
  }
}
.footer .flex .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .footer .flex .right ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer .flex .right ul li {
  margin-right: 30px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .right ul li {
    width: 50%;
  }
}
.footer .flex .right ul li:last-child {
  margin-right: 0;
}
.footer .flex .right ul li a {
  font-size: 22px;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer .flex .right ul li .sub-link a {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer .page-top {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .footer .page-top {
    margin-top: 30px;
    text-align: right;
  }
}
.footer .page-top a {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .footer .page-top a {
    font-size: 15px;
  }
}
.footer .copyright {
  font-size: 16px;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .footer .copyright {
    text-align: center;
    font-size: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .footer .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .sp-flex ul:nth-child(1) {
    width: 35%;
  }
  .footer .sp-flex ul:nth-child(2) {
    width: 55%;
  }
  .footer .sp-flex ul li {
    width: 100% !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1000px) {
  .footer .privacy-link {
    margin-top: 20px;
  }
}
.footer .privacy-link a {
  font-size: 18px;
  font-weight: 600;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1000px) {
  .footer .privacy-link a {
    font-size: 14px;
  }
}
.footer {
  line-height: 1.6;
}

@media screen and (max-width: 1000px) {
  .footer .flex .right ul li a {
    font-size: 18px;
  }
  .footer .flex .right ul li .sub-link a {
    font-size: 14px;
  }
  .footer .flex .right ul li {
    margin-bottom: 10px;
  }
  .footer .flex .right ul li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .mv .contents img {
    width: 80%;
  }
}
@media screen and (min-width: 1001px) {
  .top1 {
    padding-top: 130px;
  }
}
@media screen and (max-width: 1000px) {
  .top1 {
    padding-top: 70px;
  }
}
.top1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .top1 .flex {
    display: block;
  }
}
.top1 .flex .img {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .top1 .flex .img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top1 .flex .contents {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .top1 .flex .contents {
    width: 100%;
  }
}
.top1 .flex .contents p {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .top1 .flex .contents p {
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  .top1 .flex .contents p {
    font-size: 12px;
  }
}
.top1 .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .top1 .btn {
    margin-top: 30px;
    text-align: center;
  }
}

.section-btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 6px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  color: #fff;
  background: #fff;
  border: 1px solid #11bcc8;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media screen and (max-width: 1000px) {
  .section-btn a {
    padding: 8px 20px;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }
}
.section-btn a span {
  position: relative;
  z-index: 2;
}
.section-btn a span {
  display: block;
}
.section-btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  right: 15px;
  width: 4px;
  height: 4px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  z-index: 100;
}
.section-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1fc9d5), to(#11bcc8));
  background: linear-gradient(to right, #1fc9d5 0%, #11bcc8 100%);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-btn a:hover {
  color: #11bcc8;
}
.section-btn a:hover::after {
  border-left: 1px solid #11bcc8;
  border-bottom: 1px solid #11bcc8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-btn a:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.top-news {
  padding-bottom: 150px;
}
@media screen and (max-width: 1000px) {
  .top-news {
    padding-bottom: 70px;
  }
}
.top-news .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .top-news .flex {
    display: block;
  }
}
.top-news .flex .left {
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .top-news .flex .left {
    width: 100%;
  }
}
.top-news .flex .right {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1000px) {
  .top-news .flex .right {
    width: 100%;
  }
}
.top-news .btn {
  margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  .top-news .btn {
    text-align: center;
    margin-top: 30px;
  }
}
.top-news .ul article {
  display: block;
  border-top: 1px solid #a4e3e7;
}
.top-news .ul article:last-child {
  border-bottom: 1px solid #a4e3e7;
}
.top-news .ul article a {
  color: #1f1f1f;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-news .ul article a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 1000px) {
  .top-news .ul article a {
    padding: 15px 0;
    display: block;
  }
}
.top-news .ul article a .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .top-news .ul article a .info {
    width: 100%;
    margin-bottom: 10px;
  }
}
.top-news .ul article a .info .time {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-weight: 600;
  width: 120px;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .top-news .ul article a .info .time {
    font-size: 14px;
    width: 85px;
  }
}
.top-news .ul article a .info .category {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #9f9f9f;
  padding: 2px;
  font-size: 14px;
  width: 130px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .top-news .ul article a .info .category {
    font-size: 12px;
    padding: 0;
    width: 100px;
  }
}
.top-news .ul article a .title {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .top-news .ul article a .title {
    font-size: 14px;
    width: 100%;
    margin-left: 0;
  }
}
.top-news {
  position: relative;
}
.top-news .bg-text-area .text {
  font-size: 80px;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  color: #f2f5f5;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}
.top-news .bg-text-area {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .top-news .bg-text-area {
    bottom: -7px;
  }
}
.top-news .bg-text-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  will-change: transform;
  -webkit-animation: bgTextMarquee 70s linear infinite;
          animation: bgTextMarquee 70s linear infinite;
}
.top-news .bg-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-news .bg-text span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  white-space: nowrap;
  font-size: 80px;
  line-height: 1;
  font-weight: 600;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  color: #f2f5f5;
  padding-right: 15px;
}
@media screen and (max-width: 1000px) {
  .top-news .bg-text span {
    font-size: 40px;
    padding-right: 8px;
  }
}
@-webkit-keyframes bgTextMarquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes bgTextMarquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@-webkit-keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.section-title {
  margin-bottom: 60px;
  line-height: 1;
  letter-spacing: 2px;
}
@media screen and (max-width: 1000px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title .en {
  font-size: 46px;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .section-title .en {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
.section-title .ja {
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .section-title .ja {
    font-size: 15px;
  }
}

.top-gray-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5f5), color-stop(75%, #e4e4e4), color-stop(75%, #ffffff), to(#ffffff));
  background: linear-gradient(to bottom, #f2f5f5 0%, #e4e4e4 75%, #ffffff 75%, #ffffff 100%);
}

.top-service .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .top-service .flex {
    display: block;
  }
}
.top-service .section-title {
  white-space: nowrap;
  margin-right: 100px;
}
@media screen and (max-width: 1000px) {
  .top-service .section-title {
    margin-right: 0;
  }
}
.top-service .lead {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .top-service .lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.top-service .li {
  position: relative;
}
.top-service .li .img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  border-radius: 10px;
}
.top-service .li .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .li a {
  display: block;
  color: #fff;
  -webkit-transition: 0.3a;
  transition: 0.3a;
}
.top-service .li a .img {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .li a .img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(31, 201, 213, 0.1)), to(rgba(17, 188, 200, 0.15)));
  background: linear-gradient(to bottom right, rgba(31, 201, 213, 0.1), rgba(17, 188, 200, 0.15));
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .li a:hover .img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .li a:hover .img::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.top-service .li a:hover .btn-link {
  color: #11bcc8;
}
.top-service .li a:hover .btn-link::after {
  border-left: 1px solid #11bcc8;
  border-bottom: 1px solid #11bcc8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .li a:hover .btn-link::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.top-service .li a:hover .img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .li a:hover .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top-service .li a .contents1 {
  position: absolute;
  top: 20px;
  left: 20px;
}
.top-service .li a .contents1 .text1 {
  font-size: 16px;
  font-weight: 600;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1000px) {
  .top-service .li a .contents1 .text1 {
    font-size: 12px;
  }
}
.top-service .li a .contents2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.top-service .li a .contents2 .title {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .top-service .li a .contents2 .title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.top-service .section-btn .btn-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 6px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  color: #fff;
  background: #fff;
  border: 1px solid #11bcc8;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media screen and (max-width: 1000px) {
  .top-service .section-btn .btn-link {
    padding: 8px 20px;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }
}
.top-service .section-btn .btn-link span {
  position: relative;
  z-index: 2;
}
.top-service .section-btn .btn-link span {
  display: block;
}
.top-service .section-btn .btn-link::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  right: 15px;
  width: 4px;
  height: 4px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  z-index: 100;
}
.top-service .section-btn .btn-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1fc9d5), to(#11bcc8));
  background: linear-gradient(to right, #1fc9d5 0%, #11bcc8 100%);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .section-btn .btn-link:hover {
  color: #11bcc8;
}
.top-service .section-btn .btn-link:hover::after {
  border-left: 1px solid #11bcc8;
  border-bottom: 1px solid #11bcc8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-service .section-btn .btn-link:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.service-slider-wrap {
  position: relative;
  overflow: visible;
  padding: 0 0 0 0;
}

.service-slider {
  overflow: visible;
}

.service-slider .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.service-slider .swiper-slide {
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease, -webkit-filter 0.3s ease, -webkit-transform 0.3s ease;
  opacity: 0.35;
  pointer-events: none;
}

.service-slider .swiper-slide-visible {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  pointer-events: auto;
}

.service-slider .li a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.service-slider .img img {
  width: 100%;
  display: block;
}

/* 外側にはみ出した見え方を少し強調したい場合 */
.service-slider .swiper-slide-prev,
.service-slider .swiper-slide-next {
  opacity: 0.35;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  pointer-events: none;
}

/* 中央付近の見えている3枚だけ有効 */
.service-slider .swiper-slide-visible {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  pointer-events: auto;
}

@media screen and (max-width: 1000px) {
  .service-slider-wrap {
    overflow: hidden;
  }
  .service-slider {
    overflow: hidden;
  }
}
.service-slider .swiper-pagination {
  position: static;
  margin-top: 20px;
  text-align: center;
}
.service-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-slider .swiper-pagination-bullet-active {
  background: #000;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* 画面内に見えているスライドだけ有効 */
.service-slider .swiper-slide-visible {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  pointer-events: auto;
}

@media screen and (max-width: 1000px) {
  .inner-sp {
    padding: 0;
  }
}

@media screen and (max-width: 1000px) {
  .service-slider .swiper-slide {
    opacity: 0.35 !important;
    pointer-events: none;
  }
  .service-slider .swiper-slide-active {
    opacity: 1 !important;
    pointer-events: initial;
  }
  .top-service .section-btn .btn-link {
    width: 100%;
  }
  .top-service .section-btn .btn-link {
    width: 100%;
    text-align: center;
    display: block;
  }
  .top-service .li a .contents2 {
    width: 100%;
  }
  .top-service .li a .contents2 {
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0 20px;
  }
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.service-slider .swiper-pagination-bullet-active {
  background: #1fc9d5;
}

.top-works {
  background: url(../img/works-bg.webp) no-repeat bottom center/cover;
  overflow: hidden;
  border-radius: 80px;
}
@media screen and (max-width: 1000px) {
  .top-works {
    border-radius: 40px;
  }
}
.top-works .section-title {
  color: #fff;
}
.top-works .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.top-works li {
  list-style: none;
  padding: 10px 0;
}
@media screen and (max-width: 1000px) {
  .top-works li {
    padding: 5px 0;
  }
}
.top-works .slider img {
  width: 100%;
  display: block;
}
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes scrollUp {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes scrollUp {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.top-works .slider1 {
  -webkit-animation: scrollDown 60s linear infinite;
          animation: scrollDown 60s linear infinite;
}
.top-works .slider2 {
  -webkit-animation: scrollUp 60s linear infinite;
          animation: scrollUp 60s linear infinite;
}
.top-works .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-works .flex .left {
  width: 100%;
}
.top-works .works-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  right: 10%;
  width: 50%;
  -webkit-transform: rotate(19deg) translateX(-70%);
          transform: rotate(19deg) translateX(-70%);
  max-width: 1000px;
}
@media screen and (max-width: 1000px) {
  .top-works .works-flex {
    -webkit-transform: rotate(19deg) translateX(-60%);
            transform: rotate(19deg) translateX(-60%);
    width: 75%;
  }
}
.top-works .works-flex ul {
  width: 48%;
}
.top-works {
  position: relative;
  min-height: 800px;
}
@media screen and (max-width: 1000px) {
  .top-works {
    min-height: initial;
  }
}
@media screen and (max-width: 1000px) {
  .top-works .btn {
    margin-top: 200px;
    text-align: center;
  }
}
.top-works {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .top-works::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(31, 201, 213, 0.3)), to(rgba(17, 188, 200, 0.45)));
    background: linear-gradient(to bottom right, rgba(31, 201, 213, 0.3), rgba(17, 188, 200, 0.45));
  }
}
.top-works .inner .section-title {
  position: relative;
  z-index: 2;
}
.top-works .inner .section-btn {
  position: relative;
  z-index: 2;
}

.cta .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .cta .flex {
    display: block;
  }
}
.cta .section-title {
  white-space: nowrap;
  margin-right: 100px;
}
@media screen and (max-width: 1000px) {
  .cta .section-title {
    margin-right: 0;
  }
}
.cta .lead {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .cta .lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.cta .btn {
  text-align: center;
}
.common-heading {
  background: url(../img/common-heading-bg.webp) no-repeat right center/cover;
  color: #fff;
  padding: 180px 0 120px;
}
@media screen and (max-width: 1000px) {
  .common-heading {
    padding: 120px 0 80px;
  }
}
.common-heading .en {
  font-size: 80px;
  font-weight: 600;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  line-height: 1;
  letter-spacing: 4px;
}
@media screen and (max-width: 1000px) {
  .common-heading .en {
    font-size: 32px;
    letter-spacing: 2px;
  }
}
.common-heading .ja {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 1000px) {
  .common-heading .ja {
    font-size: 16px;
  }
}

.bread {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-size: 16px;
  padding: 20px 0;
}
@media screen and (max-width: 1000px) {
  .bread {
    padding: 10px 0;
  }
}
.bread .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .bread {
    font-size: 12px;
  }
}
.bread .center {
  margin: 0 10px;
  width: 10px;
  display: block;
  position: relative;
  top: -3px;
}
@media screen and (max-width: 1000px) {
  .bread .center {
    margin: 0 5px;
    top: -3px;
    width: 7px;
  }
}
.bread a {
  color: #1f1f1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bread a:hover {
  opacity: 0.6;
}

.privacy p {
  line-height: 2.2;
}

.thanks .img {
  max-width: 60px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .thanks .img {
    margin-bottom: 20px;
    max-width: 40px;
  }
}
.thanks h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .thanks h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.thanks p {
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .thanks p {
    text-align: left;
  }
}

.submit-design .submit-design-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 6px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  color: #fff;
  background: #fff;
  border: 1px solid #11bcc8;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media screen and (max-width: 1000px) {
  .submit-design .submit-design-wrap {
    padding: 8px 20px;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }
}
.submit-design .submit-design-wrap span {
  position: relative;
  z-index: 2;
}
.submit-design .submit-design-wrap span {
  display: block;
}
.submit-design .submit-design-wrap::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  right: 15px;
  width: 4px;
  height: 4px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  z-index: 100;
}
.submit-design .submit-design-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1fc9d5), to(#11bcc8));
  background: linear-gradient(to right, #1fc9d5 0%, #11bcc8 100%);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.submit-design .submit-design-wrap:hover {
  color: #11bcc8;
}
.submit-design .submit-design-wrap:hover::after {
  border-left: 1px solid #11bcc8;
  border-bottom: 1px solid #11bcc8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.submit-design .submit-design-wrap:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.contact .lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .contact .lead {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap {
    font-size: 14px;
  }
}
.contact .contact-wrap .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap .row {
    display: block;
    margin-bottom: 20px;
  }
}
.contact .contact-wrap .row .dt {
  width: 250px;
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap .row .dt {
    width: 100%;
    margin-bottom: 8px;
  }
}
.contact .contact-wrap .row .dt .dt-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .contact-wrap .row .dd {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap .row .dd {
    width: 100%;
  }
}
.contact .contact-wrap .row-textarea {
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
}
@media screen and (min-width: 1001px) {
  .contact .contact-wrap .row-textarea .dt {
    padding-top: 8px;
  }
}
.contact .contact-wrap textarea {
  resize: none;
  height: 200px;
}
.contact .required {
  background: #c10b0b;
  color: #fff;
  padding: 3px 10px;
  font-size: 14px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .contact .required {
    font-size: 12px;
  }
}
.contact .required.no {
  background: #a3a3a3;
}
.contact .check-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .contact .check-row {
    margin-bottom: 25px;
  }
}
.contact .check-row .required {
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  .contact .check-row .required {
    margin-right: 5px;
  }
}

.works-single .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .works-single .flex {
    margin-bottom: 30px;
    display: block;
  }
}
.works-single .flex .img {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .works-single .flex .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.works-single .flex .right {
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .works-single .flex .right {
    width: 100%;
  }
}
.works-single .flex .right .name {
  font-size: 16px;
  margin-bottom: 7px;
}
@media screen and (max-width: 1000px) {
  .works-single .flex .right .name {
    font-size: 14px;
  }
}
.works-single .flex .right .sub-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .works-single .flex .right .sub-title {
    font-size: 22px;
  }
}
.works-single .flex .right .category {
  border: 1px solid #9f9f9f;
  display: inline-block;
  padding: 5px 30px;
  margin-bottom: 30px;
}
.works-single .flex .right .link {
  font-size: 14px;
}
.works-single .flex .right .link a {
  color: #1f1f1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works-single .flex .right .link a:hover {
  opacity: 0.6;
}
.works-single .contents h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .works-single .contents h2 {
    font-size: 20px;
  }
}
.works-single .contents h3,
.works-single .contents h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid #1f1f1f;
}
@media screen and (max-width: 1000px) {
  .works-single .contents h3,
  .works-single .contents h4 {
    font-size: 18px;
  }
}
.works-single .contents p {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .works-single .contents p {
    margin-bottom: 30px;
  }
}
.works-single .contents a {
  color: #1f1f1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works-single .contents a:hover {
  opacity: 0.6;
}
.works-single .btn {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .works-single .btn {
    margin-top: 30px;
  }
}
.works-single .section-btn a::after {
  right: initial;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  outline: none;
  /* デフォルトの枠を消す */
  border: 2px solid #2b91bb;
}

.archive-works .lists ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1001px) {
  .archive-works .lists ul li {
    width: calc(33.3333% - 13.3333333333px);
    margin-right: 20px;
  }
  .archive-works .lists ul li:nth-child(3n) {
    margin-right: 0;
  }
  .archive-works .lists ul li:nth-child(n+4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .archive-works .lists ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .archive-works .lists ul li:last-child {
    margin-bottom: 0;
  }
}
.archive-works .lists ul li a {
  display: block;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 15px;
  color: #1f1f1f;
}
.archive-works .lists ul li a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive-works .lists ul li a:hover .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.archive-works .lists ul li a:hover .btn {
  color: #1fc9d5;
}
.archive-works .lists ul li a:hover .btn::after {
  border-left: 1px solid #1fc9d5;
  border-bottom: 1px solid #1fc9d5;
}
.archive-works .lists ul li .img {
  margin-bottom: 15px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .archive-works .lists ul li .img {
    margin-bottom: 10px;
  }
}
.archive-works .lists ul li .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
}
.archive-works .lists ul li .category .item {
  color: #1f1f1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #9f9f9f;
  padding: 2px;
  font-size: 13px;
  padding: 1px 10px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
  white-space: nowrap;
  font-size: 14px;
  margin-bottom: 8px;
  margin-right: 8px;
}
@media screen and (max-width: 1000px) {
  .archive-works .lists ul li .category .item {
    font-size: 12px;
    padding: 0;
    padding: 1px 15px;
  }
}
.archive-works .lists ul li h2 {
  font-size: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1000px) {
  .archive-works .lists ul li h2 {
    font-size: 14px;
  }
}
.archive-works .lists ul li .btn {
  color: #a7a7a7;
  text-align: right;
  font-size: 12px;
  position: relative;
  padding-right: 8px;
}
.archive-works .lists ul li .btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  right: 0px;
  width: 4px;
  height: 4px;
  border-left: 1px solid #a7a7a7;
  border-bottom: 1px solid #a7a7a7;
  z-index: 100;
}

.archive-news {
  padding-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .archive-news {
    padding-bottom: 50px;
  }
}
.archive-news .main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .archive-news .main-flex {
    display: block;
  }
}
.archive-news .main-flex .sub {
  width: 200px;
}
@media screen and (max-width: 1000px) {
  .archive-news .main-flex .sub {
    width: 100%;
    margin-top: 40px;
  }
}
.archive-news .main-flex .sub .row {
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .archive-news .main-flex .sub .row {
    margin-bottom: 30px;
  }
}
.archive-news .main-flex .sub .row:last-child {
  margin-bottom: 0;
}
.archive-news .main-flex .sub .title2 {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-size: 28px;
  color: #1fc9d5;
  border-bottom: 1px solid #1fc9d5;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .archive-news .main-flex .sub .title2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .archive-news .main-flex .sub ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.archive-news .main-flex .sub ul li {
  margin-top: 7px;
}
@media screen and (max-width: 1000px) {
  .archive-news .main-flex .sub ul li {
    margin-right: 7px;
  }
}
.archive-news .main-flex .sub ul li a {
  color: #1f1f1f;
  font-size: 17px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .archive-news .main-flex .sub ul li a {
    font-size: 14px;
  }
}
.archive-news .main-flex .sub ul li a:hover {
  opacity: 0.6;
}
.archive-news .main-flex .main {
  width: calc(100% - 250px);
}
@media screen and (max-width: 1000px) {
  .archive-news .main-flex .main {
    width: 100%;
  }
}

.top-news .ul article a .info .category {
  width: initial;
  min-width: 130px;
}
@media screen and (max-width: 1000px) {
  .top-news .ul article a .info .category {
    min-width: 100px;
  }
}

.single-news .box {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 60px 40px;
}
@media screen and (max-width: 1000px) {
  .single-news .box {
    padding: 30px 20px;
  }
}
.single-news .box .category {
  color: #1f1f1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #9f9f9f;
  padding: 2px;
  font-size: 13px;
  padding: 3px 15px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
  white-space: nowrap;
  font-size: 14px;
  margin-bottom: 8px;
  margin-right: 8px;
}
@media screen and (max-width: 1000px) {
  .single-news .box .category {
    font-size: 12px;
    padding: 0;
    padding: 3px 15px;
  }
}
.single-news .box h1 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .single-news .box h1 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.single-news .box .time {
  font-size: 16px;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .single-news .box .time {
    margin-bottom: 20px;
  }
}
.single-news .contents a {
  color: #1f1f1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: underline;
  display: inline-block;
}
.single-news .contents a:hover {
  opacity: 0.6;
}
.single-news .contents h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .single-news .contents h2 {
    font-size: 20px;
  }
}
.single-news .contents h3,
.single-news .contents h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid #1f1f1f;
}
@media screen and (max-width: 1000px) {
  .single-news .contents h3,
  .single-news .contents h4 {
    font-size: 18px;
  }
}
.single-news .btn {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .single-news .btn {
    margin-top: 30px;
  }
}
.single-news .section-btn a::after {
  right: initial;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.category-area {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media screen and (min-width: 1001px) {
  .category-area {
    margin-top: -50px;
    margin-bottom: 30px;
  }
}
.category-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.category-area ul li {
  padding: 8px;
}
@media screen and (max-width: 1000px) {
  .category-area ul li {
    padding: 4px;
  }
}
.category-area ul li a {
  color: #1f1f1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #1f1f1f;
  padding: 2px;
  font-size: 16px;
  padding: 3px 25px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
  white-space: nowrap;
  font-size: 16px;
  background: #fff;
}
.category-area ul li a.active {
  background: #1f1f1f;
  color: #fff;
}
.category-area ul li a:hover {
  background: #1f1f1f;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .category-area ul li a {
    font-size: 12px;
    padding: 0;
    padding: 3px 10px;
  }
}

.category-area3 ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service .block-wrap {
  padding: 0 70px 60px;
}
@media screen and (max-width: 1000px) {
  .service .block-wrap {
    padding: 30px 20px;
  }
}
.service .block {
  margin-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .service .block {
    margin-bottom: 30px;
  }
}
.service .block.last-block {
  margin-bottom: 0;
}
.service .block .bg {
  position: absolute;
  top: 0;
  top: 54px;
  left: 0;
  width: 500%;
  height: 100%;
  height: 91%;
  content: "";
  background: #f2f4f4;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .service .block .bg {
    height: 100%;
    top: 0;
  }
}
@media screen and (min-width: 1001px) {
  .service .block .bg.bg-5 {
    top: 39px;
  }
}
.service .block:last-child {
  margin-bottom: 0;
}
.service .block .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .service .block .flex {
    display: block;
    margin-bottom: 20px;
  }
}
.service .block .flex .img {
  width: 50vw;
  /* 画面幅ベース */
  margin-right: calc(50% - 50vw);
  /* 左にはみ出す */
}
@media screen and (max-width: 1000px) {
  .service .block .flex .img {
    width: 100%;
    margin-bottom: 15px;
  }
}
.service .block .flex .img img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1001px) {
  .service .block .flex .img img {
    height: 420px;
  }
}
.service .block .flex .contents {
  width: 45%;
}
@media screen and (min-width: 1001px) {
  .service .block .flex .contents p {
    min-height: 230px;
  }
}
@media screen and (max-width: 1000px) {
  .service .block .flex .contents {
    width: 100%;
  }
}
.service .block .flex .contents .num {
  font-size: 75px;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0px;
  /* fallback（全ブラウザ対応） */
  text-shadow: -1px -1px 0 #12bdc9, 1px -1px 0 #12bdc9, -1px 1px 0 #12bdc9, 1px 1px 0 #12bdc9, 0px -1px 0 #12bdc9, 0px 1px 0 #12bdc9, -1px 0px 0 #12bdc9, 1px 0px 0 #12bdc9;
  /* 対応ブラウザではこっち優先（綺麗） */
  -webkit-text-stroke: 2px #12bdc9;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .service .block .flex .contents .num {
    margin-bottom: 0px;
    font-size: 46px;
    letter-spacing: 0;
    text-shadow: -0.2px -0.2px 0 #12bdc9, 0.2px -0.2px 0 #12bdc9, -0.2px 0.2px 0 #12bdc9, 0.2px 0.2px 0 #12bdc9, 0px -0.2px 0 #12bdc9, 0px 0.2px 0 #12bdc9, -0.2px 0px 0 #12bdc9, 0.2px 0px 0 #12bdc9;
  }
}
.service .block .flex .contents h2 {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .service .block .flex .contents h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.service .block h3 {
  display: inline-block;
  font-size: 16px;
  padding: 3px 20px;
  background-color: #fff;
  border-radius: 40px;
  border: 1px solid #1f1f1f;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .service .block h3 {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 0px;
  }
}
.service .block2 .bg {
  width: 100%;
}
.service .block2 .bg::before {
  position: absolute;
  top: 0;
  left: -1000px;
  width: 1000px;
  content: "";
  height: 100%;
  background: #f2f4f4;
}
.service .block2 .flex {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
}
.service .block2 .flex .img {
  width: 50vw;
  /* 画面幅ベース */
  margin-left: calc(50% - 50vw);
  margin-right: initial;
  /* 左にはみ出す */
}
@media screen and (max-width: 1000px) {
  .service .block2 .flex .img {
    width: 100%;
    margin-bottom: 15px;
    margin-left: initial;
  }
}
.service .block2 .flex .img img {
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer .flex .right ul li a {
  letter-spacing: 3px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .right ul li a {
    letter-spacing: 1.5px;
  }
}

.footer .flex .right ul li .sub-link a {
  letter-spacing: 0;
}

.bread a,
.bread span {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.category-area2 {
  margin-bottom: 150px;
}
@media screen and (max-width: 1000px) {
  .category-area2 {
    margin-bottom: 50px !important;
  }
}

.service .block .bg1::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 0%;
  width: 8px;
  content: "";
  background: #1fc9d5;
  -webkit-transition: height 0.6s cubic-bezier(0.5, 0, 0.7, 1) 0.15s;
  transition: height 0.6s cubic-bezier(0.5, 0, 0.7, 1) 0.15s;
}
@media screen and (max-width: 1000px) {
  .service .block .bg1::after {
    width: 4px;
  }
}
.service .block.active .bg1::after {
  height: 100%;
}
.service .block .bg2::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 0%;
  width: 8px;
  content: "";
  background: #1fc9d5;
  -webkit-transition: height 0.6s cubic-bezier(0.5, 0, 0.7, 1) 0.15s;
  transition: height 0.6s cubic-bezier(0.5, 0, 0.7, 1) 0.15s;
}
@media screen and (max-width: 1000px) {
  .service .block .bg2::after {
    width: 4px;
  }
}
.service .block.active .bg2::after {
  height: 100%;
}

#company1,
#company2,
#company3,
#company1,
#id7,
#id6,
#id5,
#id4,
#id3,
#id2,
#id1 {
  position: relative;
  top: -100px;
}
@media screen and (max-width: 1000px) {
  #company1,
  #company2,
  #company3,
  #company1,
  #id7,
  #id6,
  #id5,
  #id4,
  #id3,
  #id2,
  #id1 {
    top: -70px;
  }
}

html {
  scroll-behavior: smooth;
}

.company-bg {
  background: linear-gradient(135deg, #f2f2f2 0%, #fbffff 100%);
}

.company-bg1 {
  background-image: url(../img/company-bg.webp);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1501px) {
  .company-bg1 {
    background-size: contain;
  }
}
@media screen and (max-width: 1000px) {
  .company-bg1 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(22%, rgba(255, 255, 255, 0.88)), color-stop(70%, rgba(255, 255, 255, 0.45)), to(rgba(255, 255, 255, 0))), url(../img/company-bg.webp);
    background-image: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 22%, rgba(255, 255, 255, 0.45) 70%, rgba(255, 255, 255, 0) 100%), url(../img/company-bg.webp);
    background-position: right center, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
  }
}

.bg-color1 {
  background: #fbffff;
}

.single-news .box,
.top-news .ul article a .info .category,
.archive-works .lists ul li a {
  background: #fff;
}

.company2-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.31;
  letter-spacing: 1.44;
  display: inline-block;
  background: radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.8) 0%, rgba(0, 26, 255, 0) 80%), #12636f;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (max-width: 1000px) {
  .company2-title {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.84px;
    text-align: left;
  }
}

@media screen and (max-width: 1000px) {
  .company2 .inner {
    text-align: center;
  }
}

.company2-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.6px;
  margin-top: 48px;
}
@media screen and (max-width: 1000px) {
  .company2-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.45px;
    margin-top: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 20px;
  }
}
.company2-text p {
  margin: 0 0 1.8em;
}
@supports (margin-bottom: 1lh) {
  .company2-text p {
    margin-bottom: 1lh;
  }
}
.company2-text p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .company-bg .company2.section {
    -webkit-padding-before: 0 !important;
            padding-block-start: 0 !important;
    -webkit-padding-after: 50px !important;
            padding-block-end: 50px !important;
  }
}

.section-title2 {
  margin-bottom: 60px;
  line-height: 1;
  letter-spacing: 2px;
}
@media screen and (max-width: 1000px) {
  .section-title2 {
    margin-bottom: 30px;
  }
}
.section-title2 .en {
  font-size: 70px;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .section-title2 .en {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
.section-title2 .ja {
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .section-title2 .ja {
    font-size: 15px;
  }
}

.message {
  background: url(../img/message-bg.webp) no-repeat right center/cover;
  color: #fff;
}
.message .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .message .flex {
    display: block;
  }
}
.message .flex .left {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .message .flex .left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.message .flex .left .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .message .flex .left .img {
    margin-bottom: 10px;
  }
}
.message .flex .left .name {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .message .flex .left .name {
    font-size: 18px;
  }
}
.message .flex .right {
  width: 53%;
}
@media screen and (max-width: 1000px) {
  .message .flex .right {
    width: 100%;
  }
}
.message .flex .right p {
  line-height: 2;
  margin: 0 0 2em;
}
@supports (margin-bottom: 1lh) {
  .message .flex .right p {
    margin-bottom: 1lh;
  }
}
.message .flex .right p:last-child {
  margin-bottom: 0;
}

.company0 .row {
  padding: 20px 0;
  border-top: 1px solid #c4c4c4;
}
.company0 .row:last-child {
  border-bottom: 1px solid #c4c4c4;
}
.company0 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.company0 .row .dt {
  width: 280px;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .company0 .row .dt {
    width: 100px;
  }
}
.company0 .row .dd {
  width: calc(100% - 280px);
}
@media screen and (max-width: 1000px) {
  .company0 .row .dd {
    width: calc(100% - 100px);
  }
}

.access {
  background: #f2f5f5;
}
.access .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .access .flex {
    display: block;
  }
}
.access .flex .img {
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .access .flex .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.access .flex .contents {
  width: 45%;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .access .flex .contents {
    font-size: 14px;
    width: 100%;
  }
}
.access .map {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .access .map {
    margin-top: 30px;
  }
}
.access .map .wrap {
  padding-top: 60%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .access .map .wrap {
    padding-top: 100%;
  }
}
.access .map .wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .company2 ul li .img {
    margin-bottom: 0;
    margin-top: 10px;
  }
}
.top1 .flex .img,
.company2 ul li .contents .title {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 0.8s ease;
  transition: opacity 1.5s ease, -webkit-transform 0.8s ease;
  transition: opacity 1.5s ease, transform 0.8s ease;
  transition: opacity 1.5s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.top1 .flex .img.active,
.company2 ul li .contents .title.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.archive-works .lists ul li a {
  padding: 20px;
}

.mv {
  position: relative;
  z-index: 2;
}

.top1 {
  position: relative;
}
.top1 .icon1 {
  position: absolute;
  top: 0px;
  max-width: 92px;
  right: 15%;
}
@media screen and (max-width: 1000px) {
  .top1 .icon1 {
    max-width: 57px;
    top: 70%;
    right: 5%;
  }
}
.top1 .icon2 {
  position: absolute;
  top: 5%;
  max-width: 142px;
  right: -20px;
}
@media screen and (max-width: 1000px) {
  .top1 .icon2 {
    top: 55%;
    right: -10px;
    max-width: 60px;
  }
}
.top1 .icon3 {
  position: absolute;
  top: 35%;
  max-width: 102px;
  right: 10%;
}
@media screen and (max-width: 1000px) {
  .top1 .icon3 {
    top: 90%;
    right: initial;
    left: -2%;
    max-width: 40px;
  }
}
.top1 .icon4 {
  position: absolute;
  bottom: -50px;
  right: -2%;
  max-width: 162px;
}
@media screen and (max-width: 1000px) {
  .top1 .icon4 {
    max-width: 70px;
  }
}

.top1 .flex {
  position: relative;
  z-index: 4;
}

.top1 .inner {
  position: relative;
  z-index: 4;
}

.top1 .icon1 img {
  -webkit-animation: floatY 3.5s ease-in-out infinite;
          animation: floatY 3.5s ease-in-out infinite;
}

.top1 .icon2 img {
  -webkit-animation: floatY 6s ease-in-out infinite;
          animation: floatY 6s ease-in-out infinite;
}

.top1 .icon3 img {
  -webkit-animation: floatY 4.5s ease-in-out infinite;
          animation: floatY 4.5s ease-in-out infinite;
}

.top1 .icon4 img {
  -webkit-animation: floatY 6s ease-in-out infinite;
          animation: floatY 6s ease-in-out infinite;
}

@media screen and (min-width: 1001px) {
  @-webkit-keyframes floatY {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-35px);
              transform: translateY(-35px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes floatY {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-35px);
              transform: translateY(-35px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
@media screen and (max-width: 1000px) {
  @-webkit-keyframes floatY {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-15px);
              transform: translateY(-15px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes floatY {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-15px);
              transform: translateY(-15px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
.top-works {
  position: relative;
}
.top-works .icon5 {
  position: absolute;
  bottom: 6%;
  max-width: 350px;
  left: -140px;
}
.top-works .icon5 img {
  -webkit-animation: floatYY 8.2s ease-in-out infinite;
          animation: floatYY 8.2s ease-in-out infinite;
}
@media screen and (max-width: 1000px) {
  .top-works .icon5 {
    max-width: 57px;
  }
}
.top-works .icon6 {
  position: absolute;
  top: 8%;
  max-width: 152px;
  left: -2%;
}
.top-works .icon6 img {
  -webkit-animation: floatYY 12.5s ease-in-out infinite;
          animation: floatYY 12.5s ease-in-out infinite;
}
@media screen and (max-width: 1000px) {
  .top-works .icon6 {
    max-width: 60px;
  }
}
.top-works .icon7 {
  position: absolute;
  top: 50%;
  max-width: 132px;
  left: 20%;
}
.top-works .icon7 img {
  -webkit-animation: floatYY 9.5s ease-in-out infinite;
          animation: floatYY 9.5s ease-in-out infinite;
}
@media screen and (max-width: 1000px) {
  .top-works .icon7 {
    max-width: 50px;
  }
}
.top-works .icon8 {
  position: absolute;
  bottom: 10%;
  right: -60px;
  max-width: 162px;
}
.top-works .icon8 img {
  -webkit-animation: floatYY 12.6s ease-in-out infinite;
          animation: floatYY 12.6s ease-in-out infinite;
}
@media screen and (max-width: 1000px) {
  .top-works .icon8 {
    max-width: 70px;
  }
}

@media screen and (min-width: 1001px) {
  @-webkit-keyframes floatYY {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-32px);
              transform: translateY(-32px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes floatYY {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-32px);
              transform: translateY(-32px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
@media screen and (max-width: 1000px) {
  @-webkit-keyframes floatYY {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-15px);
              transform: translateY(-15px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes floatYY {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-15px);
              transform: translateY(-15px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
@media screen and (max-width: 1000px) {
  .top-works .icon5 {
    position: absolute;
    bottom: 24%;
    left: -20px;
  }
  .top-works .icon6 {
    position: absolute;
    top: -4%;
    max-width: 80px;
    /* max-width: 152px; */
    left: -2%;
  }
  .top-works .icon7 {
    display: none;
  }
  .top-works .icon8 {
    display: none;
  }
  .company2 ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .company2 ul li .img {
    margin-top: 0;
    margin-bottom: 15px;
  }
  .company2 ul li .contents .title .en {
    font-size: 32px;
  }
  .category-area {
    margin-bottom: 0;
  }
  .company2 ul li .img img {
    max-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.message {
  position: relative;
  z-index: 1;
}

.company-bg {
  position: relative;
}
.company-bg .company2 {
  position: relative;
  z-index: 2;
}
.company-bg .icon0 {
  position: absolute;
}
.company-bg .inner {
  position: relative;
  z-index: 4;
}
.company-bg .icon4 {
  max-width: 150px;
  left: -40px;
  top: 80px;
  -webkit-animation: floatY 2.5s ease-in-out infinite;
          animation: floatY 2.5s ease-in-out infinite;
}
.company-bg .icon1 {
  max-width: 90px;
  right: 5%;
  top: 50%;
  -webkit-animation: floatY 3s ease-in-out infinite;
          animation: floatY 3s ease-in-out infinite;
}
.company-bg .icon8 {
  max-width: 130px;
  right: -2%;
  top: 60%;
  -webkit-animation: floatY 4s ease-in-out infinite;
          animation: floatY 4s ease-in-out infinite;
}
.company-bg .icon3 {
  max-width: 90px;
  left: 6%;
  top: 65%;
  -webkit-animation: floatY 4s ease-in-out infinite;
          animation: floatY 4s ease-in-out infinite;
}
.company-bg .icon10 {
  max-width: 150px;
  right: 0;
  bottom: -50px;
  -webkit-animation: floatY 6.5s ease-in-out infinite;
          animation: floatY 6.5s ease-in-out infinite;
}

@media screen and (max-width: 1000px) {
  .company-bg .icon10 {
    max-width: 80px;
    right: 0;
    bottom: -20px;
  }
  .company-bg .icon3 {
    max-width: 50px;
    left: initial;
    right: -2%;
    top: 52%;
  }
  .company-bg .icon8 {
    max-width: 70px;
    right: 5%;
    top: 24%;
  }
  .company-bg .icon4 {
    max-width: 90px;
    left: -22px;
    top: 90px;
  }
  .category-area ul li a {
    font-size: 14px;
  }
  .company-bg .icon1 {
    max-width: 50px;
    left: -15px;
    right: initial;
    top: 40%;
  }
}
.message {
  position: relative;
}
.message .icon1 {
  position: absolute;
  max-width: 150px;
  left: -20px;
  bottom: 20%;
  -webkit-animation: floatY 6.5s ease-in-out infinite;
          animation: floatY 6.5s ease-in-out infinite;
}
@media screen and (max-width: 1000px) {
  .message .icon1 {
    max-width: 70px;
    left: -10px;
  }
}
.message .icon2 {
  max-width: 210px;
  position: absolute;
  bottom: -100px;
  left: 20%;
  -webkit-animation: floatY 3.5s ease-in-out infinite;
          animation: floatY 3.5s ease-in-out infinite;
}
@media screen and (max-width: 1000px) {
  .message .icon2 {
    max-width: 100px;
    bottom: 0;
  }
}

.company0 {
  position: relative;
  z-index: 2;
  background: #fff;
}

.section-btn a span {
  letter-spacing: 1px;
}

.pagination,
.nav-links {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .pagination,
  .nav-links {
    margin-top: 30px;
  }
}
.pagination span,
.nav-links span {
  color: #1fc9d5;
}
.pagination a,
.nav-links a {
  color: #1f1f1f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination a:hover,
.nav-links a:hover {
  opacity: 0.6;
}
.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
  font-size: 18px;
  font-weight: 600;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  display: inline-block;
  margin: 0 5px;
}
.pagination .next,
.pagination .prev,
.nav-links .next,
.nav-links .prev {
  display: none;
}

@media screen and (max-width: 1000px) {
  .archive-news .main-flex .sub ul li {
    margin-right: 22px;
  }
}
.contact {
  color: #393939;
}
.contact input[type=submit] {
  opacity: 0;
  position: absolute;
  left: -1000%;
}
.contact .submit {
  text-align: center;
}

.wpcf7-spinner {
  display: none !important;
}

.submit-design .submit-design-wrap {
  padding-top: 10px;
  padding-bottom: 10px;
}

.contact .row input[type=radio] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}
.contact .row .wpcf7-list-item-label {
  padding-left: 18px;
  position: relative;
}
.contact .row .wpcf7-list-item-label::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #1f1f1f;
  border-radius: 50%;
}
.contact .row .wpcf7-list-item-label::after {
  position: absolute;
  left: 2.5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid #e55e9c;
  border-radius: 50%;
  background: #e55e9c;
  opacity: 0;
}
.contact .row input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact .row input[type=radio]:checked + .wpcf7-list-item-label::before {
  border: 1px solid #e55e9c;
}
.contact .row .wpcf7-list-item {
  margin: 0;
  margin-right: 20px;
}

.row .wpcf7-list-item-label {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .row .wpcf7-list-item-label {
    font-size: 14px;
  }
}

.check-row .wpcf7-list-item {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .check-row .wpcf7-list-item {
    font-size: 14px;
  }
}
.check-row a {
  color: #1f1f1f;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.check-row a:hover {
  opacity: 0.6;
}
.check-row .wpcf7-list-item-label {
  padding-left: 10px;
}
.check-row .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border: 1px solid #1f1f1f;
}
.check-row .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  left: 2px;
  height: 3px;
  width: 17px;
  border-bottom: 4px solid #1f1f1f;
  opacity: 0;
  border-left: 4px solid #1f1f1f;
}
.check-row input[type=checkbox] {
  position: absolute;
  left: -1000%;
}
.check-row input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.video {
  padding-top: 56.25%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top1 .icon1 {
  z-index: 5;
}

.l-inner {
  max-width: 1200px;
}

@media screen and (min-width: 1001px) {
  .service-slider .swiper-slide {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .service-slider .swiper-slide-visible {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media screen and (max-width: 1000px) {
  .service-slider .swiper-slide {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .swiper-slide-active {
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  .category-area-works {
    margin-bottom: 50px !important;
  }
}
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1000px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}

.swiper-button-prev {
  background-image: url("../img/s-arrow-prev.png");
}

.swiper-button-next {
  background-image: url("../img/s-arrow-next.png");
}

/* デフォルト矢印消す */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-next {
  right: -47px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .swiper-button-next {
    right: 10px;
  }
}

.swiper-button-prev {
  left: -47px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .swiper-button-prev {
    left: 10px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1001px) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 0.6;
  }
}

.mv .wrap {
  padding-top: 50.25%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .mv .wrap {
    padding-top: 58%;
  }
}
.mv .wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .mv .contents {
    position: absolute;
    bottom: -35px;
    left: 0%;
    /* -webkit-transform: translateX(-50%); */
    -webkit-transform: initial;
            transform: initial;
    width: 100%;
    bottom: -19%;
  }
  .mv .contents img {
    width: 100%;
  }
}
.category-area ul li a {
  border-radius: 8px;
}

.archive-works .lists ul li .category .item {
  border-radius: 8px;
}

.contact .required {
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#1fc9d5), to(#11bcc8));
  background: linear-gradient(to right, #1fc9d5 0%, #11bcc8 100%);
}

.archive-works .lists ul li .img .wrap {
  padding-top: 55%;
  position: relative;
}
.archive-works .lists ul li .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-works li .wrap {
  padding-top: 55%;
  position: relative;
}
.top-works li .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wp-block-embed {
  text-align: center;
  margin: 0 auto;
}
.wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%;
}
.wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.works-single .inner {
  max-width: 800px;
  margin: 0 auto;
}

iframe {
  width: 100%;
}

.works-single .flex .right .category {
  border-radius: 8px;
}

.works-single .flex .right .category {
  margin-bottom: 10px;
}

.archive-works .lists ul li .category .item {
  padding: 1px 8px;
  margin-right: 5px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1100px) {
  .archive-works .lists ul li .category .item {
    font-size: 12px;
  }
}
.archive-works .lists ul li .category {
  margin-bottom: 10px;
  min-height: 25px;
}

.archive-works .lists ul li .category {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media screen and (min-width: 1001px) {
  .archive-works .lists ul li h2 {
    min-height: 48px;
  }
}
.single-news .contents p {
  margin-bottom: 20px;
}