@charset "UTF-8";
/* Life Sommelier Recruitment LP */

:root {
  --lp-green: #1D644C;
  --lp-green-pale: #72905C;
  --lp-gold: #AFA376;
  --lp-cream: #F5F2E9;
  --lp-beige: #F6F2E9;
  --lp-text: #333;
  --lp-text-sub: #3A2B1B;
  --lp-border: #C8B587;
  --lp-max: 1600px;
}

#Lp-recruitment {
  font-size: 16px;
  line-height: 1.8;
  color: var(--lp-text);
  background: #fff;
}

#Lp-recruitment img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#Lp-recruitment a {
  text-decoration: none;
}

#Lp-recruitment .inner {
  width: 90%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 100px 0;
}

#Lp-recruitment h1,
#Lp-recruitment h2 {
  color: var(--lp-green);
  font-weight: 700;
  line-height: 1.5;
}

#Lp-recruitment h1 {
  font-size: clamp(25px, 3vw, 58px);
  margin: 0 0 24px;
}

#Lp-recruitment h2 {
  font-size: clamp(24px, 3vw, 30px);
  text-align: center;
  margin: 0 0 20px;
}

#Lp-recruitment h3 {
  color: var(--lp-green);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

#Lp-recruitment h4 {
  padding-left: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-green);
  margin: 0 0 10px;
  line-height: 1.6;
  border-left: 2px solid  var(--lp-green);
}

#Lp-recruitment h4 span {
  margin-top: 10px;
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--lp-text-sub);
}
#Lp-recruitment .img-wrap{
  width: 100%;
  text-align: center;
}
#Lp-recruitment .img-wrap img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
#Lp-recruitment p {
  margin: 0;
}

#Lp-recruitment .grid {
  display: grid;
}

#Lp-recruitment .flex {
  display: flex;
  justify-content: space-between;
}

#Lp-recruitment .f18 {
  font-size: 18px;
}

/* Header */
#Lp-recruitment #header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  padding: 12px 0;
}

#Lp-recruitment #header .header_main {
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--lp-max);
  margin: 0 auto;
  gap: 20px;
}

#Lp-recruitment #logo img {
  width: 180px;
  height: auto;
}

#Lp-recruitment #logo .logo_text {
  font-size: 12px;
  color: var(--lp-text-sub);
  white-space: nowrap;
}

#Lp-recruitment .header-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#Lp-recruitment .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--lp-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

#Lp-recruitment .btn:hover {
  opacity: 0.85;
}

#Lp-recruitment .btn i {
  margin-left: 15px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#Lp-recruitment .green-btn {
  background: var(--lp-green);
}

#Lp-recruitment .gold-btn {
  background: var(--lp-gold);
}

/* Hero */
#Lp-recruitment #Hero {
  background: var(--lp-cream) url(../../img/lp-recruitment/img_main_bg.jpg) no-repeat right center / cover;
  height: 700px;
}

#Lp-recruitment #Hero .inner {
  height: 100%;
  padding: 125px 0 60px;
  max-width: var(--lp-max);
  display: flex;
  align-items: flex-end;
}
#Lp-recruitment #Hero .inner .left{
  margin-bottom: 40px;
  overflow: visible;
  /*background: transparent linear-gradient(90deg, #F5F2E9 0%, #F5F2E9 73%, #F5F2E900 96%, #F5F2E900 100%) 0% 0% no-repeat padding-box;*/
}
#Lp-recruitment #Hero .inner .left .bg_color{
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 28px 36px;
  isolation: isolate;
}
#Lp-recruitment #Hero .inner .left .bg_color::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 22px;
  right: 22px;
  bottom: 0;
  left: 0;
  background: rgba(245, 242, 233, 0.95);
  filter: blur(22px);
  pointer-events: none;
}
#Lp-recruitment #Hero .inner .left .bg_color h1,
#Lp-recruitment #Hero .inner .left .bg_color p {
  position: relative;
  z-index: 1;
}
#Lp-recruitment #Hero h1{
  display: inline-block;
}
#Lp-recruitment #Hero h1 + p {
  font-size: 20px;
  color: var(--lp-text-sub);
  max-width: 520px;
}

#Lp-recruitment #Hero .grid {
  grid-template-columns: repeat(4, auto);
  gap: 18px;
  max-width: 725px;
}

#Lp-recruitment .hero-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--lp-border);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
}
#Lp-recruitment .hero-box .img-wrap{
  height: 50px;
}
#Lp-recruitment .hero-box span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}

