@charset "UTF-8";
a {
  text-decoration: none;
}

li {
  list-style: none;
}

/*----------共通CSS----------*/
.hero_inner, .vision_inner, .service_inner, .page_hero_inner, .overview_inner, .page_contactform_inner,
.mission_inner, .contact_infomation_inner, .footer_inner, .tanomeru_about_inner, .tanomeru_about_inner,
.tanomeru_poinnt_inner, .tanomeru_suport_inner, .tanomeru_line_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.small_title {
  display: flex;
  align-items: center;
  color: #3C5EFF;
  width: 30%;
  margin: 0 auto;
}

.small_title:before,
.small_title:after {
  content: "";
  flex-grow: 1;
  height: 1px; /* 線の太さ */
  background: #3C5EFF; /* 線の色 */
  margin: 0 1rem; /* 文字と線の余白 */
}

/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 1000;
  width: 100%;
}
header .logo {
  /* アニメーションの変化時間 */
  transition: 0.5s;
  width: 200px;
}
header .logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
}
header .pc_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .pc_nav a {
  color: #fff;
  display: inline-block;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}
header li + li {
  padding-left: 40px;
}

.blue_logo {
  display: none;
  width: 200px;
}
.blue_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 10px;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.scroll-nav {
  /* 背景を白にする */
  background-color: #fff;
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
.scroll-nav ul li a {
  color: #1F2B64;
}

.scroll-nav .logo {
  display: none;
}

.scroll-nav .blue_logo {
  display: block;
}

.mobile_nav {
  display: none;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  position: fixed;
  width: 50px;
  height: 80px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 550;
}

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

.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);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #643213;
  opacity: 0.9;
  padding: 50px 0;
  transition: all 0.5s;
  z-index: 500;
}

.nav__list {
  display: block;
}

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

.nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
}

.nav.open {
  right: 0;
}

/*----------ファーストビュー----------*/
.hero {
  width: 100%;
  background-image: url(img/Group231.png);
  background-position: left center;
  background-size: cover;
  position: relative;
}
.hero h1 {
  color: #fff;
  font-size: 50px;
  padding: 30% 0;
}
}
.hero .t_decoration {
  position: absolute;
  bottom: -10%;
  left: 0%; /* 修正: translateはleftに直接適用されない */
}
.hero .t_decoration img {
  width: 100%;
}

/*----------ビジョン----------*/
.vision {
  padding: 10% 0;
}
.vision .vision_title {
  text-align: center;
}
.vision h2 {
  font-size: 60px;
  font-weight: bold;
  color: #203DC3;
  letter-spacing: 0.3rem;
}
.vision .vision_contents {
  padding-top: 5%;
}
.vision .vision_contents p {
  text-align: center;
  font-size: 20px;
  line-height: 3rem;
  color: #1F2B64;
}

/*----------サービス----------*/
.service {
  position: relative;
  z-index: 0;
}
.service .service_title {
  text-align: center;
}
.service h2 {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.3rem;
}
.service h3 {
  color: #fff;
}
.service .service_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 10%;
}
.service .service_contents img {
  width: 100%;
}
.service .service_contents p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding-top: 5%;
}
.service .s_contents01, .service .s_contents02, .service .s_contents03 {
  width: calc(33.3333333333% - 6.6666666667px); /* 要素幅を計算 */
}
.service .service_contentsimg {
  background-color: #fff;
  border-radius: 10px;
  padding: 10% 0;
}
.service .service_wrapper {
  background: linear-gradient(90deg, rgb(4, 18, 89), rgb(61, 85, 198));
  border-radius: 50px;
  padding: 10% 0;
  position: relative;
  z-index: 100;
}
.service .t_decoration {
  position: absolute;
  bottom: -10%;
  left: 0;
  z-index: 1;
}
.service .t_decoration img {
  width: 100%;
}

/*----------ミッション----------*/
.mission {
  padding: 15% 0 10% 0;
}
.mission .mission_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mission .mission_title h2 {
  font-size: 60px;
  font-weight: bold;
  color: #203DC3;
  letter-spacing: 0.3rem;
}
.mission .mission_title h3 {
  color: #203DC3;
}
.mission .mission_contents {
  width: 60%;
  padding-left: 5%;
  border-left: #3C5EFF solid 2px;
}
.mission h4 {
  color: #1F2B64;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 3%;
}
.mission p {
  line-height: 2.5rem;
  color: #1F2B64;
}

