@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	TOP
 * *************************************************/
/* 共通
----------------------------------------------*/
.top__content-wrapper {
  background: url(images/top-mv-bg.svg) no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding-top: 14.21875vw;
}

.top__content.--beige {
  background-color: rgba(188, 164, 117, 0.05);
  padding: 64px 0;
}
@media print, screen and (min-width: 768px) {
  .top__content.--beige {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .top__content.--beige {
    padding: 136px 0;
  }
}
.top__content.--beige.--dark {
  background-color: rgba(188, 164, 117, 0.1);
}
.top__content.about {
  padding: 64px 0;
}
@media print, screen and (min-width: 768px) {
  .top__content.about {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .top__content.about {
    padding: 136px 0;
  }
}

/* MV
----------------------------------------*/
#top__mv {
  display: grid;
  place-items: center;
  height: calc(100svh - 64px);
  background: #BCA475;
}
@media print, screen and (min-width: 960px) {
  #top__mv {
    height: calc(100svh - 120px);
  }
}
#top__mv .top__mv-logo {
  width: auto;
  height: 43svh;
}
@media print, screen and (min-width: 960px) {
  #top__mv .top__mv-logo {
    height: 70svh;
  }
}

/* リード
----------------------------------------*/
.top__lead {
  font-weight: 700;
  line-height: 2.4;
  padding: 0 5%;
}
@media print, screen and (min-width: 768px) {
  .top__lead {
    line-height: 3;
    text-align: center;
  }
}
@media print, screen and (min-width: 960px) {
  .top__lead {
    padding: 0 32px;
  }
}

.top__lead-text {
  font-size: 1.6rem;
  padding-top: 16px;
}
@media print, screen and (min-width: 960px) {
  .top__lead-text {
    font-size: 1.9rem;
    padding-top: 0;
  }
}

.top__lead-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #AAA8A8;
  padding-bottom: 8px;
  margin-top: 16px;
}
@media print, screen and (min-width: 960px) {
  .top__lead-link {
    font-size: 1.4rem;
    margin-top: 24px;
    transition: 0.3s ease;
  }
  .top__lead-link:hover {
    opacity: 0.6;
  }
}

.top__bnr {
  margin-top: 64px;
}
@media print, screen and (min-width: 768px) {
  .top__bnr {
    margin-top: 80px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__bnr {
    margin-top: 120px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__bnr a {
    transition: 0.3s all ease;
  }
}
.top__bnr a:hover {
  opacity: 0.6;
}

/* NEWS
----------------------------------------*/
.top__news-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  padding: 64px 0;
}
@media print, screen and (min-width: 768px) {
  .top__news-wrapper {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .top__news-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 144px 0;
  }
}

@media print, screen and (min-width: 960px) {
  .top__news-ttl {
    width: 248px;
  }
}
.top__news-ttl .more-btn {
  margin-top: 16px;
}
@media print, screen and (min-width: 960px) {
  .top__news-ttl .more-btn {
    margin-top: 24px;
  }
}

@media print, screen and (min-width: 960px) {
  .top__post-list {
    width: calc(100% - 320px);
  }
}
.top__post-list li {
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
}
.top__post-list .post-list-inner {
  display: block;
  padding: 12px 8px;
}
@media print, screen and (min-width: 768px) {
  .top__post-list .post-list-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 16px 8px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__post-list a {
    transition: all 0.3s ease;
  }
  .top__post-list a:hover {
    opacity: 0.6;
  }
}
.top__post-list time {
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .top__post-list time {
    width: 72px;
  }
}
.top__post-list .top__post-list__ttl {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .top__post-list .top__post-list__ttl {
    width: calc(100% - 96px);
  }
}
.top__post-list .top__post-list__ttl.post {
  background: url(images/icon-arrow.svg) no-repeat;
  background-position: right center;
  background-size: 14px auto;
  padding-right: 26px;
}
.top__post-list .top__post-list__ttl.external {
  background: url(images/icon-external.svg) no-repeat;
  background-position: right center;
  background-size: 14px auto;
  padding-right: 26px;
}

/* MESSAGE
----------------------------------------*/
.top__message-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  margin-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .top__message-wrapper {
    gap: 56px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .top__message-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    margin-top: 0;
  }
}