/* Job */
#Lp-recruitment #Job {
  
}

#Lp-recruitment #Job .inner {
  padding: 80px 0;
}

#Lp-recruitment #Job .grid {
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#Lp-recruitment .job-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  background: var(--lp-cream);
}

#Lp-recruitment .job-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #333;
}

#Lp-recruitment .job-box .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#Lp-recruitment .job-box .img-wrap img{
  height: 85px;
}

#Lp-recruitment .job-box p {
  text-align: left;
}

/* Case */
#Lp-recruitment #Case{
  background: var(--lp-cream);
}
#Lp-recruitment #Case .inner > p {
  text-align: center;
  margin: 20px auto 40px;
}

#Lp-recruitment .case-box {
  max-width: 1240px;
  margin: 0 auto 20px;
  border-radius: 12px;
  padding: 30px 20px;
  margin-bottom: 32px;
  background: #fff;
}

#Lp-recruitment .case-box:last-child {
  margin-bottom: 0;
}

#Lp-recruitment .case-box > .flex {
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 24px;
}

#Lp-recruitment .case-left .salary {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-green);
}

#Lp-recruitment .case-left .salary span {
  font-size: 30px;
  font-weight: 700;
  margin: 0 4px;
}

#Lp-recruitment .case-left .caution {
  font-size: 12px;
  color: var(--lp-text-sub);
  margin-left: 10px;
}

#Lp-recruitment .case-box > .flex > .img-wrap {
  flex-shrink: 0;
  width: 340px;
  max-width: 40%;
}

#Lp-recruitment .case-box > .flex > .img-wrap img {
  width: 100%;
  border-radius: 8px;
}

#Lp-recruitment .case-box > .grid {
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

#Lp-recruitment .day-box {
  border: 3px solid #72905C;
  border-radius: 15px;
  font-size: 12px;
  display: flex;
  flex-flow: column;
}

#Lp-recruitment .day-box .tittle {
  background: rgba(255,255,255,0.25);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 15px 4px 10px;
  margin: 0;
  font-size: 18px;
  border-radius: 13px 13px 0 0;
}

#Lp-recruitment .day-box.holiday {
  background: var(--lp-beige);
  border: 3px solid #F6F2E9;
}

#Lp-recruitment .day-box.holiday .tittle {
  background: rgba(175,163,118,0.25);
  color: #AFA376;  
}
#Lp-recruitment .day-box.holiday .p,
#Lp-recruitment .day-box .hankyu .p {
  text-align: center;
  font-weight: 700;
  color: #AFA376;
  font-size: 18px;
}

#Lp-recruitment .day-box.holiday .supplement,
#Lp-recruitment .day-box .hankyu .supplement {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: #AFA376;
}

#Lp-recruitment .day-box.workday {
  background: var(--lp-green-pale);
}
#Lp-recruitment .day-box.workday p{
  color: #fff;
  justify-content: center;
}
#Lp-recruitment .day-box .day-body{
  height: 100%;
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
}
#Lp-recruitment .day-box .am,
#Lp-recruitment .day-box .pm {
  padding: ;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#Lp-recruitment .day-box .am{
  height: 68px;
}
#Lp-recruitment .day-box .pm {
  height: 78px;
  padding-bottom: ;
  border-top: 1px solid #fff;
}
#Lp-recruitment .day-box .pm.hankyu{
  border-radius: 0 0 13px 13px;
}
#Lp-recruitment .day-box .hankyu .p{
  font-size: 16px;
  line-height: 1.2;
}
#Lp-recruitment .day-box .hankyu .supplement{
  font-size: 13px;
}
#Lp-recruitment .day-box .am:first-of-type,
#Lp-recruitment .day-box.workday > .am:first-child {
  border-top: none;
}

#Lp-recruitment .day-box .time {
  font-weight: 500;
  color: var(--lp-green);
  font-size: 14px;
  margin-bottom: 7px;
  text-align: center;
  display: flex;
  justify-content: center;
  line-height: 1;
}

#Lp-recruitment .day-box .time span {
  margin-right: 5px;
  padding: 0px 5px;
  display: block;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #fff;
}

#Lp-recruitment .day-box .place {
  margin-right: 15px;
  display: block;
  font-size: 12px;
}

#Lp-recruitment .day-box .description {
  display: inline-block;
  background: #fff;
  color: var(--lp-green);
  font-size: 12px;
  padding: 1px 6px;
}
#Lp-recruitment .day-box .hankyu{
  width: 100%;
  background: var(--lp-beige);
  color: #AFA376;
}

