@charset "UTF-8";
/* CSS Document */
/*.main_background::before {
 content:"";
 display:block;
 position:fixed;
 top:0;
 left:0;
 z-index:-2;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/top_02.jpg);
  opacity: .4;
}
@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
*/
.delay-time {
  animation-delay: 2s;
}
.section__category {
  width: 95%;
  margin: 0 auto;
}
.section__category h2 {
  font-size: 8rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;;
    color: #000;
    padding: 3% 5%;
    border-radius: 10px;
    margin: 15% auto 5%;
    text-align: left;
}
.section__about h2 span, .section__workflow h2 span, .section__category h2 span{
  font-size: 1.8rem;
    font-family: 'Noto Sans JP';
    margin-left: 15px;
}
@media (max-width: 820px) {
  .section__category {
    width: 100%;
  }
    .section__category h2{
   font-size: 4.3rem;
   margin-top: 25%;
  }
  .section__category h2 span{
  font-size: 1.5rem;
  }
}

@media (max-width: 520px) {
    .section__category h2 {
        margin-top: 40%;
  }
}
.section__category {
  position: relative;
}
.container {
  display: flex;
  width: 90%;
  margin: 0 auto 200px;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.container02 {
  display: flex;
  width: 90%;
  margin: 0 auto 100px;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.column {
  display: flex;
  flex-direction: column;
  width: 60%;
  align-items: flex-end;
}
.column img {
  width: 100%;
}
.right-column {
  padding: 5% 0;
  ;
}
.box01 {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
  z-index: 1;
}
.circle_text {
    display: flex;
    flex-direction: column-reverse;
}
.circle_text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box02 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 150px 175px;
  animation: fadeInUp02 2s ease-out;
}
.box02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.line02 {
    display: none;
}
.line {
  font-size: 2rem;
  margin-bottom: 10%;
  background: linear-gradient(transparent 95%, rgba(1, 1, 1, 1) 80%);
  width: 100%;
  text-align: left;
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}
/* マーカーが引かれる際に付与するクラス */
.line.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}
.sway__link {
  margin: 0 auto 130px;
  color: #1c6f9f;
  
}
.sway__link a {
  color: #000;
  background: #EFEFEF;
  padding: 10px 70px;
  border: 1px solid #7F7F7F;
  border-radius: 100px;
}
.sway__link a img {
  padding-left: 8px;
  width: 16px;
  transform: translatey(.2rem);
  
}
.sway__link a:hover {
  background: #FFF;
  border:1px solid #000;
  color: #1c6f9f;
  opacity: 1;
}
.h1_column {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .1rem;
  line-height: 4rem;
  text-align: left;
  margin-bottom:30px;
}
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box01,.box02{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
  opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
@media (max-width: 820px) {
  .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .column{
      width: 100%;
    }
.right-column {
  width:80%;
  margin: 0 auto;
  padding: 10% 0;
  }
  .line {
  margin-bottom: 0;
  font-size: 1.7rem;
  }
  .box01{
    margin-bottom:0;
  }
  .box02{
    margin-bottom:50px;
  }
}
@media (max-width: 520px) {
  .line {
    display:none;
  }
.line02 {
  display:block;
  font-size: 1.8rem;
  margin-top: 30px;
  background: linear-gradient(transparent 95%, rgba(1, 1, 1, 1) 80%);
  width: 100%;
  text-align: left;

  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}
/* マーカーが引かれる際に付与するクラス */
.line02.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

  h1 {
  font-size: 2rem;
  line-height: 3rem;
  }
.right-column {
  width:100%;
}
  .box01{
    margin-bottom:0;
    width: 180px;
    height: 180px;
  }
  .box02{
  margin:-41px 0 50px 175px;
}
  .container{
    margin-bottom: 70px;
  }
    .container02{
    margin-bottom: 30px;
  }
}
.section__overview {
  margin-bottom: 100px;
}

.section__overview-table, .section__history-table {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  color: #5A5A5A;
  line-height: 2rem;
  font-size: 1.4rem;
  position: relative;
}
/*
.section__history-table::after {
  position: absolute;
  content:"";
  display:block;
  width: 1px;
  height: calc(100% + 1rem);
  background-color: #7F7F7F;
  top: 0;
  left: 83px;
}*/
.section__overview-table th {
  text-align: right;
  padding-right: 50px;
  border-right: solid 1px #7F7F7F;
  font-weight: 500;
  line-height: 5rem;
}
.section__overview-table td {
  text-align: left;
  padding-left: 50px;

}
.section__history-table th {
  text-align: right;
  padding-right: 50px;
  border-right: solid 1px #7F7F7F;
  font-weight: 500;
  line-height: 6rem;
}
.section__history-table td {
  text-align: left;
  padding-left: 50px;
}
@media (max-width:1200px) {
  .section__philosophy, .section__overview, .section__history {
    padding: 0 20px;
  }
}
@media (max-width: 820px) {
  .section__history-table th, .section__overview-table th {
    padding-right: 20px;
    white-space: nowrap;
    font-size: 1.2rem;
  }
  .section__history-table td, .section__overview-table td {
    padding-left: 20px;
    line-height: 2rem;
    font-size: 1.2rem;
  }
  .section__overview-table, .section__history-table {
    display: flex;
    justify-content: center;
    line-height: 4rem;
  }
}
@media (max-width: 520px) {
  .background-color {
    width: 100%;
  }
  .section__history-table, .section__overview-table {
    width: 90%;
  }
  .section__history-table th, .section__overview-table th {
    padding-left: 0;
  }
}
.food h3 {
  position: relative;
}
.food h3 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0%;
  width: 100%;
  height: 1px;
  background: #FFF;
  transition: all .3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: left top; /*左上基点*/
}
.food h3 span:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}