@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap);

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff4e5;
  color: #000;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight:500;
  font-size: 22px;
  font-size: 2.2rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  /*font-feature-settings: "palt";*/
}
  @media screen and (max-width: 767px) {
    body {
      font-size: 2.86vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #F96DA1;
}
a:visited {
  color: #F96DA1;
}
a:hover {
  text-decoration: none;
  color: #F96DA1;
}
a:active {
  color: #F96DA1;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", 'Noto Serif JP', serif;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  min-width: 1220px;
  overflow:hidden;
  margin: 0 auto;
}
#contents {
  line-height: 1.5;
}
#contents a:hover img{
  filter: brightness(1.2);
}
.wrapper {
  position: relative;
  z-index: 5;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  z-index: 5;
  width: 920px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 767px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    .wrapper, .inner {
      width:100%;
    }
  }

#index{
	margin-top: 0;
	padding-top: 0;
	padding-top: 200px;
}
  @media screen and (max-width: 767px) {
	  #index{padding-top: 20vw;}
 }
/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 84px;
  background-color: #fff;
}
#header .logo {
  display:inline-block;
  margin: 18px 0 0 20px;
  font-weight: 400;
}
.hd_tel {
  position: absolute;
  right: 30px;
  top: 28px;
}
.hd_tel span {
  display: inline-block;
  padding-left: 84px;
  font-size: 3.2rem;
  color: #945034;
  background: url("../img2/hd_tel.svg") 0 center no-repeat;
  background-size: 74px auto;
  font-weight: 600;
}
  @media screen and (max-width: 767px) {
    #header {
      height: 10vw;
      padding: 1.66vw 0 0 2vw;
    }
    #header .logo {
      margin: 0;
    }
    #header .logo img {
      width: 55vw;
    }
    .hd_tel {
      right: 2.66vw;
      top: 3.66vw;
    }
    .hd_tel span {
      padding-left: 10vw;
      font-size: 3.46vw;
      background-size: 8.6vw auto;
    }
  }

.side_nav {
  position: fixed;
  top: 130px;
  right: -40px;
  z-index: 110;
}
.side_nav li {
  position: relative;
  left: 0;
  margin-bottom: 15px;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
}
.side_nav li:hover {
  left: -10px;
}
  @media screen and (max-width: 767px) {
    .side_nav {
      top: 28vw;
      right: -5vw;
    }
    .side_nav li {
      margin-bottom: 1.66vw;
    }
    .side_nav li:hover {
      left: -3vw;
    }
    .side_nav li img {
      width: 13vw;
      height: auto;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  padding: 80px 0 40px;
  background: #fff;
}
.copyright {
  font-size: 1.8rem;
  color: #646464;
}
  @media screen and (max-width: 767px) {
    #footer {
      padding: 10.66vw 0 22vw;
    }
    #footer h2 img {
      width: 36.45vw;
      height: auto;
    }
    #footer p {
      margin: 7vw 0 4vw;
      line-height: 1.8;
    }
    .copyright {
      font-size: 2.33vw;
    }
  }

/*----------------------------------------------------
	汎用スタイル
----------------------------------------------------*/
.inline {
  display:inline;
}
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.block {
  display:block;
}
.flex {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
}
/* 横逆順 */
.fx_r_reverse {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* 縦逆順 */
.fx_c_reverse {
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/*アイテム折返し*/
.fx_wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 等間隔に配置 */
.fx_between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
/* センターに配置 */
.fx_center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
/* 右側に配置 */
.fx_end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}
/*上下中央寄せ*/
.fx_all_center {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.table_cell {
  display: table-cell;
  vertical-align: middle;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.tC {
  text-align: center;
}
.tR {
  text-align: right;
}
.pc_none {
  display:none;
}
@media screen and (max-width: 767px) {
  .pc_none {
    display:block;
  }
  .sp_none {
    display:none;
  }
  .fl,.fr {
    box-sizing:border-box;
    width:100%!important;
    float:none!important;
  }
  .sp_block {
    -webkit-display: block;
    -moz-display: block;
    -ms-display: block;
    -o-display: block;
    display: block;
  }
}

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: fixed;
  left: 0;
  bottom: 30px;
  width: 100%;
  z-index: 100;
  display:none;
  padding: 0 50px;
}
.totop {
  position: absolute;
  right: 30px;
  top: -120px;
  z-index: 4;
}
.totop:hover {
  filter: brightness(1.1);
}
.pagetop ul {
  display: none;
}
  @media screen and (max-width: 767px) {
    .pagetop {
      bottom: 0;
      padding: 0;
    }
    .pagetop ul {
      position: relative;
      display: flex;
      z-index: 5;
    }
    .pagetop li {
      width: 50%;
      background: #F6BE6D;
    }
    .pagetop li:nth-child(2) {
      background: #8BCC92;
    }
    .pagetop li img {
      width: 100%;
    }
    .totop {
      position: absolute;
      right: 3vw;
      top: -18.2vw;
      z-index: 4;
    }
    .totop:hover {
      top: -18.2vw;
    }
    .totop img {
      width: 13.33vw;
      height: auto;
    }
  }

#hbMenu {
  opacity: 0;
  position: fixed;
  top: 30px;
  right: -680px;
  z-index: -5;
  width: 680px;
  height: calc(100% - 70px);
  margin: 0;
  padding: 90px 0 40px 0;
  background-color: rgba(255,255,255,0.96);
  overflow-y: visible;
  overflow-x: hidden;
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: all 0.6s ease 0s;
}
#hbMenu.hb_open {
  opacity: 1;
  right: 0;
  z-index: 150;
}
.hb_inner {
  box-sizing: border-box;
  display: table;
  width: 100%;
  height: 100%;
}
.hb_inner a {
  display: block;
  color: #000;
  font-size: 2.6rem;
  font-weight: 600;
  text-decoration: none;
}
.hb_menu01 {
  width: 460px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.hb_menu01 li {
  margin-bottom: 55px;
  text-align: center;
}
.hb_menu01 li a:hover {
  color: #e59340;
}
.hb_menu02 {
  width: 460px;
  margin: 0 auto;
}
.hb_menu02 li a {
  color: #fff;
  background: #49a5f8;
  text-align: center;
  margin-bottom: 30px;
  padding: 26px 10px;
}
.hb_menu02 li:nth-child(2) a {
  background: #e59340;
}
.hb_menu02 li a:hover {
  opacity: 0.7;
}
.hb_close {
  position: fixed;
  right: 40px;
  top: 60px;
  cursor: pointer;
}
  @media screen and (max-width: 767px) {
    #hbMenu {
      right: -68vw;
      width: 68vw;
      top: 12.66vw;
      height: auto;
      padding: 11.33vw 6vw 3vw;
    }
    .hb_inner a {
      font-size: 3.64vw;
    }
    .hb_menu01 {
      width: 100%;
      padding-bottom: 2vw;
    }
    .hb_menu01 li {
      margin-bottom: 6vw;
    }
    .hb_menu02 {
      width: 100%;
    }
    .hb_menu02 li a {
      margin-bottom: 3.73vw;
      padding: 3.33vw 2.66vw;
    }
    .hb_close {
      right: 4vw;
      top: 16.66vw;
    }
    .hb_close img {
      width: 6vw;
      height: auto;
    }
  }

