@charset "utf-8";

/********************
reset
********************/
html{
  overflow-y: visible;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
button{
  appearance: none;
  cursor: pointer;
  outline: none;
  color: inherit;
  background: none;
  font: inherit;
  border: none;
  padding: 0;
}

/********************
common
********************/
.pcOn{
  display: block;
}
.spOn{
  display: none;
}
.inner{
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto;
}

@media screen and (max-width: 640px){
  body{
    background: none;
  }

  .pcOn{
    display: none;
  }
  .spOn{
    display: block;
  }
  .inner{
    padding: 0 36px;
  }
}

/*** breadcrumb ***/
.breadcrumb{
  display: flex;
  gap: 28px;
  max-width: 1000px;
  padding: 0 10px;
  margin: 26px auto 0;
}
.breadcrumb li{
  position: relative;
}
.breadcrumb li:not(:first-child)::before{
  content: '›';
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
}
.breadcrumb .name{
  font-size: 11px;
}

@media screen and (max-width: 640px){
  .breadcrumb{
    padding: 0 36px;
    margin: 30px auto 0;
  }
  .breadcrumb li:not(:first-child)::before{
    left: -18px;
  }
}

/*** profile-nav ***/
.profile-nav.spOn{
  display: none;
}
.profile-nav{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1000px;
  padding: 0 10px;
  margin: 60px auto 0;
}
.profile-nav__item{
  width: 100%;
}
.profile-nav__item a{
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid #CDCDCD;
  display: block;
  padding: 24px 10px;
  transition: all .2s;
}
.profile-nav__item.active a{
  background: #EEEDF2;
}
@media (hover: hover) {
  .profile-nav__item a:hover {
    background: #EEEDF2;
    text-decoration: none;
  }
}
.profile-nav__item a::before{
  content: '';
  background: url(../img/profile/profile_ico_profile-nav.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 640px){
  .profile-nav.pcOn{
    display: none;
  }
  .profile-nav.spOn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 36px;
    margin: 44px auto 0;
  }
  .profile-nav__item a{
    font-size: 12px;
    line-height: 1.33;
    padding: 28px 10px;
  }
  .profile-nav__item.two-lines a{
    padding: 20px 10px;
  }
  .profile-nav__item a::before{
    right: 10px;
    transform: rotate(-90deg) translate(50%, 0%);
  }
}
@media screen and (max-width: 374px){
  .profile-nav.spOn{
    gap: 8px;
    padding: 0 20px;
  }
  .profile-nav__item a::before{
    right: 6px;
    width: 20px;
    height: 20px;
  }
}

/*** profile-tit ***/
.profile-tit{
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.1em;
  max-width: 1000px;
  padding: 0 10px;
  margin: 104px auto 0;
}
.profile-tit::before{
  content: '';
  position: absolute;
  top: -28px;
  left: 10px;
  height: 12px;
}
.profile-tit--greeting::before{
  background: url(../img/profile/profile_ico_en-tit-greeting.svg) no-repeat;
  background-size: contain;
  width: 108px;
}
.profile-tit--vision::before{
  background: url(../img/profile/profile_ico_en-tit-vision.svg) no-repeat;
  background-size: contain;
  width: 75px;
}
.profile-tit--company::before{
  background: url(../img/profile/profile_ico_en-tit-company.svg) no-repeat;
  background-size: contain;
  width: 106px;
}
.profile-tit--food-safety::before{
  background: url(../img/profile/profile_ico_en-tit-food-safety.svg) no-repeat;
  background-size: contain;
  width: 138px;
}

@media screen and (max-width: 640px){
  .profile-tit{
    font-size: 25px;
    line-height: 2.4;
    padding: 0 36px;
    margin: 56px auto 0;
  }
  .profile-tit::before{
    top: -16px;
    left: 36px;
  }
}

/*** bottom-nav ***/
.bottom-nav{
  background: #F0E3F4B3;
  border-radius: 10px;
  max-width: 1000px;
  margin: 60px auto 0;
}
.bottom-nav .inner{
  padding: 26px 140px;
}
.bottom-nav__tit{
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}
.bottom-nav__list{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.bottom-nav__item a{
  position: relative;
  color: #561560;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  border-radius: 40px;
  display: block;
  transition: all .2s;
}
.bottom-nav__item.chara04 a{
  padding: 18px 40px;
}
.bottom-nav__item.chara08 a{
  padding: 18px 45px;
}
.bottom-nav__item.chara10 a{
  padding: 18px 10px;
}
.bottom-nav__item.active a{
  color: #fff;
  background: #561560;
}
@media (hover: hover) {
  .bottom-nav__item a:hover {
    color: #fff;
    background: #561560;
    text-decoration: none;
  }
}

@media screen and (max-width: 1024px){
  .bottom-nav .inner{
    padding: 26px 120px;
  }
}
@media screen and (max-width: 640px){
  .bottom-nav{
    margin: 30px auto 0;
  }
  .bottom-nav .inner{
    padding: 18px 56px 32px;
  }
  .bottom-nav__list{
    flex-wrap: wrap;
  }
  .bottom-nav__item{
    width: 100%;
  }
  .bottom-nav__item.chara04 a,
  .bottom-nav__item.chara08 a,
  .bottom-nav__item.chara10 a{
    padding: 18px 0;
  }
}

/*** banner-area ***/
.banner-area{
  background: #F7F7F7;
  padding: 64px 0;
  margin-top: 60px;
}
.banner-area__list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.banner-area__item{
  transition: all .2s;
}
@media (hover: hover) {
  .banner-area__item:hover{
    opacity: .7;
  }
}

@media screen and (max-width: 640px){
  .banner-area{
    background: #fff;
    padding: 30px 0 36px;
    margin-top: 0;
  }
  .banner-area__list{
    flex-wrap: wrap;
    gap: 20px;
  }
  .banner-area__item{
    max-width: 320px;
    width: 100%;
  }
}

/*** footer_area ***/
#footer_area{
  margin-top: 0;
}

/********************
greeting
********************/
.greeting{
  margin-top: 60px;
}

.greeting__message{
  position: relative;
  background: #F6F5F8;
  border-radius: 10px;
  padding: 40px 70px;
}
.greeting__message__tit{
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.75;
}
.greeting__message__txt{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2;
  margin-top: 20px;
}
.greeting__message__president-area{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 25px;
  margin: 20px 62px 0 0;
}
.greeting__message__president-title{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.86;
}
.greeting__message__president-name{
  font-size: 15px;
  font-weight: 700;
  line-height: 1.86;
}
.greeting__message__president-img{
  max-width: 213px;
}

.greeting__movie{
  margin-top: 60px;
}
.greeting__movie__tit{
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.05em;
  padding-left: 1em;
}
.greeting__movie__tit::before{
  content: '';
  background: #561560;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
}
.greeting__movie__youtube{
  margin-top: 60px;
}
.greeting__movie__youtube iframe{
  aspect-ratio: 1000 / 559;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 640px){
  .greeting{
    margin-top: 30px;
  }
  .greeting .inner{
    padding: 0;
  }

  .greeting__message{
    border-radius: 4px;
    padding: 22px 36px;
  }
  .greeting__message__tit{
    font-size: 20px;
    line-height: 1;
  }
  .greeting__message__txt{
    line-height: 1.66;
    margin-top: 10px;
  }
  .greeting__message__txt + .greeting__message__txt{
    margin-top: 20px;
  }
  .greeting__message__president-area{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    margin: 30px auto 0;
  }
  .greeting__message__president-img{
    max-width: none;
  }

  .greeting__movie__tit{
    font-size: 14px;
    line-height: 1.42;
    margin-left: 36px;
  }
  .greeting__movie__tit::before{
    width: 6px;
    height: 6px;
  }
  .greeting__movie__youtube{
    margin-top: 10px;
  }
  .greeting__movie__youtube iframe{
    aspect-ratio: 320 / 179;
  }
}
@media screen and (max-width: 374px){
  .greeting__message{
    padding: 22px 10px;
  }

  .greeting__movie__tit{
    margin-left: 10px;
  }
}

/********************
vision
********************/
.vision{
  margin-top: 60px;
}

.vision__mv{
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto;
}
.vision__mv-btn{
  color: #fff !important;
  background: #561560;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border-radius: 40px;
  display: block;
  max-width: 156px;
  padding: 16px 0;
  margin: 16px 0 0 auto;
  transition: all .2s;
}
@media (hover: hover){
  .vision__mv-btn:hover{
    opacity: .7;
  }
}
.vision__mv-btn span{
  position: relative;
  display: inline-block;
  transform: translateX(16px);
}
.vision__mv-btn span::before{
  content: '';
  background: url(../img/profile/vision_ico_glass.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translateY(-48%);
  width: 24px;
  height: 22px;
}

/*** modaal ***/
.modaal-overlay{
  opacity: 0.6 !important;
}
.modaal-outer-wrapper{
  display: block;
}
.modaal-inner-wrapper{
  display: block;
  cursor: auto !important;
  height: auto;
  padding: 0;
}
.modaal-container{
  background: none;
  text-align: center;
  max-width: none;
  box-shadow: none;
}
.modaal-content-container{
  position: relative;
  padding: 0;
}
.modaal-close{
  display: none;
}
/*** //modaal ***/

.vision__modal__img{
  padding: 120px 10px 80px;
}
.modaal-close.close-btn{
  color: #561560;
  background: #FFf;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 40px;
  position: absolute;
  top: 40px;
  right: 112px;
  display: inline-block;
  max-width: 156px;
  width: 100%;
  padding: 16px 0;
  transition: all .2s;
}
@media (hover: hover) {
  .modaal-close.close-btn:hover{
    opacity: .8;
  }
}
.modaal-close.close-btn::before,
.modaal-close.close-btn::after{
  display: none;
}
.modaal-close.close-btn span{
  overflow: visible;
  clip: auto;
  position: relative !important;
  display: inline-block;
  width: auto !important;
  height: auto !important;
  transform: translateX(12px);
}
.modaal-close.close-btn span::before,
.modaal-close.close-btn span::after{
  content: '';
  background: #561560;
  position: absolute;
  top: 50%;
  left: -28px;
  width: 22px;
  height: 2px;
}
.modaal-close.close-btn span::before{
  transform: rotate(45deg);
}
.modaal-close.close-btn span::after{
  transform: rotate(-45deg);
}

.vision__box{
  background: #F6F5F8;
  font-family: "Noto Serif JP", serif;
  border-radius: 10px;
  padding: 30px 0;
  max-width: 1000px;
  margin: 60px auto 0;
}
.vision__box + .vision__box{
  margin-top: 50px;
}
.vision__box__tit{
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
  letter-spacing: 0.05em;
}
.vision__box__list{
  margin: 24px auto 0;
}
.vision__box__list--the-vision{
  max-width: 378px;
  transform: translateX(6px);
}
.vision__box__list--basic-philosophy{
  max-width: 454px;
  transform: translateX(6px);
}
.vision__box__list--mission{
  max-width: 624px;
  transform: translateX(6px);
  margin: 12px auto 0;
}
.vision__box__list li{
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.8;
  letter-spacing: 0.05em;
}
.vision__box__list li::before{
  content: '';
  background: #561560;
  border-radius: 60px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  width: 8px;
  height: 3px;
}

@media screen and (max-width: 640px){
  .vision{
    margin-top: 30px;
  }

  .vision__mv{
    padding: 0;
  }
  .vision__mv-btn{
    max-width: none;
    padding: 22px 0;
    margin: 30px 0 0;
  }
  .vision__mv-btn span{
    transform: translateX(8px);
  }
  .vision__modal__img{
    padding: 96px 8px 72px;
  }
  .vision__modal__img .js-scrollable{
    padding-bottom: 20px;
  }
  .vision__modal__img img{
    max-width: none;
    height: 676px;
  }
  .modaal-close.close-btn{
    font-size: 12px;
    top: 40px;
    right: 20px;
    max-width: 104px;
    height: fit-content;
    padding: 12px 0;
  }
  .modaal-close.close-btn span{
    transform: translateX(8px);
  }
  .modaal-close.close-btn span::before,
  .modaal-close.close-btn span::after{
    left: -20px;
    width: 12px;
  }

  .vision__box{
    border-radius: 0;
    padding: 20px 40px;
    margin: 30px auto 0;
  }
  .vision__box + .vision__box{
    margin-top: 30px;
  }
  .vision__box__tit{
    font-size: 25px;
    line-height: 1.6;
  }
  .vision__box__list{
    margin: 28px auto 0;
  }
  .vision__box__list--the-vision{
    max-width: none;
    margin: 36px auto 0;
  }
  .vision__box__list--the-vision li:not(:first-child){
    margin-top: 30px;
  }
  .vision__box__list--basic-philosophy{
    max-width: none;
    margin: 24px auto 0;
  }
  .vision__box__list--basic-philosophy li:not(:first-child){
    margin-top: 12px;
  }
  .vision__box__list--mission{
    max-width: none;
    margin: 20px auto 0;
  }
  .vision__box__list li{
    font-size: 14px;
    line-height: 1.42;
  }
}

/********************
company
********************/
.company{
  padding: 0 10px;
  margin-top: 60px;
}

.company__table{
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.company__table th{
  background: #F6F5F8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #DEDEDE;
  width: 32%;
  padding: 34px 60px;
}
.company__table th.va-mid{
  vertical-align: middle;
}
.company__table td{
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #DEDEDE;
  width: 68%;
  padding: 34px 40px;
}
.company__table td ul{
  display: grid;
  gap: 30px;
}
.company__table td ul li span{
  margin-right: 1.68em;
}
.company__table td ul li .length11{
  margin-right: 1em;
}

@media screen and (max-width: 640px){
  .company{
    padding: 0;
    margin-top: 30px;
  }

  .company__table th{
    display: block;
    width: auto;
    padding: 20px 40px;
  }
  .company__table td{
    display: block;
    width: auto;
    padding: 20px 40px;
  }
  .company__table td ul{
    margin-top: 10px;
  }
}

/********************
food-safety
********************/
.food-safety{
  margin-top: 60px;
}

.food-safety__policy{
  background: #F6F5F8;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  max-width: 940px;
  padding: 30px;
  margin: 0 auto;
}
.food-safety__policy__tit{
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
}
.food-safety__policy__txt{
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.food-safety__txt{
  font-family: "Noto Sans JP", serif;
  font-size: 15px;
  line-height: 2;
  max-width: 1000px;
  padding: 0 10px;
  margin: 30px auto 0;
}

.food-safety__certificate{
  overflow: hidden;
  max-width: 1000px;
  padding: 0 10px;
  margin: 60px auto 0;
}
.food-safety__certificate .js-scrollable{
  padding-bottom: 20px;
}
.food-safety__certificate__wrap{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.food-safety__certificate img{
  max-width: none;
  height: 447px;
}

.scroll-hint-icon{
  display: none;
}
.scroll-hint-shadow-wrap::before,
.scroll-hint-shadow-wrap::after{
  content: none;
}
.js-scrollable::-webkit-scrollbar {
  height: 8px;
}
.js-scrollable::-webkit-scrollbar-track {
  background: #F6F5F8;
}
.js-scrollable::-webkit-scrollbar-thumb {
  background: #561560;
  border-radius: 8px;
}

.food-safety__table-wrap{
  max-width: 1000px;
  padding: 0 10px;
  margin: 60px auto 0;
}
.food-safety__table{
  font-family: "Noto Sans JP", serif;
}
.food-safety__table th{
  background: #F6F5F8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #DEDEDE;
  width: 32%;
  padding: 34px 60px;
}
.food-safety__table th.va-mid{
  vertical-align: middle;
}
.food-safety__table td{
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #DEDEDE;
  width: 68%;
  padding: 34px 28px 34px 40px;
}
.food-safety__table td a{
  text-decoration: underline;
}
.food-safety__table td ul + p,
.food-safety__table td p + p{
  margin-top: 16px;
}

@media screen and (max-width: 640px){
  .food-safety{
    margin-top: 30px;
  }

  .food-safety__policy__tit{
    font-size: 23px;
    line-height: 1;
  }
  .food-safety__policy__txt{
    font-size: 14px;
    line-height: 1.42;
    margin-top: 12px;
  }

  .food-safety__txt{
    line-height: 1.66;
    padding: 0 36px;
  }

  .food-safety__certificate{
    padding: 0 36px;
    margin: 30px auto 0;
  }
  .food-safety__certificate .js-scrollable{
    padding-bottom: 30px;
  }
  .food-safety__certificate img{
    height: 415px;
  }

  .js-scrollable::-webkit-scrollbar {
    height: 6px;
  }

  .food-safety__table-wrap{
    padding: 0;
    margin: 30px auto 0;
  }
  .food-safety__table th{
    display: block;
    width: auto;
    padding: 20px 40px;
  }
  .food-safety__table td{
    display: block;
    width: auto;
    padding: 16px 24px 16px 40px;
  }
  .food-safety__table td ul + p,
  .food-safety__table td p + p{
    margin-top: 14px;
  }
}