/*----------コンタクト----------*/
.contact_infomation {
  background-image: url(img/Group130.png);
  background-position: left center;
  background-size: cover;
  padding: 5% 0;
}
.contact_infomation .contact_title {
  text-align: center;
  color: #fff;
  padding: 5% 0;
}
.contact_infomation .contact_title h2 {
  letter-spacing: 0.3rem;
  font-size: 60px;
  font-weight: bold;
}
.contact_infomation .contact_infomation_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  border: #fff solid 1px;
}
.contact_infomation .contact_infomation_contents p {
  color: #fff;
  font-weight: bold;
  margin-left: 10px;
}
.contact_infomation .contact_infomation_contents a {
  display: inline-block;
  width: 100%;
}
.contact_infomation .contact_form, .contact_infomation .contact_line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15% 5%;
  width: 100%;
  margin: 10px 0;
}
.contact_infomation .contact_line {
  border-left: #fff solid 1px;
}
.contact_infomation .contact_icon {
  width: 50px;
  height: 50px;
}
.contact_infomation .contact_icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------個別ページコンタクトリンク----------*/
.contact_pageinfomation {
  padding: 5% 0;
}
.contact_pageinfomation .contact_title {
  text-align: center;
  color: #1F2B64;
  padding: 5% 0;
}
.contact_pageinfomation .contact_title h2 {
  letter-spacing: 0.3rem;
  font-size: 60px;
  font-weight: bold;
}
.contact_pageinfomation .contact_pageinfomation_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  border: #1F2B64 solid 1px;
}
.contact_pageinfomation .contact_pageinfomation_contents p {
  color: #1F2B64;
  font-weight: bold;
  margin-left: 10px;
}
.contact_pageinfomation .contact_pageinfomation_contents a {
  display: inline-block;
  width: 100%;
}
.contact_pageinfomation .contact_form, .contact_pageinfomation .contact_line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15% 5%;
  width: 100%;
  margin: 10px 0;
}
.contact_pageinfomation .contact_line {
  border-left: #1F2B64 solid 1px;
}
.contact_pageinfomation .contact_icon {
  width: 50px;
  height: 50px;
}
.contact_pageinfomation .contact_icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------フッター----------*/
footer {
  background-color: #1F2B64;
  color: #fff;
}
footer a {
  color: #fff;
}
footer .footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5% 0;
}
footer .footer_logo {
  width: 200px;
}
footer .footer_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .footer_nav ul {
  display: flex;
}
footer li + li {
  padding-left: 40px;
}
footer .copy_right {
  text-align: center;
}

/* ===============================================
カンパニーページ
=============================================== */
.page_hero_company {
  background-image: url(img/company.png);
  background-position: left center;
  background-size: cover;
  width: 100%;
}
.page_hero_company .page_hero_title {
  padding: 15% 0 10% 0;
}
.page_hero_company h1 {
  color: #fff;
  font-size: 80px;
  text-align: center;
}

.page_company_overview .overview_contents {
  border-bottom: #97A6BD solid 1px;
  padding-bottom: 10%;
}
.page_company_overview table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 80%;
  font-size: 18px;
  margin: 0 auto;
}
.page_company_overview td {
  padding: 3% 0 15px 2%;
}
.page_company_overview .overview_titile {
  padding: 10% 0;
}
.page_company_overview h2 {
  color: #1F2B64;
  font-size: 35px;
  text-align: center;
  padding-bottom: 3%;
  border-bottom: #97A6BD solid 1px;
}
.page_company_overview .overview_name {
  white-space: nowrap;
}
.page_company_overview .overview_more {
  padding-left: 200px;
  color: #000;
}

