@charset "UTF-8";

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Light.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Black.otf") format("opentype");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 100 900;
  src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-VariableFont_wght.ttf") format("truetype-variations");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 200;
  src: url("../../fonts/Noto_Serif_JP/static/NotoSerifJP-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/Noto_Serif_JP/static/NotoSerifJP-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Noto_Serif_JP/static/NotoSerifJP-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/Noto_Serif_JP/static/NotoSerifJP-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/Noto_Serif_JP/static/NotoSerifJP-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/Noto_Serif_JP/static/NotoSerifJP-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 800;
  src: url("../../fonts/Noto_Serif_JP/static/NotoSerifJP-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/Noto_Serif_JP/static/NotoSerifJP-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Serif Display";
  font-style: normal;
  font-weight: 100 900;
  src: url("../../fonts/Noto_Serif_Display/NotoSerifDisplay-VariableFont_wdth,wght.ttf") format("truetype-variations");
}

@font-face {
  font-family: "Noto Serif Display";
  font-style: italic;
  font-weight: 100 900;
  src: url("../../fonts/Noto_Serif_Display/NotoSerifDisplay-Italic-VariableFont_wdth,wght.ttf") format("truetype-variations");
}

@font-face {
  font-family: "Play";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/Play/Play-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Play";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/Play/Play-Bold.ttf") format("truetype");
}