/* Voice */
#Lp-recruitment .voice-box {
  max-width: 1200px;
  margin: 25px auto;
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  display: grid;
  grid-template-columns: 120px 1fr 1.56fr;
  gap: 40px;
  align-items: start;
  background: #F6F2E9;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 24px;
}
#Lp-recruitment .voice-box:last-child {
  margin-bottom: 0;
}
#Lp-recruitment .voice-box .img-wrap img {
  max-width: 120px;
}
#Lp-recruitment .voice-box .middle{
}
#Lp-recruitment .voice-box .middle .f18 {
  margin-bottom: 10px;
}
#Lp-recruitment .voice-box section h3 {
  color: var(--lp-text-sub);
  font-size: 20px;
  margin-bottom: 8px;
}

/* Reason */
#Lp-recruitment #Reason {
  background: var(--lp-cream);
}

#Lp-recruitment #Reason p.f18 {
  margin-bottom: 40px;
  text-align: center;
}

#Lp-recruitment #Reason .flex {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

#Lp-recruitment #Reason .flex .img-wrap {
  width: 50%;
}

#Lp-recruitment #Reason .flex p {
  width: calc(50% - 60px);
}

/* Flow */
#Lp-recruitment #Flow .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

#Lp-recruitment .flow-box {
  background: var(--lp-cream);
  padding: 18px;
}

/*#Lp-recruitment .flow-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--lp-green);
  border-right: 2px solid var(--lp-green);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}*/

#Lp-recruitment .flow-box > .flex {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#Lp-recruitment .flow-box .left {
  padding: 5px 13px;
  display: flex;
  align-items: center;
  background: #fff;
}

#Lp-recruitment .flow-box .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--lp-gold);
  line-height: 1;
  margin-right: 10px;
  font-family: 'Roboto';
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

#Lp-recruitment .flow-box .number span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

#Lp-recruitment .flow-box > .flex > h3 {
  font-size: 20px;
}

#Lp-recruitment .flow-box > p {
  font-size: 13px;
  color: var(--lp-text-sub);
  line-height: 1.8;
}

/* FAQ */
#Lp-recruitment #faq_LP {
  background: var(--lp-cream);
}

#Lp-recruitment .faq-box {
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

#Lp-recruitment .faq-box:last-child {
  margin-bottom: 0;
}

#Lp-recruitment .faq-box dt {
  position: relative;
  padding: 30px 48px 30px 56px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
  color: var(--lp-green);
}

#Lp-recruitment .faq-box dt::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  color: var(--lp-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Roboto';
}

#Lp-recruitment .faq-box dt::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--lp-green);
  line-height: 1;
}

#Lp-recruitment .faq-box.is-open dt::after {
  content: "−";
}

/*#Lp-recruitment .faq-box dt:hover {
  background: var(--lp-cream);
}*/

#Lp-recruitment .faq-box dd {
  display: none;
  position: relative;
  margin: 0;
  padding: 0 24px 30px 56px;
  line-height: 1.9;
}

#Lp-recruitment .faq-box dd::before {
  content: "A";
  position: absolute;
  left: 20px;
  top: 0;
  width: 28px;
  height: 28px;
  color: var(--lp-gold);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Roboto';
}

#Lp-recruitment .faq-box.is-open dd {
  display: block;
}

/* CTA */
#Lp-recruitment .CTA {
  padding: 80px 0;
  background: url(../../img/lp-recruitment/bc_cta.jpg) no-repeat center / cover;
  text-align: center;
}

#Lp-recruitment .CTA .inner {
  padding: 30px 15px;
  background: rgba(255,255,255,0.6)
}

#Lp-recruitment .CTA h2 {
  color: var(--lp-green);
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 20px;
}

#Lp-recruitment .CTA p {
  font-size: 18px;
  margin-bottom: 40px;
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}

