@charset "UTF-8";
/*======================================================
Import
======================================================*/
/*======================================================
common
======================================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  letter-spacing: 0.08em;
}

body {
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
}
@media (max-width: 520px) {
  body {
    width: 100%;
    font-size: 14px;
  }
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

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

.c-text-inner {
  max-width: 1005px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 520px) {
  .c-text-inner {
    padding: 0 4%;
  }
}

.c-inner {
  max-width: 1260px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .c-inner {
    padding: 0 4%;
  }
}

.c-top__heading {
  display: flex;
  align-items: center;
  gap: 33px;
  position: relative;
  color: #000000;
}
@media (max-width: 520px) {
  .c-top__heading {
    flex-direction: column-reverse;
    gap: 0px;
    align-items: flex-start;
  }
}
.c-top__heading span.en {
  font-size: 90px;
  line-height: 1;
}
@media (max-width: 960px) {
  .c-top__heading span.en {
    font-size: 69px;
  }
}
@media (max-width: 520px) {
  .c-top__heading span.en {
    font-size: 50px;
  }
}
.c-top__heading span.jp {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 520px) {
  .c-top__heading span.jp {
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .c-top__heading span.jp {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.c-top__heading span.jp::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #000000;
}
@media (max-width: 520px) {
  .c-top__heading span.jp::before {
    width: 14px;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 960px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 960px) {
  .sp-only {
    display: block;
  }
}

.c-sub .c-header__container {
  background-color: #ffffff;
}

.c-bottomDeco {
  width: 100%;
  position: absolute;
  bottom: -70px;
  left: 0;
  z-index: 1;
  background-color: #000;
  padding: 15px 0;
  overflow: hidden;
}
@media (max-width: 520px) {
  .c-bottomDeco {
    padding: 10px 0;
    bottom: -55px;
  }
}
.c-bottomDeco .splide__track {
  pointer-events: none;
}
.c-bottomDeco .splide__slide {
  width: 1389px;
}
.c-bottomDeco::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.form_c-btn {
  transition: transform 0.15s;
}
.form_c-btn:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 38px;
  top: calc(50% - 7px);
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(-50%);
  color: inherit;
}
@media (max-width: 520px) {
  .form_c-btn:after {
    width: 8px;
    height: 8px;
    right: 25px;
    top: calc(50% - 5px);
  }
}

.form_c-btn.c-linkbtn input {
  padding: 10px 63px 13px !important;
}
@media (max-width: 520px) {
  .form_c-btn.c-linkbtn input {
    padding: 10px 40px 13px !important;
  }
}

/*======================================================
パンくずリスト
======================================================*/
.c-breadcrumb {
  padding: 14px 0;
  margin-top: 100px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
@media (max-width: 960px) {
  .c-breadcrumb {
    margin-top: 90px;
  }
}
@media (max-width: 520px) {
  .c-breadcrumb {
    margin-top: 65px;
  }
}
.c-breadcrumb__container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  min-width: 0;
}
.c-breadcrumb__container li:last-child a {
  color: #9f9f9f;
  pointer-events: none;
}
.c-breadcrumb__container li:not(:last-child)::after {
  content: ">";
  margin: 0 0.6em;
}
.c-breadcrumb__container li:not(:last-child) a:hover {
  color: #4084a7;
}
.c-breadcrumb__container .current {
  color: #989898;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.c-breadcrumb__container .current span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-title {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin: 72px 0 97px;
  text-align: center;
}
@media (max-width: 960px) {
  .c-title {
    margin: 60px 0 52px;
    font-size: 16px;
  }
}
.c-title::after {
  content: attr(data-title);
  display: block;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.45;
}
@media (max-width: 520px) {
  .c-title::after {
    font-size: 32px;
  }
}
.c-title span {
  color: #000000;
}

.c-sub {
  background: #ffffff;
}

.c-bg1 {
  background-color: #f6f6f6;
  padding: 85px 30px 162px;
}
@media (max-width: 960px) {
  .c-bg1 {
    padding: 122px 15px 128px;
  }
}
@media (max-width: 520px) {
  .c-bg1 {
    padding: 80px 4% 85px;
  }
}

.c-inner-white {
  background-color: #ffffff;
  border-radius: 51px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 79px 82px;
  border: 2px solid #000000;
}
@media (max-width: 960px) {
  .c-inner-white {
    padding: 86px 6%;
    border-radius: 30px;
  }
}
@media (max-width: 520px) {
  .c-inner-white {
    padding: 60px 4%;
    border-radius: 20px;
  }
}

.c-linkbtn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin: 62px auto 0;
}
@media (max-width: 520px) {
  .c-linkbtn {
    margin-top: 31px;
  }
}
.c-linkbtn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #000000;
  border-radius: 17px;
  transform: translate(2px, 3px);
  transition: transform 0.3s;
}
.c-linkbtn span,
.c-linkbtn input[type=submit] {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 100%;
  padding: 10px 52px 13px 63px;
  font-size: 23px;
  font-weight: bold;
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 17px;
  transform: translate(-2px, -3px);
  transition: transform 0.3s;
}
@media (max-width: 520px) {
  .c-linkbtn span,
  .c-linkbtn input[type=submit] {
    gap: 15px;
    padding: 10px 35px 13px 40px;
    font-size: 18px;
  }
}
.c-linkbtn span::after,
.c-linkbtn input[type=submit]::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(calc(-50% + 5px));
  color: inherit;
}
@media (max-width: 520px) {
  .c-linkbtn span::after,
  .c-linkbtn input[type=submit]::after {
    width: 8px;
    height: 8px;
  }
}
.c-linkbtn:hover span {
  transform: translate(0, 0);
}
.c-linkbtn:hover::before {
  transform: translate(0, 0);
}

