﻿@charset "utf-8";
@import url("https://use.fontawesome.com/releases/v5.6.1/css/all.css");

/* ================共通スタイル================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
select,
textarea,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  line-height: 25px;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  background: #fefdf8;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: #e67030;
}
p {
  line-height: 2rem;
}
input,
select,
textarea,
button {
  border: 1px solid #ccc;
}

/*文字サイズ変更用
-------------------------------------------------------------------------*/
.fontM {
  font-size: 1.4rem;
}
.fontL {
  font-size: 1.6rem;
}

/*よく使うスタイルクラス
-------------------------------------------------------------------------*/
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}

.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt60 {
  margin-top: 60px !important;
}

.txtaC {
  text-align: center !important;
}
.txtaR {
  text-align: right !important;
}
.txtaL {
  text-align: left !important;
}
.fwb {
  font-weight: bold !important;
}
.fcBlue {
  color: #3773bb !important;
}
.fcRed {
  color: #ff0000 !important;
}
.floatL {
  float: left !important;
}
.floatR {
  float: right !important;
}

ul.list_indent_on li {
  padding-left: 1em !important;
  text-indent: -1em !important;
  margin-bottom: 15px;
}
ul.list_indent_on li:last-child {
  margin-bottom: 0;
}

/*clearfix ここから
-------------------------------------------------------------------------*/
.clear {
  clear: both !important;
  float: none !important;
  font-size: 0% !important;
  height: 0px !important;
  line-height: 0% !important;
  margin: 0px !important;
  padding: 0px !important;
  width: 0px !important;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  zoom: 1;
}
/*clearfix ここまで
-------------------------------------------------------------------------*/

/* ================ヘッダー================== */
/*ヘッダー全体
-------------------------------------------------------------------------*/
header {
  width: 100%;
  margin: 15px auto;
}

header .inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
header .inner h1 {
  width: 100%;
  max-width: 478px;
}
header .inner h1 img {
  width: 100%;
}
header .inner #heda_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  gap: 7px;
}

header .inner #fontSize {
  width: 14%;
  font-size: 1rem;
  text-align: center;
}
header .inner #fontSize h2 {
  margin-bottom: 10px;
}
header .inner #fontSize ul {
  display: flex;
  justify-content: space-between;
}
header .inner #fontSize ul li {
  padding: 8px 12px;
  background: #fd9b9c;
  cursor: pointer;
}

header .inner #tel_box {
  width: 38%;
  background: url(../img/icon_tel.png) no-repeat;
  background-position: left center;
  padding-left: 50px;
}
header .inner #tel_box p {
  font-size: 14px;
}
header .inner #tel_box a.tel {
  font-size: 36px;
  color: #fd9b9c;
}
header .inner #head_contact {
  justify-content: space-between;
  width: 23%;
  padding-top: 8px;
  font-size: 1rem;
}
header .inner #head_contact p {
  margin-bottom: 5px;
}
header .inner #head_contact a {
  display: flex;
  align-items: center;
  color: #333;
}
header .inner #head_contact a:hover {
  transition: all 0.2s ease-in;
  opacity: 0.6;
}
header .inner #head_contact a span {
  display: inline-block;
  margin-left: 3px;
}

header .inner #staff {
  width: 200px;
}
header .inner #staff a {
  display: block;
}
header .inner #staff a img {
  display: block;
  width: 100%;
}

header .link_line {
  font-size: 16px;
  color: #fff;
  width: fit-content;
  padding: 5px 10px;
  background-color: #fefdf8;
  border: 3px solid #52a6dd;
  border-radius: 10px;
  margin-top: 20px;
}
header .link_line a {
  color: #52a6dd;
}
header .link_line::before {
  content: "";
  background-image: url(../img/icon_line.png);
  background-size: contain;
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.top_link {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}
.top_link p a img {
  width: 80%;
}
/* ================メイン================== */
/*メインコンテンツ
-------------------------------------------------------------------------*/
main {
  width: 100%;
  margin: 0 auto;
  background: #dcdcdc;
}

main .inner {
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

.main_img {
  width: 100%;
  max-width: 1280px;
}

/* ================フッター================== */
/*フッター全体
-------------------------------------------------------------------------*/
footer {
  width: 100%;
  margin: 0 auto;
}

footer .footer_cont {
  width: 100%;
  margin: 0 auto;
  background: #fefdf8;
}
footer .footer_cont .inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 0;
}
footer .footer_cont .inner p {
  text-align: center;
  line-height: 30px;
}
footer .copy {
  width: 100%;
  margin: 0 auto;
  background: #fd9b9c;
}
footer .copy .inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
  color: #fff;
}

