@charset "UTF-8";
.font_asap {
  font-family: "Asap Condensed", sans-serif;
  letter-spacing: 10px;
  font-size: 60px;
  font-weight: normal;
}
@media (width < 1101px) {
  .font_asap {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .font_asap {
    font-size: 35px;
  }
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.br_mb {
  display: none;
}
@media (width < 769px) {
  .br_mb {
    display: block;
  }
}

/*----------ヘッダー----------*/
.fade_in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease, transform 2s ease;
}

.fade_in.active {
  opacity: 1;
  transform: translateY(0);
}

/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

@media (width < 1101px) {
  header {
    top: 0;
  }
}
.slide_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 5% 0 5%;
}
@media (width < 1441px) {
  .slide_nav_wrapper {
    padding: 20px 5% 0% 5%;
  }
}
@media (width < 1281px) {
  .slide_nav_wrapper {
    padding: 15px 5% 0% 5%;
  }
}

@media (width < 1101px) {
  .slide_nav_wrapper {
    padding: 0 0% 0 5%;
  }
}
@media (width < 431px) {
  .slide_nav_wrapper {
    padding-left: 5%;
  }
}
.mb_header__container {
  display: flex;
  justify-content: right;
  align-items: center;
}

.mb_menu {
  display: none;
}

@media (width < 1101px) {
  .mb_menu {
    display: block;
  }
}
.header_logo {
  width: 7%;
  padding-top: 10px;
  transition: all 0.6s ease;
}
.header_logo:hover {
  opacity: 0.5;
}

.header_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (width < 1101px) {
  .header_logo {
    width: 15%;
    padding-top: 5px;
  }
}
@media (width < 769px) {
  .header_logo {
    width: 15%;
    padding-top: 5px;
  }
}
@media (width < 431px) {
  .header_logo {
    width: 25%;
    padding-top: 5px;
  }
}
/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 550;
  background-color: #0C489E;
  transition: 0.5s all;
}

@media (width < 1101px) {
  .hamburger {
    width: 120px;
    height: 100px;
  }
}
@media (width < 769px) {
  .hamburger {
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 100px;
    height: 70px;
  }
}
.hamburger:hover {
  background-color: #4496C8;
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.5s;
}

@media (width < 1281px) {
  .hamburger span,
.hamburger span::after,
.hamburger span::before {
    width: 30px;
  }
}
.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.mb_nav {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-image: linear-gradient(to left, #AEEAF2 0%, #15A597 25%, #0B94C1 45%, #0F65B7 68%, #081D7A 97%);
  opacity: 0.8;
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}

@media (width < 431px) {
  .mb_nav {
    width: 100%;
    padding: 50px 0 100px 0;
  }
}
.mb_nav__list {
  display: block;
}

.mb_nav__list li {
  padding-left: 5%;
}

.mb_nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.mb_nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
  width: 60%;
}

@media (width < 1101px) {
  .mb_nav__item a:hover {
    width: 80%;
  }
}
@media (width < 769px) {
  .mb_nav__item a:hover {
    width: 100%;
  }
}
.mb_nav.open {
  right: 0;
}

.mb_header__container {
  display: none;
}
@media (width < 1101px) {
  .mb_header__container {
    display: block;
  }
}

/* ===============================================
パソコン・ナビゲーションメニュー
=============================================== */
.header_pc_container {
  width: 60%;
}
@media (width < 1101px) {
  .header_pc_container {
    display: none;
  }
}

.header_pc_nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_pc_nav li {
  font-size: 16px;
  text-align: center;
}
.header_pc_nav a {
  color: #05215C;
  transition: all 0.3s ease;
}
.header_pc_nav a:hover {
  opacity: 0.5;
}

.menu_rb {
  font-size: 10px;
}

