@charset "UTF-8";
/**
/* Font
/* "Noto Sans JP"
/* "Outfit"
/* "Zen Kaku Gothic New"
**/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
 ******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
 ******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
 ******************************************/
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  background-color: #0f141c;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
html.no-scroll {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header {
  view-transition-name: site-header;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  background-color: #000000;
  border-radius: 4px;
  z-index: 20;
}
@media (min-width: 768px) {
  .header {
    top: 30px;
    height: unset;
  }
}
@media (min-width: 1024px) {
  .header {
    left: 30px;
    width: calc(100% - 60px);
    padding: 0px 50px 0px 35px;
  }
}
.header.fixed {
  position: fixed;
  top: 30px;
}
.header .logo {
  display: block;
  padding: 22px 0;
}
@media (min-width: 768px) {
  .header .logo {
    width: unset;
    height: unset;
  }
}
.header .logo:hover {
  opacity: 0.7;
}
.header .logo__img {
  width: 92px;
  height: 30px;
}
@media (min-width: 768px) {
  .header .logo__img {
    width: 116px;
    height: 38px;
  }
}
.header .logo__top {
  display: none;
}
.header .nav {
  display: none;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  .header .nav {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .header .nav {
    gap: 48px;
  }
}
@media (min-width: 768px) {
  .header .nav__logo {
    display: none;
  }
}
.header .navList {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1280px) {
  .header .navList {
    gap: 48px;
  }
}
.header .navItem_link {
  display: inline-block;
  padding: 32px 0;
  color: #7b7b81;
  letter-spacing: 0.05em;
}
.header .navItem_link:hover {
  color: #e6cd00;
}
.header .navItem.active .navItem_link {
  padding-bottom: 28px;
  font-weight: bold;
  color: #e6cd00;
  border-bottom: solid 4px #e6cd00;
}
.header .navSub {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1280px) {
  .header .navSub {
    gap: 30px;
  }
}
.header .navLang {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7b7b81;
}
.header .navLang_link {
  color: #7b7b81;
}
.header .navLang_link:hover {
  color: #ffffff;
}
.header .navLang_link.active {
  color: #ffffff;
}
.header .btnContact {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
  border: 1px solid #7b7b81;
  border-radius: 6px;
}
@media (min-width: 1024px) {
  .header .btnContact {
    padding: 12px 24px;
  }
}
.header .btnContact:hover {
  border-color: #ffffff;
}
.header .menuBtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  padding: 20px;
  text-align: center;
  background-color: #000000;
}
@media (min-width: 768px) {
  .header .menuBtn {
    display: none;
  }
}
.header .menuBtn__line {
  position: relative;
  top: 10px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .menuBtn__line::before,
.header .menuBtn__line::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .menuBtn__line::before {
  top: -5px;
}
.header .menuBtn__line::after {
  bottom: -5px;
}
.header .menuBtn__text {
  position: absolute;
  bottom: 15px;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
}
.header .menuBtn.is_open .menuBtn__line {
  background-color: transparent;
}
.header .menuBtn.is_open .menuBtn__line::before {
  top: 0;
  rotate: 20deg;
}
.header .menuBtn.is_open .menuBtn__line::after {
  bottom: 0;
  rotate: -20deg;
}
.header.is_top {
  view-transition-name: none;
  position: absolute;
  background-color: transparent;
}
.header.is_top .logo__top {
  display: block;
}
.header.is_top .logo__common {
  display: none;
}
.header.is_top .logo__img {
  width: 137px;
  height: 49px;
}
@media (min-width: 768px) {
  .header.is_top .logo__img {
    width: 150px;
    height: 53px;
  }
}
@media (min-width: 1024px) {
  .header.is_top .logo__img {
    width: 218px;
    height: 78px;
  }
}
.header .spMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  justify-content: center;
  overflow: scroll;
  background-color: #0f141c;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .spMenu.is_open {
  visibility: visible;
  opacity: 1;
}
.header .spMenu__logo {
  width: 171px;
  margin: 100px auto 0;
}
.header .spMenu__logoLink:hover {
  opacity: 0.7;
}
.header .spMenu__list {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  gap: 40px 77px;
  margin: 55px auto 0;
}
.header .spMenu__item:nth-child(2n - 1) {
  text-align: right;
}
.header .spMenu__link {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
}
.header .spMenu__subList {
  margin-top: 16px;
}
.header .spMenu__subLink {
  color: #7b7b81;
}
.header .spMenu__subLink::before {
  position: relative;
  top: -5px;
  display: inline-block;
  width: 12px;
  margin-right: 10px;
  content: "";
  border-top: solid 1px #7b7b81;
  transition: all 0.3s ease;
}
.header .spMenu__subLink + .spMenu__subLink {
  margin-top: 16px;
}
.header .spMenu__contact {
  justify-content: center;
  padding: 22px;
  margin: 70px 20px 0;
  background-image: linear-gradient(
    135deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 30%
  );
}
.header .spMenu .spMenuLang {
  position: absolute;
  top: 33px;
  left: 43px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7b7b81;
}
.header .spMenu .spMenuLang__link {
  color: #7b7b81;
}
.header .spMenu .spMenuLang__link:hover {
  color: #ffffff;
}
.header .spMenu .spMenuLang__link.active {
  color: #ffffff;
}
.header .spMenu__subMenu {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  color: #7b7b81;
}
.header .spMenu__snsList {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin-top: 30px;
  color: #d3d3d6;
  border-top: 1px solid #383a3d;
}
.header .spMenu__cl {
  padding: 35px;
  font-size: 0.75rem;
  color: #7b7b81;
  text-align: center;
  background-color: #000000;
}

.footer {
  padding-top: 60px;
  background-image: url("../../images/top/threeBgSp.webp");
  background-repeat: no-repeat;
  background-position: top -50px right 20px;
  background-size: 400px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 100px;
    background-image: url("../../images/top/threeBg.webp");
    background-position: top -60px right -50px;
    background-size: auto;
  }
}
@media (min-width: 1536px) {
  .footer {
    background-position: top -60px right calc((100% - 1200px) / 2 + 180px);
  }
}
.footer .footerContact {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  padding: 30px;
  margin: 0 auto;
  color: #ffffff;
  background-image: linear-gradient(
    135deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 25%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .footer .footerContact {
    padding: 100px 80px;
    border-radius: 15px;
  }
}
.footer .footerContact:after {
  position: absolute;
  right: 17px;
  bottom: 19px;
  display: block;
  width: 17px;
  height: 12px;
  content: "";
  background-image: url("../../images/common/icon-arrowRight.svg");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .footer .footerContact:after {
    display: none;
  }
}
.footer .footerContact__wrap {
  padding: 0 24px;
}
.footer .footerContact_heading {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer .footerContact_heading {
    font-size: 38px;
  }
}
.footer .footerContact_text {
  margin-top: 10px;
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer .footerContact_text {
    width: 90%;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .footer .footerContact_text {
    width: revert;
  }
}
.footer .footerContact .iconCircleArrow {
  position: absolute;
  top: 50%;
  right: 80px;
  display: none;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .footer .footerContact .iconCircleArrow {
    display: block;
  }
}
.footer .footerContact:hover {
  border-color: white;
}
.footer .footerLogo {
  width: 145px;
  height: 71px;
}
@media (min-width: 768px) {
  .footer .footerLogo {
    width: auto;
    height: auto;
  }
}
.footer .footerLogo:hover {
  opacity: 0.7;
}
.footer .footerNavWrap {
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 100px auto 0;
}
@media (min-width: 768px) {
  .footer .footerNavWrap {
    align-items: center;
    justify-content: space-between;
  }
}
.footer .footerNavWrap .footerNav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .footer .footerNavWrap .footerNav {
    flex-direction: row;
    gap: 40px;
  }
}
.footer .footerNavWrap .footerNav_link {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.5;
  color: #d3d3d6;
}
.footer .footerNavWrap .footerNav_link:hover {
  color: #e6cd00;
}
.footer .footerNavWrap .footerNav_link_gray {
  font-size: 14px;
  color: #7b7b81;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav_link_gray {
    font-size: 12px !important;
  }
}
@media (min-width: 1024px) {
  .footer .footerNavWrap .footerNav_link_gray {
    font-size: 14px;
  }
}
.footer .footerNavWrap .footerNav_link_gray:hover {
  color: #ffffff;
}
.footer .footerNavWrap .footerNav_link_gray:hover::before {
  border-color: #ffffff;
}
.footer .footerNavWrap .footerNav_link_gray::before {
  position: relative;
  top: -5px;
  display: inline-block;
  width: 12px;
  margin-right: 10px;
  content: "";
  border-top: solid 1px #7b7b81;
  transition: all 0.3s ease;
}
.footer .footerNavWrap .footerNav_childList {
  margin-top: 12px;
}
.footer .footerNavWrap .footerNav_childList .footerNav_item ~ .footerNav_item {
  margin-top: 6px;
}
.footer .footerNavWrap .footerNav_subList .footerNav_link_gray::before {
  content: none;
}
.footer .footerNavWrap .footerNav_subList .footerNav_item ~ .footerNav_item {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav_subList .footerNav_item ~ .footerNav_item {
    margin-top: 20px;
  }
}
.footer .footerSnsWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 95px;
}
.footer .footerSnsWrap .footerSnsCnt {
  flex: 1;
  border-top: 1px solid #383a3d;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt {
    display: flex;
    justify-content: space-between;
    padding: 45px 50px 45px 60px;
  }
}
.footer .footerSnsWrap .footerSnsCnt .footerSns {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt .footerSns {
    padding: 0;
  }
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_link {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_link:hover {
  color: #e6cd00;
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_cl {
  padding: 35px;
  font-size: 12px;
  color: #7b7b81;
  text-align: center;
  background-color: #000000;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt .footerSns_cl {
    padding: 0;
    text-align: left;
    background-color: transparent;
  }
}

.pagetop {
  display: none;
}
@media (min-width: 768px) {
  .pagetop {
    display: block;
  }
}
.pagetop_link {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
  background-image: linear-gradient(
    190deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 70%
  );
  border: 1px solid #383a3d;
}
.pagetop_link:hover {
  border-color: #ffffff;
}
.pagetop_text {
  margin: 0;
}

main {
  background-image: url(../../images/common/bg04.jpg);
  background-repeat: no-repeat;
  background-position: top -18px left calc(50% + 107px);
  background-size: 507px;
}
@media (min-width: 768px) {
  main {
    background-position: top -110px right calc(50% - 323px);
    background-size: 1462px;
  }
}

.title-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 639px) {
  .title-wrapper {
    height: 276px;
    padding-top: 128px;
  }
}
@media (min-width: 640px) {
  .title-wrapper {
    height: 333px;
    padding-top: 128px;
  }
}
@media (min-width: 768px) {
  .title-wrapper {
    height: 500px;
    padding-top: 240px;
  }
}
@media (min-width: 1024px) {
  .title-wrapper {
    height: 650px;
    padding-top: 266px;
  }
}
.title-wrapper::before {
  position: absolute;
  top: 0;
  content: "";
}

.page-title {
  display: grid;
  place-items: center;
  height: 128px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 0.1em;
  background: linear-gradient(-93deg, #fd1010 0%, #ec6d00 100%);
  -webkit-background-clip: text;
}
@media (max-width: 639px) {
  .page-title {
    height: 64px;
    font-size: 2.5rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(-96deg, #fd1010 0%, #edc600 100%);
    background-position: 40% center;
    -webkit-background-clip: text;
    background-size: 200%;
  }
}
@media (min-width: 640px) {
  .page-title {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .page-title {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-title {
    font-size: 5rem;
  }
}

.page-title--company {
  background-position: 20% center; /* 50〜70%の中心に当たるように設定（=60%） */
  background-size: 200%; /* 50〜70%の中心に当たるように設定（=60%） */
}

.ja .page-title--page {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
}

@media (min-width: 1024px) {
  .breadcrumb {
    max-width: 1000px;
  }
}

.breadcrumb__list {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  margin: 0;
  overflow: hidden;
  list-style: none;
  border-radius: 16px;
}

.breadcrumb__item {
  display: flex;
  flex-shrink: 0; /* 基本的には項目は縮小しない */
  align-items: center;
  white-space: nowrap; /* 基本的には項目は縮小しない */
}

/* 最後の項目だけ省略可能にする */
.breadcrumb__item:last-child {
  flex: 1 1 0;
  min-width: 0; /* 重要！ */
  overflow: hidden;
}

.breadcrumb__item:last-child {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb__item,
.breadcrumb__link {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d3d3d6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: #e6cd00;
}

.breadcrumb__item + .breadcrumb__item::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 16px;
  vertical-align: -2px;
  content: "";
  background-image: url("../../images/common/icon_chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 639px) {
  .breadcrumb__item + .breadcrumb__item::before {
    width: 10px;
    height: 10px;
    vertical-align: -1px;
  }
}

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

.md-only {
  display: none;
}
@media (min-width: 768px) {
  .md-only {
    display: block;
  }
}

.lg-only {
  display: none;
}
@media (min-width: 1024px) {
  .lg-only {
    display: block;
  }
}

@media (max-width: 639px) {
  .under-sm-only {
    display: block;
  }
}
@media (min-width: 640px) {
  .under-sm-only {
    display: block;
  }
}
@media (min-width: 768px) {
  .under-sm-only {
    display: none;
  }
}

@media (max-width: 639px) {
  .under-md-only {
    display: block;
  }
}
@media (min-width: 640px) {
  .under-md-only {
    display: block;
  }
}
@media (min-width: 1024px) {
  .under-md-only {
    display: none;
  }
}

@media (max-width: 639px) {
  .over-md-only {
    display: none;
  }
}
@media (min-width: 640px) {
  .over-md-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .over-md-only {
    display: block;
  }
}

@media (max-width: 639px) {
  .over-lg-only {
    display: none;
  }
}
@media (min-width: 640px) {
  .over-lg-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .over-lg-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .over-lg-only {
    display: block;
  }
}

.d-inline-block {
  display: inline-block;
}

.contact {
  /* Contact Form 7の入力欄全般 */
  /* テキストエリアも含める */
  /* プレースホルダーのスタイル */
  /* フォーカス時のプレースホルダー */
}
@media (max-width: 639px) {
  .contact .title-wrapper {
    height: 226px;
    padding-top: 108px;
  }
}
@media (min-width: 640px) {
  .contact .title-wrapper {
    height: 226px;
    padding-top: 80px;
  }
}
@media (min-width: 768px) {
  .contact .title-wrapper {
    height: 300px;
    padding-top: 144px;
  }
}
@media (min-width: 1024px) {
  .contact .title-wrapper {
    height: 400px;
    padding-top: 204px;
  }
}
.contact .container {
  background-color: #ffffff;
}
@media (max-width: 639px) {
  .contact .container {
    width: 100%;
  }
}
@media (min-width: 640px) {
  .contact .container {
    width: 100%;
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .contact .container {
    width: 90%;
    margin-inline: auto;
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .contact .container {
    max-width: 1200px;
    margin-bottom: 80px;
  }
}
.contact .form-wrapper {
  margin-inline: auto;
}
@media (max-width: 639px) {
  .contact .form-wrapper {
    width: 94%;
    padding: 60px 0 85px;
  }
}
@media (min-width: 640px) {
  .contact .form-wrapper {
    width: 94%;
    padding: 60px 0 85px;
  }
}
@media (min-width: 768px) {
  .contact .form-wrapper {
    padding: 60px 0 85px;
  }
}
@media (min-width: 1024px) {
  .contact .form-wrapper {
    width: 800px;
    padding: 80px 0 85px;
  }
}
@media (max-width: 639px) {
  .contact form > p + p {
    margin-top: 25px;
  }
}
@media (min-width: 640px) {
  .contact form > p + p {
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .contact form > p + p {
    margin-top: 32px;
  }
}
@media (min-width: 1024px) {
  .contact form > p + p {
    margin-top: 40px;
  }
}
.contact form > p > label {
  font-family:
    zen kaku gothic new,
    sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1em;
}
@media (max-width: 639px) {
  .contact form > p > label {
    font-size: 0.875rem;
  }
}
@media (min-width: 640px) {
  .contact form > p > label {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .contact form > p > label {
    font-size: 0.9375rem;
  }
}
.contact input:focus,
.contact textarea:focus {
  outline: none;
}
.contact .wpcf7-form .wpcf7-form-control {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 20px;
  margin-top: 5px;
  background-color: #f6f6f6;
  border: none;
}
.contact .wpcf7-form .wpcf7-form-control {
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, #dba801, #fa1e01) 1;
}
.contact .wpcf7-form .wpcf7-not-valid {
  background-color: rgba(217, 28, 11, 0.05);
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, #dba801, #fa1e01) 1;
}
.contact .wpcf7-form .wpcf7-textarea {
  box-sizing: border-box;
  width: 100%;
}
.contact .wpcf7-form input::placeholder,
.contact .wpcf7-form textarea::placeholder {
  font-family: "zen kaku gothic new", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #0f141c;
  opacity: 0.3;
}
@media (max-width: 639px) {
  .contact .wpcf7-form input::placeholder,
  .contact .wpcf7-form textarea::placeholder {
    font-size: 0.9375rem;
  }
}
@media (min-width: 640px) {
  .contact .wpcf7-form input::placeholder,
  .contact .wpcf7-form textarea::placeholder {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .contact .wpcf7-form input::placeholder,
  .contact .wpcf7-form textarea::placeholder {
    font-size: 1rem;
  }
}
.contact .wpcf7-form input:focus::placeholder,
.contact .wpcf7-form textarea:focus::placeholder {
  opacity: 0.2;
}
.contact .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact .contact__note {
  font-family: "zen kaku gothic new", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #0f141c;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 639px) {
  .contact .contact__note {
    width: 320px;
    margin-inline: auto;
    margin-top: 64px;
    font-size: 0.875rem;
  }
}
@media (min-width: 640px) {
  .contact .contact__note {
    width: 320px;
    margin-inline: auto;
    margin-top: 64px;
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .contact .contact__note {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .contact .contact__note {
    margin-top: 82px;
    font-size: 0.9375rem;
  }
}
.contact .contact__link {
  font-weight: 700;
  color: #ec7d12;
}
.contact .wpcf7-form .wpcf7-form-control[type="submit"] {
  /* 基本の背景設定 */
  display: block;
  width: 210px;
  padding: 13px 30px;
  margin-block: 16px 0px;
  margin-inline: auto;
  font-family: "zen kaku gothic new", sans-serif;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  /* 基本の背景設定 */
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(-99deg, #fd1101, #e38500, #e6cd00) border-box;
  /* ボーダーの幅を確保し、透明に設定 */
  border: 1px solid transparent;
  /* 角丸の設定 */
  border-radius: 999px;
  /* テキスト色のトランジション */
  transition: color 0.3s ease;
}
.contact .wpcf7-form .wpcf7-form-control[type="submit"]:hover {
  color: #ffffff;
  background: linear-gradient(-99deg, #fd1101, #ef8000);
}
.contact .wpcf7-not-valid-tip {
  position: relative;
  padding-left: 1.5em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ef1e00;
}
.contact .wpcf7-not-valid-tip::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background-image: url(../../images/common/icon_attention.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.contact .wpcf7 form.sent .wpcf7-response-output {
  text-align: center;
  border: none;
}
.contact .brand-state {
  padding-top: 0;
}
@media (max-width: 639px) {
  .contact .brand-state {
    margin-top: 0;
  }
}
@media (min-width: 640px) {
  .contact .brand-state {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .contact .brand-state {
    margin-top: 60px;
  }
}
@media (min-width: 1024px) {
  .contact .brand-state {
    margin-top: 90px;
  }
}
.contact__turnstile {
  display: flex;
  justify-self: center;
  margin-top: 40px;
}

.footer {
  margin-top: 92px;
}

/*# sourceMappingURL=contact.css.map */
