@charset "UTF-8";
/*================================================================
# break points
================================================================ */
/*================================================================
# font-family
================================================================ */
/*================================================================
# font-size
================================================================ */
/*================================================================
# font-weight
================================================================ */
/*================================================================
# color
================================================================ */
/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
# common class
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #645d5c;
  font-weight: 500;
}

.en {
  font-family: "inter", "Zen Maru Gothic", sans-serif;
}

h1 {
  color: #211715;
  font-weight: 700;
}

h2 {
  font-weight: 700;
  font-size: 32px;
}

h3 {
  font-size: 20px;
}

section {
  padding: 60px 0px 48px;
}
@media screen and (min-width: 768px) {
  section {
    padding-bottom: 92px;
  }
}
@media screen and (min-width: 992px) {
  section {
    padding-top: 100px;
  }
}

.section_ttl {
  margin-bottom: 42px;
  text-align: center;
  position: relative;
}
.section_ttl > h2 {
  line-height: 48px;
  font-size: 24px;
  letter-spacing: 2.5px;
}
@media screen and (min-width: 768px) {
  .section_ttl > h2 {
    font-size: 32px;
  }
}
.section_ttl::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 6px;
  background-color: #4ca841;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .section_ttl::after {
    bottom: -24.5px;
  }
}

.btn,
[type=submit] {
  display: inline-block;
  padding: 13.5px 30px 13.5px 35px;
  color: #fff;
  background-color: #da1e12;
  border-radius: 25px;
  letter-spacing: 2.5px;
  font-weight: 700;
}
.btn:hover,
[type=submit]:hover {
  color: #da1e12;
  background-color: #fff;
  outline: 1px solid #da1e12;
  transition: background-color 0.2s, transform 0.2s;
}

.btn_wrap {
  text-align: center;
  margin-top: 54px;
}

.text_wrap {
  letter-spacing: 1.1px;
}

/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
# common section
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/*================================================================
# nav_hamburger
================================================================ */
nav {
  background-color: #4ca841;
}

@media screen and (min-width: 768px) {
  .navbar {
    --bs-navbar-padding-y: 0;
  }
}

.navbar-toggler {
  padding-left: 0;
  padding-right: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  margin: 0 10px;
}

.navbar-collapse {
  text-align: center;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .navbar-nav {
    justify-content: space-between;
    width: 696px;
    margin: 0 auto;
    padding: 10px 0px;
    height: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .navbar-nav {
    padding: 19px 0px;
    width: 1103px;
    height: 100px;
  }
}

.nav-link {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .nav-link {
    font-size: 20px;
  }
}

.nav_container {
  padding-right: 0;
  padding-left: 0;
}

.nav_link_contact {
  color: #da1e12;
  padding: 4px 8px;
  background-color: #fff;
  border: #da1e12 solid 1px;
  border-radius: 8px;
  margin: 10px 0;
}
.nav_link_contact:hover {
  color: #fff;
  background-color: #da1e12;
}

@media screen and (min-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-link.nav_link_contact {
    padding: 6px 30.5px !important;
  }
}

/*================================================================
# contact_section
================================================================ */
.contact_section {
  padding-bottom: 0px;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .contact_section {
    padding-top: 96px;
  }
}
@media screen and (min-width: 768px) {
  .contact_section h2 {
    font-size: 24px;
  }
}
.contact_section .btn_wrap {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .contact_section .btn_wrap {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 992px) {
  .contact_section .btn_wrap {
    margin-bottom: 0px;
  }
}
.contact_section .section_ttl {
  margin-bottom: 20px;
}
.contact_section .section_ttl::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .contact_section .nav-link {
    padding: 15px;
  }
}
@media screen and (min-width: 1400px) {
  .contact_section .nav-link {
    padding: 25px;
  }
}
.contact_section form {
  margin-top: 52px;
}

#formContainer {
  width: 336px;
  margin: 0 auto;
  padding-top: 35px;
}
#formContainer .text_wrap {
  letter-spacing: 1.65px;
}
@media screen and (min-width: 992px) {
  #formContainer {
    width: 416px;
    padding-top: 80px;
  }
}

.contact-form .contact-dl {
  margin-top: 16px;
}
.contact-form .contact-dt {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 2.7px;
}
.contact-form .contact-dt span {
  font-size: 10px;
  padding: 2px 4px;
  letter-spacing: 1.1px;
  background-color: #da1e12;
  color: #fff;
  border-radius: 5px;
}
.contact-form .contact-dt label {
  font-size: 20px;
  font-weight: 700;
}