/*----------------------------------------------------
  トップページ index
--------------------------------------------------- */
#mainVisual {
  position: relative;
  margin-bottom: 0;
}
#mainVisual figure img {
  width: 100%;
  object-fit: cover;
}
  @media screen and (max-width: 767px) {
    #mainVisual {
      position: relative;
      margin-bottom: 0;
    }
  }

/*ご家族からいただいた一通の手紙…*/
#lead_letter {
  margin-bottom: 230px;
}
#lead_letter h2 {
  margin-bottom: 50px;
}
#lead_letter h2 small {
  display: block;
  margin-bottom: 5px;
}
#lead_letter .movie_box {
  position: relative;
  z-index: 5;
  width: 600px;
  margin: 0 auto;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
}
#lead_letter figure {
  position: absolute;
  right: calc(50% - 600px);
  bottom: 20px;
}
  @media screen and (max-width: 767px) {
    #lead_letter {
      margin-bottom: 0;
      padding-bottom: 68vw;
    }
    #lead_letter h2 {
      margin-bottom: 9.375vw;
    }
    #lead_letter h2 small {
      display: none;
    }
    #lead_letter h2 span img {
      width: 79.16vw;
      height: auto;
    }
    #lead_letter .movie_box {
      width: 78.125vw;
      box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    }
    #lead_letter figure {
      width: 100%;
      right: 0;
      bottom: 20vw;
      text-align: center;
    }
    #lead_letter figure img {
      width: 44vw;
    }
  }

/*向き合う介護*/
.care_wrap {
  position: relative;
  max-width: 1400px;
  background: #fff;
  margin: 0 auto;
}
.care_ttl {
  position: absolute;
  z-index: 5;
  left: calc(50% - 378px);
  top: -178px;
}
.care_wrap .movie_box {
  position: relative;
  width: 900px;
  z-index: 15;
}
#care_lead {
  position: relative;
  z-index: 10;
  padding: 285px 0 0 0;
}
#care_lead::after {
  position: absolute;
  left: 38px;
  bottom: 0;
  content: "";
  width: 290px;
  height: 290px;
  background: #FEF6FC;
  border-radius: 50%;
}
#care_lead .movie_box {
  margin: 0 auto;
}
.care_lead_frame {
  position: absolute;
  top: 50px;
  left: calc(50% - 675px);
  z-index: 10;
}
.care_lead_txt {
  position: relative;
  z-index: 5;
  max-width: 890px;
  margin: 0 auto;
  padding: 55px 0 140px;
}
.care_lead_txt p {
  margin-bottom: 30px;
}
.care_lead_arrow {
  position: absolute;
  right: 100px;
  bottom: -95px;
}
  @media screen and (max-width: 767px) {
    .care_wrap {
      max-width: 100%;
    }
    .care_ttl {
      width: 100%;
      left: 0;
      top: -22.78vw;
    }z
    .care_ttl img {
      width: 100%;
      height: auto;
    }
    .care_wrap .movie_box {
      width: 78.125vw;
      margin: 0 auto;
    }
    #care_lead {
      padding: 33.33vw 0 0 0;
    }
    #care_lead::after {
      left: -20vw;
      bottom: 0;
      width: 38vw;
      height: 38vw;
    }
    .care_lead_frame {
      position: absolute;
      top: 5vw;
      left: 0;
    }
    .care_lead_frame img {
      width: 100%;
      height: auto;
    }
    .care_lead_txt {
      max-width: 100%;
      margin: 0 auto;
      padding: 24vw 5.2vw 6.66vw;
    }
    .care_lead_txt p {
      margin-bottom: 3.33vw;
    }
    .care_lead_arrow {
      right: 1vw;
      bottom: -8vw;
    }
    .care_lead_arrow img {
      width: 9.89vw;
    }
  }

#care_worries{
  margin-bottom: 30px;
  z-index: 10;
    padding: 160px 0 0 0;
    text-align: center;
}
#care_worries div,
#care_worries dd{
	text-align: center;
}
  @media screen and (max-width: 767px) {
	  #care_worries{
		  padding-top: 24vw;
	  }
    #care_worries div,
    #care_worries dd{
	  width: 90%;
	  margin: 0 auto;
      margin-bottom: 30px;
    }
    #care_worries img {
      width: 89vw;
    }
  }


#enjoy {
  padding-top: 80px
}
#enjoy > h2 {
  margin-bottom: 0;
}
  @media screen and (max-width: 767px) {
    #enjoy {
      padding-top: 4vw
    }
    #enjoy > h2 {
      text-align: center;
      margin-bottom: 0;
    }
    #enjoy > h2 img {
      width: 85.28vw;
    }
  }