/*スマホ用改行タグ
-------------------------------------------------------------------------*/
.br_sp {
  display: none;
}
.br_pc {
  display: inline;
}

/* =================================下層ページ=========================================== */
/*mv
-------------------------------------------------------------------------*/
.under_mv {
  width: 100%;
  height: 380px;
  position: relative;
}
.under_mv h1 {
  position: absolute;
  bottom: 60px;
  left: 0;
}
.under_mv h1 span {
  display: block;
  background: #fff;
  padding: 25px 30px 25px 150px;
  border-radius: 0 30px 30px 0;
  font-size: 2rem;
  letter-spacing: 3px;
}
.under_mv h1 span::after {
  content: url(../img/icon_h1.png);
  margin-left: 10px;
}

/*見出し
-------------------------------------------------------------------------*/
section.sub_title {
  width: 100%;
  padding: 40px 0;
  background: #fefdf8;
}
section.sub_title h2 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
section.sub_title h2 span {
  border-left: 3px solid #fd9b9c;
  padding: 20px;
  font-weight: bold;
  letter-spacing: 5px;
  font-size: 2rem;
  display: inline-block;
}

section h3 {
  border-bottom: 1px solid #fd9b9c;
  font-weight: bold;
  background: url(../img/icon_h3.png) no-repeat;
  background-position: left center;
  padding: 10px 30px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/*セクション_インデックス
-------------------------------------------------------------------------*/
section.under_index {
  background: url(../img/bg_sect_1.png);
  padding: 40px 0;
}
section.under_index ul {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.under_index ul:after {
  content: "";
  display: block;
  width: 32%;
}
section.under_index ul li {
  width: 32%;
  margin-bottom: 20px;
}
section.under_index ul li a {
  display: block;
  height: 260px;
  position: relative;
}
section.under_index ul li a span {
  display: block;
  width: 100%;
  background: #fd9b9c;
  padding: 20px;
  position: absolute;
  bottom: 0;
  color: #fff;
  font-size: 20px;
}
section.under_index ul li a span::after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.6rem;
  position: absolute;
  right: 20px;
}
section.under_index ul li a:hover {
  transition: all 0.2s ease-in;
  opacity: 0.6;
}

/*セクション①
-------------------------------------------------------------------------*/
section.under_sect_1 {
  background: url(../img/bg_sect_1.png);
  padding: 40px 0;
}

/*セクション②
-------------------------------------------------------------------------*/
section.under_sect_2 {
  background: #fefdf8;
  padding: 40px 0;
}

/*comming soon
-------------------------------------------------------------------------*/
section.commingsoon {
  background: url(../img/bg_sect_1.png);
  padding: 40px 0;
}

section.under_sect_1 .inner,
section.under_sect_2 .inner,
section.commingsoon .inner {
  width: 100%;
  max-width: 1300px;
  background: #fff;
  padding: 40px;
}

ul.list_num li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 20px;
  line-height: 25px;
}
ul.list_num li:nth-child(1)::before {
  content: "①";
}
ul.list_num li:nth-child(2)::before {
  content: "②";
}
ul.list_num li:nth-child(3)::before {
  content: "③";
}
ul.list_num li:nth-child(4)::before {
  content: "④";
}
ul.list_num li:nth-child(5)::before {
  content: "⑤";
}

/*リンクボタン
-------------------------------------------------------------------------*/
p.btn {
  width: 100%;
}
p.btn a {
  display: inline-block;
  background: #fd9b9c;
  padding: 15px 40px;
  color: #fff;
  position: relative;
  border-radius: 10px;
}
p.btn a.icon_pdf::before,
p.btn a.icon_excel::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 1.8em;
  margin-right: 10px;
  position: relative;
  top: 3px;
}
p.btn a.icon_pdf::before {
  content: "\f1c1";
}
p.btn a.icon_excel::before {
  content: "\f1c3";
}
p.btn a:hover {
  transition: all 0.2s ease-in;
  opacity: 0.6;
}