[type=email],
[type=tel],
[type=text],
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 15px 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.radio-group .contact-dd {
  padding: 0 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  row-gap: 8.5px;
  margin-top: 12px;
  letter-spacing: 2px;
}
.radio-group .contact-dd input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 0.8px solid #645d5c;
  border-radius: 50%;
  position: relative;
  background-color: #fff;
}
.radio-group .contact-dd input[type=radio]:checked {
  background-color: #645d5c;
  border: 5px solid #fff;
  box-shadow: 0 0 0 2px #645d5c;
}
@media screen and (min-width: 992px) {
  .radio-group .contact-dd label:nth-of-type(3) {
    width: 100%;
    margin-top: 8px;
  }
}
.radio-group [type=text],
.radio-group textarea {
  margin-top: -5px;
  height: 56px;
}

/* チェックボックスのサイズと背景を透明に */
input[type=checkbox] {
  width: 14px;
  height: 14px;
  appearance: none; /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent; /* 背景を透明に */
  border: 1px solid #645d5c; /* 枠線の色と太さ */
  border-radius: 3px; /* 角の丸みを調整 */
  position: relative;
  display: inline-block;
}

/* チェック時のスタイル */
input[type=checkbox]:checked {
  background-color: transparent; /* 背景を透明のまま */
}

/* チェック時に✔マークを表示 */
input[type=checkbox]:checked::after {
  content: "✔"; /* チェックマーク */
  font-size: 10px;
  font-weight: bold;
  color: #645d5c; /* マークの色 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#company-message,
#personal-message {
  height: 150px;
}

[type=submit] {
  padding: 13.5px 43.29px;
  width: 158.58px;
}

.contact__privacy {
  margin-top: 48px;
  margin-left: 25px;
}
.contact__privacy a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
@media screen and (min-width: 992px) {
  .contact__privacy {
    text-align: center;
  }
}

.hidden {
  display: none;
}

#thankYouMessage {
  text-align: center;
  margin-top: 24px;
}

.show {
  display: block;
}

.btn-sent {
  color: #da1e12;
  background-color: #fff;
  border: 1px solid #da1e12;
  padding: 10px 25.29px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  width: 158.58px;
}

/* 企業の方のフォーム*/
#companyForm {
  background-color: #e3f2e1;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  #companyForm {
    padding-bottom: 50px;
  }
}

/* 個人の方のフォーム */
#personalForm {
  background-color: #f6e8e8;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  #personalForm {
    padding-bottom: 50px;
  }
}

.company_nav .nav-link {
  background-color: #e3f2e1 !important;
  color: #645d5c !important;
}

.personal_nav .nav-link {
  background-color: #f6e8e8 !important;
  color: #645d5c !important;
}

.form-container .nav-item {
  width: 50%;
}
.form-container .nav-tabs {
  --bs-nav-tabs-border-width: none;
}
.form-container .nav-link {
  font-size: 20px;
  width: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  letter-spacing: 3px;
}

.fade {
  transition: none;
}

.intro,
.other {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-checkbox__text {
  letter-spacing: 1.2px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #d9d9d9;
}

input::placeholder,
textarea::placeholder {
  color: #d9d9d9;
}

/* 送信完了メッセージ */
#thankYouCompany {
  background-color: #e3f2e1;
  padding-bottom: 60px;
}

#thankYouPersonal {
  background-color: #f6e8e8;
  padding-bottom: 60px;
}

.radio-textarea {
  overflow-y: auto !important;
  overflow-x: hidden;
  resize: vertical;
  max-height: 150px;
  min-height: 40px;
  width: 100%;
  padding: 15px 8px;
}

/* // Webkit（Chrome, Safari）の場合 */
.radio-textarea::-webkit-scrollbar {
  width: 6px;
}

.radio-textarea::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.radio-textarea::-webkit-scrollbar-track {
  background: transparent;
}

/*================================================================
# footer_section
================================================================ */
.company_bg {
  background-image: url(../img/company_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .company_bg {
    height: 200px;
    background-image: url(../img/company_bg_m.png);
  }
}
@media screen and (min-width: 1400px) {
  .company_bg {
    background-image: url(../img/company_bg_l.png);
  }
}

footer {
  background-color: #4ca841;
  padding: 60px 18px 18px;
  letter-spacing: 1.1px;
}
footer .container {
  --bs-gutter-x: 0;
}
footer h2 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  footer h2 {
    font-size: 24px;
  }
}