:root {
  --btn-green: #00A39B;
  --btn-orange: linear-gradient(to right, #FF9900 0%, #FF6600 100%);
  --bg-gray: #F5F5F5;
  --bg-gray-light: #D9D9D9;
  --border-black: #3F3B3A;
  --text-color: #3F3B3A;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(100vw / var(--vw) * 300);
}

body {
  color: var(--text-color);
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

body.hidden {
  overflow: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

main {
  overflow-x: hidden;
  padding-top: calc(100vw / var(--vw) * 96);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.pc {
  display: block !important;
}

.pc_inline {
  display: inline;
}

.pc_fx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pc_inline_block {
  display: inline-block;
}

.sp {
  display: none !important;
}

.sp_inline {
  display: none !important;
}

.sp_fx {
  display: none !important;
}

.sp_inline_block {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

.relative {
  position: relative;
}

/* 初期状態のスタイル */

.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  visibility: hidden;
}

.fadeIn.centerX {
  -webkit-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
}

/* アニメーション後のスタイル */

.fadeIn.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.fadeIn.visible.centerX {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.bg-gray {
  background: var(--bg-gray);
}

.contents-inner {
  width: calc(100vw / var(--vw) * 1296);
  margin: 0 auto;
}

.contents-title {
  font-size: calc(100vw / var(--vw) * 100);
  font-weight: 700;
  font-family: "Play", sans-serif;
  line-height: 1;
}

.contents-title-sub {
  padding: calc(100vw / var(--vw) * 10) calc(100vw / var(--vw) * 12);
  background: var(--text-color);
  color: #fff;
  display: inline-block;
  font-size: calc(100vw / var(--vw) * 22);
  margin-top: calc(100vw / var(--vw) * 18);
  line-height: 1;
}

.contents-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 80);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contents-title-text {
  font-size: calc(100vw / var(--vw) * 20);
  font-weight: 700;
  line-height: 2;
  padding-top: calc(100vw / var(--vw) * 20);
}

.primary-btn {
  background: var(--btn-green);
  border-radius: calc(100vw / var(--vw) * 8);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: calc(100vw / var(--vw) * 28);
  width: calc(100vw / var(--vw) * 280);
  height: calc(100vw / var(--vw) * 64);
  font-weight: 600;
}

.primary-btn.mail-btn::before {
  content: "";
  background: url("../../images/mail-icon.svg") no-repeat center center;
  background-size: contain;
  width: calc(100vw / var(--vw) * 31);
  height: calc(100vw / var(--vw) * 22);
  margin-right: calc(100vw / var(--vw) * 8);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.primary-btn.mail-btn.header-nav-btn {
  font-size: calc(100vw / var(--vw) * 20);
  width: calc(100vw / var(--vw) * 190);
}

.primary-btn.mail-btn.header-nav-btn::before {
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 17);
  margin-right: calc(100vw / var(--vw) * 6);
}

.primary-btn.read-more-btn {
  width: calc(100vw / var(--vw) * 296);
  position: relative;
  font-family: "Play", sans-serif;
  font-weight: 700;
}

.primary-btn.read-more-btn::before {
  content: "";
  background: url("../../images/right-arrow.svg") no-repeat center center;
  background-size: contain;
  width: calc(100vw / var(--vw) * 10);
  height: calc(100vw / var(--vw) * 17);
  position: absolute;
  left: calc(100vw / var(--vw) * 21);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.primary-btn.fv-btn {
  font-size: calc(100vw / var(--vw) * 24);
}

.primary-btn.submit-btn {
  border: none;
  width: calc(100vw / var(--vw) * 325);
  font-size: calc(100vw / var(--vw) * 24);
}

.primary-btn.align-right {
  margin-left: auto;
}

.primary-btn.align-center {
  margin: 0 auto;
}

.secondary-btn {
  background: var(--btn-orange);
  border-radius: calc(100vw / var(--vw) * 8);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: calc(100vw / var(--vw) * 28);
  width: calc(100vw / var(--vw) * 280);
  height: calc(100vw / var(--vw) * 64);
  font-weight: 600;
}

.secondary-btn::before {
  content: "";
  background: url("../../images/file-icon.svg") no-repeat center center;
  background-size: contain;
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 30);
  margin-right: calc(100vw / var(--vw) * 4.5);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.secondary-btn.header-nav-btn {
  width: calc(100vw / var(--vw) * 145);
  height: calc(100vw / var(--vw) * 64);
  font-size: calc(100vw / var(--vw) * 20);
}

.secondary-btn.header-nav-btn::before {
  width: calc(100vw / var(--vw) * 16);
  height: calc(100vw / var(--vw) * 21);
  margin-right: calc(100vw / var(--vw) * 3);
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  height: calc(100vw / var(--vw) * 96);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 32);
  -webkit-box-shadow: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 10) calc(100vw / var(--vw) * 0) rgba(0, 0, 0, 0.1);
  box-shadow: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 10) calc(100vw / var(--vw) * 0) rgba(0, 0, 0, 0.1);
}

.header__logo {
  width: calc(100vw / var(--vw) * 251);
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 32);
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 22);
  padding: 0;
  font-family: "Play", sans-serif;
  font-weight: 700;
  font-size: calc(100vw / var(--vw) * 22);
}

.header__nav-item {
  list-style: none;
}

.header__nav-item.active {
  border-bottom: 4px solid var(--btn-green);
}

.header__nav-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 6);
}

.fv {
  position: relative;
}

.fv__btn-wrapper {
  position: absolute;
  bottom: calc(100vw / var(--vw) * 124.5);
  left: calc(100vw / var(--vw) * 136);
}

.topics {
  padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
}

.topics__contents {
  position: relative;
  padding-top: calc(100vw / var(--vw) * 84);
  margin-top: calc(100vw / var(--vw) * 42);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 48);
}

.topics__contents.pick-up {
  background: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: calc(100vw / var(--vw) * 80);
}

.topics__contents-title {
  font-size: calc(100vw / var(--vw) * 24);
  font-weight: 700;
  color: #fff;
  background: var(--text-color);
  display: inline-block;
  padding: calc(100vw / var(--vw) * 10) calc(100vw / var(--vw) * 12);
  position: absolute;
  top: 0;
  left: 0;
}

.topics__contents-item {
  display: block;
}

.topics__contents-item.pick-up {
  width: calc(100vw / var(--vw) * 512);
}

