@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.dispPC {
  display: block;
}
@media screen and (max-width: 960px) {
  .dispPC {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .dispPC {
    display: none;
  }
}

.dispSP {
  display: none;
}
@media screen and (max-width: 960px) {
  .dispSP {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .dispSP {
    display: block;
  }
}

.dispTB {
  display: none;
}
@media screen and (min-width: 961px) {
  .dispTB {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .dispTB {
    display: none;
  }
}

/* ------------------------
html body基本設定
------------------------*/
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
}
html #fade-disp {
  display: none;
}
html body {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  word-break: normal;
  min-height: 100vh;
  max-width: 100vw;
  width: 100vw;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  min-height: -webkit-fill-available;
  font-family: "Noto Sans JP", sans-serif;
}
html body #loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  text-align: center;
}
html body #loading .img_box {
  width: 100px;
  margin: 0 auto;
  height: 100vh;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  html body #loading .img_box {
    width: 80px;
  }
}
html body .pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 7;
}
html body .pagetop a {
  display: block;
  width: 80px;
  opacity: 1;
  transition: 0.8s;
}
html body .pagetop a:hover {
  display: block;
  opacity: 0.5;
  transition: 0.8s;
}
html header {
  height: 80px;
}
html header .site-container {
  height: 80px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
html header .header-logo {
  width: 60px;
}
@media screen and (max-width: 768px) {
  html header .header-logo {
    width: 50px;
  }
}
html header .header-menu_pc {
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html header .header-menu_pc {
    max-width: 400px;
  }
}
@media screen and (max-width: 568px) {
  html header .header-menu_pc {
    display: none;
  }
}
html header .header-menu_pc .header-menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
html header .header-menu_pc .header-menu-list .header-menu-link {
  font-size: 0.875rem;
  transition: 0.6s;
}
html header .header-menu_pc .header-menu-list .header-menu-link:hover {
  opacity: 0.6;
  transition: 0.6s;
}
html header .header-menu_sp {
  display: none;
}
@media screen and (max-width: 568px) {
  html header .header-menu_sp {
    display: block;
  }
}
html header .header-menu_sp .open {
  position: fixed;
  top: 4px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s linear;
  z-index: 6;
}
html header .header-menu_sp .open:hover {
  opacity: 0.8;
}
html header .header-menu_sp .open span {
  display: block;
  float: left;
  clear: both;
  height: 2px;
  width: 32px;
  border-radius: 30px;
  background-color: rgb(11, 41, 104);
  position: absolute;
  right: 3px;
  top: 3px;
  overflow: hidden;
  transition: all 0.4s ease;
}
html header .header-menu_sp .open span:nth-child(1) {
  margin-top: 10px;
  z-index: 6;
}
html header .header-menu_sp .open span:nth-child(2) {
  margin-top: 20px;
}
html header .header-menu_sp .open span:nth-child(3) {
  margin-top: 30px;
}
html header .header-menu_sp .oppenned .sub-menu {
  opacity: 1;
  height: 400px;
  width: 400px;
}
html header .header-menu_sp .oppenned span:nth-child(2) {
  overflow: visible;
}
html header .header-menu_sp .oppenned span:nth-child(1),
html header .header-menu_sp .oppenned span:nth-child(3) {
  z-index: 6;
  transform: rotate(45deg);
  background-color: #ffffff;
}
html header .header-menu_sp .oppenned span:nth-child(1) {
  transform: rotate(45deg) translateY(4px) translateX(10px);
}
html header .header-menu_sp .oppenned span:nth-child(2) {
  height: 420px;
  width: 420px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background-color: rgba(20, 59, 101, 0.8);
}
html header .header-menu_sp .oppenned span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(10px);
}
html header .header-menu_sp .oppenned li {
  margin-right: 168px;
}
html header .header-menu_sp .sub-menu {
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  position: absolute;
  background-color: rgba(38, 84, 133, 0.8);
  border-radius: 50%;
  z-index: 5;
  overflow: hidden;
}
html header .header-menu_sp .sub-menu li {
  display: block;
  float: right;
  clear: both;
  height: auto;
  margin-right: 210px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
html header .header-menu_sp .sub-menu li:first-child {
  margin-top: 180px;
}
html header .header-menu_sp .sub-menu li:nth-child(1) {
  transition-delay: 0.05s;
}
html header .header-menu_sp .sub-menu li:nth-child(2) {
  transition-delay: 0.1s;
}
html header .header-menu_sp .sub-menu li:nth-child(3) {
  transition-delay: 0.15s;
}
html header .header-menu_sp .sub-menu li:nth-child(4) {
  transition-delay: 0.2s;
}
html header .header-menu_sp .sub-menu li:nth-child(5) {
  transition-delay: 0.25s;
}
html header .header-menu_sp .sub-menu li a {
  color: #fff;
  font-size: 0.875rem;
  width: 100%;
  display: block;
  float: left;
  line-height: 3em;
}
html main {
  position: relative;
}
html main .kurage-01 {
  position: absolute;
  top: 0;
  right: 3%;
  z-index: 4;
  width: 80px;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(15%);
  }
}
html main .top-mv {
  height: 520px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  html main .top-mv {
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  html main .top-mv {
    height: 400px;
  }
}
@media screen and (max-width: 568px) {
  html main .top-mv {
    height: 340px;
  }
}
@media screen and (max-width: 480px) {
  html main .top-mv {
    height: 300px;
  }
}
html main .top-mv .top-mv-video {
  height: 520px;
  position: relative;
}
@media screen and (max-width: 960px) {
  html main .top-mv .top-mv-video {
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  html main .top-mv .top-mv-video {
    height: 400px;
  }
}
@media screen and (max-width: 568px) {
  html main .top-mv .top-mv-video {
    height: 340px;
  }
}
@media screen and (max-width: 480px) {
  html main .top-mv .top-mv-video {
    height: 300px;
  }
}
html main .top-mv .top-mv-video video {
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, calc(15% + 220px) 100%);
          clip-path: polygon(15% 0, 100% 0, 100% 100%, calc(15% + 220px) 100%);
}
@media screen and (max-width: 960px) {
  html main .top-mv .top-mv-video video {
    -webkit-clip-path: polygon(16% 0, 100% 0, 100% 100%, calc(16% + 160px) 100%);
            clip-path: polygon(16% 0, 100% 0, 100% 100%, calc(16% + 160px) 100%);
  }
}
@media screen and (max-width: 768px) {
  html main .top-mv .top-mv-video video {
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, calc(10% + 140px) 100%);
            clip-path: polygon(10% 0, 100% 0, 100% 100%, calc(10% + 140px) 100%);
  }
}
@media screen and (max-width: 568px) {
  html main .top-mv .top-mv-video video {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 110px 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 110px 100%);
  }
}
@media screen and (max-width: 380px) {
  html main .top-mv .top-mv-video video {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  }
}
html main .top-mv .top-mv-logo {
  width: 600px;
  position: absolute;
  z-index: 4;
  top: 10%;
}
@media screen and (max-width: 960px) {
  html main .top-mv .top-mv-logo {
    width: 450px;
  }
}
@media screen and (max-width: 568px) {
  html main .top-mv .top-mv-logo {
    width: 350px;
  }
}
@media screen and (max-width: 380px) {
  html main .top-mv .top-mv-logo {
    width: 280px;
    top: 8%;
  }
}
html main .top-mv .top-mv-logo img {
  width: 100%;
}
html main .top-mv .top-mv-title {
  color: #ffffff;
  position: absolute;
  top: 310px;
  left: 45%;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  html main .top-mv .top-mv-title {
    top: 300px;
  }
}
@media screen and (max-width: 768px) {
  html main .top-mv .top-mv-title {
    top: 250px;
  }
}
@media screen and (max-width: 568px) {
  html main .top-mv .top-mv-title {
    top: 230px;
    left: 37%;
  }
}
@media screen and (max-width: 480px) {
  html main .top-mv .top-mv-title {
    top: 190px;
    left: 35%;
  }
}
@media screen and (max-width: 380px) {
  html main .top-mv .top-mv-title {
    top: 195px;
    left: 28%;
  }
}
html main .top-mv .top-mv-title::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 220px;
  background-color: #ffffff;
  position: absolute;
  bottom: -40px;
  left: -100px;
  -webkit-clip-path: polygon(0 0, 15% 0, 100% 100%, 85% 100%);
          clip-path: polygon(0 0, 15% 0, 100% 100%, 85% 100%);
}
@media screen and (max-width: 960px) {
  html main .top-mv .top-mv-title::before {
    height: 170px;
    width: 80px;
    left: -80px;
    bottom: -30px;
  }
}
@media screen and (max-width: 768px) {
  html main .top-mv .top-mv-title::before {
    height: 150px;
    width: 70px;
    left: -70px;
    bottom: -30px;
  }
}
@media screen and (max-width: 568px) {
  html main .top-mv .top-mv-title::before {
    height: 130px;
    width: 50px;
    left: -70px;
    bottom: -20px;
  }
}
@media screen and (max-width: 480px) {
  html main .top-mv .top-mv-title::before {
    height: 120px;
    width: 50px;
    left: -55px;
    bottom: -25px;
  }
}
@media screen and (max-width: 380px) {
  html main .top-mv .top-mv-title::before {
    height: 120px;
    width: 40px;
    left: -44px;
    bottom: -20px;
  }
}
html main .top-mv .top-mv-title h3 {
  font-size: 3.25rem;
  font-weight: 900;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  html main .top-mv .top-mv-title h3 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  html main .top-mv .top-mv-title h3 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 568px) {
  html main .top-mv .top-mv-title h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  html main .top-mv .top-mv-title h3 {
    margin-bottom: 10px;
  }
}
html main .top-mv .top-mv-title p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8em;
}
@media screen and (max-width: 960px) {
  html main .top-mv .top-mv-title p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 568px) {
  html main .top-mv .top-mv-title p {
    font-size: 0.875rem;
  }
}
html main .top-mv .site-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}
html main .content-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 30px 80px 30px;
}
@media screen and (max-width: 768px) {
  html main .content-container {
    padding: 70px 20px 80px 20px;
  }
}
@media screen and (max-width: 568px) {
  html main .content-container {
    padding: 50px 20px 40px 20px;
  }
}
html main .inner {
  max-width: 800px;
  margin: 0 auto;
}
html main h2 {
  text-align: center;
}
html main h2 .section-ttl {
  font-size: 3.375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  display: inline-block;
  line-height: 1em;
  font-style: italic;
  position: relative;
}
@media screen and (max-width: 768px) {
  html main h2 .section-ttl {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 380px) {
  html main h2 .section-ttl {
    font-size: 2.25rem;
  }
}
html main h2 .section-ttl::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 64px;
  background-color: #000000;
  position: absolute;
  right: -70px;
  bottom: 8px;
  -webkit-clip-path: polygon(0 0, 30% 0, 100% 100%, 70% 100%);
          clip-path: polygon(0 0, 30% 0, 100% 100%, 70% 100%);
}
@media screen and (max-width: 768px) {
  html main h2 .section-ttl::after {
    width: 30px;
    height: 50px;
    right: -50px;
  }
}
@media screen and (max-width: 380px) {
  html main h2 .section-ttl::after {
    width: 24px;
    height: 40px;
    right: -40px;
  }
}
html main h2 .ttl-caption {
  display: block;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  html main h2 .ttl-caption {
    font-size: 0.875rem;
  }
}
html main .section-sub-ttl {
  font-size: 2.0625rem;
  font-weight: 900;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  html main .section-sub-ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 568px) {
  html main .section-sub-ttl {
    margin-bottom: 40px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  html main .section-sub-ttl {
    line-height: 1.5em;
    text-align: center;
  }
}
html main .section-text {
  font-size: 1rem;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  html main .section-text {
    font-size: 0.875rem;
  }
}
html main #message .message {
  position: relative;
}
html main #message .message .kurage-02 {
  position: absolute;
  top: 0;
  left: 3%;
  z-index: 1;
  width: 80px;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
