@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* 共通パーツ */
.inner {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.section__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-title__top,
.service-title__top {
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #3A63E2;
}

.section-title__bottom {
  margin-top: 30px;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .section-title__bottom {
    margin-top: 16px;
    font-size: 32px;
  }
}

.page__fv {
  height: 270px;
  background-color: #3A63E2;
}

.page-fv__inner {
  height: inherit;
}

.page-fv__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: inherit;
}

.page-fv__icon {
  width: 49px;
  height: 48px;
}

.page-fv__main {
  position: relative;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.05em;
  color: #fff;
}

.page-fv__sub {
  position: absolute;
  top: 144px;
  font-weight: 900;
  font-size: 64px;
  line-height: 75px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-fv__sub {
    line-height: 54px;
  }
}

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

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

/* header */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header.change-color {
  background-color: #01143A;
  transition: 0.3s background-color, 0.3s border;
}

.header__inner {
  display: flex;
  align-items: center;
  height: inherit;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__nav {
  height: inherit;
  margin-left: 112px;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 50px;
}

.header__link {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  height: inherit;
  position: relative;
  padding-right: 18px;
}
@media screen and (max-width: 1024px) {
  .header__link {
    font-size: 14px;
  }
}

.header__link::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #E2953A;
  border-right: solid 2px #E2953A;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 5px;
  margin: auto;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 45px;
  left: 25px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hamburger {
    top: 22px;
  }
}

.hamburger.is-active {
  top: 45px;
  left: 25px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s transform;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  top: 18px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: inherit;
  margin-top: 160px;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  align-content: center;
  margin-right: 5px;
}

.drawer-menu__item {
  display: flex;
  align-items: center;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 43px;
}

.drawer-menu__link {
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1.875;
  font-weight: 600;
  color: #fff;
}

/* メインビュー */
.fv {
  position: relative;
  width: 100%;
  height: 660px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/fv-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 622px;
  }
}
@media screen and (max-width: 375px) {
  .fv {
    height: 606px;
  }
}

.fv__inner {
  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: column;
  padding-top: 177px;
}

.fv__title {
  padding-left: 9.5vw;
  width: 100%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 62px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .fv__title {
    padding-left: 0;
    text-align: center;
  }
}