.topics__contents-item.news {
  width: calc(100vw / var(--vw) * 288);
}

.topics__contents-item-meta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: calc(100vw / var(--vw) * 16);
}

.topics__contents-item-meta-wrapper .date {
  font-size: calc(100vw / var(--vw) * 20);
  font-weight: 700;
}

.topics__contents-item-meta-wrapper .category {
  font-size: calc(100vw / var(--vw) * 18);
  font-weight: 700;
  line-height: 1;
  background: var(--bg-gray-light);
  padding: calc(100vw / var(--vw) * 10);
  border-radius: calc(100vw / var(--vw) * 4);
}

.topics__contents-item-title {
  font-size: calc(100vw / var(--vw) * 20);
  font-weight: 700;
  margin-top: calc(100vw / var(--vw) * 24);
}

.topics__contents-read-more {
  margin-top: calc(100vw / var(--vw) * 42);
}

.services {
  padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
}

.services__contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 48);
  margin-top: calc(100vw / var(--vw) * 88);
}

.services__contents-item {
  background: #fff;
  position: relative;
  padding: calc(100vw / var(--vw) * 70) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 56) calc(100vw / var(--vw) * 24);
}

.services__contents-item-title {
  font-size: calc(100vw / var(--vw) * 22);
  font-weight: 700;
  color: #fff;
  background: var(--text-color);
  display: inline-block;
  padding: calc(100vw / var(--vw) * 10) calc(100vw / var(--vw) * 12);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}

.services__contents-item-subtitle {
  font-size: calc(100vw / var(--vw) * 20);
  font-weight: 700;
  margin-top: calc(100vw / var(--vw) * 32);
}

.services__contents-item-text {
  font-size: calc(100vw / var(--vw) * 20);
  margin-top: calc(100vw / var(--vw) * 24);
  margin-bottom: calc(100vw / var(--vw) * 32);
  letter-spacing: 0.005em;
}

.projects {
  padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
}

.projects__contents-wrapper {
  padding: calc(100vw / var(--vw) * 48) calc(100vw / var(--vw) * 40);
  background: #fff;
  margin-top: calc(100vw / var(--vw) * 40);
}

.projects__read-more-btn-wrapper {
  margin-top: calc(100vw / var(--vw) * 40);
}

.recruit-and-company {
  padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 82.2) calc(100vw / var(--vw) * 0);
}

.recruit-and-company__contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 128);
}

.recruit-and-company__contents-item {
  width: calc(100vw / var(--vw) * 520);
}

.recruit-and-company__subtitle-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: calc(100vw / var(--vw) * 8);
}

.recruit-and-company__subtitle-wrapper .contents-title-sub:last-child {
  margin-top: 0;
}

.recruit-and-company__contents-item-image {
  width: 100%;
  height: calc(100vw / var(--vw) * 295.98);
  -o-object-fit: cover;
  object-fit: cover;
  background: var(--bg-gray-light);
  margin-top: calc(100vw / var(--vw) * 40);
}

.recruit-and-company__contents-item-text-wrapper {
  padding: calc(100vw / var(--vw) * 32) calc(100vw / var(--vw) * 27) calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 27);
}

.recruit-and-company__contents-item-text {
  font-size: calc(100vw / var(--vw) * 20);
  margin-bottom: calc(100vw / var(--vw) * 26);
}

.footer__top {
  padding: calc(100vw / var(--vw) * 64) calc(100vw / var(--vw) * 72) calc(100vw / var(--vw) * 65) calc(100vw / var(--vw) * 72);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 162);
}

.footer__top-left-logo {
  width: calc(100vw / var(--vw) * 398);
}

.footer__top-left-text-wrapper {
  margin-top: calc(100vw / var(--vw) * 58);
  padding-left: calc(100vw / var(--vw) * 64);
}

.footer__top-left-title {
  font-size: calc(100vw / var(--vw) * 22);
  font-weight: 700;
}