@media print, screen and (min-width: 960px) {
  .top__message-img {
    width: 31%;
    max-width: 344px;
    margin-top: 72px;
  }
}
.top__message-img img {
  margin: 0 auto;
}
.top__message-img figcaption {
  line-height: 1.2;
  margin-top: 16px;
}
.top__message-img .position01 {
  display: block;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .top__message-img .position01 {
    font-size: 1.6rem;
  }
}
.top__message-img .name {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0 12px;
  font-size: 2.2rem;
  line-height: 1;
  margin: 16px 0;
}
@media print, screen and (min-width: 960px) {
  .top__message-img .name {
    font-size: 2.6rem;
  }
}
.top__message-img .name .en {
  color: rgba(26, 26, 26, 0.5);
  font-size: 1.1rem;
}
@media print, screen and (min-width: 960px) {
  .top__message-img .name .en {
    font-size: 1.3rem;
  }
}
.top__message-img .position02 {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .top__message-img .position02 {
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 960px) {
  .top__message-text {
    width: 61.6%;
    max-width: 640px;
  }
}
.top__message-text h3 {
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 768px) {
  .top__message-text h3 {
    font-size: 2.6rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__message-text h3 {
    font-size: min(2.5vw, 32px);
    margin-bottom: 32px;
  }
}
.top__message-text p {
  line-height: 2.4;
  text-align: justify;
}

/* 鶴岡ガストロノミックイノベーション計画とは？
----------------------------------------*/
.top__about-container {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  gap: 48px 0;
}
@media print, screen and (min-width: 960px) {
  .top__about-container {
    margin-top: min(5.625vw, 72px);
    gap: min(8.125vw, 120px) 0;
  }
}

.top__about-content {
  padding: 0 16px;
}
@media print, screen and (min-width: 960px) {
  .top__about-content {
    padding: 0 32px;
  }
}
.top__about-content:not(:last-child) {
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  padding-bottom: 48px;
}
@media print, screen and (min-width: 960px) {
  .top__about-content:not(:last-child) {
    padding-bottom: min(8.125vw, 120px);
  }
}

.top__about-content-ttl {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  .top__about-content-ttl {
    font-size: 2.2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__about-content-ttl {
    font-size: min(2.1875vw, 28px);
  }
}

.top__about-content-text {
  line-height: 2.4;
  text-align: justify;
  margin-top: 24px;
}
@media print, screen and (min-width: 960px) {
  .top__about-content-text {
    margin-top: 32px;
  }
}

.top__about-content-img {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
@media print, screen and (min-width: 960px) {
  .top__about-content-img {
    margin-top: 56px;
    gap: 88px;
  }
}
.top__about-content-img.col2 img {
  width: auto;
  height: 35vw;
  max-height: 215px;
}
.top__about-content-img.single img {
  width: auto;
  height: 35vw;
  max-height: 249px;
}

.top__about-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px 0;
  margin-top: 72px;
}
@media print, screen and (min-width: 768px) {
  .top__about-links {
    flex-direction: row;
    justify-content: center;
    gap: 0 48px;
    margin-top: 104px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__about-links {
    gap: 0 72px;
    margin-top: min(6.875vw, 88px);
  }
}

/* 4つの取り組み
----------------------------------------*/
/***** 枠 *****/
.top__initiative-container {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  padding-left: 5%;
  margin-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-container {
    gap: 48px 0;
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-container {
    gap: 64px 0;
    margin-top: 48px;
    padding-left: 32px;
  }
}
@media print, screen and (min-width: 1200px) {
  .top__initiative-container {
    padding-left: calc((100% - 832px) / 2 - 11vw);
  }
}
@media print, screen and (min-width: 1504px) {
  .top__initiative-container {
    padding-left: calc((100% - 1340px) / 2);
  }
}

.top__initiative-content {
  background-color: #fff;
  border-radius: 32px 0 0 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-content {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-content {
    border-radius: 100px 0 0 100px;
    padding-top: 80px;
    padding-left: calc((100vw - 832px) / 2 - 32px);
    padding-bottom: 80px;
  }
}
@media print, screen and (min-width: 1200px) {
  .top__initiative-content {
    padding-left: 11vw;
  }
}
@media print, screen and (min-width: 1504px) {
  .top__initiative-content {
    padding-left: 150px;
  }
}

.top__initiative-content-inner {
  max-width: 896px;
  padding-right: 20px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-content-inner {
    padding-right: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-content-inner {
    padding: 0 64px 0 32px;
  }
}
@media print, screen and (min-width: 1504px) {
  .top__initiative-content-inner {
    max-width: 1104px;
  }
}

.top__initiative-content-ttl {
  background: url(images/icon-ttl.svg) no-repeat;
  background-position: left center;
  background-size: 20px auto;
  font-size: 2.2rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  padding-left: 26px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-content-ttl {
    background-size: 26px auto;
    font-size: 2.8rem;
    padding-left: 34px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-content-ttl {
    background-size: 32px auto;
    font-size: min(2.8125vw, 36px);
    padding-left: 42px;
  }
}

.top__initiative-content-lead {
  text-align: justify;
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-content-lead {
    margin-top: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-content-lead {
    margin-top: 40px;
  }
}

/***** 食産業創造事業 *****/
.top__initiative-shokusan-develop {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  margin-top: 24px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-shokusan-develop {
    flex-direction: row;
    gap: 0 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-shokusan-develop {
    margin-top: 40px;
    gap: 0 24px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__initiative-shokusan-develop .top__initiative-shokusan-develop-item {
    flex: 1;
  }
}
.top__initiative-shokusan-develop .top__initiative-shokusan-develop-item h4 {
  background-color: rgba(188, 164, 117, 0.3);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border-radius: 4px;
  padding: 12px 0;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-shokusan-develop .top__initiative-shokusan-develop-item h4 {
    font-size: 1.8rem;
    padding: 16px 0;
  }
}
.top__initiative-shokusan-develop .top__initiative-shokusan-develop-item p {
  line-height: 1.8;
  text-align: justify;
  padding: 0 8px;
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-shokusan-develop .top__initiative-shokusan-develop-item p {
    padding: 0 12px;
  }
}

.top__initiative-shokusan-project {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  max-width: 720px;
  margin-top: 48px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-shokusan-project {
    flex-direction: row;
    align-items: center;
    gap: 0 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-shokusan-project {
    padding: 40px;
    margin-top: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__initiative-shokusan-project .top__initiative-shokusan-project-text {
    width: calc(59.6875% - 32px);
    max-width: 273px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__initiative-shokusan-project .top__initiative-shokusan-project-img {
    width: 40.3125%;
  }
}
.top__initiative-shokusan-project .top__initiative-shokusan-project-img img {
  width: 100%;
  max-width: 516px;
  margin: 0 auto;
}
.top__initiative-shokusan-project h4 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid #1A1A1A;
  border-radius: 10px;
  padding: 12px 0;
}
.top__initiative-shokusan-project p {
  line-height: 1.8;
  text-align: justify;
  padding: 0 12px;
  margin-top: 8px;
}

.top__initiative-shokusan-boshu {
  background-color: #999;
  border-radius: 4px;
  padding: 16px 0;
  margin: 32px 0 24px;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-shokusan-boshu {
    padding: 20px 0;
    margin: 24px 0;
  }
}
.top__initiative-shokusan-boshu p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
  color: #FFF1D6;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-shokusan-boshu p {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-shokusan-boshu p {
    font-size: 2.6rem;
  }
}
@media print, screen and (min-width: 1504px) {
  .top__initiative-shokusan-boshu p {
    font-size: 2.8rem;
  }
}
@media print, screen and (min-width: 1160px) {
  .top__initiative-shokusan-boshu p {
    flex-direction: row;
    justify-content: center;
    gap: 0 24px;
  }
}
.top__initiative-shokusan-boshu p span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

/***** 大学改革事業 *****/
.university-reform-container {
  display: flex;
  flex-direction: column;
  gap: 48px 0;
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .university-reform-container {
    flex-direction: row;
    justify-content: center;
    gap: 0 2.5vw;
  }
}
@media print, screen and (min-width: 1504px) {
  .university-reform-container {
    gap: 0 min(4.6vw, 88px);
  }
}

.university-reform-item {
  line-height: 1.6;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .university-reform-item {
    flex: 1;
    max-width: 304px;
  }
}
.university-reform-item img {
  margin: 0 auto;
}
.university-reform-item h4 {
  color: #BCA475;
  font-size: 1.6rem;
  margin-top: 16px;
}
@media print, screen and (min-width: 960px) {
  .university-reform-item h4 {
    font-size: 1.8rem;
    margin-top: 24px;
  }
}
@media print, screen and (min-width: 1504px) {
  .university-reform-item h4 {
    font-size: 2rem;
  }
}
.university-reform-item p {
  margin-top: 12px;
}
@media print, screen and (min-width: 960px) {
  .university-reform-item p {
    margin-top: 16px;
  }
}

/***** 研究基盤整備・開発事業 *****/
.top__initiative-researchBase-container {
  display: flex;
  flex-direction: column;
  gap: 48px 0;
  margin-top: 32px;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-researchBase-container {
    margin-top: 56px;
  }
}

.top__initiative-researchBase-item {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-researchBase-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0 104px;
  }
}

@media print, screen and (min-width: 960px) {
  .top__initiative-researchBase-text {
    width: 67%;
    max-width: 776px;
  }
}
.top__initiative-researchBase-text h4 {
  color: #BCA475;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-researchBase-text h4 {
    font-size: 2.2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-researchBase-text h4 {
    font-size: 2.6rem;
  }
}
.top__initiative-researchBase-text h4 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-researchBase-text h4 span {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-researchBase-text h4 span {
    font-size: 1.7rem;
  }
}
.top__initiative-researchBase-text p {
  line-height: 2.4;
  text-align: justify;
}

.top__initiative-researchBase-img {
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-researchBase-img {
    margin: 0;
  }
}

.top__initiative-researchBase-bnr {
  margin-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .top__initiative-researchBase-bnr {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__initiative-researchBase-bnr {
    margin-top: 72px;
  }
}
.top__initiative-researchBase-bnr a {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-researchBase-bnr a {
    transition: all 0.3s ease;
  }
  .top__initiative-researchBase-bnr a:hover {
    opacity: 0.6;
  }
}

/***** 実施計画推進事業 *****/
.top__initiative-promotion-list {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  color: #BCA475;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 16px 0 32px;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-promotion-list {
    font-size: 2rem;
    margin: 32px 0 40px;
  }
}
.top__initiative-promotion-list li {
  position: relative;
  line-height: 1.6;
  padding-left: 16px;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-promotion-list li {
    padding-left: 24px;
  }
}
.top__initiative-promotion-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  width: 11px;
  height: 11px;
  background-color: #AAA8A8;
  border-radius: 50%;
}
@media print, screen and (min-width: 960px) {
  .top__initiative-promotion-list li::before {
    top: 11px;
    width: 14px;
    height: 14px;
  }
}/*# sourceMappingURL=front.css.map */