.point_box {
  position: relative;
  padding-bottom: 100px;
}
.point_ttl {
  padding: 0 5px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.point_txt {
  max-width: 1225px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  font-size: 96%;
}
.point_txt p {
  margin-bottom: 25px;
}
.point_txt p:last-child {
  margin-bottom: 0;
}
.point_movie {
  position: relative;
  max-width: 1225px;
  margin: 0 auto;
  padding: 0 20px;
}
.point_float {
  position: absolute;
}
  @media screen and (max-width: 767px) {
    .point_box {
      padding-bottom: 0;
    }
    .point_ttl {
      padding: 0;
    }
    .point_ttl img {
      width: 100%;
      height: auto;
    }
    .point_txt {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 5.2vw;
      font-size: 100%;
    }
    .point_txt p {
      margin-bottom: 3.33vw;
    }
    .point_movie {
      width: 88.54vw!important;
      padding: 0;
    }
    .point_movie .movie_box {
      width: 100%;
    }
  }

#point01 {
  padding-top: 440px;
}
#point01 .point_float {
  position: absolute;
  right: calc(50% - 610px);
  bottom: 20px;
}
  @media screen and (max-width: 767px) {
    #point01 {
      padding-top: 35.93vw;
    }
    #point01 .point_ttl {
      top: -8.6vw;
    }
    #point01 .point_movie {
      padding-top: 28vw;
    }
    #point01 .point_float {
      right: 4.5vw;
      top: 3.66vw;
      bottom: auto;
    }
    #point01 .point_float img {
      width: 63vw;
      height: auto;
    }
  }

#point02 {
  padding-top: 440px;
}
#point02 .point_float {
  position: absolute;
  left: calc(50% - 632px);
  bottom: 55px;
}
  @media screen and (max-width: 767px) {
    #point02 {
      padding-top: 38vw;
    }
    #point02 .point_ttl {
      top: -6.66vw;
    }
    #point02 .point_movie {
      padding-top: 33vw;
    }
    #point02 .point_float {
      left: -2.66vw;
      top: 2.66vw;
      bottom: auto;
    }
    #point02 .point_float img {
      width: 78.64vw;
      height: auto;
    }
  }

#point03 {
  padding-top: 440px;
}
#point03 .point_float {
  position: absolute;
  right: calc(50% - 605px);
  bottom: -12px;
}
  @media screen and (max-width: 767px) {
    #point03 {
      padding-top: 42vw;
    }
    #point03 .point_ttl {
      top: -8vw;
    }
    #point03 .point_movie {
      padding-top: 27.5vw;
    }
    #point03 .point_float {
      right: 4vw;
      top: 3.33vw;
      bottom: auto;
    }
    #point03 .point_float img {
      width: 50vw;
      width: 70vw;
      height: auto;
    }
  }

#point04 {
  padding-top: 440px;
}
#point04 .point_float {
  position: absolute;
  left: calc(50% - 610px);
  bottom: -10px;
}
  @media screen and (max-width: 767px) {
    #point04 {
      padding-top: 40vw;
      padding-bottom: 8.8vw;
    }
    #point04 .point_ttl {
      top: -5.8vw;
    }
    #point04 .point_movie {
      padding-top: 33vw;
    }
    #point04 .point_float {
      left: -2.66vw;
      top: 3vw;
      bottom: auto;
    }
    #point04 .point_float img {
      width: 74.73vw;
      height: auto;
    }
    .enjoy_more img {
      width: 100%;
      height: auto;
    }
  }
#point05 {
  padding-top: 440px;
  padding-bottom: 60px;
}
#point05 .point_float {
  position: absolute;
  right: calc(50% - 605px);
  bottom: -12px;
}
  @media screen and (max-width: 767px) {
    #point05 {
      padding-top: 42vw;
    }
    #point05 .point_ttl {
      top: -8vw;
    }
    #point05 .point_movie {
      padding-top: 27.5vw;
    }
    #point05 .point_float {
      right: 4vw;
      top: 3.33vw;
      bottom: auto;
    }
    #point05 .point_float img {
      width: 50vw;
      width: 74.73vw;
      height: auto;
    }
  }


#benefits h2 {
  padding: 20px 0 35px;
}
#benefits p {
  width: 880px;
  margin: 0 auto 80px;
}
  @media screen and (max-width: 767px) {
    #benefits h2 {
      padding: 4vw 0 5.2vw;
      text-align: center;
    }
    #benefits h2 img {
      width: 65.88vw;
      height: auto;
    }
    #benefits p {
      width: 100%;
      padding: 0 5.2vw;
      margin: 0 auto 8vw;
    }
  }

/*超充実！「福利厚生」*/
#benefits {
  padding-bottom: 80px;
}
#benefits h3{
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	}
#benefits h3 p{
	width: 100%;
	color: #fff;
	background-color: #49a5f8;
	padding:6px 0; 
	border-radius: 20px;
	margin-bottom: 1em;
}
.benefits_list {
  max-width: 1080px;
  margin: 0 auto;
}
.benefits_box {
  width: 270px;
  margin: 0 22px 50px;
}
.benefits_box dt {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  color: #49a5f8;
  margin: 3px 0 10px;
  line-height: 1.4;
}
.benefits_box dd {
  line-height: 1.4;
  font-size: 86%;
}
  @media screen and (max-width: 767px) {
    #benefits {
      padding-bottom: 11.71vw;
    }
    #benefits h3{
	    width: 90%;
	    }
    .benefits_list {
      max-width: 100%;
    }
    .benefits_box {
      width: 38vw;
      margin: 0 3vw 5vw;
    }
    .benefits_box figure {
      text-align: center;
    }
    .benefits_box figure img {
      width: 35vw;
      height: auto;
    }
    .benefits_box dt {
      font-size: 3.9vw;
      margin: 2vw 0;
    }
  }