/*フォーム
-------------------------------------------------------------------------*/
table.tbl_form {
  width: 100%;
  border-collapse: collapse;
}
table.tbl_form th,
table.tbl_form td {
  padding: 15px;
  line-height: 30px;
}
table.tbl_form th {
  text-align: left;
  vertical-align: top;
  font-weight: bold;
  border-bottom: 2px solid #f5d4c1;
  width: 30%;
}
table.tbl_form td {
  background-color: #fff;
  border-bottom: 2px solid #e6e5e0;
}
table.tbl_form th.req::after {
  content: "※";
  color: #ff0000;
  font-weight: bold;
  margin-left: 5px;
}
table.tbl_form td input[size="20"] {
  width: 260px;
  padding: 10px;
  border-radius: 5px;
}
table.tbl_form td input[size="30"] {
  width: 360px;
  padding: 10px;
  border-radius: 5px;
}
table.tbl_form td textarea {
  width: 610px;
  height: 250px;
  padding: 10px;
  border-radius: 5px;
}
table.tbl_form td select {
  width: 260px;
  padding: 10px;
  border-radius: 5px;
}
p.btn {
  text-align: center;
  margin: 30px auto;
}
p.btn button {
  padding: 20px 70px;
  background: #fd9b9c;
  color: #fff;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
p.btn button:hover {
  transition: all 0.2s ease-in;
  opacity: 0.6;
}

.sp_txt {
  display: none;
}

p.error_messe {
  background: #ff5050;
  padding: 5px;
  margin-top: 30px;
  color: #fff;
}

.p_center {
  text-align: center;
}

.submenu {
  width: 280px;
  position: fixed;
  bottom: 130px;
  right: 20px;
  z-index: 999;
  box-shadow: 1px 1px 1px rgb(51, 51, 51, 0.3);
  background: #ffb1b2;
  border: 5px solid #fff;
  border-radius: 10px;
  padding: 16px 10px 16px;
}

.instagram {
  position: fixed;
  bottom: 10px;
  right: 20px;
  padding: 5px 20px;
  border: 5px solid #ffb1b2;
  background-color: #fefdf8;
}
#close {
  position: absolute;
  top: 0;
  left: 0;
}

.icon_movie {
  position: absolute;
  bottom: -10px;
}

.icon_instagram {
  position: absolute;
  bottom: 26px;
  right: 28px;
  width: 44px;
}

.icon_walk {
  position: absolute;
  bottom: 6px;
  right: 0px;
}

.submenu p {
  color: #0c166b;
  font-weight: bold;
}

.submenu p a {
  color: #0053d8;
  font-weight: bold;
}

.submenu p {
  line-height: 1.7em;
  text-align: center;
  font-size: 18px;
}
.instagram p {
  text-align: left;
}
.instagram p {
  text-align: left;
  padding: 20px;
}

.instagram p a {
  font-size: 20px;
  color: #0c166b;
}

.tsusyo p {
  font-size: 20px;
}

.tsusyo .rec_btn {
  font-size: 18px;
}

/* =================================youtube=========================================== */

.youtube_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.youtube_box > div {
  width: calc(100% / 3 - 20px);
  margin: 10px;
}
.youtube_box > div h4 {
  border-left: 5px solid #d90d46;
  padding-left: 5px;
  margin-bottom: 10px;
}
.youtube_box > div h4 span {
  display: block;
  font-size: 70%;
  font-weight: bold;
  color: #d90d46;
}
.youtube_box > div .movie_win {
  position: relative;
}
.youtube_box > div .movie_win a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f144";
  font-weight: 100;
  color: #d20a0d;
  font-size: 60px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 45px;
  display: block;
}

.youtube_box > div .movie_win img {
  width: 100%;
  filter: brightness(30%);
  border-radius: 10px;
}
.youtube_box > div .movie_win {
  transition: all 0.4s ease-out;
}

.youtube_box > div .movie_win a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 999;
}

.youtube_box > div .movie_win:hover {
  opacity: 0.8;
}

