@charset "UTF-8";
/** -----------------------------------
	トップページ top
----------------------------------- **/
@media screen and (min-width:769px){
/*------ active page nav ---------*/
#page-top .gnav-top a,#page-top .snav-top a{
  color: var(--sub-text-color);
  border-bottom: 2px dotted #612e01;
}
/*------ main ---------*/
main{
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto 200px;
  padding: 100px auto 0;
}
.main-inner{
  margin: 0 auto;
}
/*------------- top title ---------------*/
.sec-title {
  width: 100%;
  text-align: center;
  padding: 50px 0;
  position: relative;
  z-index: 0;
}
.sec-title i {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--title-icon-color);
}
.sec-title h2 {
  width: 100%;
  font-size: 2.3rem;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  color: #333;
}
/* back text */
.sec-title p {
  width: 100%;
  color: var(--accent-color);
  text-align: center;
  font-size: 8rem;
  opacity: 0.5;
  transform: rotate(-5deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}
/*------------- main -------------------*/
main section{
  width: 100%;
  padding: 0;
  overflow: hidden;
}
/* -------------- News Section -------------- */
.top-section{
  width: 100%;
  position: relative;
}
.news-back{
  background: #f9f4ec;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  z-index: -1;
}
.news-inner{
  width: 100%;
  padding: 50px 100px;
}
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.news-head h3.top-title{
  font-size: 2.3rem;
}
.news-head h3.top-title span{
  font-size: 3rem;
  padding-left: 30px;
  color: var(--accent-color);
}
/*--- slider nav---*/
.news-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.nav-btn {
  width: 45px;
  height: 45px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
}
.prev::before { transform: translate(-30%, -50%) rotate(-135deg); }
.next::before { transform: translate(-70%, -50%) rotate(45deg); }
/* slider nav hover */
.nav-btn:hover:not(:disabled) {
  background: var(--accent-color);
}
.nav-btn:hover:not(:disabled)::before {
  border-color: #fff;
}
/* slider nav no-click */
.nav-btn:disabled {
  border-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}
.nav-btn:disabled::before {
  border-color: #ccc;
}
/*--- slider action---*/
.news-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.news-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-slider-track {
  padding-right: 0 !important;
}
/*--- news main contant---*/
.news-list {
  width: 100%;
  margin: 20px 0 30px;
}
.news-slider-track {
  display: flex;
}
.top-news-item {
  flex: 0 0 calc(40% - 30px);
  transition: transform 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.tn-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.tn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.top-news-item:hover .tn-img img {
  transform: scale(1.1);
}
.tn-body {
  padding: 15px;
}
.tn-body time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 5px;
}
.tn-body h3 {
  font-size: 1.2rem;
  color: var(--main-text-color);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* button */
.top-btn-wrap {
  text-align: right;
}
.top-btn {
  display: inline-block;
  padding: 15px 50px;
  background: var(--footer-bg-color);
  border:3px solid var(--footer-bg-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  transition: 0.3s;
}
.top-btn:hover {
  background: var(--main-bg-color);
  color: var(--accent-color);
  border:3px solid var(--accent-color);
}
/*---- Concept section ----*/
.even-section {
  width: 100%;
  margin: 100px auto;
  overflow: hidden;
}
.even-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
/* text area */
.teven-note {
  width: 50%;
  padding: 50px 50px 50px calc(50vw - 600px);
  box-sizing: border-box;
}
.teven-note h3.top-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--main-text-color);
}
.teven-note .square-peg-regular {
  display: block;
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 50px;
}
.teven-note p{
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.teven-note p span{
  display: block;
  margin-bottom: 10px;
}
.teven-note .top-btn-wrap{
  margin: 100px 0 0;
} 
/* img area */
.evenimg-wrap {
  width: 50%;
  position: relative;
}
.evenimg-wrap img {
  width: 100%;
  aspect-ratio: 1.414 / 1;
  object-fit: cover;
  display: block;
  z-index: 0;
  position: relative;
}
/*---- Cookchill section ----*/
.tile-section {
  width: 100%;
  margin: 0 auto;
  background: #f6f5f4;
  padding: 80px 0;
  overflow: hidden;
}
.tile-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.tile-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 2%;
}
.tile {
  width: 49%;
  text-decoration: none;
}
.tile-container {
  width: 100%;
  position: relative;
}

/* img srea */
.tileimg-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tileimg-wrap img {
  width: 100%;
  aspect-ratio: 1.618 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.tile:hover .tileimg-wrap img {
  transform: scale(1.1);
}
/* --- inbutton --- */
.inbutton {
  position: absolute;
  width: 60%;
  height: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #ffffff;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.inbutton-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #ffffff;
  width: 100%;
}
.inbutton-inner span {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.inbutton-inner i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
/* --- hover action --- */
.tile:hover .tileimg-wrap img {
  transform: scale(1.1);
}
.tile:hover .inbutton-inner i {
  transform: translateX(8px);
}
.inbutton p {
  color: var(--accent-color);
  font-size: 4.5rem;
  position: absolute;
  top: -0.3em;
  left: -1em; 
  transform: rotate(-5deg);
  white-space: nowrap;
  z-index: 15;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  pointer-events: none;
}
.tile-container h3 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding: 20px 0 0;
  color: var(--main-text-color);
}
/* --- Company section --- */
.even-inner.reverse {
  flex-direction: row-reverse;
}
.even-inner.reverse .teven-note {
  padding: 50px calc(50vw - 600px) 50px 100px; 
}
.even-inner.reverse .teven-note .square-peg-regular {
  display: inline-block;
  margin-left: 30px;
}

}  /*---- @media end min-width:769px----*/

/*----------------@media screen-------------------*/
 /* -------------------------------
 　　　769以上　-　1332以下
 ------------------------------- */
  @media screen and (min-width: 769px) and (max-width: 1332px){
    /*---- Concept section ----*/
    .teven-note h3.top-title {font-size: 2rem;}
    .teven-note .square-peg-regular {
      font-size: 2.5rem;
      margin-bottom: 40px;
    }
    .teven-note p{
      font-size: 1.5rem;
      font-weight: bold;
      line-height: 1.5;
    }
    .teven-note .top-btn-wrap{margin: 80px 0 0;} 
    /*---- Cookchill section ----*/
    .tile-section {padding: 80px 40px;}
  }
 /* -------------------------------
 　　　769以上　-　1280以下
 ------------------------------- */
  @media screen and (min-width: 769px) and (max-width: 1280px) {
    .teven-note h3.top-title {
      font-size: 1.8rem;
    }
    .teven-note .square-peg-regular {
      font-size: 2.3rem;
      margin-bottom: 40px;
    }
    .teven-note {
      padding-left: 50px;
    }
    .even-inner.reverse .teven-note {
      padding-right: 40px;
      padding-left: 50px;
    }
    .inbutton p {
      font-size: 3rem;
      top: -0.3em;
      left: -1em; 
    } 
  }
 /* -------------------------------
 　　　769以上　-　1199以下
 ------------------------------- */
  @media screen and (min-width: 769px) and (max-width: 1199px){
    .sec-title i {font-size: 2.8rem;}
    .sec-title h2 {font-size: 2rem;}
    .sec-title p {font-size: 6rem;}
  }
 /* ----------------------------------------
 　　　タブレットサイズ　769以上　-　1024以下
 ---------------------------------------- */
  @media screen and (max-width:1023px){
    #page-top .nav-top a {
      color: var(--accent-color);
      font-weight: bold;
    }
    #page-top .nav-top a i{
      color: var(--accent-color);
      font-weight: bold;
    }
    .teven-note h3.top-title {
      font-size: 1.5rem;
    }
    .teven-note .square-peg-regular {
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .sec-title i {font-size: 2.5rem;}
    .sec-title h2 {font-size: 2rem;}
    .sec-title p {font-size: 5rem;}
    .inbutton p {
      font-size: 2.5rem;
      top: -0.5em;
      left: -1em; 
    }
  } /* @media screen and (max-width:1023px) */