/*個性豊かなスタッフが活躍しています*/
#staff {
  padding-bottom: 120px;
}
#staff h2 {
  margin-bottom: 70px;
}
.staff_slider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 85px;
}
.staff_box_wrap {
  padding: 10px 20px;
}
.staff_box {
  box-shadow : 3px 3px 10px rgba(0, 0, 0, 0.3);
  padding: 50px 50px 45px 50px;
  line-height: 1.4;
}
.staff_info {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.staff_info figure{
	width: 70%
}
.staff_name{
	width: 25%;
}
.staff_info figure {
  width: calc(100% - 220px);
}
.staff_info figure img {
  width: 100%;
  height: auto;
}

.staff_name {
  padding-top: 70px;
  text-align: center;
 }
.staff_name h3{
	width: 210px;
	height:155px;
	
	background-repeat: no-repeat;
	background-size: cover;
}

.staff_name h3 .emp_status,
.staff_name h3 .name{
	width: 80%;
	margin:0 auto;
	font-weight: 400;
}
.staff_txt p{
	font-feature-settings: "palt";
	font-size: 0.8em;
}
.staff_name h3 .emp_status {
	font-size: 20px;
	padding:0.9em 0 0.9em;
	border-bottom: 1px solid #000;
	}
.staff_name h3 .name {
	font-size: 30px;
	padding-top: 10px;
	}
/*カラー*/
.staff_name h3.color01{
	color: #608b4c;
	background-image: url("../img2/staff_fkidashi_1.png") ;
	}
.staff_name h3.color01 .emp_status{
	border-bottom: 1px solid #608b4c;
	}
.staff_name h3.color02{
	color: #ff9a99;
	background-image: url("../img2/staff_fkidashi_2.png") ;
	}
.staff_name h3.color02 .emp_status{
	border-bottom: 1px solid #ff9a99;
	}
.staff_name h3.color03{
	color: #e59340;
	background-image: url("../img2/staff_fkidashi_3.png") ;
	}
.staff_name h3.color03 .emp_status{
	border-bottom: 1px solid #e59340;
	}

.slick-arrow {
  position: absolute;
  z-index: 10;
  top: calc(50% - 33px);
  cursor: pointer;
}
.staff_slider .prev_btn {
  left: 20px;
}
.staff_slider .next_btn {
  right: 20px;
}
  @media screen and (max-width: 767px) {
    #staff {
      padding-bottom: 15.33vw;
    }
    #staff h2 {
      margin-bottom: 5.2vw;
    }
    #staff h2 img {
      width: 100%;
      height: auto;
    }
    .staff_slider {
      max-width: 1100px;
      margin: 0 auto;
      padding: 2vw 5.2vw;
    }
    .staff_box_wrap {
      padding: 2.66vw 5.2vw;
    }
    .staff_box {
      padding: 4vw 3.33vw 3.33vw 3.33vw;
      line-height: 1.4;
    }
    /*.staff_info {
      margin-bottom: 3vw;
    }
    .staff_info figure {
      width: 100%;
    }*/
    
    
    .slick-arrow {
      top: calc(50% - 4.2vw);
    }
    .slick-arrow img {
      width: 5vw;
      height: auto;
    }
    .staff_slider .prev_btn {
      left: 2.66vw;
    }
    .staff_slider .next_btn {
      right: 2.66vw;
    }
    
    
    .staff_info {
	    margin-bottom: 25px;
	    display: flex;
	    flex-direction: column-reverse;
	    width: 100%;
	   }
	.staff_info figure{
		   width: 100%
	}
	.staff_name{
		width: 100%;
	}
	.staff_info figure {
		width: 100%;
	}
	.staff_info figure img {
		width: 100%;
		height: auto;
	}
	.staff_name {
		padding-top: 10px;
		text-align: center;
		padding-bottom: 5vw;
	}
	.staff_name h3{
		width: 210px;
		height:155px;
		margin:0 auto;
	}
	.staff_txt p{
		font-size: 3vw;
	}
	.staff_name h3 .emp_status {
		font-size: 5vw;
	}
	.staff_name h3 .name {
		font-size: 8vw;
		padding-top: 10px;
	}
}

/*数字で見るふるる*/
#numbers {
  position: relative;
  z-index: 2;
  background: #FCFBF7;
  padding: 120px 0;
  box-shadow : 0 7px 5px rgba(0, 0, 0, 0.2);
}
#numbers h2 {
  position: relative;
  margin-bottom: 50px;
}
/*#numbers h2::after {
  position: absolute;
  left: calc(50% - 342px);
  top: 20px;
  content: "";
  width: 84px;
  height: 64px;
  background: url("../img/numbers_kira.svg") center center no-repeat;
  background-size: 84px auto;
}*/
.numbers_slider_wrap {
  width: 960px;
  margin: 0 auto;
}
.numbers_slider .item{
	position: relative;
	opacity: 0.5;
	
	width: 290px;
	background-color: #fff;
	border:1px solid #000;
	border-radius: 20px;
	padding:10px 30px 20px;
	transition: all 0.2s ease-in-out 0s;
	font-size: 0.8em;
	margin:0 1em;
}
.numbers_slider .slick-track{
	align-items: center;
}
.numbers_slider .item figure,
.numbers_slider .item p{
	width: 230px;
}
/*.numbers_slider figure {
  position: relative;
  opacity: 0.5;
  padding: 0 12px;
  transition: all 0.2s ease-in-out 0s;
}*/
.numbers_slider .slick-current {
  opacity: 1;
}
.numbers_slider .slick-current + .slick-active {
  bottom: 0;
}
.numbers_slider .prev_btn {
  left: -70px;
}
.numbers_slider .next_btn {
  right: -70px;
}
  @media screen and (max-width: 767px) {
    #numbers {
      padding: 18vw 0;
    }
    #numbers h2 {
      margin-bottom: 5.8vw;
    }
    #numbers h2 img {
      width: 58.59vw;
      height: auto;
    }
    #numbers h2::after {
      left: calc(50% - 44vw);
      top: 3.33vw;
      width: 10.93vw;
      height: 8.33vw;
      background-size: 10.93vw auto;
    }
    .numbers_slider_wrap {
      width: 100%;
      margin: 0 auto;
    }
    /*.numbers_slider figure {
      opacity: 0.2;
      padding: 0 3vw;
    }*/
    .numbers_slider .item{
	    position: relative;
	    opacity: 0.5;
	    width: 40vw;
	    padding:10px 10px 20px;
	    border-radius: 10px;
	    font-size: 1em;
	    margin:0 1em;
	   }
	   .numbers_slider .item figure,
	   .numbers_slider .item p{
		   width: 38vw;
		 }
    .numbers_slider .slick-current {
      opacity: 1;
    }
    .numbers_slider .slick-current + .slick-active {
      bottom: 0;
    }
    .numbers_slider .prev_btn {
      left: 12vw;
    }
    .numbers_slider .next_btn {
      right: 12vw;
    }
  }