.footer__top-left-address {
  font-size: calc(100vw / var(--vw) * 20);
  margin-top: calc(100vw / var(--vw) * 24);
  line-height: 2;
}

.footer__top-left-youtube {
  font-size: calc(100vw / var(--vw) * 18);
  margin-top: calc(100vw / var(--vw) * 48);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 12);
  font-weight: 700;
}

.footer__top-left-youtube img {
  width: calc(100vw / var(--vw) * 38);
}

.footer__top-left-privacy-policy {
  font-size: calc(100vw / var(--vw) * 18);
  margin-top: calc(100vw / var(--vw) * 320);
  display: block;
}

.footer__copyright {
  font-size: calc(100vw / var(--vw) * 16);
  text-align: center;
  padding: calc(100vw / var(--vw) * 34) calc(100vw / var(--vw) * 0);
  background: var(--bg-gray);
}

.footer__top-right {
  padding-top: calc(100vw / var(--vw) * 10);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 42) calc(100vw / var(--vw) * 96);
  height: calc(100vw / var(--vw) * 800);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__top-right-link-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 10);
}

.footer__top-right-link-text-wrapper .en {
  font-size: calc(100vw / var(--vw) * 42);
  font-weight: 700;
  font-family: "Play", sans-serif;
}

.footer__top-right-link-text-wrapper .ja {
  font-size: calc(100vw / var(--vw) * 18);
  font-weight: 700;
}

.footer__top-right-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100vw / var(--vw) * 288);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--border-black);
  padding-bottom: calc(100vw / var(--vw) * 18);
}

.footer__top-right-link-icon {
  width: calc(100vw / var(--vw) * 12.74);
}

.footer__top-right-link-text-list {
  margin-top: calc(100vw / var(--vw) * 16);
  padding-left: calc(100vw / var(--vw) * 20);
}

.footer__top-right-link-text {
  display: block;
  font-size: calc(100vw / var(--vw) * 18);
  margin-top: calc(100vw / var(--vw) * 20);
  line-height: 1;
}

.footer__top-right-link-text:first-child {
  margin-top: calc(100vw / var(--vw) * 0);
}

.footer__top-right-link-text .green-text {
  color: var(--btn-green);
  font-weight: 700;
}

.not-found__contents-wrapper {
  padding: calc(100vw / var(--vw) * 158.5) calc(100vw / var(--vw) * 0);
  background-image: url(../../images/not-found-bg.webp);
  background-size: cover;
}

.not-found__title {
  text-align: center;
  color: var(--btn-green);
  font-family: "Play", sans-serif;
  font-weight: 700;
  font-size: calc(100vw / var(--vw) * 200.54);
}

.not-found__text {
  text-align: center;
  margin: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
  font-weight: 700;
  font-size: calc(100vw / var(--vw) * 20);
}

.privacy-policy-page__header {
  padding: calc(100vw / var(--vw) * 48) calc(100vw / var(--vw) * 0);
  background-image: url(../../images/privacy-policy-page-header.webp);
  background-size: cover;
}

.privacy-policy-page__contents {
  padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 112);
}

.privacy-policy-page__contents p {
  font-size: calc(100vw / var(--vw) * 20);
  line-height: 2;
}

.privacy-policy-page__contents h2 {
  font-size: calc(100vw / var(--vw) * 26);
  margin: calc(100vw / var(--vw) * 36) calc(100vw / var(--vw) * 0);
}

.privacy-policy-page__contents ol {
  line-height: 2;
  font-size: calc(100vw / var(--vw) * 20);
}

.privacy-policy-page__contents ol ul {
  line-height: 2;
}

.privacy-policy-page__contents ol ul li {
  list-style-type: lower-alpha;
}

.privacy-policy-page__contents ol ul ul {
  line-height: 2;
}

.privacy-policy-page__contents ol ul ul li {
  list-style-type: lower-roman;
}