.footer_link {
  width: 100%;
  margin: 20px auto 0;
}
.footer_link ul {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_link ul li {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.footer_link ul li:last-of-type {
  margin-bottom: 0;
}
.footer_link ul li a {
  display: block;
  color: #333;
  font-size: 1.2rem;
}
.footer_link ul li a::before {
  content: "＞";
  display: inline-block;
  margin-right: 5px;
}

/*訪問リハ*/
.houmon_flex {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  gap: 20px;
}
.houmon_flex p img {
  max-width: 400px;
}
.btn_list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
p.btn_houmon a {
  display: inline-block;
  background: #fd9b9c;
  padding: 15px 40px;
  color: #fff;
  position: relative;
  border-radius: 10px;
}
.interview_box h3 {
  display: inline-block;
  background: #ffaa79;
  padding: 15px 40px 15px 30px;
  border-radius: 0 30px 30px 0;
  margin: 40px 0 55px 0;
  color: #fff;
  position: relative;
}
.interview_box h3::after {
  content: url("../../recruit/parts/img/icon_h3.png");
  margin-left: 10px;
  position: absolute;
  top: 10px;
  right: 8px;
}
.reha_tab li a {
  color: #fff;
  padding: 10px 30px;
  background-color: #ea9c73;
  margin: 20px 50px;
  border-radius: 10px;
}
.reha_tab {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .houmon_flex p img {
    width: 100%;
  }
}

/* =================================スマホ関連=========================================== */

@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
  .fontM {
    font-size: 1.2rem;
  }

  /*スマホ用改行タグ
-------------------------------------------------------------------------*/
  .br_sp {
    display: inline;
  }
  .br_pc {
    display: none;
  }

  .sp_txt {
    display: block;
  }

  /* ================ヘッダー================== */
  /*ヘッダー全体
-------------------------------------------------------------------------*/
  header {
    width: 100%;
    margin: 30px auto;
  }

  header .inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  header .inner h1 {
    width: 70%;
  }
  header .inner .text_size_box {
    display: none;
  }
  header .inner .contact_box {
    display: none;
  }
  header .inner #staff {
    display: none;
  }

  /* ================フッター================== */
  /*フッター全体
-------------------------------------------------------------------------*/
  footer .footer_cont .inner {
    padding: 50px 0;
  }
  footer .footer_cont .inner p img {
    width: 100%;
  }
  footer .copy {
    width: 100%;
    margin: 0 auto;
    background: #ffa97a;
  }
  footer .copy .inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
    color: #fff;
  }

  header .inner #heda_right {
    display: none;
  }

  /* =================================下層ページ=========================================== */
  /*mv
-------------------------------------------------------------------------*/
  .under_mv {
    width: 100%;
    height: 280px;
    position: relative;
  }
  .under_mv h1 {
    position: absolute;
    bottom: 60px;
    left: 0;
  }
  .under_mv h1 span {
    padding: 20px 30px;
    font-size: 1.7rem;
    letter-spacing: 0;
  }
  .under_mv h1 span::after {
    content: url(../img/icon_h1.png);
    margin-left: 10px;
  }

  /*セクション_インデックス
-------------------------------------------------------------------------*/
  section.under_index ul {
    flex-direction: column;
  }
  section.under_index ul li {
    width: 100%;
  }
  section.under_index ul li a {
    height: 240px;
  }

  /*見出し
-------------------------------------------------------------------------*/
  section.sub_title {
    width: 100%;
    padding: 40px 0;
    background: #fefdf8;
  }
  section.sub_title h2 {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }
  section.sub_title h2 span {
    border-left: 3px solid #ffaa7b;
    padding: 20px;
    font-weight: bold;
    letter-spacing: 5px;
    font-size: 1.3rem;
  }

  /*リンクボタン
-------------------------------------------------------------------------*/
  p.btn a {
    display: block;
    padding: 15px 20px;
  }
  p.btn a.icon_pdf::before,
  p.btn a.icon_excel::before {
    font-size: 1.8em;
    margin-right: 10px;
    top: 3px;
  }

  /*フォーム
-------------------------------------------------------------------------*/
  table.tbl_form th,
  table.tbl_form td {
    display: block;
    width: 100%;
  }
  table.tbl_form td input[size="20"],
  table.tbl_form td input[size="30"],
  table.tbl_form td select,
  table.tbl_form td textarea {
    width: 100%;
  }

  .tbl_scroll {
    overflow-y: scroll;
  }

  .houmon_flex {
    flex-direction: column;
  }
}
/*250324 70周年ロゴ*/
.foot_seventy {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 30px;
  text-align: center;
  background-color: #fff;
}
.foot_seventy a img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 120px;
}
footer .footer_cont .inner {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .foot_seventy a img {
    height: 100px;
  }
}