/*勤務地情報*/
#location {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  padding: 65px 0 120px 0;
}
#location h2 {
  margin-bottom: 80px;
}
.location_box {
  padding-bottom: 100px;
}
.location_box h3 {
  font-size: 3rem;;
  margin-bottom: 25px;
  text-align: center;
}
.location_slider {
  box-shadow : 3px 3px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}
.location_slider .prev_btn {
  left: -80px;
}
.location_slider .next_btn {
  right: -80px;
}
.location_box dl {
  text-align: center;
  line-height: 1.3;
  margin-bottom: 50px;
}
.location_box dt {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.gmap iframe {
  width: 100%;
  height: 500px;
}
  @media screen and (max-width: 767px) {
    #location {
      max-width: 100%;
      padding: 8vw 0 18vw 0;
    }
    #location h2 {
      margin-bottom: 10.41vw;
    }
    #location h2 img {
      width: 58.59vw;
    }
    .location_box {
      width: 78.12vw;
      margin: 0 auto;
      padding-bottom: 13vw;
    }
    .location_box h3 {
      font-size: 3.9vw;;
      margin-bottom: 5.8vw;
    }
    .location_slider {
      margin-bottom: 7vw;
    }
    .location_slider .prev_btn {
      left: -8vw;
    }
    .location_slider .next_btn {
      right: -8vw;
    }
    .location_box dl {
      margin-bottom: 7vw;
    }
    .location_box dt {
      font-size: 3.12vw;
      margin-bottom: 3vw;
    }
    .gmap iframe {
      width: 100%;
      height: 58vw;
    }
  }

/*インスタグラム*/
#sns_insta h3 {
  margin-bottom: 50px;
}
.insta_sample {
  position: relative;
}
.insta_sample::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "SAMPLE";
  width: 100%;
  height: 100%;
  font-size: 6rem;
  color: #fff;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  @media screen and (max-width: 767px) {
    #sns_insta h3 {
      margin-bottom: 6vw;
    }
    #sns_insta h3 img {
      width: 32vw;
    }
    .insta_box {
      padding: 0 4.4vw;
    }
    .insta_sample::after {
      font-size: 8vw;
    }
  }

/*採用の流れ*/
#flow {
  position: relative;
  z-index: 2;
  background: #FCFBF7;
  padding: 120px 0;
  box-shadow : 0 7px 5px rgba(0, 0, 0, 0.2);
}
#flow h2 {
  margin-bottom: 60px;
}
#flow figure {
  position: relative;
  z-index: 5;
}
.flow_float {
  position: absolute;
  right: calc(50% - 625px);
  bottom: 245px;
}
  @media screen and (max-width: 767px) {
    #flow {
      padding: 15.33vw 5.2vw 5.46vw;
    }
    #flow h2 {
      margin-bottom: 6vw;
    }
    #flow h2 img {
      width: 58.59vw;
      height: auto;
    }
    .flow_float {
      right: 7vw;
      bottom: 0;
    }
    .flow_float img {
      width: 40vw;
      height: auto;
    }
  }

/*勤務地*/
#offer {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  padding: 65px 0 55px 0;
}
#offer h2 {
  margin-bottom: 100px;
}
.offer_box {
  position: relative;
  width: 50%;
  max-width: 560px;
  height: 100%;
  box-shadow : 3px 3px 10px rgba(0, 0, 0, 0.3);
  padding: 20px 30px 100px 30px;
  margin-bottom: 65px;
}
.offer_box table {
  line-height: 1.4;
}
.offer_box th {
  text-align: left;
  font-size: 2rem;
  font-weight: 500;
  padding: 12px 10px;
  width: 112px;
  border-bottom: dashed 2px #999;
  vertical-align: top;
}
.offer_box td {
  padding: 12px 10px;
  font-feature-settings: "palt";
  border-bottom: dashed 2px #999;
}
.offer_box td p {
  margin-bottom: 12px;
}
.offer_box td p:last-child {
  margin-bottom: 0;
}
.offer_box td b {
  display: inline-block;
  font-weight: 500;
  /*font-size: 2.4rem;*/
  font-size: 2.2rem;
}
.offer_box td b span {
  font-weight: 600;
}
.offer_box td small {
  font-size: 1.7rem;
  display: block;
}
.offer_bottom {
  display: none;
}
.offer_btn {
  cursor: pointer;
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: calc(100% - 60px);
  z-index: 5;
  text-align: center;
  color: #fff;
  line-height: 46px;
  background: #49A5F8;
  font-weight: 600;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 10px;
}
.offer_btn:hover {
  opacity: 0.7;
}
.offer_close_btn {
  display: none;
}
.offer_btn.activ .offer_close_btn {
  display: block;
}
.offer_btn.activ .offer_open_btn {
  display: none;
}

.offer_box ul{}
.offer_box ul li{
	list-style-type: disc;
}
  @media screen and (max-width: 767px) {
    #offer {
      max-width: 100%;
      padding: 15.33vw 0 10vw 0;
    }
    #offer h2 {
      margin-bottom: 12vw;
    }
    #offer h2 img {
      width: 58.59vw;
      height: auto;
    }
    .offer_box {
      width: 100%;
      max-width: 72.91vw;
      height: auto;
      margin: 0 auto 6.66vw auto;
      padding: 3.25vw 3.25vw 13.33vw 3.25vw;
    }
    .offer_box table {
      line-height: 1.5;
      border-collapse: collapse;
    }
    .offer_box th {
      font-size: 2.6vw;
      padding: 2.2vw 1.33vw;
      width: 22%;
      height: 100%;
      border-bottom: dotted 1px #999;
    }
    .offer_box td {
      padding: 2.2vw 1.33vw;
      border-bottom: dotted 1px #999;
    }
    .offer_box td p {
      margin-bottom: 2.66vw;
    }
    .offer_box td b {
      font-size: 3.12vw;
    }
    .offer_box td small {
      font-size: 2.6vw;
    }
    .offer_btn {
      left: 3.25vw;
      bottom: 4vw;
      width: calc(100% - 6.5vw);
      line-height: 6vw;
      border-radius: 1.33vw;
    }
  }
