@charset "UTF-8";

* {
  box-sizing: border-box;
}

body {
  color: #4b4b4b;
  font-family: 'Outfit', 'Zen Kaku Gothic New', "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS Pゴシック", sans-serif !important;
}


:root {
  --c_base1: #959595;
  /* 基本カラー1（濃い色） */
  --c_base2: #f2f2f2;
  /* 基本カラー2（薄い色） */
  --c_base3: #e4e4e4;
  /* 基本カラー3（中間色） */
  --c_base4: #ffa758;
  /* 基本カラー4（薄い色） */
  --c_key1: #227DAD;
  /* キーカラー1（アクセントカラー） */
  --c_key2: #ff7e3e;
  /* キーカラー2（アクセントカラー）） */
}





/*==================================
header
=====================================*/

.sp_header {
  display: none;
}

.pc_header {
  display: block;
  transition: top 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(3.4285714286vw + 55.1428571429px, 110px);
  opacity: 1;
  transition: opacity 0.5s ease, top 0.5s ease;
  z-index: 1000;
}

.pc_header.hidden,
.sp_header.hidden {
  opacity: 0;
  top: -110px;
}




.pc_header a {
  text-decoration: none;
  color: #4f4f4f;
}

.pc_nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.pc_header .header_logo {
  display: block;
  max-width: 20%;
  margin-left: 2%;
}

.pc_header .header_logo img {
  max-width: 100%;
}

.pc_nav .nav_list {
  height: 70px;
  display: flex;
  align-items: center;
  background-color: #ffffffc2;
  padding: 0 20px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin: 0 2%;
}

.nav_list li {
  height: 100%;
}


.pc_nav .nav_list a {
  display: flex;
  padding: 16px 1.3rem;
  height: 100%;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pc_nav .nav_list a:hover {
  color: #ED7A00;
}

.header_contact {
  background-color: #fad961;
  background-image: linear-gradient(45deg, #fdb454 0%, #f76c1c 100%);
  margin-left: 14px;
  height: 44px !important;
  border-radius: 30px;
}

.header_contact a {
  color: #fff;
}

.header_contact a:hover {
  color: #fff !important;
}

.header_contact:hover {
  opacity: 0.8;
}


/* 子メニュー初期非表示 */
.pc_nav .sub_menu {
  position: absolute;
  top:  calc(100% + 12px);
  left: 50%;
  opacity:0;
  visibility: hidden;
  transform: translate(-50%, 22px) scale(0.96);
  transition:
    opacity .60s ease,
    transform .60s cubic-bezier(.16, 1, .3, 1),
    filter .5s ease,
    visibility .60s;
  z-index: 999;
  background-color: #fff2ddc2;
  padding: 20px 3%;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 600px;
}

.pc_nav .sub_menu li a{
  color: #4f4f4f;
}

/* ホバーで表示 */
.pc_nav .nav_list > li.has_sub {
  position: relative;
}

.pc_nav .has_sub:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
  filter: blur(0);
}

/* 子メニューリンク */
.pc_nav .sub_menu li a {
  display: block;
}

.pc_nav .sub_menu li a:hover {
color: var(--c_key2);
}


/*==================================
breadcrumb
=====================================*/
.breadcrumb {
  width: 100%;
  display: block;
}

.breadcrumb_list {
  padding: 10px 4%;
  background-color: #e9e9e9;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
}


.breadcrumb_list li {
  letter-spacing: 1.2px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;

}

.breadcrumb_list li::after {
  content: ">";
  padding: 0 10px;
}

.breadcrumb_list li:last-of-type {
  color: #333;
}

.breadcrumb_list li:last-of-type::after {
  content: none;
}





/*==================================
footer
=====================================*/

footer {
  background: #ffefdf;
}

footer a {
  text-decoration: none;
  color: #4f4f4f;
}

footer a:hover {
  opacity: 0.7;
}

footer .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 0 80px 4%;

}

.footer_logo.pc_none {
  display: none;
}

.footer_contact {
  margin-right: 10%;
}

.footer_contact>.footer_logo {
  display: block;
  margin-bottom: 30px;
}

.contact_list li {
  margin-bottom: 40px;
}

.contact_area {
  background-color: #ED7A00;
  color: #fff;
  font-weight: 500;
  padding: 4px 4px 6px;
  text-align: center;
  border-radius: 3px;
  margin-bottom: 10px;
}

.contact_list li a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer_contact .small {
  font-size: 14px;
}

.footer_menu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex: 1;
}


.footer_gourmetcaree,
.footer_flabo,
.footer_company,
.footer_recruit {
  margin: 0 6% 30px 0;
}



.footer_menu h3 {
  font-weight: 600;
  color: #ED7A00;
  font-size: 15px;
  margin-bottom: 16px;
}

.menu_dtl li {
  margin-bottom: 12px;
}

.menu_dtl li>a,
.fotter_bottom ul a {
  font-weight: 500;
  color: #4b4b4b;
}

.fotter_bottom {
  background-color: #ffcfa5;
  padding: 20px 4%;
}