.privacy-policy-page__contents-last-text {
  font-size: calc(100vw / var(--vw) * 20);
  margin-top: calc(100vw / var(--vw) * 64);
  text-align: right;
}

.contact-page__contents-wrapper {
  padding: calc(100vw / var(--vw) * 77) calc(100vw / var(--vw) * 0);
}

.contact-form {
  width: calc(100vw / var(--vw) * 944);
  margin: 0 auto;
}

.contact-form__form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 32);
  font-size: calc(100vw / var(--vw) * 20);
  margin-top: calc(100vw / var(--vw) * 29);
}

.contact-form__form-wrapper:first-child {
  margin-top: calc(100vw / var(--vw) * 0);
}

.contact-form__label {
  width: calc(100vw / var(--vw) * 192);
  font-weight: 700;
  padding-top: calc(100vw / var(--vw) * 32.5);
}

.contact-form__label .required {
  color: #FF0000;
  margin-left: calc(100vw / var(--vw) * 4);
}

.contact-form__input {
  border: 1px solid var(--bg-gray-light);
  width: calc(100vw / var(--vw) * 720);
  height: calc(100vw / var(--vw) * 80);
  border-radius: calc(100vw / var(--vw) * 10);
  outline: none;
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
}

.contact-form__input.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../../images/bottom-arrow-green.svg) no-repeat right calc(100vw / var(--vw) * 35) center/calc(100vw / var(--vw) * 18) calc(100vw / var(--vw) * 10);
  cursor: pointer;
}

.contact-form__input.textarea {
  height: calc(100vw / var(--vw) * 200);
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 32);
  resize: none;
}

.contact-form__checkbox-wrapper {
  text-align: center;
  margin-top: calc(100vw / var(--vw) * 82.5);
  margin-bottom: calc(100vw / var(--vw) * 80);
  font-size: calc(100vw / var(--vw) * 20);
}

.contact-form__checkbox-wrapper .wpcf7-list-item {
  margin: 0;
}

.contact-form__checkbox-wrapper input {
  margin: 0;
  width: calc(100vw / var(--vw) * 20);
  height: calc(100vw / var(--vw) * 20);
  vertical-align: calc(100vw / var(--vw) * -1);
}

.request-page__header {
  padding: calc(100vw / var(--vw) * 64) calc(100vw / var(--vw) * 0);
  background-image: url(../../images/request-page-header.webp);
  background-size: cover;
}

.request-page__header-contents {
  margin-top: calc(100vw / var(--vw) * 64);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 80);
}

.request-page__header-contents-image {
  width: calc(100vw / var(--vw) * 528);
}

.request-page__header-contents-text-wrapper {
  font-size: calc(100vw / var(--vw) * 20);
  line-height: 2;
  font-weight: 700;
}

.request-page__header-contents-text-wrapper ul {
  background: #fff;
  padding: calc(100vw / var(--vw) * 32) calc(100vw / var(--vw) * 20) calc(100vw / var(--vw) * 32) calc(100vw / var(--vw) * 40);
  -webkit-box-shadow: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 0) rgba(0, 0, 0, 0.1);
  box-shadow: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 0) rgba(0, 0, 0, 0.1);
  margin: 0;
  margin-top: calc(100vw / var(--vw) * 32);
}

.request-page__header-contents-text-wrapper ul li::marker {
  color: var(--btn-green);
}

@media screen and (min-width: 768px) {
  :root {
    --vw: 1440;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --vw: 750;
  }

  .pc {
    display: none !important;
    margin: 0;
    padding: 0;
  }

  .pc_fx {
    display: none !important;
  }

  .pc_inline {
    display: none !important;
  }

  .pc_inline_block {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .sp_inline {
    display: inline !important;
  }

  .sp_fx {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .sp_inline_block {
    display: inline-block !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*# sourceMappingURL=styles.css.map */