.fv-title__top {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .fv-title__top {
    font-size: 23px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 375px) {
  .fv-title__top {
    font-size: 18px;
    line-height: 1.5;
  }
}

.text-small {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .text-small {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .text-small {
    font-size: 14px;
    line-height: 1.5;
  }
}

.fv-title__bottom {
  margin-top: 37px;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.05em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .fv-title__bottom {
    font-size: 14px;
  }
}

.fv__bottom {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

.button__orange {
  width: 300px;
  background: linear-gradient(90deg, #e8830c 0%, #e2953a 100%);
  padding-top: 25px;
  padding-bottom: 25px;
  box-shadow: 4px 6px 6px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  justify-content: center;
}

.button-orange__icon {
  width: 30px;
  height: 25px;
}

.button-orange__text {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-align: center;
}

.fv__scroll {
  margin-top: 47px;
  text-align: center;
}

.fv-scroll__text {
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  position: relative;
}

.fv-scroll__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  width: 1px;
  height: 66px;
  margin: auto;
  background-color: #fff;
}

/* identity */
.identity {
  padding: 160px 0 160px 0;
  background-image: url(../images/identity-bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  .identity {
    padding: 110px 0 110px 0;
  }
}

.identity__inner {
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .identity__inner {
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .identity__inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.identity__top {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 90px;
       column-gap: 90px;
}
@media screen and (max-width: 768px) {
  .identity__top {
    flex-direction: column;
    align-items: center;
  }
}

.identity-top__left {
  background-image: url(../images/identity-02.jpg);
  width: 178px;
  height: 255px;
  background-position: left;
  margin-top: 252px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .identity-top__left {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .identity-top__left {
    display: none;
  }
}

.identity-top__center {
  margin-top: 63px;
  width: 366px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .identity-top__center {
    align-items: center;
    max-width: 530px;
    width: 100%;
  }
}

.section__title--identity {
  align-items: start;
}
@media screen and (max-width: 768px) {
  .section__title--identity {
    align-items: center;
    text-align: center;
  }
}

.identity-center__text {
  margin-top: 55px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.05em;
}

.identity-top__right {
  background-image: url(../images/identity-01.jpg);
  max-width: 528px;
  width: 100%;
  height: 388px;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .identity-top__right {
    margin-top: 20px;
  }
}

.identity__bottom {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .identity__bottom {
    margin-top: 40px;
  }
}

.identity-bottom__left,
.bottom-center__content,
.identity-bottom__right {
  padding: 30px 30px 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #3a63e2;
  border-radius: 50%;
  height: 320px;
  width: 320px;
}
@media screen and (max-width: 375px) {
  .identity-bottom__left,
.bottom-center__content,
.identity-bottom__right {
    width: 290px;
    height: 290px;
  }
}

.identity-bottom__center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-center__img {
  background-image: url(../images/identity-03.jpg);
  background-position: left;
  margin-top: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 28vw;
  height: auto;
}

.identity__text {
  margin-top: 86px;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .identity__text {
    margin-top: 40px;
  }
}

.identity-icon {
  width: 68px;
  height: auto;
}

.identity-bottom__title {
  font-weight: 400;
  font-size: 22px;
  color: #3A63E2;
  margin-top: 2px;
}

.identity-bottom__flex {
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .identity-bottom__flex {
    flex-direction: column;
    row-gap: 20px;
    margin-top: 20px;
  }
}

.identity-bottom__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 375px) {
  .identity-bottom__text {
    font-size: 14px;
  }
}

/* サービス */
.service {
  padding: 160px 0 160px 0;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 110px 0 110px 0;
  }
}

.service__items {
  margin-top: 115px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 240px));
  -moz-column-gap: 138px;
       column-gap: 138px;
  row-gap: 105px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .service__items {
    row-gap: 60px;
    margin-top: 60px;
    grid-template-columns: repeat(auto-fit, minmax(270px, 240px));
  }
}

.service__bottom,
.work__bottom {
  margin-top: 90px;
  display: flex;
  justify-content: center;
}

.button__blue {
  width: 300px;
  background: linear-gradient(91.76deg, #3c5ab6 1.49%, #3a63e2 88.84%);
  padding-top: 25px;
  padding-bottom: 25px;
  box-shadow: 4px 6px 6px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  display: flex;
  -moz-column-gap: 55px;
       column-gap: 55px;
  align-items: center;
  justify-content: center;
  padding-left: 75px;
}

.button-blue__icon {
  width: 19px;
  height: 10px;
}

.button-blue__text {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-align: center;
}

.service-title__top {
  margin-top: 30px;
}

.service-title__bottom {
  margin-top: 14px;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-title__bottom {
    font-size: 18px;
  }
}

.service__text {
  margin-top: 19px;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0.05em;
}

/* conversion */
.conversion {
  padding: 80px 0 80px 0;
  background-image: url(../images/conversion-contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.conversion__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.conversion__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .conversion__title {
    font-size: 20px;
  }
}

.conversion__text {
  margin-top: 26px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .conversion__text {
    font-size: 14px;
  }
}

.conversion__bottom {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* work */
.work {
  padding: 160px 0 160px 0;
  background-image: url(../images/work-bg.png);
  background-repeat: no-repeat;
  background-size: 38%;
  background-position: top right;
}
@media screen and (max-width: 768px) {
  .work {
    padding: 110px 0 110px 0;
  }
}

.work__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work__container {
  margin-top: 165px;
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .work__container {
    margin-top: 120px;
    flex-direction: column;
    row-gap: 120px;
    align-items: center;
  }
}

.work__box--left {
  position: relative;
  background: #fff;
  border: 1px solid #3a63e2;
  border-radius: 10px;
  height: 293px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 31px;
  padding-left: 31px;
}

.work__icon {
  position: absolute;
  bottom: 86%;
  left: 74%;
  width: 90px;
  height: 90px;
}

.work__img--left {
  width: 440px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-large {
  font-size: 24px;
  font-weight: 600;
}

.work__box--right {
  position: relative;
  background: #fff;
  border: 1px solid #3a63e2;
  border-radius: 10px;
  height: 293px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 61px;
  padding-left: 61px;
}

.work__img--right {
  width: 384px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__title {
  margin-top: 40px;
  font-weight: 600;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 0.1em;
  color: #3A63E2;
}
@media screen and (max-width: 768px) {
  .work__title {
    text-align: center;
  }
}

.title-large {
  font-size: 28px;
  font-weight: 600;
}

.work__text {
  margin-top: 17px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .work__text {
    text-align: center;
    font-size: 12px;
  }
}

/* company */
.company {
  padding: 160px 0 160px 0;
  background-color: rgba(243, 244, 247, 0.8);
}
@media screen and (max-width: 768px) {
  .company {
    padding: 110px 0 110px 0;
  }
}

.company__container {
  margin-top: 157px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .company__container {
    margin-top: 60px;
  }
}

.company__items {
  max-width: 900px;
  width: 100%;
}

.company__item {
  display: flex;
  padding-bottom: 30px;
  border-bottom: 2px solid #3A63E2;
}
@media screen and (max-width: 768px) {
  .company__item {
    flex-direction: column;
    padding-bottom: 20px;
  }
}

.company__item:not(:first-child) {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .company__item:not(:first-child) {
    padding-top: 20px;
  }
}

.company-item__left {
  padding-left: 124px;
  width: 328px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .company-item__left {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.company-item__right {
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .company-item__right {
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 10px;
  }
}

.access {
  margin-top: 130px;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .access {
    margin-top: 80px;
  }
}

.access__top {
  display: flex;
  -moz-column-gap: 14px;
       column-gap: 14px;
  align-items: baseline;
  padding-left: 66px;
}
@media screen and (max-width: 768px) {
  .access__top {
    padding-left: 0;
    justify-content: center;
  }
}

.access__icon {
  height: 47px;
  width: 47px;
}
@media screen and (max-width: 768px) {
  .access__icon {
    height: 36px;
    width: 36px;
  }
}

.access__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.1em;
  color: #3A63E2;
}
@media screen and (max-width: 768px) {
  .access__title {
    font-size: 26px;
  }
}

.access__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 240px));
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 70px;
  justify-content: center;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .access__items {
    margin-top: 60px;
  }
}

.map {
  width: 300px;
  height: 222px;
}

.access-item__title {
  margin-top: 24px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.1em;
}

.access-item__text {
  margin-top: 11px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.1em;
}

/* お問い合わせ */
.contact {
  padding: 160px 0 160px 0;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 110px 0 110px 0;
  }
}

.contact__inner {
  max-width: 786px;
  width: 100%;
}

.contact__text {
  text-align: center;
  margin-top: 63px;
}

.contact-text__top {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
}

.contact-text__bottom {
  margin-top: 33px;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.1em;
}

.form__list {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .form__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
}

.form__field {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .form__field {
    flex-direction: column;
  }
}

.form__field:not(:first-child) {
  margin-top: 20px;
}

.form__name {
  display: flex;
  width: 100%;
  -moz-column-gap: 23px;
       column-gap: 23px;
}
@media screen and (max-width: 768px) {
  .form__name {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}

.form__label {
  max-width: 255px;
  width: 100%;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.1em;
  padding-top: 14px;
}
@media screen and (max-width: 768px) {
  .form__label {
    max-width: 192px;
  }
}

.form__date {
  max-width: 531px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__date {
    max-width: 400px;
  }
}

.form__textarea {
  height: 160px;
}

.form__input,
.form__select,
.form__textarea {
  font-size: 14px;
  width: 531px;
  height: 50px;
  padding: 12px;
  border: 1px solid #3A63E2;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .form__input,
.form__select,
.form__textarea {
    margin-top: 16px;
    width: 320px;
  }
}

.form-name__input {
  font-size: 14px;
  height: 50px;
  padding: 12px;
  border: 1px solid #3A63E2;
  border-radius: 10px;
  width: 255px;
}
@media screen and (max-width: 768px) {
  .form-name__input {
    margin-top: 16px;
    width: 152px;
  }
}

.form__textarea {
  height: 187px;
}

.form__select {
  padding-right: 35px;
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  content: "";
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 2px #3a63e2;
  border-right: solid 2px #3a63e2;
}

.form__data,
.form__data-select,
.form__data-check {
  margin-top: 4px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.1em;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  content: "";
  border: 1px solid #3A63E2;
  border-radius: 50%;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  top: 9.25px;
  left: 5px;
  width: 10px;
  height: 5px;
  content: "";
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #3A63E2;
  border-left: 2px solid #3A63E2;
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__submit-button {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.form__submit-input {
  width: 300px;
  background: linear-gradient(90deg, #e8830c 0%, #e2953a 100%);
  padding-top: 25px;
  padding-bottom: 25px;
  box-shadow: 4px 6px 6px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.08em;
  color: #fff;
}
.form__submit-input:hover {
  transition: opacity 0.3s;
  opacity: 0.7;
}

.contact-form__text {
  margin-top: 18px;
  text-align: center;
}

.privacypolicy {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #3A63E2;
}

/* footer */
.footer {
  padding: 50px 0 50px 0;
  background-color: #01143A;
}

.footer__inner {
  max-width: 1100px;
  width: 100%;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
  padding-left: 48px;
}
@media screen and (max-width: 768px) {
  .footer__top {
    padding-left: 0;
    align-items: center;
  }
}

.footer__name {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__name {
    font-size: 18px;
  }
}

.footer__address {
  margin-top: 11px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 14px;
  }
}

.footer__bottom {
  margin-top: 25px;
  padding-right: 35px;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    padding-right: 0;
  }
}

.footer__items {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .footer__items {
    justify-content: center;
  }
}

.footer__item:not(:first-child) {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .footer__item:not(:first-child) {
    margin-left: 15px;
  }
}

.footer__nav {
  font-weight: 400;
  line-height: 19px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    font-size: 12px;
  }
}

/* service-page */
.service__page {
  padding: 170px 0 170px 0;
}
@media screen and (max-width: 768px) {
  .service__page {
    padding: 80px 0 80px 0;
  }
}

.service-page__inner {
  max-width: 928px;
}

.service-page__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 150px;
}
@media screen and (max-width: 768px) {
  .service-page__items {
    row-gap: 80px;
  }
}

.service-page__item {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 768px) {
  .service-page__item {
    flex-direction: column;
  }
}

.service-page__item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .service-page__item:nth-child(2n) {
    flex-direction: column;
  }
}

.service-page__img {
  width: 50%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .service-page__img {
    width: 100%;
    max-width: 420px;
  }
}

.service-page__right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .service-page__right {
    width: 100%;
    max-width: 420px;
  }
}

.service-page__content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  border-left: 1px solid #E2953A;
  padding-left: 35px;
}

.service-page__top,
.service-page__bottom {
  padding-left: 36px;
}

/* work-page */
.work__page {
  padding: 170px 0 170px 0;
}
@media screen and (max-width: 768px) {
  .work__page {
    padding: 80px 0 80px 0;
  }
}

.work-page__inner {
  max-width: 1080px;
}

.work-page__text {
  text-align: center;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .work-page__text {
    font-size: 12px;
  }
}

/* privacy policy */
.privacy {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding: 40px 0;
  }
}

.privacy__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.privacy__content:not(:first-child) {
  margin-top: 30px;
}

.privacy-content__title {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .privacy-content__title {
    font-size: 19px;
  }
}

.privacy-content__text,
.privacy-content__text--sub {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
}

.privacy-content__title--sub {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .privacy-content__title--sub {
    font-size: 14px;
  }
}