.fotter_bottom ul {
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fotter_bottom ul li {
  margin: 0 1%;
}



.copyright {
  font-size: 13px;
  text-align: center;
}


@media screen and (max-width: 1280px) {

  /*==================================
header
=====================================*/
  .pc_nav .nav_list a {
    font-size: 15px;
    padding: 0 12px;
  }

  .pc_header .header_logo {
    max-width: 18%;
  }

  .header_contact a {
    padding: 0 16px !important;
  }

}



@media screen and (max-width: 960px) {
  /*==================================
共通
=====================================*/





  /*==================================
header
=====================================*/
  .pc_header {
    display: none !important;
  }

  .sp_header {
    display: block !important;
    width: 100%;
    height: min(3.4285714286vw + 55.1428571429px, 66px);
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    left: 0;
    transition: opacity 0.5s ease, top 0.5s ease;
  }

  .sp_header .inner {
    position: relative;
    padding: 10px 6%;
    height: 100%;
    width: 96%;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 50px;
    background-color: #ffffffd7;
  }

  .sp_header .header_logo {
    width: 170px;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);

  }

  .sp_header .header_logo a {
    height: 100%;
  }

  .sp_header .header_logo img {
    max-width: 100%;
  }

  .hamburger {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 30px;
    height: 60px;
    cursor: pointer;
    z-index: 300;
    transform: translateY(-50%);
  }

  /* 
  .hamburger::after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 80px;
    height: 60px;
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 1px 1px 4px #d5d4d4;
  } */

  .hamburger__line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ff8c2a;
    transition: all .6s;
  }

  .hamburger__line--1 {
    top: 20px;
  }

  .hamburger__line--2 {
    top: 30px;
  }

  .hamburger__line--3 {
    top: 40px;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #ff8c2a;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* sp-nav*/

  .global-nav {
    position: fixed;
    right: -65vw;
    top: 0;
    width: 65vw;
    height: 100vh;
    padding-top: 70px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }

  .nav-open .global-nav {
    right: 0;
  }

  .nav-open .black-bg {
    opacity: .85;
    visibility: visible;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }

  .sp_nav_list {
    background-color: #fff;
    border-bottom: 1px solid #e7e5e2;
  }

  .sp_nav_list>a {
    color: #ff8c2a;
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;

  }

  .sp_nav_list>a>img {
    margin-right: 5px;
  }

  .sp_nav_list a {
    text-decoration: none;
    height: 100%;
    padding: 15px;
    font-weight: 500;
  }

  .sp_nav_nest {
    display: none;
  }

  .sp_nav_nest li {
    border-top: 1px solid #e7e5e2;
    background-color: #f3f3f3;
    padding-left: 10px;
  }

  .sp_nav_nest a {
    color: #5e5e5e;
    display: flex;
    justify-content: space-between;
    align-items: center;

  }









  /*==================================
footer
=====================================*/

  footer .inner {
    padding: 40px 4% 80px 4%;
  }

  .footer_logo img {
    display: block;
    width: 200px;
  }

  .menu_dtl li>a,
  .fotter_bottom ul a {
    font-size: 14px;
  }

  .contact_area {
    font-size: 14px;
  }

  .contact_list li a {
    font-size: 16px;
  }

  .footer_gourmetcaree,
  .footer_flabo,
  .footer_company,
  .footer_recruit {
    margin: 0 4% 30px 0;
    width: 46%;
  }

}

@media screen and (max-width: 768px) {

  /*==================================
footer
=====================================*/
  footer .inner {
    display: block;

  }

  .footer_contact {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .contact_area {
    font-size: 12px;
  }

  .contact_list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .contact_list li {
    width: 48%;
    margin: 0 1%;
  }

  .footer_menu h3 {
    font-size: 13px;
  }

  .menu_dtl li>a,
  .fotter_bottom ul a {
    font-size: 13px;
    font-weight: 500;
  }

  .fotter_bottom ul li {
    border-right: 1px solid #4b4b4b;
    margin: 0;
  }

  .fotter_bottom ul a {
    padding: 0 10px;
    display: block;
  }

  .fotter_bottom ul li:last-child {
    border-right: unset;
  }

}



@media screen and (max-width:481px) {

  /*==================================
header
=====================================*/
  .sp_header {
    height: 60px;
  }

  .sp_header .inner {
    width: 95%;
  }

  .sp_header .header_logo {
    width: 130px;
  }

  .hamburger__line--1 {
    top: 18px;
  }

  .hamburger__line--2 {

    top: 28px;
  }

  .hamburger__line--3 {
    top: 38px;
  }

  .sp_header .header_logo {
    left: 6%;
  }

  .hamburger {
    right: 6%;
  }


  /*==================================
breadcrumb
=====================================*/
  .breadcrumb_list li {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
  }

  .breadcrumb_list li::after {
    padding: 0 4px;
  }

  /*==================================
footer
=====================================*/
  footer .inner {
    padding: 40px 4% 10px 4%;
  }

  .footer_logo.pc_none {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer_logo.pc_none img {
    margin: 0 auto;
    width: 200px;
  }

  .footer_contact {
    display: none;
  }



  .contact_list li {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer_gourmetcaree,
  .footer_flabo,
  .footer_company,
  .footer_recruit {
    width: 100%;
  }

  .footer_menu h3 {
    font-size: 15px;
  }

  .menu_dtl li>a,
  .fotter_bottom ul a {
    font-size: 14px;
    font-weight: 500;
  }

  .fotter_bottom ul {
    flex-wrap: wrap;
    line-height: 1.3;
  }


}