#Lp-recruitment .CTA .flex {
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#Lp-recruitment .CTA .btn {
  padding: 14px 36px;
  font-size: 16px;
  min-width: 240px;
}
/* footer */
#footer{
  font-size: 14px;
}
#footer .footer_main .nav_area .footer_nav .nav_list ul li{
  line-height: 1;
}
#footer .footer_main .nav_area .footer_mail .btn{
  width: 100%;
  padding: 9px 0 10px;
  color: #c8b587;
  line-height: 1;
  border-radius: 0;
}
/* Responsive */
@media screen and (max-width: 1024px) {
  #Lp-recruitment #Hero{
    background: var(--lp-cream) url(../../img/lp-recruitment/img_main.jpg) no-repeat center center / cover;
  }
  #Lp-recruitment #Hero .inner .left{
    margin-bottom: 0;
  }

  #Lp-recruitment #Job .grid,
  #Lp-recruitment #Flow .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #Lp-recruitment .hero-box span{
    font-size: 16px;
  }
  #Lp-recruitment .flow-box:not(:last-child)::after {
    display: none;
  }

  #Lp-recruitment .voice-box {
    grid-template-columns: 100px 1fr;
  }

  #Lp-recruitment .voice-box section {
    grid-column: 1 / -1;
  }

  #Lp-recruitment .case-box > .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) {
  .sp-only{
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #Lp-recruitment .inner {
    padding: 60px 0;
  }
  #Lp-recruitment #header{
    padding: 0;
  }
  #Lp-recruitment #header .header_main {
    width: 100%;
  }
  #Lp-recruitment #header .header_main #logo{
    padding: 10px 10px 10px 25px;
  }
  #Lp-recruitment .header-btn{
    gap: 0;
  }
  #Lp-recruitment .header-btn .btn {
    width: 90px;
    height: 90px;
    display: flex;
    border-radius: 0;
    text-align: center;
  }

  #Lp-recruitment #Hero {
    height: auto;
    background-position: center top;
    background-size: contain;
  }

  #Lp-recruitment #Hero .inner {
    width: 100%;
    padding-top: 320px;
    justify-content: center;
  }
  #Lp-recruitment #Hero .inner .left{
    width: 100%;
  }
  #Lp-recruitment #Hero h1 + p {
    max-width: 100%;
  }
  #Lp-recruitment #Hero .grid{
    width: 90%;
    margin: 0 auto;
    grid-template-columns: repeat(2, auto);
  }
  #Lp-recruitment #Hero .inner .left .bg_color{
    padding: 20px 5% 0;
  }
  #Lp-recruitment #Hero .inner .left .bg_color,
  #Lp-recruitment #Hero h1{
    display: block;
  }
  #Lp-recruitment #Hero .inner .left .bg_color::before{
    top: 0;
    right: 0;
    filter: blur(17px);
  }
  #Lp-recruitment .hero-box{
    gap: 7px;
    padding: 20px 10px;
  }
  #Lp-recruitment #Job .grid,
  #Lp-recruitment #Flow .grid {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  #Lp-recruitment .case-box > .flex {
    flex-direction: column;
    gap: 10px;
  }

  #Lp-recruitment .case-box > .flex > .img-wrap {
    width: 100%;
    max-width: 100%;
  }

  #Lp-recruitment .case-box > .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #Lp-recruitment .voice-box {
    grid-template-columns: 1fr;
  }

  #Lp-recruitment .voice-box .img-wrap img {
    margin: 0 auto;
  }

  #Lp-recruitment #Reason .flex {
    flex-direction: column;
  }

  #Lp-recruitment #Reason .flex .img-wrap,
  #Lp-recruitment #Reason .flex p{
    flex: none;
    width: 100%;
  }

  #Lp-recruitment .CTA .flex {
    flex-direction: column;
    align-items: center;
  }

  #Lp-recruitment .CTA .btn {
    width: 100%;
    max-width: 320px;
  }
  #Lp-recruitment #footer{
    padding-bottom: 80px;
  }
  #Lp-recruitment #SP_nav{
    display: none;
  }
  #Lp-recruitment #SP_page_top{
    bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .pc-only{
    display: none;
  }
  #header .header_main #logo .logo_text{
    display: none;
  }
  #Lp-recruitment #Hero .inner{
    padding-top: 180px;
  }
  #Lp-recruitment .case-left .caution{
    display: block;
  }
  #Lp-recruitment .case-box > .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  #Lp-recruitment .workday .day-body{
    flex-flow: wrap;
  }
  #Lp-recruitment .workday .am,
  #Lp-recruitment .workday .pm{
    width: 50%;
  }
  #Lp-recruitment .workday .pm{
    border-top: 0;
    position: relative;
  }
  #Lp-recruitment .workday .pm:before{
    content: '';
    width: 100%;
    height: 60%;
    border-left: 1px solid #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #Lp-recruitment .day-box .pm.hankyu{
    border-radius: 0 0 13px 0;
  }
  #Lp-recruitment .day-box .am.hankyu{
    height: 78px;
    border-radius: 0 0 0 13px;
  }
  #Lp-recruitment .day-box .tittle{
    padding: 0 4px;
  }
}