/*お陰さまで充足しました*/
.job_relative {
    position: relative;
}

.job_relative p.p1 {
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 0;
    left: 0;
    margin: auto;
    
    color: #000000;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    z-index: 3;
    
}
  @media screen and (max-width: 767px) {
	  .job_relative p.p1{font-size: 2rem;}
	  }
.colorfilter-base {
    opacity: .1;
    background: #fff;;
    transition: all 0.3s ease-in-out;
    }

.colorfilter-base .offer_btn {
	pointer-events:none;/*リンクを非リンクに変える*/
	user-select:none;
	
}
.job_relative .offer_box{width: 100%;}

/*採用の流れ*/
#info_session {
  position: relative;
  z-index: 2;
  background: url("../img2/info_session_bg_pc.png") center 45px no-repeat #FCFBF7;
  padding: 65px 0  65px;
  box-shadow : 0 7px 5px rgba(0, 0, 0, 0.2);
}
#info_session h2 {
  margin-bottom: 40px;
}
#info_session p {
  line-height: 1.4;
  margin-bottom: 30px;
}
/*#info_session figure {
  position: relative;
  z-index: 5;
}*/
#info_session .schedule{
	width: 820px;
	margin:0 auto;
	text-align: left;
	background-color: #fff;
	border:1px solid #000;
	border-radius: 20px;
	padding: 50px 100px 30px;
	
}
#info_session .schedule .flex_box{
	display: flex;
}
#info_session .schedule .flex_box .p1{}
#info_session .schedule .flex_box .p1 span{
	color: #fff;
	background-color: #e59340;
	border-radius: 10px;
	padding: 6px 14px;
	margin-right: 10px;
}
#info_session .schedule .flex_box .p2{
	font-size: 1.2em;
	font-weight: 600;
}
#info_session .schedule .flex_box .p2 span{
	font-size: 80%;
	font-weight: 400;
}

  @media screen and (max-width: 767px) {
    #info_session {
      background: url("../img2/info_session_bg_pc.png") -10vw 6vw no-repeat #FCFBF7;
      background-size: 116vw auto;
      padding: 8.46vw 0 8.46vw;
    }
    #info_session h2 {
      margin-bottom: 4vw;
    }
    #info_session h2 img {
      width: 59.11vw;
      height: auto;
    }
    #info_session p {
      line-height: 1.4;
      margin-bottom: 3.33vw;
    }
    /*#info_session figure {
      text-align: center;
    }
    #info_session figure img {
      width: 90.62vw;
      height: auto;
    }*/
    #info_session .schedule{
	   width: 80%;
	   margin:0 auto;
	   border-radius: 20px;
	   padding: 6vw 10vw 4vw;
	}
	#info_session .schedule .flex_box{
		display: block;
	}
	#info_session .schedule .flex_box .p1 span{
	border-radius: 10px;
	padding: 6px 14px;
	margin-right: 10px;
}
#info_session .schedule .flex_box .p2{
	font-size: 1.2em;
	font-weight: 600;
}
#info_session .schedule .flex_box .p2 span{
	font-size: 80%;
	font-weight: 400;
}
  }

/*見学申込み*/
#contact {
  position: relative;
  background: #FCF3E9;
  padding: 75px 0 120px;
}
#contact h2 {
  margin-bottom: 62px;
}
#contact h2 small {
  display: block;
  margin-bottom: 20px;
}
.contact_box {
  max-width: 820px;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    #contact {
      padding: 18vw 0;
    }
    #contact h2 {
      margin-bottom: 8vw;
    }
    #contact h2 small {
      display: none;
    }
    #contact h2 span img {
      width: 70vw;
      height: auto;
    }
    .contact_box {
      max-width: 89vw;
    }
  }

.contact_tel {
  position: relative;
  z-index: 2;
  padding: 30px 50px 40px 50px;
  margin-bottom: 50px;
  box-shadow : 3px 3px 10px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.contact_tel h3 {
 /* background: url("../img/border01.png") 0 bottom repeat-x;*/
 border-bottom: 1px solid #e59340;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
.contact_tel dt {
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  
  color: #e59340;
}
.contact_tel dd p {
  margin-bottom: 12px;
}
.contact_tel dd p:last-child {
  margin-bottom: 0;
}
  @media screen and (max-width: 767px) {
    .contact_tel {
      padding: 4.4vw 5.2vw 5.2vw 5.2vw;
      margin-bottom: 7.8vw;
    }
    .contact_tel h3 {
      background-size: 24vw auto;
      padding-bottom: 2.66vw;
      margin-bottom: 4.4vw;
    }
    .contact_tel h3 img {
      width: 33.33vw;
      height: auto;
    }
    .contact_tel dt {
      font-size: 9.33vw;
      margin-bottom: 1.66vw;
    }
    .contact_tel dt a {
      color: #000;
      text-decoration: none;
    }
    .contact_tel dd p {
      margin-bottom: 3vw;
    }
  }

.contact_line {
  padding: 30px 50px 60px 50px;
  margin-bottom: 50px;
  box-shadow : 3px 3px 10px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.contact_line h3 {
  background: url("../img/border03.png") 0 bottom repeat-x;
  padding-bottom: 20px;
}
.contact_line_btn {
  padding: 50px 0 45px;
  border-bottom: dashed 3px #06C755;
  width: 722px;
  margin: 0 auto 28px;
}
  @media screen and (max-width: 767px) {
    .contact_line {
      padding: 4.4vw 5.2vw 5.2vw 5.2vw;
      margin-bottom: 7.8vw;
    }
    .contact_line h3 {
      background-size: 24vw auto;
      padding-bottom: 2.66vw;
    }
    .contact_line h3 img {
      width: 32vw;
      height: auto;
    }
    .contact_line_btn {
      padding: 5.2vw 0;
      border-bottom: dotted 2px #06C755;
      width: 100%;
      margin: 0 auto 5.2vw;
      text-align: center;
    }
    .contact_line_btn img {
      width: 44vw;
      height: auto;
    }
  }

.form {
  padding-bottom: 20px;
}
#contact_form form dt {
  font-size: 2.6rem;
  margin-bottom: 5px;
}
#contact_form form dd {
  margin-bottom: 30px;
}
#contact_form form dd label {
  margin-right: 25px;
}
#contact_form form dd small {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 5px
}
  @media screen and (max-width: 767px) {
    .form {
      width: 100%;
      padding-bottom: 0;
    }
    #contact_form form dt {
      font-size: 1.4rem;
      margin-bottom: 5px;
    }
    #contact_form form dd {
      margin-bottom: 18px;
    }
    #contact_form form dd label {
      margin-right: 0;
    }
    #contact_form form dd small {
      font-size: 1.1rem;
      margin-bottom: 5px
    }
  }

.form_box {
  padding: 30px 50px 60px 50px;
  box-shadow : 3px 3px 10px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.form_box h3 {
  /*background: url("../img/border04.png") 0 bottom repeat-x;*/
  border-bottom: 1px solid #e59340;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
  @media screen and (max-width: 767px) {
    .form_box {
      padding: 4.4vw 5.2vw 5.2vw 5.2vw;
    }
    .form_box h3 {
      background-size: 24vw auto;
      padding-bottom: 2.66vw;
      margin-bottom: 6vw;
    }
    .form_box h3 img {
      width: 37vw;
      height: auto;
    }
  }

/* ------------------------------プレースホルダーの色・サイズ指定------------------------------　*/
input::-webkit-input-placeholder {color:#646464; font-size:20px; opacity: 1; }
input:-moz-placeholder {color:#646464; font-size:20px; opacity: 1; }
textarea::-webkit-input-placeholder {color:#646464; font-size:20px; opacity: 1; }
textarea:-moz-placeholder {color:#646464; font-size:20px; opacity: 1; }
  @media screen and (max-width: 767px) {
    input::-webkit-input-placeholder {color:#646464; font-size:16px; opacity: 1; }
    input:-moz-placeholder {color:#646464; font-size:16px; opacity: 1; }
    textarea::-webkit-input-placeholder {color:#646464; font-size:16px; opacity: 1; }
    textarea:-moz-placeholder {color:#646464; font-size:16px; opacity: 1; }
  }

/* ------------------------------コンタクトフォーム７------------------------------　*/
div.wpcf7 { display:block; width:100%; margin:0 auto!important; box-shadow:none; background:transparent; }
div.wpcf7 p { padding:0; margin:0; line-height:2; }
div.wpcf7 input, .wpcf7 textarea , .wpcf7 select { width:100%; border:1px solid #999; padding: 10px 15px; font-size: 2.2rem; border-radius: 10px; outline: none; }
.wpcf7 select {
  min-height: 58px;
}
div.wpcf7 textarea { height:215px; }
.wpcf7 input:focus, .wpcf7 textarea:focus { border:1px solid #009de1; }
.wpcf7-captchac { border:1px solid #646464; }
  @media screen and (max-width:768px){
    div.wpcf7 { width:100%; }
    div.wpcf7 input, .wpcf7 textarea , .wpcf7 select {
      width: 100%;
      border: 1px solid #B3B3B3;
      padding: 6px 10px;
      font-size: 1.6rem;
      border-radius: 5px;
    }
    .wpcf7 select {
      min-height: 42px;
    }
  }

input,
textarea {
  transition: all .3s;
  -webkit-transition: all .3s;
  -ms-transition:none;
  border-radius: 10px;
}
input:focus,
textarea:focus {
  box-shadow: 0 0 7px #52a8ec;
}
.hissu{ 
  display: inline-block;
  color:#e59340;
  margin:0 0 0 7px;
  font-size: 1.8rem;
  vertical-align: middle;
  font-weight: 600;
}
.nini{ 
  display: inline-block;
  color:#646464;
  margin:0 0 0 7px;
  font-size: 1.8rem;
  vertical-align: middle;
  font-weight: 600;
}
  @media screen and (max-width: 767px) {
    .hissu{ 
      margin:0 0 0 5px;
      font-size: 1.1rem;
    }
    .nini{ 
      margin:0 0 0 5px;
      font-size: 1.1rem;
    }
  }

.wpcf7-form-control-wrap {
  display: block;
}
span.wpcf7-list-item {
  position: relative;
  margin: 0 30px 0 0 !important;/*項目ごとの余白を調整*/
}
.wpcf7-list-item-label {/*項目の色や文字サイズ*/
  cursor: pointer;
  font-size: 2.2rem;
}
input[type="checkbox"] {
  position: absolute;
  opacity: 0;/*既存のチェックボックスを非表示に*/
}
.wpcf7-list-item-label:before {/*チェックボックスの枠*/
  content: '';
  border: 1px solid #646464;
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
  top: -2px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  background: #fff;
  border-radius: 5px;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label:after {/*チェックアイコン*/
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: url("../img/check-solid.svg" )no-repeat center;
  background-size: contain;
}
  @media screen and (max-width: 767px) {
    .wpcf7-form-control-wrap {
      display: block;
    }
    span.wpcf7-list-item {
      display: block;
      margin: 0!important;
    }
    .wpcf7-list-item-label {/*項目の色や文字サイズ*/
      font-size: 1.4rem;
    }
    .wpcf7-list-item-label:before {/*チェックボックスの枠*/
      width: 20px;
      height: 20px;
      top: -2px;
      margin-right: 8px;
    }
    input[type="checkbox"]:checked + .wpcf7-list-item-label:after {/*チェックアイコン*/
      top: -2px;
      width: 20px;
      height: 20px;
    }
  }
  @media screen and (max-width: 420px) {
    .wpcf7-list-item-label {
      font-size: 3.2vw;
    }
  }

/* ------------------------------エラー個所をわかりやすく表示------------------------------　*/
/*.wpcf7 .wpcf7-not-valid { background:#ffb6c1; }
.wpcf7 span.wpcf7-not-valid-tip { font-size:80%; }
.wpcf7 .wpcf7-response-output {margin:10px 0 0; padding:8px 35px 8px 14px; text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);
-webkit-border-radius: 4px; -moz-border-radius:4px; border-radius:4px; }
.wpcf7 .wpcf7-validation-errors { color:#E77764; background-color:#F2DEDE; border:1px solid #EED3D7;}
.wpcf7 .wpcf7-mail-sent-ok { color:#3A87AD; background-color:#D9EDF7; border:1px solid #BCE8F1;}*/

/* ------------------------------送信ボタン------------------------------　*/
#contact_form input[type="submit"] { 
  display: block;
  background : #e59340;
  color: #fff;
  font-size: 3rem;
  padding: 16px;
  font-weight: 400;
  margin: 0 auto;
  border-radius: 10px;
}
#contact_form input[type="submit"]:hover {
  filter: brightness(1.1);
}
  @media screen and (max-width:768px){
    #contact_form input[type="submit"] { 
      font-size: 1.5rem;
      padding: 6px;
      max-width: 100%;
      border-radius: 5px;
    }
  }
  
/* ------------------------------プルプルボタン------------------------------　*/  
.btn_puru{
	text-align: center;
	margin-bottom: 2em;
	background-color: #fff;
	padding:3em 0 3em;
}
.btn_puru a{
	text-decoration: none;
}
.btn_puru a .button {
    position: relative;
    font-weight: bold;
    padding: 0.5em 3em;
    margin: 0px 5px;
    border-radius: 30px;/*角の丸み*/
    font-size: 30px;/*文字サイズ*/
    background: linear-gradient(#ff9a99, #e59340);/*背景色*/
    color: #fff;/*文字色*/
    display: inline-block;
    text-shadow: 1px 1px 0px rgb(0, 0, 0, 0.3);
    box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
}

.btn_puru a:hover .button {
    background-color: #cc0000;/*触れたときの背景色*/
    color: #fff;/*触れたときの文字色*/
    box-shadow: 0 0px 0 rgb(0, 0, 0, 0.3);
    animation-play-state: paused;
    top: 3px;
}
@media screen and (max-width: 767px) {
	.btn_puru a .button {font-size: 6vw;}
	}
.yureru-j {
    animation: yureru-j 2s infinite;
}
@keyframes yureru-j {
    0% {
        transform: translate(0px, 2px);
    }
    5% {
        transform: translate(0px, -2px);
    }
    10% {
        transform: translate(0px, 2px);
    }
    15% {
        transform: translate(0px, -2px);
    }
    20% {
        transform: translate(0px, 2px);
    }
    25% {
        transform: translate(0px, -2px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}

/* ------------------------------スタッフの一日------------------------------　*/
#oneday {
	max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    padding: 65px 0 120px 0;
}
#oneday h2 {
  margin-bottom: 60px;
}
#oneday p {
  margin-bottom: 15px;
}
#oneday dd {
  display: none;
}
#oneday dt {
  cursor: pointer;
  position: relative;
  width: 820px;
  margin: 0 auto;
  padding: 15px 40px;
  background: #FFC805;
  color: #646464;
  border: solid 1px #646464;
  transition: all 0.2s ease-in-out 0s;
}
/*追加*/
#oneday dt.activ::after {
    transform: rotate(180deg);
}

#oneday dt::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 11px);
  content: "▼";
  line-height: 1;
  color: #646464;
  transition: all 0.2s ease-in-out 0s;
}
#oneday dt:hover {
  filter: brightness(1.1);
}
/*
#oneday dt.activ {
  display: none;
}*/

#oneday dt .close_btn {
  display: none;
}
#oneday dt.activ .close_btn {
  display: inline-block;
}

#oneday dt.activ .more_btn {
  display: none;
}

  @media screen and (max-width: 767px) {
    #oneday {
      padding: 10.4vw 5.2vw;
    }
    #oneday h2 {
      margin-bottom: 8vw;
    }
    #oneday h2 img {
      width: 57vw;
      height: auto;
    }
    #oneday p {
      text-align: left;
      margin-bottom: 5.2vw;
    }
    #oneday dt {
      width: 100%;
      padding: 1.5vw 5.2vw;
    }
    #oneday dt::after {
      right: 2.66vw;
      top: calc(50% - 1.43vw);
    }
  }
  
  /* ------------------------------スタッフの一日------------------------------　*/
.first{
	width: 820px;
	margin:0 auto;
	padding-top: 50px;	
}
.first .text_box{
	position: relative;
}
.first .text_box p{
	font-size: 90%;
}
.first .text_box span.img01{
	position: absolute;
	left:-200px;
	top: 0;
}
.first .bg_blue {
	color: #fff;
	font-weight: 600;
	font-size: 90%;
	background-color: #49a5f8;
	padding:20px 40px;
	margin-bottom: 30px;
}
.first .bg_blue p{
	margin-bottom: 20px;
}
.first .bg_blue ul{}
.first .bg_blue ul li{
	list-style-type: disc;
	margin-bottom: 10px;
}  
.first .img_box{
	text-align: right;
	margin-bottom: 6vw;
}  
.first .img_box img{}   
 @media screen and (max-width: 767px) {
	 .first{
	width:90%;
	margin:0 auto;
	padding-top: 6vw;
	}
	.first .text_box{
		padding-left: 22vw;
	}
	.first .text_box span.img01{
		left: 0;
		}
	.first .text_box span.img01 img{
		width: 20vw;
		height: auto;
	}
	.first .bg_blue {
		padding:6vw 8vw 4vw;
	}
	.first .bg_blue p{
		margin-bottom: 4vw;
		}
	.first .img_box img{
		width: 100%;
	}
} 
  