/* ===============================================
ファーストビュー
=============================================== */
.top_fv_inner {
  padding: 5%;
  position: relative;
  overflow-x: hidden;
}
@media (width < 1101px) {
  .top_fv_inner {
    padding: 15% 5% 5%;
  }
}
@media (width < 431px) {
  .top_fv_inner {
    padding: 25% 5% 5%;
  }
}

.top_fv_title {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}
@media (width < 431px) {
  .top_fv_title {
    top: 60%;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
}
.top_fv_title h1 {
  color: #fff;
  font-weight: normal;
  font-size: 25px;
  line-height: 3rem;
  text-shadow: 4px 4px 5px #bdbdbd;
}
@media (width < 431px) {
  .top_fv_title h1 {
    font-size: 20px;
  }
}

.d_text {
  color: #CDD4E2;
  opacity: 0.5;
  font-size: 110px;
  font-weight: normal;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  white-space: nowrap;
}
@media (width < 1540px) {
  .d_text {
    font-size: 90px;
  }
}
@media (width < 1441px) {
  .d_text {
    font-size: 80px;
  }
}
@media (width < 1101px) {
  .d_text {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .d_text {
    font-size: 25px;
    bottom: 0%;
  }
}

/* ===============================================
ファーストビュー・スライドショー
=============================================== */
.container {
  width: 100%;
  height: 75vh;
}

.slider-area {
  position: relative;
  width: 100%;
  height: 75vh;
}

.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  -webkit-animation: slideShow 30s linear infinite 0s;
  animation: slideShow 30s linear infinite 0s;
}

.slider-item:nth-child(2) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.slider-item:nth-child(3) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}

.slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
@keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
/*---------モバイル---------*/
.mb_container {
  display: none;
  width: 100%;
  height: auto;
}

@media (width < 769px) {
  .container {
    display: none;
  }
  .mb_container {
    display: block;
    width: 100%;
  }
}
/* ===============================================
スクロールダウン
=============================================== */
.scroll {
  position: absolute;
  right: 7%;
  top: 14%;
  writing-mode: vertical-rl;
  font-size: 20px;
  white-space: nowrap;
  color: #CDD4E2;
}
@media (width < 1101px) {
  .scroll {
    top: 20%;
  }
}
@media (width < 431px) {
  .scroll {
    right: 3%;
    top: 15%;
    font-size: 14px;
  }
}

@media (width < 769px) {
  .scroll {
    font-size: 16px;
  }
}
/* 線のアニメーション部分 */
.scroll::before {
  -webkit-animation: scroll 2s infinite;
  animation: scroll 2s infinite;
  background-color: #CDD4E2;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ===============================================
私たちについて
=============================================== */
.top_about {
  padding: 7% 0 10% 0;
}
@media (width < 431px) {
  .top_about {
    padding: 15% 0 10%;
  }
}

.top_about_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .top_about_inner {
    padding: 0 3%;
  }
}

.top_about_title {
  color: #05215C;
  text-align: center;
}

.top_about_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10%;
}
@media (width < 1281px) {
  .top_about_contents {
    padding-top: 7%;
  }
}
@media (width < 769px) {
  .top_about_contents {
    display: block;
  }
}

.top_about_img {
  width: 45%;
}
@media (width < 769px) {
  .top_about_img {
    width: 100%;
  }
}
.top_about_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_about_text {
  width: 50%;
  color: #05215C;
}
@media (width < 769px) {
  .top_about_text {
    width: 100%;
    padding-top: 5%;
    text-align: center;
  }
}
.top_about_text h3 {
  font-size: 30px;
  padding-bottom: 3%;
  font-weight: normal;
}
@media (width < 1281px) {
  .top_about_text h3 {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .top_about_text h3 {
    font-size: 20px;
  }
}
.top_about_text p {
  font-size: 20px;
  line-height: 3rem;
}
@media (width < 1281px) {
  .top_about_text p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .top_about_text p {
    font-size: 12px;
  }
}

/* ===============================================
事業内容
=============================================== */
.top_service {
  padding: 10% 0;
  background-color: #F5F5F5;
}
@media (width < 431px) {
  .top_service {
    padding: 20% 0;
  }
}

.top_service_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .top_service_inner {
    padding: 0 3%;
  }
}