/*====================================================== main ======================================================*/
.c-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media (min-width: 520px) {
  .c-header h1 {
    line-height: 1;
  }
}
@media (max-width: 520px) {
  .c-header__title-logo {
    transform: translateY(-5px);
  }
}
.c-header__title-logo img {
  width: 80%;
}
@media (max-width: 520px) {
  .c-header__title-logo img {
    width: 65%;
  }
}
.c-header__container {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  position: relative;
  transition: background 0.3s, padding 0.3s;
}
.c-header__container.scroll {
  background-color: #ffeb3b;
  box-shadow: 0 0 10px rgba(64, 64, 64, 0.15);
  padding: 22px 30px 22px;
  transition: background 0.3s, padding 0.3s;
}
@media (max-width: 960px) {
  .c-header__container {
    padding: 15px 30px;
  }
  .c-header__container.scroll {
    padding: 15px 30px;
  }
}
@media (max-width: 520px) {
  .c-header__container {
    padding: 10px 4%;
  }
  .c-header__container.scroll {
    padding: 10px 4%;
  }
}
.c-header {
  /* ヘッダーのナビ部分 */
}
.c-header__nav {
  position: absolute;
  right: -75%;
  top: 0;
  width: 75%;
  height: 100vh;
  transition: ease 0.4s;
  z-index: 120;
}
.c-header__nav.active {
  right: 0;
}
@media (min-width: 960px) {
  .c-header__nav {
    position: static;
    transform: initial;
    height: inherit;
  }
}
@media (max-width: 960px) {
  .c-header__nav {
    background-color: #ffffff;
  }
}
.c-header .nav-items {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}
@media (min-width: 960px) {
  .c-header .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media (max-width: 960px) {
  .c-header .nav-items {
    width: 85%;
  }
}
.c-header {
  /* ナビのリンク */
}
.c-header__nav-items__item {
  color: black;
}
.c-header__nav-items__item__c-btn {
  background: #e91e63;
  color: #ffffff;
  padding: 16px 37px;
  border-radius: 7px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  transform: translate(0, 0px);
  transition: transform 0.15s;
}
@media (max-width: 960px) {
  .c-header__nav-items__item__c-btn {
    margin-top: 34px;
    display: none !important;
  }
}
.c-header__nav-items__item__c-btn:hover {
  transform: translate(0, 4px);
  transition: transform 0.15s;
}
@media (max-width: 960px) {
  .c-header__nav-items__item a {
    display: block;
    border-bottom: 2px solid #000000;
    padding-bottom: 12.5px;
    margin-bottom: 12.5px;
    font-size: 16px;
  }
  .c-header__nav-items__item .c-linkbtn {
    display: block;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .c-header__nav-items__item:last-child a {
    border-bottom: none;
  }
}
.c-header__nav-items__item .c-linkbtn {
  display: none;
}
@media (max-width: 960px) {
  .c-header__nav-items__item .c-linkbtn {
    display: block;
  }
}
.c-header__nav-items__item.active {
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-thickness: 3px;
}
@media (max-width: 960px) {
  .c-header__nav-items__item.active {
    text-decoration: none;
  }
}
@media (min-width: 960px) {
  .c-header__nav-items__item {
    margin-left: 68px;
    position: relative;
  }
  .c-header__nav-items__item:not(:last-child) a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background: #000;
    bottom: -5px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    border-radius: 5px;
  }
  .c-header__nav-items__item:not(:last-child) a:hover::after {
    transform: scale(1, 1);
  }
  .c-header__nav-items__item:last-child a:hover {
    transform: translate(0, 4px);
    transition: transform 0.15s;
  }
}
.c-header {
  /* ハンバーガーメニューの線 */
}
.c-header__hamburger span {
  width: 100%;
  height: 4px;
  background: #000000;
  position: relative;
  transition: ease 0.4s;
  display: block;
  border-radius: 2px;
}
.c-header__hamburger span:nth-child(1) {
  top: 0;
}
.c-header__hamburger span:nth-child(2) {
  margin: 9px 0;
}
@media (max-width: 520px) {
  .c-header__hamburger span:nth-child(2) {
    margin: 5px 0;
  }
}
.c-header__hamburger span:nth-child(3) {
  top: 0;
}
.c-header {
  /* ハンバーガーメニュークリック後のスタイル */
}
.c-header__nav.active {
  transform: translateX(0);
}
.c-header__hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.c-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
@media (max-width: 520px) {
  .c-header__hamburger.active span:nth-child(2) {
    margin: 8px 0;
  }
}
.c-header__hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}
.c-header a img:hover {
  opacity: 0.7;
}
.c-header {
  /* ハンバーガーメニュー */
}
.c-header__hamburger {
  width: 48px;
  height: 100%;
}
@media (max-width: 520px) {
  .c-header__hamburger {
    width: 28px;
  }
}
.c-header .hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media (min-width: 960px) {
  .c-header__hamburger {
    display: none;
  }
}
.c-header {
  /* メニュー 背景*/
}
.c-header__hamburger_back {
  position: fixed;
  background-color: #ffeb3b;
  opacity: 0;
  top: 0;
  right: 0%;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.c-header__hamburger_back.active {
  opacity: 0.8;
  transition: ease 0.4s;
  pointer-events: inherit;
}

/*======================================================
トップページ
======================================================*/
.l-top__hero {
  position: relative;
  padding: 50px 0 270px;
  background-size: cover, auto;
  background-position: center center;
  background-color: #ffffff;
  background-repeat: no-repeat, repeat;
}
@media (min-width: 520px) {
  .l-top__hero {
    background-color: #ffeb3b;
    background-image: url(../images/top-pc.svg);
  }
}
@media (max-width: 520px) {
  .l-top__hero {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 0;
    background-color: #ffeb3b;
    background-image: url(../images/top-sp.svg);
  }
}
.l-top__hero__text-group {
  margin-top: 220px;
}
@media (max-width: 520px) {
  .l-top__hero__text-group {
    margin-top: 64px;
  }
}
.l-top__hero__text-group .hero-tb {
  display: none;
}
@media (max-width: 960px) {
  .l-top__hero__text-group .hero-tb {
    display: block;
  }
}
.l-top__hero__text-group .hero-sp {
  display: none;
}
@media (max-width: 520px) {
  .l-top__hero__text-group .hero-sp {
    display: block;
  }
}
.l-top__hero__text-group .catch {
  font-size: 70px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .l-top__hero__text-group .catch {
    font-size: 6vw;
  }
}
@media (max-width: 960px) {
  .l-top__hero__text-group .catch {
    font-size: 60px;
  }
}
@media (max-width: 520px) {
  .l-top__hero__text-group .catch {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.l-top__hero__text-group .text {
  font-size: 20px;
  line-height: 2;
  font-weight: bold;
  color: #131313;
}
@media (max-width: 520px) {
  .l-top__hero__text-group .text {
    font-size: 16px;
  }
}
.l-top__hero__text-group .text + .text {
  margin-top: 1em;
}

.l-top__about {
  padding: 232px 0 162px;
}
@media (max-width: 520px) {
  .l-top__about {
    padding: 140px 0 85px;
  }
}
.l-top__about .c-text-inner {
  position: relative;
}
.l-top__about .c-top__heading {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.l-top__about .c-top__heading span.jp {
  margin-bottom: 14px;
}
@media (max-width: 520px) {
  .l-top__about .c-top__heading span.jp {
    margin-bottom: 8px;
  }
}
.l-top__about__catch {
  margin-top: 40px;
  font-size: 35px;
  font-weight: bold;
  line-height: 1.4571428571;
  letter-spacing: 3.5px;
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .l-top__about__catch {
    margin-top: 30px;
    font-size: 22px;
  }
  .l-top__about__catch br {
    display: none;
  }
}
.l-top__about__catch__pc {
  display: block;
}
@media (max-width: 960px) {
  .l-top__about__catch__pc {
    display: none;
  }
}
.l-top__about__text {
  line-height: 2;
}
.l-top__about__text + .l-top__about__text {
  margin-top: 1em;
}
@media (min-width: 520px) {
  .l-top__about__text {
    font-size: 18px;
  }
}

@keyframes moveUp {
  0% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: 50px;
  }
}
.l-top__services {
  margin-top: 30px;
  background-color: #33b0ff;
  position: relative;
  padding: 169px 30px 232px;
  background-image: url("../images/service-bg.svg");
  background-repeat: repeat-y;
  background-position: top center;
}
@media (max-width: 960px) {
  .l-top__services {
    padding: 162px 0px 162px;
  }
}
@media (max-width: 520px) {
  .l-top__services {
    padding: 92px 0 85px;
    background-size: 180%;
  }
}
.l-top__services__decoFrame {
  display: block;
  width: 100%;
  min-height: 103px;
  height: 103px;
  position: absolute;
  top: -60px;
  left: 0;
  overflow: hidden;
}
@media (max-width: 960px) {
  .l-top__services__decoFrame {
    min-height: 75px;
    height: 75px;
    top: -35px;
  }
}
@media (max-width: 520px) {
  .l-top__services__decoFrame {
    min-height: 50px;
    height: 50px;
    top: -25px;
  }
}
.l-top__services__deco {
  width: 100%;
  min-height: 103px;
  height: 100%;
  background-image: url("../images/service-decoration.svg");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 103px;
}
@media (max-width: 960px) {
  .l-top__services__deco {
    min-height: 75px;
    height: 75px;
    background-size: auto 75px;
  }
}
@media (max-width: 520px) {
  .l-top__services__deco {
    min-height: 50px;
    height: 50px;
    background-size: auto 50px;
  }
}
.l-top__services .c-text-inner {
  color: #ffffff;
  text-shadow: 0px 3px 10px rgba(64, 132, 167, 0.3803921569);
  margin-bottom: 34px;
}
@media (max-width: 520px) {
  .l-top__services .c-text-inner {
    margin-bottom: 30px;
  }
}
.l-top__services .c-text-inner .c-top__heading {
  margin-bottom: 60px;
}
@media (max-width: 960px) {
  .l-top__services .c-text-inner .c-top__heading {
    margin-bottom: 50px;
  }
}
@media (max-width: 520px) {
  .l-top__services .c-text-inner .c-top__heading {
    margin-bottom: 30px;
  }
}
.l-top__services .c-text-inner .catch {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4285714286;
}
@media (max-width: 520px) {
  .l-top__services .c-text-inner .catch {
    font-size: 20px;
  }
}
.l-top__services .c-text-inner .text {
  line-height: 2;
}
.l-top__services .c-text-inner .text + .text {
  margin-bottom: 1em;
}
.l-top__services__btn__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 72px;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto 75px;
  padding: 0 30px;
}
@media (max-width: 960px) {
  .l-top__services__btn__list {
    flex-wrap: wrap;
    padding: 0 30px;
    gap: 0px 35px;
    margin-bottom: 49px;
  }
}
@media (max-width: 960px) {
  .l-top__services__btn__list {
    padding: 0 30px;
  }
}
@media (max-width: 520px) {
  .l-top__services__btn__list {
    padding: 0 4%;
    margin-bottom: 30px;
    gap: 20px;
  }
}
.l-top__services__btn__list li {
  display: inline-block;
  width: 260px;
  height: 260px;
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translate(-2px, -3px);
  transition: transform 0.3s;
}
@media (max-width: 960px) {
  .l-top__services__btn__list li {
    width: 212px;
    height: 212px;
  }
}
@media (max-width: 520px) {
  .l-top__services__btn__list li {
    width: 155px;
    height: 155px;
  }
}
.l-top__services__btn__list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(calc(-50% + 4px), calc(-50% + 6px));
  background-color: #000000;
  border-radius: 50%;
  transition: transform 0.3s;
}
.l-top__services__btn__list li:hover {
  transform: translate(0px, 0px);
}
.l-top__services__btn__list li:hover::before {
  transform: translate(-50%, -50%);
}
.l-top__services__btn__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #ffffff;
  border-radius: 50%;
}
.l-top__services__btn__list li a::before {
  content: attr(data-number);
  font-size: 42px;
  font-weight: bold;
  line-height: 1.5333333333;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
@media (max-width: 960px) {
  .l-top__services__btn__list li a::before {
    font-size: 27px;
  }
}
@media (max-width: 520px) {
  .l-top__services__btn__list li a::before {
    font-size: 20px;
  }
}
.l-top__services__btn__list li a::after {
  content: "";
  background-image: url(../images/triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  margin-top: 30px;
}
@media (max-width: 960px) {
  .l-top__services__btn__list li a::after {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 520px) {
  .l-top__services__btn__list li a::after {
    width: 20px;
    height: 20px;
    margin-top: 13px;
  }
}
.l-top__services__btn__list .circle-catch {
  font-size: 26px;
  line-height: 1.4285714286;
  color: #131313;
  font-weight: bold;
}
@media (max-width: 960px) {
  .l-top__services__btn__list .circle-catch {
    font-size: 18px;
  }
}
@media (max-width: 520px) {
  .l-top__services__btn__list .circle-catch {
    font-size: 16px;
  }
}
.l-top__services__btn__list .circle-catch::after {
  content: attr(data-en);
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  margin-top: 8px;
  color: #33b0ff;
}
@media (max-width: 520px) {
  .l-top__services__btn__list .circle-catch::after {
    font-size: 12px;
    margin-top: 3px;
  }
}
.l-top__services__list-flame {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media (max-width: 520px) {
  .l-top__services__list-flame {
    gap: 25px;
  }
}
.l-top__services__list-flame li {
  background: #ffffff;
  border-radius: 2vw;
  padding: 62px 66px 55px;
  display: flex;
  gap: 80px;
}
@media (max-width: 1095px) {
  .l-top__services__list-flame li {
    gap: 43px;
    padding: 50px 40px 40px;
  }
}
@media (max-width: 960px) {
  .l-top__services__list-flame li {
    gap: 23px;
    flex-direction: column;
    border-radius: 5vw;
    padding: 50px 30px 40px;
  }
}
@media (max-width: 520px) {
  .l-top__services__list-flame li {
    flex-direction: column;
    gap: 0;
    padding: 8% 6%;
  }
}
.l-top__services__list-flame li img {
  max-width: 380px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 960px) {
  .l-top__services__list-flame li img {
    max-width: none;
    max-height: 280px;
    height: 100%;
  }
}
.l-top__services__list-flame li .services-sp {
  display: none;
}
@media (max-width: 520px) {
  .l-top__services__list-flame li .services-sp {
    display: block;
  }
}
.l-top__services__list-flame li .services-pc {
  display: block;
}
@media (max-width: 520px) {
  .l-top__services__list-flame li .services-pc {
    display: none;
  }
}
@media (max-width: 520px) {
  .l-top__services__list-flame li .text-container {
    display: flex;
    flex-direction: column;
  }
}
.l-top__services__list-flame li .text-container h3 {
  font-size: 44px;
  line-height: 1.4583333333;
  margin-bottom: 34px;
}
@media (max-width: 1095px) {
  .l-top__services__list-flame li .text-container h3 {
    font-size: 40px;
    margin-bottom: 25px;
  }
}
@media (max-width: 520px) {
  .l-top__services__list-flame li .text-container h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
.l-top__services__list-flame li .text-container h3::before {
  content: attr(data-number-en);
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.72px;
  color: #33b0ff;
}
@media (max-width: 1095px) {
  .l-top__services__list-flame li .text-container h3::before {
    font-size: 21px;
  }
}
@media (max-width: 520px) {
  .l-top__services__list-flame li .text-container h3::before {
    font-size: 14px;
  }
}
.l-top__services__list-flame li .text-container .catch {
  font-size: 23px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 13px;
  line-height: 1.5;
}
@media (max-width: 1095px) {
  .l-top__services__list-flame li .text-container .catch {
    font-size: 23px;
  }
}
@media (max-width: 520px) {
  .l-top__services__list-flame li .text-container .catch {
    font-size: 20px;
    margin: 20px 0 11px;
    line-height: 1.4;
  }
}
.l-top__services__list-flame li .text-container .text + .text {
  margin-top: 1em;
}
@media (max-width: 1095px) {
  .l-top__services__list-flame li .text-container .c-inner {
    font-size: 14px;
  }
}

.c-works {
  padding: 232px 30px 162px;
}
@media (max-width: 960px) {
  .c-works {
    padding: 232px 30px 162px;
  }
}
@media (max-width: 520px) {
  .c-works {
    padding: 140px 4% 85px;
  }
}
.c-works .c-top__heading {
  margin-bottom: 42px;
}
.c-works_list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media (max-width: 960px) {
  .c-works_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .c-works_list {
    flex-direction: column;
    gap: 30px;
  }
}
.c-works_list li {
  background-color: #ffffff;
  border-radius: 1vw;
  position: relative;
  border: 2px solid #000000;
}
@media (max-width: 960px) {
  .c-works_list li {
    width: calc(50% - 10px);
    border-radius: 2vw;
  }
}
@media (max-width: 520px) {
  .c-works_list li {
    width: 100%;
    border-radius: 6vw;
  }
}
.c-works_list li a {
  display: flex;
  gap: 44px;
  padding: 35px 4% 75px;
  opacity: 1;
  transition: opacity 0.3s;
}
.c-works_list li a:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media (min-width: 960px) {
  .c-works_list li a {
    gap: 45px;
    padding: 34px 50px 30px;
  }
}
@media (max-width: 960px) {
  .c-works_list li a {
    flex-direction: column;
    gap: 30px;
    padding: 34px 30px 34px;
  }
}
@media (max-width: 520px) {
  .c-works_list li a {
    flex-direction: column;
    gap: 20px;
    padding: 8% 6%;
  }
}
.c-works_list li a .c-works-flame {
  margin-bottom: 8px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 13px 3px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background-color: #000000;
  border-radius: 5px;
  letter-spacing: normal;
}
@media (max-width: 960px) {
  .c-works_list li a .c-works-flame {
    margin-bottom: 15px;
  }
}
.c-works_list li a picture {
  text-align: center;
}
.c-works_list li a img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 335px;
  border-radius: 6px;
  height: 231px;
}
@media (max-width: 960px) {
  .c-works_list li a img {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 520px) {
  .c-works_list li a img {
    max-width: 100%;
  }
}
.c-works_list li a h3 {
  margin-bottom: 20px;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 24px;
  color: #000000;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  box-orient: vertical;
}
@media (max-width: 960px) {
  .c-works_list li a h3 {
    font-size: 19px;
    margin-bottom: 15px;
  }
}
.c-works_list li .text {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  box-orient: vertical;
  line-clamp: 3;
}
.c-works_list li .c-works-view-detail {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-underline-offset: 4px;
}
.c-works_list li .c-works-view-detail::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-image: url("/images/workd-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .c-works_list li .c-works-view-detail {
    display: none;
  }
}
.c-works_list li:hover .c-works-view-detail {
  color: #33b0ff;
  text-decoration: underline;
}
@media (max-width: 960px) {
  .c-works_list li .text-container {
    width: 100%;
  }
  .c-works_list li .text-container:after {
    content: "";
    display: block;
    width: 37px;
    height: 37px;
    margin-top: 10px;
    margin-left: auto;
    background-image: url("../images/sp-works-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .c-works_list li .text {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.c-foot__contact a img {
  transition: transform 0.15s;
}
@media (max-width: 520px) {
  .c-foot__contact a img {
    width: 48px;
    height: 48px;
  }
}
.c-foot__contact a:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}
.c-foot__contact a .c-foot__contact__container {
  background-color: #33b0ff;
  padding: 120px 30px 80px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.c-foot__contact a .c-foot__contact__container:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/footer-bg.svg") repeat-x center center;
  -ms-background-size: cover;
  background-size: cover;
  transition: all 0.3s ease-out;
}
.c-foot__contact a .c-foot__contact__container:hover::after {
  transform: scale(1.1);
}
.c-foot__contact a .c-foot__contact__container a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 520px) {
  .c-foot__contact a .c-foot__contact__container {
    padding: 90px 30px 50px;
    background-size: 350%;
  }
}
.c-foot__contact a .c-foot__contact__container h2 {
  position: relative;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 34px;
  z-index: 5;
  position: relative;
}
@media (max-width: 520px) {
  .c-foot__contact a .c-foot__contact__container h2 {
    font-size: 44px;
    margin-bottom: 21px;
  }
}
.c-foot__contact a .c-foot__contact__container h2::before {
  content: attr(data-contact);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 400;
}
.c-foot__contact a .c-foot__contact__container p {
  margin-bottom: 45px;
  font-size: 20px;
  z-index: 5;
  position: relative;
}
@media (max-width: 520px) {
  .c-foot__contact a .c-foot__contact__container p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .c-foot__contact a .c-foot__contact__container p br {
    display: block;
  }
}

.c-footer {
  background-color: #000000;
  background-repeat: repeat;
  padding: 30px 30px 16px;
  font-size: 14px;
  color: #cccccc;
  text-align: center;
}
@media (max-width: 960px) {
  .c-footer {
    text-align: center;
    justify-content: center;
    padding: 36px 30px 15px;
  }
}
@media (max-width: 520px) {
  .c-footer {
    padding: 25px 4% 4px;
  }
}
@media (hover: hover) {
  .c-footer a:hover {
    color: #9e9e9e;
  }
  .c-footer a:hover img:hover {
    opacity: 0.7;
  }
}
.c-footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.c-footer address {
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .c-footer address {
    margin-bottom: 30px;
  }
}
.c-footer address p {
  font-style: normal;
}
.c-footer .copyright {
  text-align: center;
  color: #7b7b7b;
}
@media (max-width: 520px) {
  .c-footer img {
    width: 70%;
  }
}

/*======================================================
実績一覧
======================================================*/
.l-works-list .c-works_list {
  max-width: 1200px;
  margin: 0 auto;
}
.l-works-list .pagination {
  margin-top: 80px;
}
.l-works-list .pagination .page-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 420px;
  margin: 0 auto;
}
.l-works-list .pagination .page-numbers li {
  transition: 0.3s;
}
.l-works-list .pagination .page-numbers li a {
  display: flex;
  background: #ffffff;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  line-height: 1;
  border-radius: 5px;
  border-radius: 5px;
  border: 2px solid #000000;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.0784313725);
}
.l-works-list .pagination .page-numbers li .next,
.l-works-list .pagination .page-numbers li .prev {
  background: none;
  box-shadow: none;
  border: 0px;
}
.l-works-list .pagination .page-numbers li .next img,
.l-works-list .pagination .page-numbers li .prev img {
  width: 30%;
}
.l-works-list .pagination .page-numbers li .current {
  display: flex;
  color: #ffffff;
  background: #000000;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  line-height: 1;
  border-radius: 5px;
  border: 2px solid #000000;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.0784313725);
}
@media (max-width: 520px) {
  .l-works-list .pagination .page-numbers .is-mobile-hide {
    display: none;
  }
}
.l-works-list .pagination:not(:has(.prev)) ul.page-numbers::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
}
.l-works-list .pagination:not(:has(.next)) ul.page-numbers::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
}

/*======================================================
実績
======================================================*/
.l-works .c-inner-white {
  max-width: 1056px;
}
@media (max-width: 520px) {
  .l-works .c-inner-white {
    padding: 38px 4%;
    border-radius: 20px;
  }
}
.l-works .c-inner-white .category {
  text-align: center;
  color: #33b0ff;
  font-weight: bold;
  letter-spacing: normal;
}
.l-works .c-inner-white .title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
}
@media (max-width: 520px) {
  .l-works .c-inner-white .title {
    font-size: 24px;
  }
}
.l-works .c-inner-white img {
  display: block;
  margin: 0 auto 28px;
  width: 1200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 520px) {
  .l-works .c-inner-white img {
    margin: 0 auto 18px;
  }
}
.l-works .c-inner-white h3 {
  padding-left: 1em;
  border-left: 5px solid #33b0ff;
  margin-bottom: 19px;
}
.l-works .c-inner-white h3:not(:first-child) {
  margin-top: 56px;
}
.l-works .c-inner-white .overview-date {
  margin-bottom: 16px;
}
.l-works .c-inner-white .overview-list {
  counter-reset: list-counter;
  padding: 0;
}
.l-works .c-inner-white .overview-list li {
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}
.l-works .c-inner-white .overview-list li:before {
  content: counter(list-counter); /*list-counterの値を挿入*/
  counter-increment: list-counter; /*連番の値が挿入される*/
  border: 1px solid;
  box-sizing: border-box;
  border-radius: 50%; /*円を作る*/
  height: 22px; /*円の高さを指定*/
  width: 22px; /*円の幅を指定*/
  display: flex; /*円と文字が中央になるよう調整*/
  justify-content: center;
  align-items: center;
  position: absolute; /*左端に配置*/
  top: 0;
  left: 0;
  font-size: 85%; /*文字サイズ小さめに調整*/
}
.l-works .c-inner-white .overview-list li:not(:first-child) {
  margin-top: 6px;
}
.l-works .c-inner-white p {
  margin-bottom: 28px;
}
@media (max-width: 520px) {
  .l-works .c-inner-white p {
    margin-bottom: 18px;
  }
}
.l-works .c-btn-prev {
  display: block;
  margin: 62px auto 0;
  position: relative;
  background: linear-gradient(90deg, #84b4d3, #9ea5d5, #9a9ed6);
  color: #ffffff;
  padding: 16px 37px 16px 57px;
  border-radius: 7px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  transform: translate(0, 0px);
  transition: transform 0.15s;
}
@media (max-width: 520px) {
  .l-works .c-btn-prev {
    margin-top: 31px;
  }
}
.l-works .c-btn-prev::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 35px;
  top: calc(50% - 2px);
  border-top: solid 2px;
  border-left: solid 2px;
  transform: rotate(-45deg) translateY(-50%);
  color: inherit;
}
.l-works .c-btn-prev:hover {
  transform: translate(0, 4px);
  transition: transform 0.15s;
}