/** -------------------------------------------------
　　　モバイル用ベースレイアウト
------------------------------------------------- **/
/* ------------------------------
　　　スマホ用　基本設定
------------------------------ */
@media screen and (max-width:768px){
  .sub-center-col {
    background-image: url(img/sub-eyecatch.jpg) ;
  }
  /*------- active page nav ------*/
  #page-top .nav-top a {
      color: var(--accent-color);
      font-weight: bold;
  }
  #page-top .nav-top a i{
      color: var(--accent-color);
      font-weight: bold;
  }
  /*------ main ---------*/
  main{
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  main section{
    overflow: hidden;
  }
  .main-inner{
    margin: 0 auto;
  }
  /*------------- pagetop title ---------------*/
  .sec-title {
    width: 100%;
    text-align: center;
    padding: 50px 0 30px;
    position: relative;
    z-index: 0;
  }
  .sec-title i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: var(--title-icon-color);
  }
  .sec-title h2 {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    color: #333;
  }
  /* back text */
   .sec-title p {
    width: 100%;
    color: var(--accent-color);
    text-align: center;
    font-size: 5rem;
    opacity: 0.5;
    transform: rotate(-5deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    z-index: 1;
    pointer-events: none;
  }
  /*------ intro ---------*/
  .intro{
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto 20px;
    padding: 0;
  }
  .intro .sec-title {
    padding: 30px 0 20px;
  }
  .intro .sec-title i {
    font-size: 2rem;
  }
  .intro .sec-title h2 {
    font-size: 1.4rem;
  }
  /* back text */
  .intro .sec-title p {
    width: 100%;
    color: var(--accent-color);
    text-align: center;
    font-size: 4rem;
    opacity: 0.5;
    transform: rotate(-5deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    z-index: 1;
    pointer-events: none;
  }
  /* -------------- News Section -------------- */
  .top-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    padding: 0 15px;
  }
  .news-back {
    background: #f9f4ec;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .news-inner {
    width: 100%;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .news-head h3.top-title {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    margin: 0;
    display: flex;
    align-items: baseline;
  }
  .news-head h3.top-title span {
    font-size: clamp(2rem, 6vw, 3rem);
    padding-left: 15px;
    color: var(--accent-color);
  }
  /* --- news slider button --- */
  .news-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }
  .nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    background: #fff;
    position: relative;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s;
    padding: 0;
  }
  .nav-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
  }
  .prev::before { transform: translate(-30%, -50%) rotate(-135deg); }
  .next::before { transform: translate(-70%, -50%) rotate(45deg); }
  .nav-btn:disabled {
    border-color: #ccc;
    opacity: 0.5;
    cursor: not-allowed;
  }
  .nav-btn:disabled::before { border-color: #ccc;}
  /* --- news slider --- */
  .news-list {
    width: 100%;
    margin: 20px 0 30px;
    overflow: visible;
  }
  .news-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .top-news-item {
    flex: 0 0 80%;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
  }
  .tn-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  .tn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }
  .tn-body {padding: 15px 0;}
  .tn-body time {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px;
  }
  .tn-body h3 {
    font-size: 1.1rem;
    color: var(--main-text-color) !important;
    text-decoration: none !important;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .top-btn-wrap {text-align: center;}
  .top-btn {
    display: inline-block;
    padding: 15px 50px;
    background: var(--footer-bg-color);
    border: 3px solid var(--footer-bg-color);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }
  /*---- Concept section ----*/
  .even-section{
    width: 100%;
    margin: 0 auto;
    padding: 30px 15px 0;
  }
  .even-inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .teven-note{
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .teven-note h3.top-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--main-text-color);
  }
  .teven-note .square-peg-regular {
    display: block;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
  }
  .teven-note p{
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .teven-note p span{
    display: block;
    margin-bottom: 0px;
  }
  .teven-note .top-btn-wrap{
    margin: 50px 0 50px;
  } 
  /* img area */
  .evenimg-wrap {
    width: 100%;
    position: relative;
  }
  .evenimg-wrap img {
    width: 100%;
    aspect-ratio: 1.414 / 1;
    object-fit: cover;
    display: block;
    z-index: 0;
    position: relative;
  }
  /*---- Concept section (給食業務委託) ----*/
  .tile-section {
    width: 100%;
    margin: 0 auto;
    background: #f6f5f4;
    padding: 0px 15px 50px;
    margin: 80px 0 50px;
    overflow: hidden
  }
  .tile-inner {
    width: 100%;
    margin: 0 auto;
  }
  .tile-section .sec-title h2{
    font-size: 1.4rem;
  }
  .tile-section .sec-title i{
    font-size: 2rem;
  }
  /* back text */
  .tile-section .sec-title p {
    font-size: 4rem;
  }
  .tile-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 2%;
  }
  .tile {
    width: 100%;
    text-decoration: none; 
  }
  @media screen and (min-width:500px) {
    .tile {
      width: 49%;
      text-decoration: none; 
    }
  }
  .tile-container {
    width: 100%;
    position: relative;
  }
  .tileimg-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .tileimg-wrap img {
    width: 100%;
    aspect-ratio: 1.618 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .inbutton {
    position: absolute;
    width: 70%;
    height: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #ffffff;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }
  .inbutton-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ffffff;
    width: 100%;
  }
  .inbutton-inner span {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  }
  .inbutton-inner i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
  }
  .inbutton p {
    color: var(--accent-color);
    font-size: 2.5rem;
    position: absolute;
    top: -0.3em;
    left: -1em; 
    transform: rotate(-5deg);
    white-space: nowrap;
    z-index: 15;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    pointer-events: none;
  }
  .tile-container h3 {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    padding: 20px 0 0;
    color: var(--main-text-color);
  }
  /* --- Company section --- */
  #top-company{
    margin-bottom: 100px;
  }
  .even-inner.reverse .teven-note {
    padding: 0 15px;
  }

} /* @media screen and (max-width:768px) */