html main #service .service {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/images/service_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
html main #service .section-ttl,
html main #service .ttl-caption,
html main #service .section-text {
  color: #ffffff;
}
html main #service .section-ttl::after {
  background-color: #ffffff;
}
html main #service .section-text {
  margin-bottom: 40px;
}
html main #service .service-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 60px;
}
@media screen and (max-width: 960px) {
  html main #service .service-group {
    row-gap: 40px;
  }
  html main #service .service-group .order-01 {
    order: 1;
  }
  html main #service .service-group .order-02 {
    order: 2;
  }
  html main #service .service-group .order-03 {
    order: 3;
  }
  html main #service .service-group .order-04 {
    order: 4;
  }
}
@media screen and (max-width: 568px) {
  html main #service .service-group {
    row-gap: 30px;
  }
}
html main #service .service-group .service-item {
  background-color: #ffffff;
  display: flex;
  width: 450px;
  height: 375px;
}
@media screen and (max-width: 960px) {
  html main #service .service-group .service-item {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  html main #service .service-group .service-item {
    width: 500px;
    height: 320px;
    margin: 0 auto;
  }
}
html main #service .service-group .service-item:nth-of-type(1) {
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  html main #service .service-group .service-item:nth-of-type(1) {
    margin-top: 0;
  }
}
html main #service .service-group .service-item:nth-of-type(4) {
  margin-top: -60px;
}
@media screen and (max-width: 960px) {
  html main #service .service-group .service-item:nth-of-type(4) {
    margin-top: 0;
  }
}
html main #service .service-group .service-item .service-item-img {
  width: 35%;
  position: relative;
}
@media screen and (max-width: 768px) {
  html main #service .service-group .service-item .service-item-img {
    width: 30%;
  }
}
html main #service .service-group .service-item .service-number {
  font-size: 6.25rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  line-height: 1em;
  font-style: italic;
  position: absolute;
  color: #ffffff;
  z-index: 1;
  bottom: 0;
  left: 20px;
}
@media screen and (max-width: 768px) {
  html main #service .service-group .service-item .service-number {
    font-size: 5rem;
  }
}
html main #service .service-group .service-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
}
html main #service .service-group .service-item .service-item-text {
  width: 65%;
  padding: 30px 20px 20px 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  html main #service .service-group .service-item .service-item-text {
    width: 70%;
  }
}
html main #service .service-group .service-item .service-item-text .service-ttl_ja {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  html main #service .service-group .service-item .service-item-text .service-ttl_ja.subsc {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
html main #service .service-group .service-item .service-item-text .service-ttl_en {
  font-size: 1rem;
  color: #6A6464;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  html main #service .service-group .service-item .service-item-text .service-ttl_en {
    margin-bottom: 20px;
  }
}
html main #service .service-group .service-item .service-item-text .service-txt {
  font-size: 1rem;
  line-height: 1.8em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  html main #service .service-group .service-item .service-item-text .service-txt {
    font-size: 0.875rem;
  }
}
html main #service .service-group .service-item .service-item-text .service-btn {
  border: 1px solid;
  margin-top: auto;
  margin-left: auto;
  width: 50%;
  transition: 1.2s;
}
html main #service .service-group .service-item .service-item-text .service-btn:hover {
  background-color: #000;
  color: #ffffff;
  transition: 1s;
}
html main #service .service-group .service-item .service-item-text .service-btn a {
  display: block;
  height: 100%;
  padding: 8px 0px;
  text-align: center;
}
html main #flow .flow .flow-item {
  max-width: 400px;
  margin-bottom: 60px;
}
html main #flow .flow .flow-item:nth-last-of-type(1) {
  margin-bottom: 0;
}
html main #flow .flow .flow-item img {
  width: 100%;
  margin-bottom: 30px;
}
html main #flow .flow .flow-item .flow-item_text {
  line-height: 1.5em;
}
html main #works {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/assets/images/works_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, bottom;
}
html main #works .works .works-item {
  max-width: 400px;
}
html main #works .works .works-item p {
  color: #ffffff;
  line-height: 1.5em;
}
html main #works .works .section-ttl,
html main #works .works .ttl-caption {
  color: #ffffff;
}
html main #works .works .section-ttl::after {
  background-color: #ffffff;
}
html main #infomation .infomation .info-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  padding: 20px 0 20px 20px;
  border-top: 1px solid;
}
@media screen and (max-width: 768px) {
  html main #infomation .infomation .info-item {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 568px) {
  html main #infomation .infomation .info-item .info-title {
    width: 100%;
    margin-top: 8px;
  }
}
html main #infomation .infomation .info-item:nth-last-of-type(1) {
  border-bottom: 1px solid;
}
html main #infomation .infomation .info-item .info-date {
  margin-right: 20px;
}
html main #infomation .infomation .info-item .info-tag {
  margin-right: 40px;
}
html main #about .about {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/images/about_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
html main #about .section-ttl,
html main #about .ttl-caption {
  color: #ffffff;
}
html main #about .section-ttl::after {
  background-color: #ffffff;
}
html main #about .company-profile {
  color: #ffffff;
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 30px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 568px) {
  html main #about .company-profile {
    grid-template-columns: 80px 1fr;
    row-gap: 20px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  html main #about .company-profile {
    grid-template-columns: 60px 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
html main #about .company-profile dt,
html main #about .company-profile dd {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  html main #about .company-profile dt,
  html main #about .company-profile dd {
    font-size: 0.875rem;
  }
}
html main #about .company-profile .company-profile-ttl {
  display: block;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  font-size: 0.75rem;
}
html main #about .company-profile dd {
  line-height: 1.8em;
}
html main #contact .contact .confirm-ttl {
  font-size: 2rem;
  margin-bottom: 60px;
  text-align: center;
}
html main #contact .contact .confirm-ttl span {
  padding: 12px 20px;
  border: 1px solid #000000;
  display: block;
}
@media screen and (max-width: 768px) {
  html main #contact .contact .confirm-ttl {
    font-size: 1.5rem;
  }
}
html main #contact .contact .thanks_message {
  margin-bottom: 30px;
}
html main #contact .contact .thanks_message p {
  font-size: 0.875rem;
}
html main #contact .contact-form {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 30px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  html main #contact .contact-form {
    font-size: 0.875rem;
    padding-right: 0;
  }
}
@media screen and (max-width: 568px) {
  html main #contact .contact-form {
    grid-template-columns: 80px 1fr;
    row-gap: 20px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  html main #contact .contact-form {
    grid-template-columns: 60px 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
html main #contact .contact-form dt,
html main #contact .contact-form dd {
  font-weight: 400;
}
html main #contact .contact-form .contact-form-ttl {
  display: block;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  font-size: 0.75rem;
}
html main #contact .contact-form dd {
  line-height: 1.8em;
}
html main #contact .contact-form .radio {
  margin-bottom: 16px;
}
html main #contact .contact-form input[type=text],
html main #contact .contact-form input[type=email],
html main #contact .contact-form textarea {
  background-color: #f8f3f3;
  border-radius: 4px;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  padding: 8px;
}
html main #contact .contact-form input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html main #contact .contact-form input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: "";
}
html main #contact input[type=submit] {
  display: block;
  margin: 0 auto;
  padding: 16px;
  color: #ffffff;
  text-align: center;
}
html main #contact .button-confirm {
  background-color: red;
  border-radius: 30px;
  transition: 0.8s;
  width: 300px;
  margin: 0 auto;
}
html main #contact .button-confirm .btn {
  display: inline-block;
  width: 100%;
}
html main #contact .button-confirm:hover {
  opacity: 0.6;
  transition: 0.8s;
}
html main #contact .confirm-button-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 768px) {
  html main #contact .confirm-button-wrap {
    flex-direction: column;
  }
}
html main #contact .confirm-button-wrap .button-return {
  background-color: rgb(240, 129, 129);
  border-radius: 30px;
  transition: 0.8s;
  width: 300px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  html main #contact .confirm-button-wrap .button-return {
    order: 2;
  }
}
html main #contact .confirm-button-wrap .button-return button {
  display: inline-block;
  width: 100%;
  padding: 16px;
  color: #ffffff;
}
html main #contact .confirm-button-wrap .button-return:hover {
  opacity: 0.6;
  transition: 0.8s;
}
html main #contact .confirm-button-wrap .button-send {
  background-color: red;
  border-radius: 30px;
  transition: 0.8s;
  width: 300px;
}
@media screen and (max-width: 768px) {
  html main #contact .confirm-button-wrap .button-send {
    order: 1;
    margin-bottom: 20px;
  }
}
html main #contact .confirm-button-wrap .button-send .btn {
  display: inline-block;
  width: 100%;
}
html main #contact .confirm-button-wrap .button-send:hover {
  opacity: 0.6;
  transition: 0.8s;
}
html main #contact .return-top {
  display: block;
  text-align: center;
  width: 80%;
  border: 1px solid #000000;
  border-radius: 60px;
  margin: 0 auto;
}
html main #contact .return-top a {
  display: block;
  padding: 16px;
}
html main #subscription-page {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/assets/images/works_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, bottom;
  color: #ffffff;
}
html main #subscription-page .section-ttl,
html main #subscription-page .section-text {
  color: #ffffff;
}
html main #subscription-page .section-ttl::after {
  background-color: #ffffff;
}
html main #subscription-page p {
  text-align: center;
}
html main #creative-page {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/assets/images/works_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, bottom;
  color: #ffffff;
}
html main #creative-page .section-ttl,
html main #creative-page .section-text {
  color: #ffffff;
}
html main #creative-page .section-ttl::after {
  background-color: #ffffff;
}
html main #creative-page p {
  text-align: center;
}
html footer #footer {
  padding: 30px 0;
  background: linear-gradient(#537895, #09203f);
}
html footer #footer .footer-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 15px;
}
html footer #footer .footer-menu {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}
html footer #footer .footer-menu .footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #ffffff;
}
html footer #footer .footer-menu .footer-menu-list .footer-menu-link {
  font-size: 0.625rem;
}
html footer #footer .company-credit {
  text-align: center;
}
html footer #footer .company-credit .footer-logo {
  width: 50px;
  margin: 0 auto;
  margin-bottom: 8px;
}
html footer #footer .company-credit .footer-logo .footer-logo-img {
  width: 100%;
}
html footer #footer .company-credit .footer-companyname {
  color: #ffffff;
  font-size: 0.6875rem;
  letter-spacing: 0em;
}
html .fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
html .fadein.fadein-left {
  transform: translate(-30px, 0);
}
html .fadein.fadein-right {
  transform: translate(30px, 0);
}
html .fadein.fadein-up {
  transform: translate(0, -30px);
}
html .fadein.fadein-bottom {
  transform: translate(0, 30px);
}
html .fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}/*# sourceMappingURL=styles.css.map */