/*======================================================
企業情報
======================================================*/
.l-information__president h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 53px;
  position: relative;
  line-height: 1.2;
}
.l-information__president h2:before {
  content: attr(data-en);
  position: absolute;
  top: -22px;
  left: 50%;
  color: #33b0ff;
  font-size: 14px;
  transform: translateX(-50%);
}
@media (max-width: 520px) {
  .l-information__president h2 {
    margin-bottom: 26px;
  }
}
.l-information__president.c-inner-white {
  margin-bottom: 65px;
  padding: 79px 82px;
}
@media (max-width: 1095px) {
  .l-information__president.c-inner-white {
    max-width: 800px;
    padding: 114px 6%;
  }
}
@media (max-width: 520px) {
  .l-information__president.c-inner-white {
    max-width: 800px;
    padding: 60px 6%;
  }
}
.l-information__president.c-inner-white .lead {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 27px;
}
@media (max-width: 520px) {
  .l-information__president.c-inner-white .lead {
    font-size: 18px;
    margin-bottom: 13px;
  }
}
.l-information__president__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 65px;
}
@media (max-width: 1095px) {
  .l-information__president__wrapper {
    gap: 25px;
  }
}
.l-information__president__wrapper img {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .l-information__president__wrapper img {
    max-width: 100%;
  }
}
@media (max-width: 1095px) {
  .l-information__president__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.l-information__president__wrapper_text .text + .text {
  margin-top: 1em;
}
.l-information__president__wrapper_text .name {
  text-align: right;
  margin-top: 3em;
}
@media (max-width: 520px) {
  .l-information__president__wrapper_text .name {
    margin-top: 2em;
  }
}
.l-information__overview.c-inner-white {
  padding: 93px 82px;
}
@media (max-width: 1095px) {
  .l-information__overview.c-inner-white {
    max-width: 800px;
    padding: 114px 6%;
  }
}
@media (max-width: 520px) {
  .l-information__overview.c-inner-white {
    max-width: 800px;
    padding: 75px 6% 60px;
  }
}
.l-information__overview h2 {
  font-size: 28px;
  text-align: left;
  margin-bottom: 53px;
  line-height: 1.2;
  position: relative;
}
.l-information__overview h2:before {
  content: attr(data-en);
  position: absolute;
  top: -22px;
  left: 0;
  color: #33b0ff;
  font-size: 14px;
}
@media (max-width: 520px) {
  .l-information__overview h2 {
    margin-bottom: 50px;
  }
}
.l-information__overview__list div {
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  padding-bottom: 24px;
}
@media (max-width: 520px) {
  .l-information__overview__list div {
    padding-bottom: 20px;
  }
}
.l-information__overview__list div:not(:first-child) {
  padding-top: 24px;
}
@media (max-width: 520px) {
  .l-information__overview__list div:not(:first-child) {
    padding-bottom: 20px;
  }
}
.l-information__overview__list div dt {
  width: 80px;
  margin-right: 230px;
  font-weight: bold;
  margin-left: 25px;
}
@media (max-width: 960px) {
  .l-information__overview__list div dt {
    margin-right: 50px;
  }
}
@media (max-width: 520px) {
  .l-information__overview__list div dt {
    margin-right: 30px;
    width: 70px;
    margin-left: 0px;
  }
}
@media (max-width: 520px) {
  .l-information__overview__list div dd {
    width: 195px;
  }
}
.l-information__overview__list div .map span {
  color: #33b0ff;
}
.l-information__overview__list div .map span:before {
  content: url(../images/map.svg);
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: 5px;
  transform: translateY(3px);
}

/*======================================================
お問い合わせ
======================================================*/
.l-inquiry .tel-message {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 960px) {
  .l-inquiry .tel-message {
    font-size: 20px;
  }
}
@media (max-width: 520px) {
  .l-inquiry .tel-message {
    font-size: 17px;
  }
}
.l-inquiry .tel-number {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
@media (min-width: 960px) {
  .l-inquiry .tel-number {
    pointer-events: none;
  }
}
@media (max-width: 960px) {
  .l-inquiry .tel-number {
    font-size: 35px;
  }
}
@media (max-width: 520px) {
  .l-inquiry .tel-number {
    font-size: 28px;
  }
}
.l-inquiry .tel-number::before {
  content: "";
  background-image: url(../images/phone.svg);
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  position: relative;
  margin-right: 10px;
  display: inline-block;
  background-size: contain;
}
@media (max-width: 520px) {
  .l-inquiry .tel-number::before {
    width: 24px;
    height: 24px;
  }
}
.l-inquiry .tel-date {
  text-align: center;
  margin-bottom: 87px;
}
@media (max-width: 960px) {
  .l-inquiry .tel-date {
    margin-bottom: 75px;
  }
}
@media (max-width: 520px) {
  .l-inquiry .tel-date {
    margin-bottom: 52px;
  }
}
.l-inquiry .form-group:not(:last-child) {
  margin-bottom: 43px;
}
@media (max-width: 520px) {
  .l-inquiry .form-group:not(:last-child) {
    margin-bottom: 35px;
  }
}
.l-inquiry .form-group .form_title {
  display: block;
  margin-bottom: 10px;
}
.l-inquiry .form-group .any,
.l-inquiry .form-group .c-required {
  color: #ffffff;
  margin-right: 11px;
  padding: 2px 9px;
  border-radius: 3px;
  font-size: 14px;
}
@media (max-width: 520px) {
  .l-inquiry .form-group .any,
  .l-inquiry .form-group .c-required {
    margin-right: 6px;
  }
}
.l-inquiry .form-group .any {
  background-color: #a3a3a3;
}
.l-inquiry .form-group .c-required {
  background-color: #33b0ff;
}
.l-inquiry .form-group .form-detail input {
  display: block;
  background-color: #f6f6f6;
  border-radius: 5px;
  padding: 21px 25px;
  width: 100%;
}
.l-inquiry .form-group .form-detail input::-moz-placeholder {
  color: #c7c7c7;
}
.l-inquiry .form-group .form-detail input::placeholder {
  color: #c7c7c7;
}
@media (max-width: 520px) {
  .l-inquiry .form-group .form-detail input {
    padding: 16px 11px;
  }
}
.l-inquiry .form-group textarea {
  display: block;
  background-color: #f6f6f6;
  border-radius: 5px;
  width: 100%;
  height: 310px;
  padding: 21px 25px;
}
.l-inquiry .form-group textarea::-moz-placeholder {
  color: #c7c7c7;
}
.l-inquiry .form-group textarea::placeholder {
  color: #c7c7c7;
}
@media (max-width: 520px) {
  .l-inquiry .form-group textarea {
    height: 260px;
    padding: 16px 11px;
  }
}
.l-inquiry .privacy {
  text-align: center;
  margin: 52px 0;
}
@media (max-width: 520px) {
  .l-inquiry .privacy {
    margin: 28px 0;
  }
}
.l-inquiry .privacy .privacy-link {
  color: #aaaaaa;
  text-decoration: underline;
}
.l-inquiry .privacy .privacy-link:hover {
  color: #cbcbcb;
}

/*======================================================
お問い合わせ エラーerror
======================================================*/
.l__error .error {
  margin-top: 9px;
}

/*======================================================
お問い合わせ 確認confirm
======================================================*/
.l-inquiry__confirm .confirm_text {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 60px;
}
.l-inquiry__confirm .form-group .form-detail {
  background-color: #ffffff;
}
.l-inquiry__confirm .form-group .form-detail {
  padding: 8px 25px 21px 0px;
}
.l-inquiry__confirm .form-group:not(:last-child) {
  margin-bottom: 20px;
}
.l-inquiry__confirm .privacy {
  display: none;
}

/*======================================================
お問い合わせ 完了thanks
======================================================*/
.l-inquiry__thanks_container .thanks_completion {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .l-inquiry__thanks_container .thanks_completion {
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  .l-inquiry__thanks_container .thanks_completion {
    margin-bottom: 20px;
  }
}
.l-inquiry__thanks_container .thanks_message {
  text-align: center;
}
@media (max-width: 960px) {
  .l-inquiry__thanks_container .thanks_message {
    text-align: left;
  }
}
.l-inquiry__thanks_container .c-inner-white {
  padding: 50px 82px;
}
@media (max-width: 960px) {
  .l-inquiry__thanks_container .c-inner-white {
    padding: 50px 6%;
  }
}
@media (max-width: 520px) {
  .l-inquiry__thanks_container .c-inner-white {
    padding: 38px 4%;
  }
}
.l-inquiry__thanks_container .form_c-btn {
  padding: 10px 10px 10px 15px;
  background: #000;
  width: 175px;
  margin: 0 auto;
  border-radius: 7px;
  margin-top: 22px;
  position: relative;
}
.l-inquiry__thanks_container .form_c-btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 11px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.l-inquiry__thanks_container .form_c-btn a {
  color: #ffffff;
}

/*======================================================
404
======================================================*/
.l-notfound__text {
  text-align: center;
  font-size: 20px;
}
@media (max-width: 520px) {
  .l-notfound__text {
    font-size: 16px;
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */