@charset "UTF-8";

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*------------------- base -------------------*/
body{
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;;
  font-weight: 400;
  font-style: normal;
	font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.15rem;
	color: #333;
  overflow-x: hidden;
}
img{
	max-width: 100%;
	height: auto;
}
a{
  cursor: pointer;
  color: #333;
}
.br_sp_on{
  display: none;
}
@media screen and (max-width: 540px){
  body{
    font-size: 1.4rem;
  }
  .br_sp_off{
    display: none;
  }  
}
/*------------------- ここまでbase -------------------*/
/*------------------- header -------------------*/
.header_wrap{
  width: 100%;
  background: linear-gradient(#ffffff52, #fefefede);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media screen and (max-width: 890px){
  .header_wrap{
    display: none;
  }
}
.header_inner{
  max-width: 1540px;
  margin: 0 auto;
}
.header_top{
  display: flex;
  padding: 0 20px;
  justify-content: space-between;
  margin-top: 8px;
}
.header_top h1 a{
  font-size: 36px;
  display: flex;
  align-items: center;
}
.header_top .tel_link{
  text-align: left;
}
.header_top .tel_link a{
  color: #b32851;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: normal;
}
.pc_nav{
  max-width: 1300px;
  display: flex;
  justify-content: flex-end;
  margin-right: 16px;
  margin-bottom: 8px;
}
.pc_nav li{
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.pc_nav li:not(:last-child){
  margin-right: 2vw;
}
.pc_nav a{
  display: inline-block;
  position: relative;
}
a.nav_now::before,
.pc_nav a::before{
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/nav_accent.png) center center / 100% no-repeat;
  position: absolute;
  top: -8px;
  right: -10px;
  z-index: -1;
  opacity: 0;
}
a.nav_now::before{
  opacity: 1;
}
.pc_nav a:hover::before{
  opacity: 1;
}
.pc_nav_dropdown_p{
  position: relative;
}
.pc_nav a:hover{
  font-weight: bold;
}
.pc_nav_dropdown{
  width: 146px;
  background-color: #fefefe;
  padding: 10px 0;
  position: absolute;
  top: 30px;
  left: -50%;
  transform: scaleY(0);
  transform-origin: center top;
  transition: all .4s ease;
  box-shadow: 3px 4px 2px 0px #5453534d;
}
.pc_nav_dropdown_p:hover .pc_nav_dropdown{
  transform: scale(1);
}
.pc_nav_dropdown li{
  text-align: center;
  margin: 0 !important;
}
.pc_nav_dropdown li:not(:last-child){
  margin-bottom: 6px !important;
}
/* ハンバーガーメニュー */
.sp_hbg{
  display: none;
}
@media screen and (max-width: 890px){
  .sp_hbg{
    display: block;
  }
}
.sp_logo{
  display: none;
}
@media screen and (max-width: 890px){
  .sp_logo{
    display: block;
    position: fixed;
    top: 3px;
    left: 0;
    z-index: 2;
    backdrop-filter: hue-rotate(5deg);
  }
  .sp_logo img{
    width: 72px;
  }
}
.hbg_menu_btn{
  width: 72px;
  height: 70px;
  background-color: #d70051;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  box-shadow: 3px 3px 0 1px #7474745e;
}
.hbg_menu_btn span{
  position: absolute;
  left: 25%;
}
.hbg_menu_btn span:nth-of-type(1),
.hbg_menu_btn span:nth-of-type(2){
  background-color: #fff;
  width: 38px;
  height: 2px;
  transition: .4s;
}
.hbg_menu_btn span:nth-of-type(1){
  top: 29%;
}
.hbg_menu_btn.active span:nth-of-type(1){
  width: 26px;
  transform: rotate(-42deg);
}
.hbg_menu_btn span:nth-of-type(2){
  top: 40%;
}
.hbg_menu_btn.active span:nth-of-type(2){
  width: 26px;
  top: 28%;
  transform: rotate(42deg);
}
.hbg_menu_btn span:nth-of-type(3){
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  left: 11%;
  bottom: 22%;
}
.hbg_menu_btn.active span:nth-of-type(3){
  display: none;
}
.hbg_menu_btn span:nth-of-type(4){
  display: none;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  left: 11%;
  bottom: 15%;
}
.hbg_menu_btn.active span:nth-of-type(4){
  display: block;
}
.hbg_menu_wrap{
  width: 100%;
  height: 100%;
  background-color: #747474c2;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .4s, transform 0s;
}
.hbg_menu_wrap.active{
  opacity: 1;
  transform: translateY(0);
}
.hbg_menu_content{
  width: 96%;
  height: 99%;
  background-color: #fff;
  padding: 22px 28px;
  border-radius: 15px 15px 0 0;
  position: relative;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  z-index: 9999;
  overflow-y: scroll;
  opacity: 0;
  transition: .4s .2s;
}
.hbg_menu_content.active{
  transition: .4s;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hbg_logo{
  text-align: center;
  margin-bottom: 8px;
}
.sp_nav{
  max-width: 640px;
  margin: 0 auto;
}
.sp_nav li{
  background: #faf8f9;
  padding: 20px 15px;
}
.sp_nav li:not(:last-child){
  margin-bottom: 5px;
}
.sp_nav li a{
  display: block;
  position: relative;
}
.sp_nav li a.nav_now::before{
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/nav_accent.png) center center / 100% no-repeat;
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: 1;
}
.li_sp_nav_accordion{
  position: relative;
}
.sp_nav_accordion_btn{
  display: block;
  font-size: 2rem;
  color: #747474;
  position: absolute;
  top: 16px;
  right: 23px;
  transition: .4s;
  cursor: pointer;
}
.sp_nav_accordion_btn.close{
  transform: rotate(180deg);
}
.sp_nav_accordion{
  background-color: #fff;
  border-radius: 15px;
  margin-top: 20px;
}
.sp_nav_accordion li{
  background-color: transparent;
  padding: 8px 15px;
}
li.sp_nav_accordion_ttl{
  font-weight: bold;
  border-bottom: solid 2px #F88D00;
  border-radius: 0;
}
.hbg_menu_content .tel{
  display: block;
  font-size: 3rem;
  color: #333;
  text-align: left;
  line-height: 1.2;
  width: fit-content;
  margin: 10px 0;
}
.hbg_menu_content .tel span{
  font-size: 2rem;
}
.hbg_info{
  text-align: left;
}
.hbg_menu_content .hbg_img{
  text-align: center;
}
/* ここまでハンバーガーメニュー */
/*------------------- ここまでheader -------------------*/

/*------------------- footer -------------------*/
.info {
  text-align: center;
  background-color: #FCF4EC;
  padding: 2em;
}
.info p {
  color: #333;
  padding: 0;
  margin: 0;
}
.info p .sp {
  display: none;
}
.info .tel a {
  color: #b32851;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: "MS Serif", "New York", "serif";
  padding: 0.2em;
  text-shadow: 0 0 3px rgb(255, 255, 255);
}
.info .info_wrap {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 20px auto 0;
  gap: 15px;
}
.info .info_wrap .info_btn {
  width: 210px;
}
.info .info_wrap .info_btn a {
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  color: #242424;
  background-color: #fff;
  border: 0.5px solid #b32851;
  padding: 10px 5px;
  transition: all ease 0.3s;
}
.info .info_wrap .info_btn a:hover {
  opacity: 0.7;
  transform: translateY(-6px);
  transition: all ease 0.3s;
}
.contact_box{
  text-align: left;
  background-color: #fff;
  padding: 54px 50px 30px;
  border: 5px solid #B32851;
  border-radius: 36px;
  position: relative;
  z-index: 0;
}
.contact_box::before{
  content: "";
  display: block;
  width: 370px;
  height: 100px;
  background: url(../images/contact_box_bg.png) center center / 100% no-repeat;
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  right: 10%;
  z-index: -1;
}
@media screen and (max-width: 890px){
  .info {
    padding: 16px 8px;
  }
  .contact_box::before{
    opacity: 0.5;
  }
  .info .info_wrap .info_btn a {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
.contact_box h2{
  font-size: 3rem;
  margin-bottom: 24px;
}
.contact_box p{
  width: 70%;
}
@media screen and (max-width: 540px){
  .contact_box{
    padding: 20px 16px 10px;
  }
  .contact_box h2{
    font-size: 2.4rem;
  }
  .contact_box p{
    width: 100%;
  }
}
.contact_box .btn_wrap{
  text-align: right;
}
.contact_box .tel{
  display: block;
  font-size: 5rem;
  color: #58524b;
}
@media screen and (max-width: 540px){
  .contact_box .tel{
    font-size: 3.6rem;
  }    
}
.footer_link_wrap{
  text-align: right;
  margin-top: 8px;
  margin-right: 40px;
}
.info_box_wrap{
  background-color: #B32851;
  padding: 8px 0 40px;
}
.info_box_wrap a{
  color: #fff;
}
.info_box{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 890px){
  .info_box{
    padding: 30px 0;
    flex-direction: column;
  }     
}
.info_box::before{
  content: "";
  display: block;
  width: 1px;
  height: 300px;
  border-left: dashed 1px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 890px){
  .info_box::before{
    display: none;
  }      
}
@media screen and (max-width: 890px){
  .footer_logo {
    margin: 0;
    text-align: center;
  }
  .footer_logo img{
    width: 60%;
  }     
}
.info_txt{
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  margin-left: 60px;
}
@media screen and (max-width: 890px){
  .info_txt{
    margin-left: 0;
    margin-top: 30px;
  }       
}
.info_txt li{
  margin-bottom: 10px;
}
.info_txt li a{
  color: #fff;
}
.g_map iframe{
  width: 100%;
  height: 514px;
}
@media screen and (max-width: 540px){
  .g_map iframe{
    height: 370px;
  }        
}
.footer_nav{
  padding: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 890px){
  .footer_nav{
    padding: 10px 0;
  }           
}
.footer_nav li:not(:last-child){
  margin-right: 40px;
}
@media screen and (max-width: 890px){
  .footer_nav li{
    font-size: 1.4rem;
    margin: 10px !important;
  }         
}
footer a:hover{
  opacity: 0.6;
}
.copyright{
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  background-color: #B32851;
  padding: 4px 0;
}
/*------------------- ここまでfooter -------------------*/

/*------------------- 共通 -------------------*/
.main_wrap{
  overflow: hidden;
  background-color: #FCF4EC;
}
.top_main_wrap{
  overflow: hidden;
  background-color: #fff; 
}
.lauleahare_p{
  background-color: #d7005129;
}
.izumi_p{
  background-color: #00a0e926;
}
.seseragi_p{
  background-color: #00a29a2e; 
}
.main_wrap p{
  /* margin-bottom: 24px; */
  line-height: 1.8;
}
@media screen and (max-width: 890px){
  .main_wrap{
    padding: 0;
  }
  .main_wrap p{
    font-size: 1.4rem;
    margin-bottom: 14px;
  }  
}
/* ボタン */
.btn{
  display: inline-block;
  color: #333;
  padding: 8px 24px 6px;
  border-radius: 30px;
  border: #d70051 1px solid;
  transition: transform 0.4s ease;
}
.btn:hover {
  transform: translateY(-10px);
}
.btn_color01{
  background-color: #FFF;
}
.btn_color02{
  background-color: #fafafa;
}
.top_btn{
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 888;
  opacity: 0;
  transition: .4s;
}
@media screen and (max-width: 540px){
  .top_btn{
    display: none;
  }
}
.top_btn::before{
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background-color: #333;
  position: absolute;
  top: 10px;
  left: 21px;
  transform: rotate(54deg);
}
.top_btn::after{
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background-color: #333;
  position: absolute;
  top: 10px;
  right: 21px;
  transform: rotate(-54deg);
}
.top_btn a{
  font-size: 1.4rem;
  color: #333;
  padding-top: 16px;
  text-shadow:#ffffffbd 1px 1px 1px;
}
.apply_btn{
  position: fixed;
  right: 0;
  bottom: 16px;
  z-index: 888;
}
@media screen and (max-width: 890px){
  .apply_btn{
    display: none;
  }  
}
.apply_btn a{
  text-align: left;
  display: block;
  width: 189px;
  font-size: 1.4rem;
  color: #333;
  background-color: #ffffffde;
  padding: 10px 12px 12px;
  border: 2px solid #d70051;
  border-radius: 10px 0 0 10px;
  position: relative;
  transition: transform 0.4s ease;
}
.apply_btn a:hover{
  transition: transform 0.4s ease;
  transform: translateY(-10px);
}
.sp_bottom_btn{
  display: none;
  width: 100%;
  height: 65px;
  background-color: #fff6f8;
  border-top: solid 1px #eebbcb;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 777;
  opacity: 0;
  transition: .4s;
}
@media screen and (max-width: 890px){
  .sp_bottom_btn{
    display: block;
  }  
}
.sp_bottom_btn::before{
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  border-left: dashed 1px #eebbcb;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
}
.sp_bottom_btn p{
  font-size: 1.3rem;
  text-align: center;
  margin: 4px 0 0 0;
}
.sp_bottom_btn div{
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.sp_bottom_btn div a{
  display: block;
  font-size: 1.8rem;
  color: #333;
  width: 100%;
}
.sp_bottom_btn div a span{
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.sp_bottom_btn div a:first-child span{
  background: url(../images/sp_mail.png) center center / 100% no-repeat;
  margin: 0 4px 3px 0;
}
.sp_bottom_btn div a:last-child span{
  background: url(../images/sp_tel.png) center center / 100% no-repeat;
  margin: 0 3px 4px 0;
}
/* ここまでボタン */
/* font装飾 */
.accent_orange{
  color: #fb83b4;
}
.accent_pink{
  color: #d4a9cf;
}
.accent_green{
  color: #a2bc63;
}
.accent_bold{
  font-weight: bold;
}
/* ここまでfont装飾 */
.rec_vnr{
  background: url(../images/rec_v.jpg) center center / cover no-repeat;
  text-align: left;
  padding: 100px 0;
  border: 5px solid #B32851;
}
.rec_vnr h3{
  color: #333;
  font-size: 3rem;
  font-weight: lighter;
  letter-spacing: 0.5rem;
  margin-bottom: 20px;
  margin-left: 40px;
}
.rec_vnr p{
  color: #333;
  margin-left: 40px;
}
.rec_vnr .btn{
  margin-left: 40px;
}
@media screen and (max-width: 990px){
  .rec_vnr h3,
  .rec_vnr p,
  .rec_vnr .btn{
    margin-left: 16px;
  }
}
/*------------------- ここまで共通 -------------------*/

/*------------------- トップページ -------------------*/
/*  TOP_fw */
.top_fw_box{
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 1366px){
  .top_fw_box{
    height: 768px;
  }
}
@media screen and (max-width: 890px){
  .top_fw_box{
    height: 100vh;
  }
}
.top_fw_slide{
  width: 62%;
  height: 90%;
  position: relative;
}
@media screen and (max-width: 1160px){
  .top_fw_slide{
    width: 70%;
  }  
}
@media screen and (max-width: 890px){
  .top_fw_slide{
    width: 100%;
  }  
}
.top_fw{
  width: 100%;
  height: 100%;
  border-radius: 0 0 170px 0;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: top_fw_slide 16s linear infinite;
}
.top_fw01{
  background: url(../images/top_fw01.jpg) center center / cover no-repeat;
  animation-delay: -2s;
}
@media screen and (max-width: 540px){
  .top_fw01{
    background: url(../images/top_fw01.jpg) center left 62% / cover no-repeat;
  }   
}
.top_fw02{
  background: url(../images/top_fw02.jpg) center center / cover no-repeat;
  animation-delay: 4s;
}
.top_fw03{
  background: url(../images/top_fw03.jpg) center center / cover no-repeat;
  animation-delay: 10s;
}
@keyframes top_fw_slide{
  0% {
    opacity: 0;
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
  }
  100% {
  opacity: 0;
  }
}
.top_fw_txt{
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #ffffffc2;
  border-radius: 20px;
}
/* .top_fw_slogan{
  font-family: "Zen Maru Gothic", sans-serif;
} */
@media screen and (min-width: 1500px){
  .top_fw_txt{
    top: 32%;
    right: 6%;
  }    
}
@media screen and (max-width: 890px){
  .top_fw_txt{
    width: 50%;
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translateY(-40%);
  } 
  .top_fw_slogan{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    padding: 20px 0 50px;
  }
}
.top_fw_slogan p{
  font-size: 5rem;
  font-weight: bold;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin-right: 16px;
  margin-left: 16px;
}
@media screen and (min-width: 1500px){
  .top_fw_slogan p{
    font-size: 6rem;
  }  
}
@media screen and (max-width: 890px){
  .top_fw_slogan p{
    color: #333;
    writing-mode: vertical-rl;
  }  
}
@media screen and (max-width: 540px){
  .top_fw_slogan p{
    font-size: 3.2rem;
  }  
}
.top_fw_slogan p::before{
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1500px){
  .top_fw_slogan p::before{
    width: 90px;
    height: 90px;
  }
}
/*  ここまでTOP_fw */
.top_ttl{
  font-size: 6rem;
  width: fit-content;
  margin: 160px auto 40px;
  position: relative;
  font-family: serif;
  font-weight: 400;
}
.top_ttl_l{
  margin: 0 auto 40px;
}
@media screen and (max-width: 890px){
  .top_ttl{
    font-size: 6.4rem;
    margin: 60px auto 8px;
  }  
}
@media screen and (max-width: 540px){
  .top_ttl{
    font-size: 3.6rem;
    margin: 30px auto 8px;
  }  
}
.top_ttl_l::before{
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #ad8af4;
  position: absolute;
  bottom: 5px;
  left: 0;
}
.top_ttl_r::before{
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #CEB8FB;
  position: absolute;
  bottom: 5px;
  right: 0;
}
@media screen and (max-width: 890px){
  .top_ttl_l::before,
  .top_ttl_r::before{
    bottom: 16px;
  } 
}
@media screen and (max-width: 540px){
  .top_ttl_l::before,
  .top_ttl_r::before{
    bottom: 0;
  } 
}
.top_about_box{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
@media screen and (max-width: 890px){
  .top_about_box{
    display: block;
  }  
}
.top_about_r{
  max-width: 720px;
}
@media screen and (max-width: 890px){
  .top_about_r{
    margin: 0 auto;  
  }   
  .top_about_r p{
    margin: 0 8px;
  }
}
.top_about_r .btn{
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 540px){
  .top_about_r .btn{
    margin-bottom: 6px;   
  }   
}
.top_about_l{
  font-family: "ab-ootori",'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;;
  font-size: 4.6rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.6rem;
  margin-right: 4%;
}
@media screen and (max-width: 890px){
  .top_about_l{
    font-size: 5.8vw;
    writing-mode: horizontal-tb;
    letter-spacing: 0.15rem;
    margin: -120px 0 0 0;
    text-shadow: 0px 0px 6px #fff;
  }   
}
@media screen and (max-width: 540px){
  .top_about_l{
    font-size: 2.4rem;
    margin: -39px 0 0 0;
  }   
}
.top_txt{
  text-align: right;
  font-size: 19px;
}
.top_txt .btn{
  margin: 14px 0 0 290px;
}
@media screen and (max-width: 540px){
  .top_txt .btn{
    display: block;
    width: fit-content;
    margin: 14px 0 0 auto;
  }      
}
.top_subttl{
  font-size: 4rem;
  width: fit-content;
  padding-left: 20%;
  margin: 40px 0 18px;
  position: relative;
}
@media screen and (max-width: 890px){
  .top_subttl{
    font-size: 3.4rem;
    margin: 20px 0 18px;
  }    
}
@media screen and (max-width: 540px){
  .top_subttl{
    font-size: 2.8rem;
    margin: 10px 0 6px;
  }    
}
.top_subttl::before{
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #d4a9cf;
  position: absolute;
  bottom: 10px;
  right: 0;
}
.top_subttl_green::before{
  background-color: #a2bc63;
}
/* .top_recard_bg::before{
  content: "";
  display: block;
  width: 50%;
  height: 886px;
  background: url(../images/top_recard_bg.png) center center / contain no-repeat;
  position: absolute;
  top: 0;
  right: -14%;
  z-index: -1;
  animation: floatAnimation 4s infinite alternate ease-in-out;
} */
.top_02{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.service_card_wrap p{
  text-align: center;
}
.top_02 .service_card_1 {
  border: 5px solid #d70051;
  border-radius: 40px;
  box-shadow: 2px 3px 6px 1px #7474745e;
}
.top_02 .service_card_1:hover{
  opacity: .5;
}
.top_02 .service_card_2 {
  border: 5px solid #32B2ED;
  border-radius: 40px;
  box-shadow: 2px 3px 6px 1px #7474745e;
}
.top_02 .service_card_2:hover{
  opacity: .5;
}
.top_02 .service_card_3 {
  border: 5px solid #32B4AE;
  border-radius: 40px;
  box-shadow: 2px 3px 6px 1px #7474745e;
}
.top_02 .service_card_3:hover{
  opacity: .5;
}
.top_02 img{
  display: block;
  margin: 5px;
  position: relative;
}
.top_02 .yajirusi{
  display: inline;
  margin: 0;
}
.t02_btn{
  width: fit-content;
  display: block;
  margin-right: 30px;
  margin-left: auto;
}
@media screen and (max-width: 768px){
  .top_02 img{
    margin: 2px;
  }
}
.content_03 p{
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}
/* @media screen and (max-width: 768px){
  .content_03 p{
    margin: 0 8px;
  }
} */
.content_03 .flx .btn{
  width: fit-content;
  display: flex;
}
.content_03 .flx{
  display: flex;
  padding-left: 15px;
}
@media screen and (max-width: 768px){
  .content_03 .flx{
    width: 98%;
    flex-direction: column;
    padding-left: 0;
    margin: auto;
  }
}
/*------------------- ここまで トップページ -------------------*/

/*------------------- TOPページ以外共通 -------------------*/
.other_fw_box{
  width: 100%;
  height: 400px;
  background: url(../images/other_fw_bg.png) center center / cover no-repeat;
  position: relative;
}
@media screen and (max-width: 890px){
  .other_fw_box{
    height: 220px;
  }  
}
@media screen and (max-width: 540px){
  .other_fw_box{
    height: 300px;
  }  
}
.other_main_wrap{
  padding-top: 0;
  padding-right: 0;
}
@media screen and (max-width: 890px){
  .other_main_wrap{
    margin-top: 60px;
  }   
}
@media screen and (max-width: 540px){
  .other_main_wrap{
    margin-top: 0;
  }   
}
.big_bg{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.main_ttl{
  color: #fff;
  font-size: 4rem;
  text-align: center;
  width: max-content;
  position: absolute;
  top: 60%;
  right: 2%;
  text-shadow: 0 2px 6px #000000;
}
@media screen and (max-width: 890px){
  .main_ttl{
    font-size: 5.4rem;
    top: 52%;
  }         
}
@media screen and (max-width: 540px){
  .main_ttl{
    font-size: 3.2rem;
    top: 64%;
    transform: translateX(0);
  }         
}
.sub_ttl{
  font-size: 3rem;
  width: fit-content;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 890px){
  .sub_ttl{
    font-size: 2.8rem;
    margin-bottom: 12px;
  }           
}
@media screen and (max-width: 540px){
  .sub_ttl{
    font-size: 2.2rem;
    margin-bottom: 12px;
  }           
}
.sub_ttl_l{
  padding-left: 10%;
  padding-right: 8px;
}
@media screen and (min-width: 1600px){
  .sub_ttl_l{
    padding-left: 26%;
  }  
}
.sub_ttl_l::before{
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #F88D00;
  position: absolute;
  bottom: 5px;
  right: 0;
}
.sub_ttl_r{
  padding-right: 10%;
  padding-left: 8px;
  margin-left: auto;
}
@media screen and (min-width: 1600px){
  .sub_ttl_r{
    padding-right: 26%;
  }  
}
.sub_ttl_r::before{
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #F88D00;
  position: absolute;
  bottom: 5px;
  left: 0;
}
.other_top_txt{
  width: 80%;
  max-width: 1120px;
  padding: 50px 14px 30px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 890px){
  .other_top_txt{
    margin: 30px auto -30px;
  }           
}
@media screen and (max-width: 540px){
  .other_top_txt{
    margin: 20px auto -20px;
  }           
}
.ttl_big{
  color: #fff;
  font-size: 15rem;
  font-weight: bold;
  font-family: sans-serif;
  text-align: right;
}
.ttl_other{
  margin-bottom: -93px;
}
.ttl_other p{
  text-align: center;
  margin-top: 20px;
}
.ttl_jp{
  font-size: 3rem;
  text-align: center;
  position: relative;
}
.ttl_jp::after{
  content: '';
  width: 58%;
  height: 2px;
  background: linear-gradient(
  to right,
  #bbb9b9 calc(100% - 28%),
  #B32851 calc(100% - 72%)
);
  position: absolute;
  display: block;
  bottom: 0;
}
.sp_b{
  display: none;
}

@media screen and (max-width: 890px){
  .sp_b{
    display: block;
  }
}
@media screen and (max-width: 990px){
  .ttl_jp{
    font-size: 2.6rem;
  }
}
/*------------------- TOPページ以外共通 -------------------*/
/*------------------- 会社概要 -------------------*/
.about_box{
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  font-size: 1.6rem;
  width: 80%;
  max-width: 1200px;
  padding: 220px 15px 50px 150px;
  margin-top: -184px;
  margin-left: auto;
  margin-bottom: 200px;
}
@media screen and (max-width: 568px){
  .about_box{
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 786px){
  .about_box{
    width: 100%;
    padding: 192px 0 80px 0;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.about_box table{
  border-spacing: 0;
}
.about_box th,
.about_box td{
  border-bottom: solid 1px #d0d0d0;
}
.about_box th{
  text-align: start;
  vertical-align: baseline;
  padding: 16px 50px 16px 8px;
}
@media screen and (max-width: 787px){
  .about_box th{
    padding: 16px 8px 16px 8px;
  }
}
@media screen and (max-width: 786px){
  .ttl_other{
    margin-bottom: -69px;
  }
  .ttl_big{
    font-size: 6.5rem;
  }
  .about_box th{
    font-weight: bold;
    padding: 12px 0px 0px 8px;
    display: block;
    width: 100%;
    border-bottom: 0;
  }  
}
  .about_box td{
  padding: 16px 30px 16px 8px;
}
@media screen and (max-width: 787px){
  .about_box td{
    padding: 16px 8px 16px 30px;
  }                            
}
@media screen and (max-width: 568px){
  .about_box td{
    padding: 4px 0px 12px 8px;
    display: block;
    width: 100%;
  }
  .access iframe{
    width: 100%;
  }   
}
.about_box .btn_color01{
  padding: 5px 16px 7px;
  margin-left: 10px;
}
.access_ttl p{
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px){
  .access_ttl h4{
    font-size: 2.5rem;
    padding-left: 8px;
  }
  .access_ttl p{
    padding-left: 8px;
  }
}
.content_about02{
  text-align: center;
  /* margin-top: 100px; */
}
.content_about02 .about_box02{
  width: 80%;
  max-width: 1200px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: 155px;
  padding-bottom: 80px;
  margin-top: -104px;
  margin-left: auto;
}
.content_about02 .about_box02 p{
  font-size: 2.4rem;
  width: 80%;
  backdrop-filter: blur(5px);
  max-width: 1200px;
  padding: 10px 30px;
  margin: 0 auto;
}
.content_about02  .about03 p{
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (max-width: 768px){
  .content_about02 .about_box02{
    width: 100%;
    padding-top: 100px;
    margin-top: -5px;
  }
  .content_about02 .about_box02 p{
    font-size: 1.65rem;
    width: 100%;
    padding: 10px 8px;
  }
  .ttl_jp::after{
    width: 70%;
    background: linear-gradient(to right, #bbb9b9 calc(100% - 65%), #B32851 calc(100% - 35%));
  }
  .content_about02  .about03{
    padding-top: 120px;
  }
}
/*------------------- ここまで 会社概要 -------------------*/

/* 各事業紹介・ラウレアハレ----------------- */
/* .content_service{
  margin-top: 100px;
} */
.content_service .service_box{
  width: 80%;
  max-width: 1200px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: 148px;
  padding-bottom: 80px;
  margin-left: auto;
  margin-top: -110px;
}
.service_box p{
  width: 80%;
  backdrop-filter: blur(5px);
  max-width: 1200px;
  padding: 10px 30px;
  margin: 0 auto;
}
.content_service .service_box img{
  display: block;
  margin: auto;
}
.service01{
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.service01 .service01_flex_item{
  width: 45%;
}
.service01 .service01_flex_item ul{
  margin-top: 36px;
}
.service01 .service01_flex_item h4{
  font-size: 2.4rem;
  width: fit-content;
  color: #fff;
  background-color: #B32851;
  padding: 8px 8px 6px;
  border-radius: 0 8px 0 8px;
  margin-top: 56px;
  margin-bottom: 20px;
}
.service02 .service02_item h4,
.service04 .service04_item h4{
  font-size: 2.4rem;
  width: fit-content;
  color: #fff;
  background-color: #B32851;
  padding: 8px 8px 6px;
  border-radius: 0 8px 0 8px;
  margin-top: 56px;
  margin-bottom: 20px;
  margin-left: 56px;
}
.service01 .service01_flex_item p{
  width: 80%;
  backdrop-filter: unset;
  padding: unset;
  margin: 8px 0 0 0;
  margin-right: auto;
}
.service01 .service01_flex_item ul li{
  margin-bottom: 6px;
}
/* .service02{
  margin-top: 65px;
} */
.service02 .service02_item h5{
  width: fit-content;
  font-size: 2rem;
  padding-bottom: 6px;
  border-bottom: 1px solid #ccc;
  margin-left: 80px;
}
.service02 .service02_item img{
  margin-top: 20px;
}
.service02 .service02_item p{
  font-size: 1.4rem;
}
.service03 h5{
  font-size: 2.1rem;
  text-align: center;
}
.servise03_list{
  width: 60%;
  max-width: 600px;
  border: 2px solid #B32851;
  padding: 16px;
  margin: auto;
  margin-top: 20px;
}
.service04{
  margin-top: 40px;
}
.service04_flex{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.service04_flex .service04_flex_item{
  width: 45%;
  margin-bottom: 40px;
}
.service04_flex :nth-of-type(3).service04_flex_item{
  width: 100%;
  padding: 0 0 0 56px;
}
.service04_flex_item h5{
  width: fit-content;
  font-size: 2.2rem;
  border-bottom: 1px solid #ccc;
  margin: 16px 0;
}
.service04_list{
  width: 70%;
  max-width: 800px;
  display: block;
  margin: 40px auto 20px;
}
.service04_flex .service04_flex_item p{
  width: 95%;
  padding: unset;
}
@media screen and (max-width: 768px){
  .content_service .service_box{
    width: 100%;
    padding-top: 145px;
    margin-top: -116px;
  }
  .content_service .service_box p{
    width: 98%;
    padding: 0;
  }
  .content_service .ttl_jp{
    font-size: 2.8rem;
  }
  .ttl_jp::after{
    width: 70%;
    background: linear-gradient(to right, #bbb9b9 calc(100% - 65%), #B32851 calc(100% - 35%));
  }
  .service01{
    flex-direction: column;
  }
  .service01 .service01_flex_item{
    width: 85%;
    margin: auto;
  }
   .service01 .service01_flex_item:first-of-type{
    margin-bottom: 40px;
  }
  .service01 .service01_flex_item ul li{
    font-size: 1.6rem;
  }
  .service02{
    width: 85%;
    margin: auto;
    margin-bottom: 40px
  }
  .service02 .service02_item h5 {
    font-size: 1.8rem;
    margin-top: 16px;
    margin-left: 0;
  }
  .service02 .service02_item h4,
  .service04 .service04_item h4{
    font-size: 2rem;
    width: fit-content;
    color: #fff;
    background-color: #B32851;
    padding: 8px 8px 6px;
    border-radius: 0 8px 0 8px;
    margin-bottom: 8px;
    margin-left: 0;
  }
  .service03{
    margin-bottom: 40px;
  }
  .servise03_list{
    width: 95%;
  }
  .servise03_list ul li{
    font-size: 1.6rem;
  }
  .service04{
    width: 85%;
    margin: auto;
  }
  .service04_item p{
    padding: 16px 0;
  }
  .service04_list{
    width: 100%;
    padding: 16px 0;
  }
  .service04_list li{
    font-size: 1.6rem;
    margin: 8px 0;
  }
  .service04_flex{
    flex-direction: column;
  }
  .service04_flex .service04_flex_item{
    width: 100%;
  }
  .service04_flex .service04_flex_item ul li{
    text-align: center;
  }
  .service04_flex :nth-of-type(3).service04_flex_item {
    padding: unset;
  }
}
/* ここまで　各事業紹介・ラウレアハレ----------------- */
/* 各事業紹介・いずみ----------------- */
.service_box h5{
  font-size: 2.4rem;
  text-align: center;
}
.service_box p{
  width: 70%;
  margin: auto;
}
.service_other_wrap{
  display: flex;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  margin-top: 40px;
}
.service_other_wrap:nth-of-type(2){
  flex-direction: row-reverse;
}
.service_other_wrap p{
  width: 100%;
  padding: unset;
  margin: unset;
}
.service_other_item{
  width: 45%;
  margin: auto;
}
.service_other_item h4{
  font-size: 2.1rem;
  margin: 20px 0;
}
.service_other_flex{
  display: flex;
  margin-top: 65px;
  justify-content: center;
  gap: 16px;
}
.service_other_flex .service_under_link a{
  height: 103px;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 2px solid #ccc;
  border-radius: 20px;
  transition: all ease .3s;
}
.service_other_flex .service_under_link a:hover{
  transform: translateY(-5px);
  transition: all ease .3s;
}
@media screen and (max-width: 990px){
  .service_other_flex .service_under_link a{
  font-size: 1.6rem;
  }
  .service_other_wrap {
    width: 98%;
    flex-direction: column-reverse;
  }
  .service_other_wrap:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .service_other_item {
    width: 100%;
  }
    .service_box h5 {
    font-size: 2.1rem;
    margin-bottom: 8px;
  }
}
/* ここまで　各事業紹介・いずみ----------------- */
/* 各事業紹介・せせらぎ----------------- */
/* ここまで　各事業紹介・せせらぎ----------------- */
/* -------------------------採用情報------------- */
.box_rec_top{
  width: 88%;
  max-width: 1300px;
  flex-direction: column;
  padding: 180px 15px 50px 211px;
  margin-top: -104px;
  margin-bottom: 0;
}
.box_rec_top p{
  width: 75%;
}
.box_rec{
  width: 88%;
  max-width: 1300px;
  flex-direction: column;
  padding: 144px 15px 150px 210px;
  /* margin-top: -56px; */
  margin-top: -106px;
  margin-bottom: 0;
}
.recruit_btn_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 40px;
  width: 80%;
  max-width: 1200px;
  margin: 40px 0;
}
.recruit_btn_wrap .recruit_btn{
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 90px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-shadow: 0 2px 6px #ccc;
  transition: all ease .3s;
}
.recruit_btn_wrap .recruit_btn a{
  display: block;
}
.recruit_btn_wrap .recruit_btn:hover{
  font-weight: bold;
  transform: translateY(3px);
  transition: all ease .3s;
  box-shadow: unset;
}
.box_rec p{
  width: 80%;
  margin: 20px auto;
}
.box_inner_wrap01,
.box_inner_wrap02,
.box_inner_wrap03{
  position: relative;
  z-index: 1;
}
.box_inner_wrap01 img{
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  left: -20%;
  opacity: .5;
}
.box_inner_wrap02 img{
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  left: 42%;
  opacity: .5;
}
.box_inner_wrap03 img{
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  left: -20%;
  opacity: .5;
}
.box_inner_wrap01 h4,
.box_inner_wrap02 h4,
.box_inner_wrap03 h4{
  font-size: 3.2rem;
  transform: translateX(-20%);
  text-align: center;
  margin-top: 40px;
}
.box_rec .box_inner{
  width: 70%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.box_inner .rec_item{
  position: relative;
  background-color: #fff;
  box-shadow: 2px 3px 6px 1px #7474745e;
  width: 220px;
  text-align: center;
  padding: 8px 0 40px;
  border: 1px solid #ccc;
  border-radius: 25px;
  transition: all ease .3s;
}
.box_inner .rec_item:hover{
  transform: translateY(3px);
  transition: all ease .3s;
  box-shadow: unset;
}
.box_inner .rec_item p{
  width: 100%;
  font-size: 2.3rem;
  margin: auto;
}
.box_inner .rec_item .rec_ttl{
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: 0;
  transform: translate(-50%,0);
} 
.big_bg .rec_02ttl{
  font-size: 3rem;
  text-align: center;
}
.rec_img_wrap{
  margin: 40px 0;
}
.rec_img_wrap img{
  border-radius: 20px;
}
.rec03{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-left: -40px;
}
.rec03 .rec03_box{
  width: 40%;
  text-align: center;
  background-color: #fff;
  padding: 16px 0 8px;
  border: 2px solid #ccc;
}
.rec03 .rec03_box img{
  transform: rotate(90deg);
}
.rec04{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.rec04 .rec04_box{
  width: 40%;
  text-align: left;
  padding: 16px 0 8px;
}
.rec04 .rec04_box h4{
  font-size: 3.2rem;
}
.rec04txt{
  width: 80%;
  max-width: 990px;
  padding: 16px 8px;
  border: 1px solid #ccc;
  margin-top: 50px;
}
.rec04txt h4{
  font-size: 2.4rem;
  text-align: center;
}
.rec05{
  display: flex;
  justify-content: center;
}
.rec05 .rec05_box{
  width: 50%;
}
.rec05 .rec05_box h4{
  font-size: 2.4rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 990px){
  .box_rec_top{
    width: 100%;
    padding: 150px 15px 50px 20px;
    margin-top: -75px;
  }
  .box_rec_top p{
    width: 98%;
  }
  .recruit_btn_wrap{
    width: 100%;
    gap: 16px;
  }
  .recruit_btn_wrap .recruit_btn {
    width: 160px;
    height: 70px;
    font-size: 1.8rem;
  }
  .box_rec{
    width: 100%;
    padding: 125px 15px 50px 20px;
  }
  .box_rec .box_inner {
    width: 100%;
    gap: 16px;
    padding: 20px  0;
    margin: auto;
  }
  .box_inner .rec_item{
    width: 160px;
  }
  .box_inner .rec_item p{
    font-size: 1.6rem;
  }
  .rec_img_wrap img{
    width: 32%;
  }
  .box_inner_wrap01,
  .box_inner_wrap02,
  .box_inner_wrap03{
    background-size: 30%;
    background-position: -10px 0;
  }
  .box_inner_wrap02{
    background-position: calc(100% + 10px) 0;
  }
  .rec04{
    flex-direction: column;
    gap: 0;
  }
  .rec04 .rec04_box{
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
  }
  .rec04 .rec04_box h4{
    font-size: 2.4rem;
  }
  .rec04txt{
    width: 100%;
  }
  .box_rec p {
    width: 100%;
    margin-top: 8px;
  }
  .rec03{
    margin-left: unset;
  }
  .rec03 .rec03_box {
    width: 100%;
  }
  .rec05{
    flex-direction: column;
  }
  .rec05 .rec05_box {
    width: 100%;
  }
  .rec_img_wrap{
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
  }
}
/* ---------------------ここまで採用情報------------ */
/*articles.php____________________________*/
.main .container .row .col-md-9 .row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .main .container .row .col-md-9 .row {
    flex-direction: column;
  }
}
.main .container .row .col-md-9 .row .col-md-4 {
  flex: 33%;
}

/*single.php______________________________*/
.navi {
  text-align: center;
}
.main {
  padding: 50px 0 0;
}
.main .main_title {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  padding-bottom: 30px;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 5em;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  position: relative;
}
.news {
  width: 100%;
  margin-bottom: 30px;
}

.news .news_pic {
  margin-bottom: 10px;
}

.news a {
  text-decoration: none;
  display: inline-block;
  color: #4a3321;
}

.news .news_pic img {
  height: auto;
  max-width: 100%;
  display: block;
}

.news .news_meta {
  display: flex;
  -js-display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 0;
}

.news .news_meta ul {
  list-style: none;
  padding: 0;
  display: flex;
  -js-display: flex;
  align-items: center;
  justify-content: space-between;
}
.news .news_meta ul li {
  padding-right: 10px;
}
.news .news_meta ul li a {
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  color: #0293AD;
  border: 1px solid #0293AD;
  color: #0293AD;
  text-decoration: none;
}
.news .news_time {
  margin-left: 5px;
  font-size: 12px;
}
.news .news_title {
  font-size: 18px;
  padding: 10px 0;
  line-height: 1.2;
}
.news .news_desc p {
  font-size: 13px;
  margin-bottom: 5px;
}
.col-md-9 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-style: normal;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) {
  .col-md-9 {
    flex: 0 0 70%;
    max-width: 74%;
  }
}
.article .article_title {
  text-align: center;
  font-size: 28px;
}
.article .article_meta {
  display: flex;
  -js-display: flex;
  padding: 30px 0;
  align-items: center;
  justify-content: space-between;
}
.article .article_meta ul {
  display: flex;
  -js-display: flex;
  align-items: center;
  justify-content: space-between;
}
.article .article_meta ul li {
  padding-right: 10px;
}
.article .article_meta ul li a {
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid #67abd3;
  color: #67abd3;
  text-decoration: none;
}
.article .article_meta ul li {
  padding-right: 10px;
}
.postLinks {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  display: flex;
  -js-display: flex;
}
.postLink {
  width: 50%;
  padding: 15px 0;
}
.postLink a {
  text-decoration: none;
  font-size: 14px;
}
.postLink-prev i {
  margin-right: 10px;
}
.postLink-next i, .postLink-next svg {
  margin-left: 10px;
}
.postLink-next {
  text-align: right;
}
.fa-chevron-right:before {
  content: "\f054";
}
.col-md-3, .col-md-4 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-md-3 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: -webkit-sticky;
  position: sticky;
  top: 25%;
  left: 0;
  margin: 0 0.5em 0 0.5em;
}
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    width: 80%;
    padding: 0.5em;
    margin: 0 auto;
  }
}
.archive {
  border: 1px solid #ccc;
  margin-bottom: 30px;
}
.archive:last-child {
  margin-bottom: 0;
}
.archive .archive_title {
  font-size: 16px;
  padding: 20px 10px;
  line-height: 1;
  border-bottom: 1px solid #ccc;
  background-color: #b32851;
  color: #fff;
}
ul {
  list-style: none;
  list-style-position: inside;
}
.archive .archive_list li {
  margin: 0;
  border-bottom: 1px solid #ccc;
  line-height: 1;
}
.archive .archive_list li a {
  padding: 20px 10px;
  display: block;
  text-decoration: none;
  position: relative;
  line-height: 1;
  transition: all 300ms 0s ease;
  color: #4a3321;
}
.archive .archive_list li a:hover {
  background-color: rgba(112, 70, 46, 0.1);
}
.archive .archive_list li a:after {
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  margin-top: -0.5em;
  font-size: 14px;
  content: ">";
  color: #bbb;
}
.archive .archive_list li:last-child {
  border-bottom: none;
}
.article .article_meta time {
  margin-left: auto;
  font-size: 14px;
}
dl, ol, ul {
  list-style-position: outside;
}
.guide {
  letter-spacing: 0.1em;
  max-width: 1000px;
  padding: 8em 1em;
  margin: 0 auto;
}
.guide p {
  padding-bottom: 0.7em;
}
/* パンくず----------------------- */
.breadcrumb {
  font-size: 1.2rem;
}
.breadcrumb nav {
  width: 100%;
  margin: 0 auto;
}
.breadcrumb nav ol {
  display: flex;
  margin: 0;
  padding: 0 10px;
}
.breadcrumb nav ol li {
  align-items: center;
  display: flex;
  position: relative;
  padding: 0 1em 0 0;
  margin: 0;
  line-height: 1.2em;
}
.breadcrumb nav ol li:before {
  content: "/";
  position: absolute;
  right: 0.25em;
  line-height: 1;
  color: #4a3321;
}
.breadcrumb nav ol li:last-child {
  color: #9e9bd1;
}
.breadcrumb nav ol li:last-child::before {
  content: none;
}
.breadcrumb nav ol li a {
  position: relative;
  display: inline-block;
  padding: 10px;
  margin: 0;
  color: #4a3321;
}
/*------------------- 採用個別ページ -------------------*/
.content .ttl{
  font-size: 3rem;
  width: fit-content;
  border-bottom: solid 2px #201A77;
  padding-bottom: 10px;
  margin: 0 auto;
}
.rec_ttl01{
  font-size: 3rem;
  color: #6b6969;
  text-align: center;
  padding-top: 20px;
}
.single_main_container .content .rec_ttl01 span{
  border-bottom: solid 2px #ff1616;
}
.recruit_single_content00 .recruit_single_inner00{
    max-width: 1078px;
    justify-content: center;
    text-align: center;
    display: flex;
    gap: 20px;
    margin: 40px auto 0;
}
.recruit_txt{
  width: 80%;
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 1078px;
  margin: 20px auto;
}
.recruit_single_content00 .recruit_single_inner00 .item{
    width: 26%;
    max-width: 300px;
    padding: 20px 0 8px;
    border: 3px solid #6F91F0;
    border-radius: 28px;
    margin: 0.5rem;
}
.recruit_single_content00 .recruit_single_inner00 .item p{
  width: fit-content;
  padding-bottom: 10px;
  border-bottom: #6F91F0 solid 2px;
  margin: 0 auto 20px;
}
.recruit_single_content00 .recruit_single_inner00 .ble{
    border: 3px solid #72C156;
}
.recruit_single_content00 .recruit_single_inner00 .ble p{
  border-bottom: 2px solid #72C156;
}
.recruit_single_content01{
  max-width: 1078px;
  padding: 0 15px;
  margin: 0 auto;
}
.recruit_single_inner01{
  background-color: #fff;
  padding: 60px 60px 80px;
}
.recruit_single_inner01 h4{
  text-align: center;
  font-size: 3rem;
}
.recruit_under_txt{
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 8px;
}
@media screen and (max-width: 768px){
  .recruit_single_inner01{
      background-color: #fff;
      padding: 20px 5px 40px;
  }
  .recruit_txt{
    width: 98%;
  }
}
.recruit_single_about{
  font-size: 2rem;
  padding-bottom: 40px;
  background-image: linear-gradient(90deg, #BC1616 15%, #B2B2B2 15%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  p{
      margin-top: 20px;
      margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px){
  .recruit_single_about{
      font-size: 1.6rem;
      padding-bottom: 20px;
  }     
}
.recruit_single_box01{
  margin: 10px auto 0;
}
table.recruit_single_box01{
  border-collapse: collapse;
  border-spacing: 0;
}
.recruit_single_box01 th{
  text-align: start;
  vertical-align: top;
  padding: 20px 40px 20px 8px;
  border-bottom: solid 1px #B2B2B2;
}
@media screen and (max-width: 768px){
  .recruit_single_box01 th{
      padding: 24px 8vw 32px 0;
  }
}
.recruit_single_box01 td{
  max-width: 706px;
  padding: 20px 0;
  border-bottom: solid 1px #B2B2B2;
}
.recruit_single_box01 td iframe{
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 768px){
  .recruit_single_box01 td{
      padding: 24px 0;
  }               
}
.single_main_container{
  padding-bottom: 50px;
}
/*------------------- ここまで 募集要項 -------------------*/
/* 見える化要件------------------- */
.under_ttl{
  margin-bottom: -130px;
}

@media screen and (max-width: 990px){
  .mieruka{
    padding: 228px 0 80px 0;
  }
}
.tbl-r05{
  border-collapse: collapse;
}
.tbl-r05 tbody tr th:first-of-type{
  width: 16%;
}
.tbl-r05 tbody tr th{
  text-align: center;
  border: 1px solid #ccc;
}
.tbl-r05 tbody tr td{
  padding: 16px 8px;
  border: 1px solid #ccc;
}
.tbl-r05 td:first-child {
  background: #fbf5f5;
}
@media screen and (max-width: 990px) {
  .tbl-r05 {
    display: block;
  }
  .tbl-r05 .thead {
    display: none;
  }
  .tbl-r05 tr {
    width: 100%;
  }
  .tbl-r05 tbody td {
    display: block;
    width: 100%;
    border: unset;
  }
  .tbl-r05 td:first-child {
    background: #e9727e;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .tbl-r05 td:before {
    content: attr(data-label);
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 10px;
  }
}

/* 当社の魅力---------------------- */
/* .concept_ttl .ttl_big{
  margin-bottom: -80px;
} */
@media screen and (max-width: 768px){
  .concept_ttl .ttl_big{
    font-size: 6rem;
    margin-bottom: -7px;
  }
}
.ttl_other .concept_txt{
  font-size: 2.5rem;
  font-weight: bold;
  color: #201A77;
  width: 75%;
  padding-top: 50px;
  padding: 50px 20px 0;
  margin-left: auto;
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.ttl_other .concept_txt::after{
  content: url(../images/logo_bg.jpg);
  display: block;
  opacity: 0.2;
  position: absolute;
  top: 0;
  right: 3%;
  z-index: -1;
}
.b_concept{
  flex-direction: column;
  padding: 108px 0 80px 0;
  margin-top: 6px;
}
.concept_box{
  margin-top: -177px;
}
.content_concept img{
  text-align: center;
}
.content_concept p:first-of-type {
  font-size: 1.8rem;
  font-weight: bold;
}
.content_concept p{
  padding: 10px 15px 20px;
}
.content_concept ul{
  padding: 10px 15px 20px;
}
@media screen and (max-width: 768px){
  .concept_box{
    margin-top: -125px;
    padding: 130px 0 80px 0;
  }
  .content_concept p:first-of-type {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .ttl_other .concept_txt{
    width: 100%;
    padding: 32px 10px 0;
  }
}
/* ここまで当社の魅力--------------- */
/*------------------- お問い合わせ -------------------*/
.box_contact{
  flex-direction: column;
  /* align-items:first baseline; */
  margin-top: -287px;
}
.ttl_other .contact_top_txt{
  margin-top: 64px;
  margin-bottom: 20px;
}
.box_contact .tel{
  width: 75%;
  color: #D60033;
  font-size: 4rem;
  margin: auto;
}
.download{
  width: fit-content;
  border: 2px solid #D60033;
  padding: 8px 16px;
  border-radius: 36px;
  margin: 20px 0;
  margin-left: 15%;
}
.contact_box02 form{
  margin-top: 80px;
}
.contact_box02 .download a{
  color: #333;
}
.contact_box02 .download:hover{
  opacity: .5;
}
.contact_box02 input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.contact_box02 input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel,
.contact_box02 textarea.wpcf7-form-control.wpcf7-textarea{
  width: 65%;
  max-width: 900px;
  height: 40px;
  margin-bottom: 30px;
  border: solid 1px #B2B2B2;
}
.contact_box02 textarea.wpcf7-form-control.wpcf7-textarea{
  height: 200px;
  color: #908a8a;
}
.contact_box02 form p a{
  display: block;
  text-align: center;
  cursor: pointer;
  width: fit-content;
  color: #f00;
  padding: 0;
  border-radius: 4px;
  margin: 0 auto;
  font-size: 1.8rem;
  border: 0;
}
.wpcf7 form .wpcf7-checkbox{
  display: block;
  margin: 0 0 20px;
}
.wpcf7 form .submit{
  margin: 20px 0;
}
.wpcf7 form .submit input{
  color: #fff;
  width: 152px;
  font-size: 1.6rem;
  cursor: pointer;
  background: #BC1616;
  margin: 20px 0 0 40px;
  padding: 16px 40px;
  border-radius: 4px;
}
.wpcf7 form .submit input:hover{
  opacity: .5;
  transition: all ease 0.3s;
}
.contact_box02 .wpcf7 form .submit p{
  width: 65%;
  text-align: center;
}
.box_contact h4{
  width: 65%;
  text-align: center;
}
.contact_box02 .privacypolicy_checkbox{
  width: 67%;
}
@media screen and (max-width: 768px){
    .contact_box02 input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
    .contact_box02 input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel,
    .contact_box02 textarea.wpcf7-form-control.wpcf7-textarea{
    width: 95%;
  }
  .download{
    height: 49px;
  }
  .box_contact{
    padding: 270px 10px 50px;
    margin-top: -276px;
    margin-bottom: 0;
  }
  .box_contact .tel{
    font-size: 2.8rem;
  }
  .contact_box02 .wpcf7 form .submit {
    margin: auto;
    width: fit-content;
  }
  .box_contact h4{
    width: 98%;
  }
  .contact_box02 .privacypolicy_checkbox{
    width: 98%;
  }
}
/*------------------- お問い合わせ -------------------*/

/* 応募フォーム ---- */
.entry_box{
  background-color: #fff;
  padding-top: 70px;
}
.form_wrap .content .entry_info{
  width: 70%;
}
.form_wrap .content p{
    margin: 10px auto 0;
}
.entry_content{
  max-width: 960px;
  margin: 50px auto 0;
  padding: 0 15px;
}
@media screen and (max-width: 768px){
  .entry_content{
      margin: 40px auto 0;
  }
  .form_wrap .content p{
    width: 90%;
    font-size: 1.4rem;
  }       
}
.entry_content table{
  width: 100%;
  border-collapse: collapse;
  word-break: break-all;
  margin-bottom: 80px;
}
#recruitrecruit_05 table tbody tr{
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
}
.entry_content table tbody tr th{
  width: 29%;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #B2B2B2;
  padding: 20px 50px 20px 0;
}
.entry_content table tbody tr th .must{
  float: right;
  width: 55px;
  color: #413b3b;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  background: #34AFA08a;
  text-align: center;
}
.entry_content table tbody tr td{
  font-size: 1.3rem;
  text-align: left;
  vertical-align: middle;
  position: relative;
  border-bottom: 1px solid #B2B2B2;
  padding: 28px 0 28px 58px;
}
.entry_content table tbody tr td::before{
  position: absolute;
  left: 0;
  top: 27px;
  width: 1px;
  bottom: 27px;
  background: #B2B2B2;
  content: "";
}
@media screen and (max-width: 768px){
  .entry_content table tbody tr th{
    padding: 20px 10px 20px 0;
  }
  .entry_content table tbody tr td{
    padding: 28px 0 28px 10px;
  }
  .entry_content table{
    margin-bottom: 20px;
  }
}
.entry_content .info01{
  display: flex;
  justify-content: center;
}
/* .entry_content .info01 .info02 input{
  color: #fff;
  width: 152px;
  font-size: 1.6rem;
  cursor: pointer;
  background: #BC1616;
  margin: 68px auto 0;
  padding: 16px 40px;
  border-radius: 4px;
} */
.entry_content .info01 p .wpcf7-form-control{
  color: #fff;
  width: 152px;
  font-size: 1.6rem;
  cursor: pointer;
  background: #BC1616;
  margin: 68px 0 0 40px;
  padding: 16px 40px;
  border-radius: 4px;
}
.entry_content .wpcf7-form-control,
.entry_content .wpcf7-text{
  width: 100%;
  height: 60px;
  color: #413b3b;
  font-size: 1.3rem;
  padding: 5px 10px 5px 23px;
  box-sizing: border-box;
  background: #efefef;
  border: 1px solid #efefef;
  border-radius: 4px;
}
.entry_content .wpcf7-textarea{
  height: 200px;
}
.tel_wrap{
  padding: 40px 0;
}
.tel_wrap p{
  text-align: center;
}
.tel_wrap p a{
  color: #ab1818;
  font-size: 3rem;
}
.privacypolicy_checkbox{
  text-align: center;
}
@media screen and (max-width: 990px){
  .entry_content .info01 p .wpcf7-form-control{
    width: 100%;
    margin: auto;
  }
  .privacypolicy_checkbox{
    width: 99%;
  }
  .wpcf7-list-item {
    margin: 0;
  }
}
/*------------------- ここまで応募フォーム -------------------*/
/* FAQ------------------------- */
.faq_box{
  margin-top: -104px;
  padding: 220px 0px 50px 0px;
}
.faq_table{
    width: 100%;
    max-width: 800px;
    margin: auto;    
}
.faq_table table tr th{
    width: fit-content;
    display: block;
    text-align: left;
    padding: 0 0 0 32px;
    margin-bottom: 8px;
    position: relative;
}
.faq_table table tr th::before{
    content: "Q";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 6px;
    color: #D54E80;
}
.faq_table table tr td{
    width: 100%;
    display: block;
    padding: 0;
    border-bottom: unset;
    margin-bottom: 40px;
}
@media screen and (max-width: 786px) {
    .faq_box{
      padding: 140px 0px 50px 0px;
    }
    .faq_table{
        width: 98%;
    }
    .faq_table table tr th{
      padding: 3px 0 0 22px;
    }
    .faq_table table tr td {
      padding: 4px 0px 12px 0px;
      margin-bottom: 16px;
    }
}
/*------------------- privacypolicy -------------------*/
@media screen and (max-width: 768px){
  .pp_txt{
    width: 95%;
  }
}
.pp_content{
  margin-top: 40px;
}
.privacypolicy_txt{
  max-width: 900px;
  margin: 0 auto;
}
.privacypolic_subttl{
  font-size: 2.4rem;
}
@media screen and (max-width: 890px){
  .privacypolic_subttl{
    font-size: 1.8rem;
  }
  .privacypolicy_txt{
    width: 98%;
    margin: auto;
  }     
}
.privacypolicy_txt section:not(:first-child) .privacypolic_subttl{
  margin-top: 20px;
}
@media screen and (max-width: 768px){
  .pp{
    padding-left: 10px;
  }
}
.pp::before{
  content: none;
}
/*------------------- ここまでprivacypolicy -------------------*/
/* --------------security----------- */
.security_content{
  text-align: center;
}
.seecurity_txt{
  width: 70%;
  max-width: 1200px;
  text-align: center;
  margin: 20px auto 0;
}
.security_content h4{
  font-size: 3rem;
  margin: 20px 0;
}
.security_content ul{
  width: fit-content;
  text-align: left;
  margin: 20px auto 20px;
}
@media screen and (max-width: 768px){
  .seecurity_txt{
    width: 98%;
  }
  .security_content img{
    width: 300px;
  }
  .security_content h4{
    font-size: 2.4rem;
  }
}
/*------------------- 応募・問い合わせ完了ページ-------------------*/
.complete_box{
  text-align: center;
  width: 100%;
  height: 100vh;
  background: url(../images/thanks.jpg) center center / cover no-repeat;
}
.complete_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.complete_ttl{
  width: 100%;
  font-size: 4rem;
  top: 40%;
}
@media screen and (max-width: 890px){
  .complete_ttl{
    font-size: 3rem;
  }       
}
.complete_box .btn{
  margin-top: 10px;
}
.complete_box .copyright{
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
/*------------------- ここまで 応募・問い合わせ完了 -------------------*/
/* 404--------------------------- */
.complete_404 p{
  width: 40%;
  max-width: 550px;
  background-color: #fff;
  padding: 40px 0;
  border: 1px solid #ccc;
  margin: auto;
}
.complete_404 p a{
  color: #ff0808;
  border-bottom: 1px solid #ff0808;
}
@media screen and (max-width: 890px){
  .complete_404 p{
    width: 90%;
  }
}
.sp{
  display: none;
}
.sp_none{
  display: block;
}
@media screen and (max-width: 890px){
  .sp{
    display: block;
  }
  .sp_none{
    display: none;
  }
}
/*------------------- js -------------------*/
.top_fw_slogan p:first-child.js_scroll_fade,
.top_fw_slogan p:last-child.js_scroll_fade{
  opacity: 0;
  transition: 2s;
}
.top_fw_slogan p:first-child.js_scroll_fade.active,
.top_fw_slogan p:last-child.js_scroll_fade.active{
  opacity: 1;
}
.top_fw_slogan p:first-child.js_scroll_fade.active{
  transition-delay: .3s;
}
.top_fw_slogan p:last-child.js_scroll_fade.active{
  transition-delay: 1s;
}
.sub_slogan.js_scroll_fade{
  opacity: 0;
  transform: translateY(10px);
  transition: 1s 1.8s;
}
.sub_slogan.js_scroll_fade.active{
  opacity: 1;
  transform: translateY(0);
}

/*------------------- ここまでjs -------------------*/