.footer_company {
  font-weight: 700;
}

.footer_table {
  padding: 23px 0px 10px;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .footer_table {
    padding: 30px 0px;
  }
}

.copyright {
  font-size: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 15px;
  }
}

/* index.html
***********************************************************/
/*================================================================
# ファーストビュー
================================================================ */
.top {
  background-image: url(../img/fv_bg.png);
  background-size: cover;
  padding-bottom: 8.5px;
}
@media screen and (min-width: 768px) {
  .top {
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1400px) {
  .top {
    background-image: url(../img/fv_bg_big.png);
    padding-bottom: 52.86px;
  }
}

.header {
  width: 336px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header {
    width: 696px;
  }
}
@media screen and (min-width: 1400px) {
  .header {
    width: 1284px;
  }
}

.pretty_logo {
  width: 92px;
}
@media screen and (min-width: 768px) {
  .pretty_logo {
    width: 175px;
    height: 63px;
  }
}

@media screen and (min-width: 1400px) {
  .fv_wrap {
    margin-top: 50px;
    display: flex;
  }
}

.fv_section {
  width: 336px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .fv_section {
    width: 696px;
  }
}
@media screen and (min-width: 1400px) {
  .fv_section {
    margin: 5px 0 0 8px;
  }
}
.fv_section > h2 {
  color: #211715;
}

.copy_first {
  font-size: 24px;
  margin-top: 15px;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  .copy_first {
    font-size: 56px;
    margin-top: 0;
    letter-spacing: 3.3px;
  }
}
.copy_first span {
  font-size: 20px;
  color: #000;
}
@media screen and (min-width: 768px) {
  .copy_first span {
    font-size: 46px;
  }
}

.copy_second {
  font-size: 36px;
  letter-spacing: 3.5px;
}
@media screen and (min-width: 768px) {
  .copy_second {
    font-size: 90px;
    letter-spacing: 5px;
  }
}

.fv_image {
  width: 228px;
  height: 233px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .fv_image {
    width: 453.9px;
    height: 463px;
    margin-top: 10px;
  }
}

.fv_main_contents {
  margin: 0 auto;
  width: 336px;
}
@media screen and (min-width: 768px) {
  .fv_main_contents {
    width: 560px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .fv_main_contents {
    margin: 0;
    margin-top: 19px;
  }
}

.feature_row {
  display: flex;
  justify-content: space-between;
}

.feature_circle {
  text-align: center;
  width: 106px;
  height: 106px;
  background-color: #ee4035;
  color: #fff;
  margin-top: 7.5px;
  padding-top: 8px;
  padding-bottom: 19px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .feature_circle {
    width: 160px;
    height: 160px;
  }
}

.feature_icon {
  width: 21px;
  height: 22px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .feature_icon {
    width: 39px;
    height: 40px;
  }
}

.feature_title {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .feature_title {
    font-size: 40px;
  }
}

.feature_text {
  font-size: 10px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .feature_text {
    font-size: 16px;
    margin-top: 0px;
  }
}

.fv_text {
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .fv_text {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1400px) {
  .fv_text {
    margin-top: 10px;
  }
}

.service_badge_contents {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: 6px;
       column-gap: 6px;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .service_badge_contents {
    row-gap: 16px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .service_badge_contents {
    margin-top: 5px;
    row-gap: 20px;
  }
}

.service_badge {
  padding: 4.5px 18px;
  background-color: #30499b;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.85px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .service_badge {
    font-size: 32px;
    letter-spacing: 2.9px;
  }
}

.service_badge_check span {
  margin-left: 19px;
}
@media screen and (min-width: 768px) {
  .service_badge_check span {
    margin-left: 35px;
  }
}

.fv_image_pc {
  width: 552.1px;
  height: 563.17px;
}

/*================================================================
# about_section
================================================================ */
.about_section {
  padding-top: 100px;
  background-image: url(../img/about_bg.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .about_section {
    padding-top: 120px;
    background-image: none;
  }
}
@media screen and (min-width: 992px) {
  .about_section {
    padding-top: 130px;
  }
}
.about_section .about_text_wrap {
  line-height: 30px;
  margin: 0 auto;
  max-width: 456px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .about_section .about_text_wrap {
    padding-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .about_section .about_text_wrap {
    max-width: 636px;
  }
}

@media screen and (min-width: 768px) {
  .about_section .btn_wrap {
    margin-top: 49px;
  }
}

.about_text_second {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .about_text_second {
    margin-top: 0;
    line-height: 27px;
  }
}
@media screen and (min-width: 992px) {
  .about_text_second {
    margin-top: 32px;
  }
}

/*================================================================
# works_section
================================================================ */
.works_section .text_wrap {
  line-height: 24px;
  margin: 0 auto;
  max-width: 456px;
  letter-spacing: 1.6px;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .works_section .text_wrap {
    padding-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .works_section .text_wrap {
    max-width: 636px;
  }
}
.works_section .btn_wrap {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .works_section .btn_wrap {
    margin-top: 29px;
  }
}
@media screen and (min-width: 992px) {
  .works_section .btn_wrap {
    margin-top: 55px;
  }
}

.second_text {
  letter-spacing: 1.7px;
  margin-top: 32px;
}

.s-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  margin-top: 50px;
}

.swiper {
  width: 100%;
  padding-bottom: 10px;
}

.swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  width: 360px !important;
  height: 320px !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.carousel-caption-custom {
  margin-top: 20px;
  width: 336px;
  letter-spacing: 1.1px;
}
.carousel-caption-custom p {
  margin-top: 16px;
}

.swiper-pagination {
  position: absolute !important;
  bottom: -5px !important;
  top: auto !important;
  left: 0;
  text-align: center;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 5px !important;
  height: 5px !important;
  background-color: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4ca841;
}

/* 基本（中央1枚） */
.swiper-slide {
  transform: scale(1);
}

/* タブレット（中央1枚＋サイド見切れ） */
@media screen and (min-width: 768px) {
  .swiper-slide {
    position: relative;
    transform: scale(0.85);
    transition: transform 0.5s ease-in-out;
  }
  .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}
/* PC（3枚表示） */
@media screen and (min-width: 1200px) {
  .swiper-slide {
    transform: scale(1);
  }
}
/*================================================================
# recruit_section
================================================================ */
.recruit_section {
  background-image: url(../img/recruit_bg.png);
  background-size: cover;
  text-align: center;
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .recruit_section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 992px) {
  .recruit_section {
    padding-bottom: 86px;
    background-image: url(../img/recruit_bg_big.png);
  }
}
.recruit_section .btn_wrap {
  margin-top: 45px;
}

.recruit_container {
  width: 336px;
}
@media screen and (min-width: 768px) {
  .recruit_container {
    width: 523.93px;
  }
}
@media screen and (min-width: 992px) {
  .recruit_container {
    width: 1028.93px;
  }
}

@media screen and (min-width: 992px) {
  .recruit_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 856.61px;
    margin: 0 auto;
  }
}

.recruit_img {
  width: 327.92px;
  height: 166.48px;
  padding-right: 10px;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .recruit_img {
    width: 523.93px;
    height: 266px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  .recruit_img {
    width: 416px;
  }
}

.recruit_text {
  margin-top: 58px;
  letter-spacing: 2.5px;
}
@media screen and (min-width: 768px) {
  .recruit_text > h3 {
    font-size: 28px;
    margin-top: 90px;
  }
}
@media screen and (min-width: 992px) {
  .recruit_text > h3 {
    margin-top: 45px;
  }
}
@media screen and (min-width: 992px) {
  .recruit_text {
    width: 416px;
    margin-top: 0;
  }
}
.recruit_text > p {
  margin-top: 16px;
  line-height: 30px;
  letter-spacing: 1.3px;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .recruit_text > p {
    max-width: 452px;
  }
}
@media screen and (min-width: 992px) {
  .recruit_text > p {
    width: 356px;
    letter-spacing: 1.45px;
  }
}

/*================================================================
# company_section
================================================================ */
.company_section {
  padding-top: 52px;
  padding-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .company_section {
    padding-top: 132px;
  }
}
@media screen and (min-width: 992px) {
  .company_section {
    padding-top: 70px;
  }
}
.company_section .company_name {
  font-size: 20px;
  letter-spacing: 3px;
}
@media screen and (min-width: 768px) {
  .company_section .company_name {
    font-size: 28px;
    font-weight: 700;
  }
}

.company-info-table {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .company-info-table {
    width: 456px;
    margin-top: 65px;
  }
}
@media screen and (min-width: 992px) {
  .company-info-table {
    width: 638px;
  }
}
.company-info-table span {
  font-weight: 700;
  letter-spacing: 1.1px;
}
.company-info-table .address span,
.company-info-table .industry span {
  letter-spacing: 20px;
}

.table_border {
  border: solid #645d5c 0.5px;
}

.table {
  display: flex;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .table {
    margin-top: 19.5px;
  }
}
@media screen and (min-width: 768px) {
  .table > h3 {
    margin-bottom: 7px;
  }
}
.table > span {
  width: 25%;
}
@media screen and (min-width: 768px) {
  .table > span {
    width: 30%;
  }
}
@media screen and (min-width: 992px) {
  .table > span {
    width: 35%;
  }
}
.table > p {
  width: 65%;
  letter-spacing: 2.2px;
}

.leader {
  padding-bottom: 2px;
}

.industry,
.tel,
.fax,
.email {
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .industry,
.tel,
.fax,
.email {
    padding-bottom: 0px;
  }
}

.map-container {
  margin-top: 47px;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 320px;
}
@media screen and (min-width: 768px) {
  .map-container iframe {
    height: 800px;
  }
}

/* works.html
***********************************************************/
.w_top {
  background-image: url(../img/w_fv_bg_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 47px;
}
@media screen and (min-width: 768px) {
  .w_top {
    background-image: url(../img/w_fv_bg_md.png);
    padding-bottom: 14px;
    height: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .w_top {
    height: 799px;
  }
}
.w_top h1 {
  padding: 31px 0px 26px;
  z-index: 100;
  font-size: 28px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .w_top h1 {
    padding: 57px 0px 0px;
    position: relative;
    font-size: 48px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .w_top h1 {
    padding: 137px 0px 0px;
  }
}
@media screen and (min-width: 768px) {
  .w_top h1::after {
    content: "";
    position: absolute;
    background-image: url(../img/w_fv_illust_md.png);
    background-size: cover;
    width: 594px;
    height: 445.65px;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -100;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .w_top h1::after {
    background-size: contain;
    background-repeat: no-repeat;
    width: 943.38px;
    height: 661.76px;
    top: 10%;
    left: 52.5%;
  }
}

.w_top_illust {
  width: 302px;
  height: 269px;
  margin: 0 auto;
}

/* about_section
------------------------------------------------------ */
.w_about_section {
  background-image: url(../img/w_about_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1200px) {
  .w_about_section {
    background-image: url(../img/w_about_bg_big.png);
  }
}
@media screen and (min-width: 768px) {
  .w_about_section > .container {
    max-width: 456px;
  }
}
@media screen and (min-width: 1400px) {
  .w_about_section > .container {
    max-width: 636px;
  }
}
.w_about_section img {
  width: 360px;
  margin: 0 auto;
}

.w_about_sentences {
  letter-spacing: 1.6px;
}

.content-section {
  letter-spacing: 2px;
}

/* record_section
------------------------------------------------------ */
@media screen and (min-width: 768px) {
  .w_record_wrap {
    max-width: 696px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .w_record_wrap {
    max-width: 720px;
  }
}

/* w_flow_section
------------------------------------------------------ */
.w_flow_section {
  background-image: url(../img/w_flow_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1400px) {
  .w_flow_section {
    background-image: url(../img/w_flow_bg_big.png);
  }
}

@media screen and (min-width: 768px) {
  .w_flow_item {
    max-width: 432px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .w_flow_item {
    max-width: 636px;
  }
}

.w_flow_items {
  padding-top: 50px;
}
.w_flow_items .last {
  width: 360px;
  margin: 0 auto;
}

.w_arrow {
  margin: 0 auto;
  width: 22px;
  height: 63px;
}

.step_circle {
  position: relative;
}
.step_circle::after {
  content: "";
  position: absolute;
  background-image: url(../img/w_flow_ttl_bg.png);
  width: 83px;
  height: 83px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -100;
}
.step_circle > p {
  color: #30499b;
  font-size: 20px;
  font-weight: 700;
  z-index: 100;
}
.step_circle > p span {
  font-size: 14px;
  font-weight: 500;
}

.w_flow_text {
  padding: 32px 0;
}

.w_suppl {
  font-size: 14px;
}

/* recruit.html
***********************************************************/
.r_top {
  background-image: url(../img/r_fv_bg_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .r_top {
    background-image: url(../img/r_fv_bg_md.png);
  }
}
.r_top h1 {
  margin-top: 26px;
  margin-bottom: 15px;
  font-size: 28px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .r_top h1 {
    padding: 57px 0px 0px;
    position: relative;
    font-size: 48px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1400px) {
  .r_top h1 {
    padding: 137px 0px 0px;
    margin-top: 0;
  }
}

.r_top_illust {
  width: 324.5px;
  height: 331px;
  margin: 0 auto;
  padding-left: 11.5px;
}
@media screen and (min-width: 768px) {
  .r_top_illust {
    width: 660px;
    height: 250px;
    margin-bottom: -5px;
  }
}
@media screen and (min-width: 1400px) {
  .r_top_illust {
    width: 1256px;
    height: 524px;
    margin-bottom: -5px;
    padding-left: 40px;
  }
}

.r_lead_section {
  background-image: url(../img/r_about_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .r_lead_section {
    background-size: contain;
    background-position: center center;
  }
}

.r_lead_sentences {
  margin: 0 auto;
  max-width: 456px;
}
@media screen and (min-width: 1200px) {
  .r_lead_sentences {
    max-width: 550px;
  }
}

.r_record_section {
  background-image: url(../img/r_record_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1400px) {
  .r_record_section {
    background-image: url(../img/r_record_bg_big.png);
  }
}
.r_record_section .r_record_img_wrap {
  width: 360px;
  margin: 0 auto;
}
.r_record_section .r_record_text {
  max-width: 456px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .r_record_section .r_record_text {
    max-width: 550px;
  }
}

.r_description_section {
  letter-spacing: 1.6px;
}
.r_description_section h4,
.r_description_section .bb {
  border-bottom: 0.5px solid #645d5c;
}
.r_description_section .container {
  max-width: 456px;
}
@media screen and (min-width: 1200px) {
  .r_description_section .container {
    max-width: 636px;
  }
}
.r_description_section .section-title {
  width: 25%;
}
.r_description_section small {
  font-size: 12px;
}

/* company.html
***********************************************************/
.c_top {
  background-image: url(../img/c_fv_bg_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .c_top {
    background-image: url(../img/c_fv_bg_md.png);
    padding-bottom: 50px;
    height: 438px;
  }
}
@media screen and (min-width: 1200px) {
  .c_top {
    height: 797px;
  }
}
.c_top h1 {
  padding-top: 31px;
  margin-bottom: 0px;
  z-index: 100;
  font-size: 28px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .c_top h1 {
    padding: 57px 0px 0px;
    position: relative;
    font-size: 48px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .c_top h1 {
    padding: 137px 0px 0px;
  }
}
@media screen and (min-width: 768px) {
  .c_top h1::after {
    content: "";
    position: absolute;
    background-image: url(../img/c_fv_illust_md.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 769px;
    height: 365px;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -100;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .c_top h1::after {
    background-image: url(../img/c_fv_illust_pc.png);
    width: 1200px;
    height: 668px;
    top: 10%;
  }
}

.c_top_illust {
  width: 295px;
  height: 329.6px;
  margin: 0 auto;
}

.c_message {
  margin-top: 60px;
  padding-bottom: 60px;
  background-image: url(../img/c_message_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1200px) {
  .c_message {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1400px) {
  .c_message {
    background-image: url(../img/c_message_bg_big.png);
  }
}

.c_message_sentences {
  letter-spacing: 1.6px;
  padding-top: 27px;
}
@media screen and (min-width: 768px) {
  .c_message_sentences {
    max-width: 456px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .c_message_sentences {
    max-width: 636px;
  }
}

.c_text {
  margin-top: 32px;
}

.c_company_photo {
  margin: 48px 0px 60px;
}

.figure {
  display: block;
}

.figure-img {
  margin: 0 auto;
}

/*================================================================
# privacy.html
================================================================ */
.p_top {
  background-image: url(../img/privacy_bg_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  letter-spacing: 1.6px;
  padding: 0px;
}
@media screen and (min-width: 768px) {
  .p_top {
    background-image: url(../img/privacy_bg_md.png);
  }
}
@media screen and (min-width: 1200px) {
  .p_top {
    background-image: url(../img/privacy_bg_pc.png);
  }
}
@media screen and (min-width: 768px) {
  .p_top h1 {
    font-size: 48px;
  }
}
.p_top h2 {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .p_top h2 {
    margin-bottom: 60px;
    font-size: 32px;
  }
}
.p_top ul {
  margin-bottom: 32px;
}
.p_top li {
  margin-top: 32px;
}
.p_top .copyright {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .p_top .copyright {
    margin-top: 200px;
  }
}

.privacy_ttl {
  margin: 96px 0px 120px;
}
@media screen and (min-width: 768px) {
  .privacy_ttl {
    margin: 200px 0px;
  }
}

@media screen and (min-width: 768px) {
  .privacy_section {
    width: 455px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .privacy_section {
    width: 636px;
  }
}