/* ===============================================
コンタクトページ
=============================================== */
.page_contactform {
  padding: 10% 0;
}
.page_contactform .page_contactform_infomation {
  color: #1F2B64;
  text-align: center;
  padding-bottom: 5%;
}
.page_contactform .page_contactform_infomation h2 {
  font-size: 35px;
  padding-bottom: 3%;
}
.page_contactform .page_contactform_infomation p {
  line-height: 2rem;
}
/* ===============================================
プライバシーポリシーページ
=============================================== */
/* ===============================================
たのメルページ
=============================================== */
.y_marker {
  background: linear-gradient(transparent 50%, #FFEE59 50%);
}

.w_marker {
  background: linear-gradient(transparent 50%, #fff 50%);
}

.page_hero_tanomeru {
  background-image: url(img/Group180.png);
  background-position: left center;
  background-size: cover;
}
.page_hero_tanomeru .hero_tanomeru_inner {
  max-width: 1580px;
  margin: 0 auto;
}
.page_hero_tanomeru .hero_tanomeru_title {
  width: 45%;
  padding: 10% 0;
}
.page_hero_tanomeru .hero_tanomeru_title img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tanomeru_about {
  padding: 10% 0;
  margin-bottom: 15%;
  background-color: #F3F3F3;
  position: relative;
}
.tanomeru_about .tanomeru_problem {
  background-color: #fff;
  border-radius: 10px;
  padding: 5% 0 7% 0;
}
.tanomeru_about .tanomeru_problem h2 {
  text-align: center;
  font-size: 35px;
  padding-bottom: 5%;
}
.tanomeru_about .tanomeru_problem h3 {
  display: flex;
  align-items: center;
  font-size: 25px;
  width: 70%;
  margin: 0 auto;
}
.tanomeru_about .tanomeru_problem img {
  margin-right: 5px;
}
.tanomeru_about .tanomeru_problem h3 + h3 {
  padding-top: 30px;
}
.tanomeru_about .about_anser_title {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 0;
}
.tanomeru_about .about_anser_title img {
  margin-right: 10px;
}
.tanomeru_about .tanomeru_about_anser {
  position: absolute;
  bottom: -20%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.tanomeru_about .about_anser_img {
  width: 40%;
}
.tanomeru_about .about_anser_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeru_about .about_anser_text {
  padding-right: 15%;
}
.tanomeru_about .about_anser_text p {
  font-size: 20px;
  line-height: 2.5rem;
  font-weight: bold;
}

.tanomeru_point {
  background-color: #FFE930;
  padding: 5% 0 10% 0;
}
.tanomeru_point h2 {
  font-size: 45px;
  text-align: center;
}
.tanomeru_point .tanomeru_point_contents {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10% 0 0 0;
}
.tanomeru_point .tanomeru_point_more01, .tanomeru_point .tanomeru_point_more02, .tanomeru_point .tanomeru_point_more03 {
  border: #000 3px solid;
  border-radius: 25px;
  background-color: #fff;
  width: calc(33.3333333333% - 6.6666666667px); /* 要素幅を計算 */
  position: relative;
  padding: 5%;
}
.tanomeru_point .point_number {
  background-color: #000;
  color: #fff;
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.tanomeru_point .point_number p {
  font-weight: bold;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.tanomeru_point h3 {
  font-size: 25px;
  text-align: center;
  padding-bottom: 5%;
}
.tanomeru_point p {
  line-height: 2.5rem;
}

.tanomeru_suport {
  padding: 10% 0;
}
.tanomeru_suport h2 {
  font-size: 45px;
  text-align: center;
  padding-bottom: 5%;
}
.tanomeru_suport .tanomeru_suport_contents01 {
  margin-bottom: 5%;
}
.tanomeru_suport .tanomeru_suport_contents01, .tanomeru_suport .tanomeru_suport_contents02 {
  border: #000 solid 3px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.tanomeru_suport h3 {
  font-size: 35px;
  padding-bottom: 15px;
}
.tanomeru_suport p {
  line-height: 2.5rem;
  font-size: 20px;
}

.tanomeru_line_info {
  background-color: #4DC9FF;
  text-align: center;
  padding: 7% 0;
}
.tanomeru_line_info h2 {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 3%;
}
@media (width < 769px) {
	.tanomeru_line_info h2 {
  font-size: 20px;
}
.tanomeru_line_info .tanomeru_line_btn a{
	font-size: 20px;
}
}
@media (width < 431px) {
	.tanomeru_line_info h2 {
  font-size: 16px;
  padding-bottom: 5%;
}
	.tanomeru_line_info{
		padding:10% 0;
	}
}
.tanomeru_line_info .tanomeru_line_btn a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 3% 5%;
  border-radius: 50px;
  font-size: 30px;
  font-weight: bolder;
}
@media (width < 431px) {
	.tanomeru_line_info .tanomeru_line_btn a{
		font-size: 18px;
	}
}

/* ===============================================
たのメルfor Bページ
=============================================== */

.hero_tanomeruforb_inner, .tanomeruforb_ploblem_inner,
.tanomeruforb_anser_inner, .tanomeruforb_point_inner,
.tanomeruforb_price_inner, .tanomeruforb_info_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.page_hero_tanomeruforb {
  background: linear-gradient(#4DC9FF, #0093D2);
}
.page_hero_tanomeruforb .hero_tanomeruforb_img {
  width: 100%;
  padding: 10% 0;
}
.page_hero_tanomeruforb .hero_tanomeruforb_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_hero_tanomeruforb .hero_tanomeruforb_mbimg {
  display: none;
  width: 100%;
  padding: 10% 0;
}
.page_hero_tanomeruforb .hero_tanomeruforb_mbimg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 431px) {
  .page_hero_tanomeruforb .hero_tanomeruforb_mbimg {
    display: block;
  }
}

.tanomeruforb_problem {
  position: relative;
  padding: 10% 0;
}
.tanomeruforb_problem .tanomeruforb_problem_title {
  width: 50%;
  margin: 0 auto;
}
.tanomeruforb_problem .tanomeruforb_problem_title img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruforb_problem .tanomeruforb_problem_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.tanomeruforb_problem .forb_contents_child01, .tanomeruforb_problem .forb_contents_child02,
.tanomeruforb_problem .forb_contents_child03 {
  width: calc(33.3333333333% - 6.6666666667px); /* 要素幅を計算 */
}
.tanomeruforb_problem .forb_child_img {
  width: 90%;
}
.tanomeruforb_problem .forb_child_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruforb_problem .forb_child_text {
  text-align: center;
}
.tanomeruforb_problem .forb_poiygon {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.tanomeruforb_anser {
  background-color: #B9EAFF;
  padding: 10% 0;
}
.tanomeruforb_anser .forb_anser_wbox {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 300px;
  padding: 0 5%;
}

.tanomeruforb_point {
  background-color: #B9EAFF;
  padding-bottom: 20%;
}
.tanomeruforb_point .forb_point_title {
  width: 50%;
  margin: 0 auto;
}
.tanomeruforb_point .forb_point_title img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruforb_point .forb_point_child01, .tanomeruforb_point .forb_point_child02,
.tanomeruforb_point .forb_point_child03 {
  background-color: #4DC9FF;
  border-radius: 100%;
  width: 520px;
  height: 460px;
  position: relative;
}
.tanomeruforb_point .forb_point_child02 {
  margin-left: auto;
}
.tanomeruforb_point .forb_point_child03 {
  margin-left: 5%;
}
.tanomeruforb_point .forb_point_number {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.tanomeruforb_point .forb_point_text {
  padding: 35% 5% 0 5%;
  text-align: center;
  color: #fff;
}
.tanomeruforb_point .forb_point_img01 {
  position: absolute;
  bottom: -20%;
  left: -10%;
}
.tanomeruforb_point .forb_point_img02 {
  position: absolute;
  bottom: 0;
  left: 40%;
}
.tanomeruforb_point .forb_point_img03 {
  position: absolute;
  bottom: -25%;
  left: 50%;
}

.tanomeruforb_price {
  border-top: #000 solid 1px;
  border-bottom: #000 solid 1px;
  background-color: #4DC9FF;
  position: relative;
  padding-bottom: 5%;
}
.tanomeruforb_price .forb_price_title {
  position: absolute;
  top: -10%;
  left: 15%;
}
.tanomeruforb_price .forb_price_table {
  width: 100%;
  padding-top: 20%;
}
.tanomeruforb_price .forb_price_table img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruforb_price p {
  color: #fff;
}

.tanomeruforb_infomation {
  padding: 5% 0;
}
.tanomeruforb_infomation .tanomeruforb_info_inner {
  display: flex;
}
.tanomeruforb_infomation .forb_info_line {
  width: 50%;
  margin-right: 10px;
}
.tanomeruforb_infomation .forb_info_line img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruforb_infomation .forb_info_worker {
  width: 50%;
  margin-left: 10px;
}
.tanomeruforb_infomation .forb_info_worker img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===============================================
たのメルWorkerページ
=============================================== */
/*セクション区切り*/
.worker_wrap {
  overflow: hidden;
}

.worker_content01 {
  background: #FFE930;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

@media (width < 769px) {
  .content01 {
    height: 100px;
  }
}
@media (width < 431px) {
  .content01 {
    height: 70px;
  }
}
.content02 {
  background: #FFE930;
  border-bottom-left-radius: 1000px 200px;
  border-bottom-right-radius: 1000px 200px;
  height: 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

@media (width < 769px) {
  .content02 {
    height: 100px;
  }
}
/*インナー設定*/
.hero_tanomeruworker_inner, .tanomeruworker_about_inner,
.tanomeruworker_merit_inner, .tanomeruworker_price_inner,
.tanomeruworker_point_inner, .tanomeruworker_voice_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.page_hero_tanomeruworker {
  background-color: #4DC9FF;
  padding-top: 7%;
  position: relative;
  z-index: 10;
}
.page_hero_tanomeruworker .hero_tanomeruworker_inner {
  background-image: url(img/Group254.png);
  background-size: contain;
  background-position: center;
}
.page_hero_tanomeruworker .hero_tanomeruworker_img {
  width: 100%;
}
.page_hero_tanomeruworker .hero_tanomeruworker_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_hero_tanomeruworker .hero_tanomeruworker_mbimg {
  display: none;
  width: 100%;
  padding: 10% 0;
}
.page_hero_tanomeruworker .hero_tanomeruworker_mbimg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 431px) {
  .page_hero_tanomeruworker .hero_tanomeruworker_mbimg {
    display: block;
  }
}
.page_hero_tanomeruworker .hero_tanomeruworker_bottom {
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  z-index: -1;
}
.page_hero_tanomeruworker .hero_tanomeruworker_bottom img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tanomeruworker_about {
  padding: 10% 0 15% 0;
}
.tanomeruworker_about .worker_about_title {
  width: 35%;
  margin: 0 auto;
}
.tanomeruworker_about .worker_about_title img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruworker_about .worker_about_contentsimg {
  width: 70%;
  margin: 0 auto;
  padding: 7% 0 0 5%;
}
.tanomeruworker_about .worker_about_contentsimg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruworker_about h2 {
  font-size: 30px;
  text-align: center;
}

.tanomeruworker_merit {
  position: relative;
}
.tanomeruworker_merit .tanomeruworker_wrapper {
  background-color: #FFE930;
  padding: 3% 0 15% 0;
}
.tanomeruworker_merit .worker_merit_title {
  width: 35%;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.tanomeruworker_merit .worker_merit_title img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruworker_merit .worker_merit_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.tanomeruworker_merit .worker_merit_child {
  border: #4A4541 solid 3px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 10px 3px 3px #F4B139;
  width: calc(33.3333333333% - 13.3333333333px); /* 要素幅を計算 */
  padding: 5% 2%;
}
.tanomeruworker_merit .worker_merit_img {
  width: 70%;
  margin: 0 auto;
}
.tanomeruworker_merit .worker_merit_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tanomeruworker_price {
  border-top: #000 solid 1px;
  border-bottom: #000 solid 1px;
  background-color: #F4B139;
  position: relative;
  padding-bottom: 5%;
}
.tanomeruworker_price .worker_price_title {
  position: absolute;
  top: -10%;
  left: 15%;
}
.tanomeruworker_price .worker_price_table {
  width: 100%;
  padding-top: 20%;
}
.tanomeruworker_price .worker_price_table img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruworker_price p {
  color: #fff;
}

.tanomeruworker_point {
  background-color: #FFE930;
  padding: 10% 0;
}
.tanomeruworker_point .worker_point_title {
  width: 35%;
  margin: 0 auto;
}
.tanomeruworker_point .worker_point_title img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruworker_point .worker_point_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 3% 0;
}
.tanomeruworker_point .worker_point_child {
  border: solid #4A4541 3px;
  border-radius: 10px;
  box-shadow: 10px 3px 3px #F4B139;
  width: calc(33.3333333333% - 13.3333333333px); /* 要素幅を計算 */
  padding: 5% 10px 3% 10px;
  background-color: #fff;
}
.tanomeruworker_point .worker_pointchild_img {
  width: 60%;
  margin-left: auto;
}
.tanomeruworker_point .worker_pointchild_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruworker_point h2 {
  padding-bottom: 15px;
}
.tanomeruworker_point p {
  font-size: 18px;
}

.tanomeruworker_voice {
  background-image: url(img/227.png);
  background-repeat: repeat;
  background-size: cover;
  padding: 10% 0;
}
.tanomeruworker_voice .worker_voice_title {
  width: 35%;
  margin: 0 auto;
}
.tanomeruworker_voice .worker_voice_title img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tanomeruworker_voice .worker_voice_child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  background-color: #FFF6C7;
  margin-top: 5%;
}
.tanomeruworker_voice .worker_voice_childtext {
  padding: 7%;
}
@media (width < 431px){
	.tanomeruworker_voice .worker_voice_childtext h2{
		font-size: 18px;
		padding-bottom: 15px;
}
}
.tanomeruworker_voice p {
  font-size: 20px;
}
@media (width < 431px){
.tanomeruworker_voice p {
  font-size: 16px;
}
}
/*コンタクトフォーム設定*/

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