.top_service_title {
  color: #05215C;
}
@media (width < 431px) {
  .top_service_title {
    padding-left: 5%;
  }
}

.top_service_contents {
  padding-top: 10%;
}

.top_service_text {
  background-color: #CDD4E2;
  -webkit-clip-path: polygon(90% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(90% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
  padding: 5% 3%;
  position: relative;
}
@media (width < 1281px) {
  .top_service_text {
    padding: 5% 5% 5% 3%;
  }
}
@media (width < 431px) {
  .top_service_text {
    padding: 10% 10% 10% 7%;
  }
}
.top_service_text::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  background-color: #fff;
  -webkit-clip-path: polygon(90% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(90% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
}
.top_service_text h3 {
  font-size: 30px;
  display: flex;
  align-items: center;
  font-weight: normal;
  padding-bottom: 15px;
}
@media (width < 1281px) {
  .top_service_text h3 {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .top_service_text h3 {
    font-size: 20px;
  }
}
.top_service_text p {
  font-size: 18px;
  line-height: 2.5rem;
}
@media (width < 1281px) {
  .top_service_text p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .top_service_text p {
    font-size: 12px;
  }
}

.contents_number {
  color: #CDD4E2;
  margin-right: 15px;
}

.top_service_img {
  width: 100%;
  padding-top: 3%;
}
.top_service_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===============================================
会社概要
=============================================== */
.top_company {
  background-image: url(img/top-company.webp);
  background-position: center;
  background-size: cover;
  padding: 10% 0;
}

.top_company_inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.top_company_title {
  color: #fff;
}

.top_company_contents {
  padding-top: 15px;
}
.top_company_contents p {
  font-size: 20px;
  line-height: 2.5rem;
  padding-bottom: 15px;
}
@media (width < 1281px) {
  .top_company_contents p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .top_company_contents p {
    font-size: 14px;
  }
}

.top_company_btn a {
  color: #05215C;
  display: inline-block;
  padding: 20px 0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 20px;
  width: 265px;
  transition: all 0.3s ease;
}
.top_company_btn a:hover {
  color: #fff;
  background-color: #0B94C1;
  transform: scale(1.05); /* 少し大きくなる */
}
@media (width < 1281px) {
  .top_company_btn a {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .top_company_btn a {
    width: 220px;
    font-size: 14px;
  }
}

/* ===============================================
フォームボタン
=============================================== */
.top_anounce {
  color: #fff;
  padding: 5% 0;
}
@media (width < 431px) {
  .top_anounce {
    padding: 15% 0;
  }
}

.top_anounce_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .top_anounce_inner {
    padding: 0 3%;
  }
}

.top_anounce_box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 0;
  background-image: linear-gradient(to left, #AEEAF2 0%, #15A597 25%, #0B94C1 45%, #0F65B7 68%, #081D7A 97%);
}
@media (width < 1281px) {
  .top_anounce_box {
    padding: 3% 0;
  }
}
@media (width < 769px) {
  .top_anounce_box {
    display: block;
    padding: 0 5%;
  }
}
.top_anounce_box p {
  padding: 3% 0;
  font-size: 20px;
}
@media (width < 1281px) {
  .top_anounce_box p {
    font-size: 16px;
    padding: 0 0 3% 0;
  }
}

.top_contact_form {
  text-align: center;
  width: 50%;
  padding: 5% 0;
}
@media (width < 769px) {
  .top_contact_form {
    width: 100%;
  }
}
@media (width < 431px) {
  .top_contact_form {
    padding: 15% 0;
  }
}
.top_contact_form a {
  color: #05215C;
  background-color: #fff;
  display: inline-block;
  padding: 20px 0;
  border-radius: 5px;
  width: 265px;
  transition: all 0.3s ease;
}
.top_contact_form a:hover {
  color: #fff;
  background-color: #15A597;
  transform: scale(1.05); /* 少し大きくなる */
}
@media (width < 431px) {
  .top_contact_form a {
    width: 220px;
    font-size: 14px;
  }
}

.top_rectuit {
  text-align: center;
  width: 50%;
  padding: 5% 0;
  border-left: solid 1px #fff;
}
@media (width < 769px) {
  .top_rectuit {
    border-left: none;
    border-top: solid 1px #fff;
    width: 100%;
  }
}
@media (width < 431px) {
  .top_rectuit {
    padding: 15% 0;
  }
}
.top_rectuit a {
  color: #05215C;
  background-color: #fff;
  display: inline-block;
  padding: 20px 0;
  border-radius: 5px;
  width: 265px;
  transition: all 0.3s ease;
}
.top_rectuit a:hover {
  color: #fff;
  background-color: #081D7A;
  transform: scale(1.05); /* 少し大きくなる */
}
@media (width < 431px) {
  .top_rectuit a {
    width: 220px;
    font-size: 14px;
  }
}

/* ===============================================
フッター
=============================================== */
footer {
  padding: 5% 0 15px 0;
  background-color: #05215C;
}
@media (width < 431px) {
  footer {
    padding: 7% 0 3% 0;
  }
}

.footer_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1101px) {
  .footer_inner {
    padding: 0 3%;
  }
}
@media (width < 769px) {
  .footer_inner {
    display: block;
  }
}
.footer_inner p {
  color: #fff;
}

.footer_icon {
  padding-bottom: 3%;
  display: flex;
  align-items: center;
}
@media (width < 769px) {
  .footer_icon {
    justify-content: center;
  }
}
@media (width < 431px) {
  .footer_icon {
    padding-bottom: 7%;
  }
}
.footer_icon a {
  display: block;
  width: 15%;
  transition: all 0.6s ease;
}
.footer_icon a:hover {
  opacity: 0.5;
}
@media (width < 769px) {
  .footer_icon a {
    width: 8%;
  }
}
@media (width < 431px) {
  .footer_icon a {
    width: 12%;
  }
}
.footer_icon a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer_overview p {
  font-size: 16px;
  line-height: 1.7rem;
}
@media (width < 769px) {
  .footer_overview p {
    text-align: center;
  }
}
@media (width < 431px) {
  .footer_overview p {
    font-size: 14px;
    line-height: 1.2rem;
  }
}

.footer_nav a {
  color: #fff;
  transition: all 0.3s ease;
}
.footer_nav a:hover {
  opacity: 0.5;
}
.footer_nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列（1frずつ） */
  gap: 20px; /* 隙間をあける */
}
@media (width < 769px) {
  .footer_nav ul {
    grid-template-columns: 1fr;
  }
}

.copy_right {
  padding-top: 5%;
  color: #fff;
  text-align: center;
}
@media (width < 431px) {
  .copy_right {
    font-size: 11px;
  }
}

@media (width < 769px) {
  .pc_nav {
    display: none;
  }
}

/* ===============================================
個別ページ
=============================================== */
.page_fv {
  padding: 5%;
}
@media (width < 1101px) {
  .page_fv {
    padding: 10% 5% 5%;
  }
}
@media (width < 769px) {
  .page_fv {
    padding: 15% 5% 5%;
  }
}
@media (width < 431px) {
  .page_fv {
    padding: 20% 5% 5%;
  }
}

.page_fv_wrapper {
  position: relative;
}

.page_inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page_title {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.page_title p {
  font-size: 20px;
}

.page_contents {
  padding: 5% 0 10% 0;
}

.page_contents_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .page_contents_inner {
    padding: 0 3%;
  }
}

.page_contents_title {
  text-align: center;
  color: #05215C;
}

.page_contents_item {
  padding-top: 10%;
}

/* ===============================================
個別ページ・会社概要
=============================================== */
.page_company {
  background-image: url(img/page-company.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
}
@media (width < 769px) {
  .page_company {
    height: 50vh;
  }
}

table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 80%;
  margin: 0 auto;
  font-size: 20px;
}

@media (width < 1281px) {
  table {
    font-size: 16px;
  }
}
@media (width < 431px) {
  table {
    width: 100%;
    white-space: nowrap;
  }
}
tr {
  border-bottom: solid 1px #D9D9D9;
}

td {
  padding: 2% 0;
}

@media (width < 431px) {
  td {
    font-size: 12px;
  }
}
.contents_more {
  padding-left: 10%;
}

/* ===============================================
個別ページ・お問い合わせ
=============================================== */
.page_contact {
  background-image: url(img/page-contact.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
}
@media (width < 769px) {
  .page_contact {
    height: 50vh;
  }
}

.contact_massage {
  text-align: center;
  padding: 5% 0;
}

.page_contents_box {
  background-color: #F9F9F9;
  padding: 10% 5%;
}

/*----------お問い合わせフォーム----------*/
.page_contents_box dl {
  padding: 3% 0;
  border-top: solid 1px #05215C;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (width < 769px) {
  .page_contents_box dl {
    display: block;
  }
}
.page_contents_box dt {
  width: 40%; /* ラベル部分の幅 */
  padding-left: 1rem;
}

@media (width < 769px) {
  .page_contents_box dt {
    width: 100%;
    padding: 0 0 3% 0;
  }
}
.page_contents_box dd {
  width: 60%; /* 入力フィールドの幅 */
  border: solid 1px #404040;
}

@media (width < 769px) {
  .page_contents_box dd {
    width: 100%;
  }
}
.page_contents_box .required {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 15px;
  background-color: #05215C;
  color: #fff;
  font-size: 12px;
  vertical-align: middle;
}

.page_contents_box input {
  width: 100%;
  padding: 2% 1rem;
  background-color: #fff;
}

.page_contents_box textarea {
  width: 100%;
  padding: 2% 1rem 10% 1rem;
  resize: none;
  background-color: #fff;
}

.pparea_btnbox {
  padding: 5% 0 20px 0;
}

.pp_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 14px;
}

.pp_checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}

/*コンタクトボタン・アニメーション*/
.page_contact_formbtnarea {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}

@media (width < 769px) {
  .page_contact_formbtnarea {
    font-size: 20px;
    width: 50%;
  }
}
.page_contact_formbtn {
  font-size: 20px;
  color: #000;
  background-color: #fff;
  border: solid 1px #404040;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  cursor: pointer;
  transition: all 0.4s;
}

@media (width < 431px) {
  .page_contact_formbtn {
    font-size: 16px;
    padding: 7% 0;
  }
}
.page_contact_formbtn:hover {
  border-radius: 15px;
}

.page_contct_anouncetxt {
  text-align: center;
  padding: 3% 0;
}

/* ===============================================
個別ページ・プライバシーポリシー
=============================================== */
.page_privacy {
  background-image: url(img/page-privacy.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
}
@media (width < 769px) {
  .page_privacy {
    height: 50vh;
  }
}

.page_privacy_title {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.5rem;
}

/* ===============================================
個別ページ・採用情報
=============================================== */
.page_recruit {
  background-image: url(img/page-recruit.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
}
@media (width < 769px) {
  .page_recruit {
    height: 50vh;
  }
}

.page_recruit_title {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.5rem;
}

/* ===============================================
追加・変更
=============================================== */
dd p{
	padding: 10px 0 10px 1rem;
	background-color: #fff;
}
.contact_massage {
	color: #05215C;
}

.mb_br{
	display: none;
}
@media (width < 431px){
.mb_br{
	display: block;
}
.mb_indent{
	display: inline-block;
	text-indent: 1em;
}
}
/*# sourceMappingURL=style.css.map */