@charset "UTF-8";
/*
Theme Name: TGI鶴岡ガストロノミックイノベーション計画
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html, html *, body, header, footer {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  /*サイト全体の基準となるフォントサイズ*/
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: #1A1A1A;
  font-family: var(--base_font_family_setting);
  font-size: 1.4rem;
  font-weight: 500;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 2;
  padding: 0;
  margin: 0;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}

.en {
  font-family: "Instrument Sans", sans-serif;
}

a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a[href^="tel:"]:hover {
    opacity: unset;
    transition: none;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ************************************************
 *	共通クラス定義
 * *************************************************/
/* コンテンツ枠定義
---------------------------------------------------*/
#content-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
@media print, screen and (min-width: 960px) {
  #content-wrap {
    padding-top: 120px;
  }
}

.inner {
  max-width: 896px;
  padding: 0 5%;
  margin: 0 auto;
  transition: all 0.2s ease;
}
@media print, screen and (min-width: 960px) {
  .inner {
    padding: 0 32px;
  }
}
@media print, screen and (min-width: 1504px) {
  .inner {
    max-width: 1104px;
  }
}
.inner.short {
  max-width: 896px;
}

/* アンカーずれ補正
---------------------------------------------------*/
/* 明朝体
---------------------------------------------------*/
.mincho {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* flexクラス
---------------------------------------------------*/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/*	PC／SP切り替え
---------------------------------------------------*/
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* リンクボタン
---------------------------------------------------*/
.more-btn {
  position: relative;
  display: inline-block;
  border-radius: 3px;
  line-height: 1;
  overflow: hidden;
}
@media print, screen and (min-width: 960px) {
  .more-btn {
    transition: all 0.3s ease;
  }
}
.more-btn::before {
  position: absolute;
  top: -1px;
  right: -20px;
  content: "";
  width: 0;
  height: calc(100% + 1px);
  -webkit-clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  transition: width 0.3s;
}
.more-btn .more-btn-inner {
  display: flex;
  align-items: stretch;
}
.more-btn .text {
  position: relative;
  border-right: 1px solid #1A1A1A;
  padding: 16px;
  transition: border-right 0.3s ease;
}
.more-btn .text::after {
  position: absolute;
  top: -1px;
  right: 0;
  content: "";
  width: 1px;
  height: calc(100% + 2px);
  transition: all 0.3s ease;
}
.more-btn .arrow {
  display: grid;
  place-items: center;
  width: 48px;
}
@media print, screen and (min-width: 960px) {
  .more-btn .arrow svg, .more-btn .arrow svg path {
    transition: all 0.3s ease;
  }
}
.more-btn.--white {
  border: 1px solid rgba(26, 26, 26, 0.3);
}
.more-btn.--white::before {
  background-color: #1A1A1A;
}
.more-btn.--white .text {
  border-color: rgba(26, 26, 26, 0.3);
}
.more-btn.--gray {
  color: #AAA8A8;
  border: 1px solid #AAA8A8;
}
.more-btn.--gray::before {
  background-color: #AAA8A8;
}
.more-btn.--gray .text {
  border-color: #AAA8A8;
}
@media print, screen and (min-width: 960px) {
  .more-btn:hover::before {
    left: -20px;
    right: unset;
    width: calc(100% + 40px);
  }
  .more-btn:hover .arrow svg {
    transform: translateX(4px);
  }
  .more-btn:hover.--gray {
    color: #383838;
  }
  .more-btn:hover.--gray .text {
    border-color: #383838;
  }
  .more-btn:hover.--gray path {
    fill: #383838;
  }
  .more-btn:hover.--white {
    color: #fff;
    border-color: #1A1A1A;
  }
  .more-btn:hover.--white .text {
    border-color: #fff;
  }
  .more-btn:hover.--white path {
    fill: #fff;
  }
}

/* 見出し
---------------------------------------------------*/
.top__section-en-ttl {
  font-family: "Instrument Sans", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  .top__section-en-ttl {
    font-size: 3.8rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__section-en-ttl {
    font-size: min(3.75vw, 48px);
  }
}

.top__section-box-ttl {
  display: inline-block;
  background-color: #BCA475;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  border: 2px solid #1A1A1A;
  padding: 4px 16px;
}
@media print, screen and (min-width: 768px) {
  .top__section-box-ttl {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__section-box-ttl {
    font-size: min(2.5vw, 32px);
    padding: 4px 32px;
  }
}

.page__ttl-wrapper {
  max-width: 1784px;
  padding: 0 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .page__ttl-wrapper {
    padding: 0 32px;
  }
}

.page__ttl {
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid #1A1A1A;
  padding: 24px 0;
}
@media print, screen and (min-width: 768px) {
  .page__ttl {
    font-size: 3rem;
    padding: 40px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl {
    font-size: min(2.96875vw, 38px);
    padding: min(4.375vw, 56px) 0;
  }
}
.page__ttl .sub {
  display: block;
  font-size: 1.6rem;
}
@media print, screen and (min-width: 768px) {
  .page__ttl .sub {
    font-size: 2.2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl .sub {
    font-size: min(2.03125vw, 26px);
  }
}

.page__section-ttl {
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 960px) {
  .page__section-ttl {
    margin-bottom: 24px;
  }
}
.page__section-ttl .sub {
  display: block;
  color: rgba(40, 38, 38, 0.6);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 768px) {
  .page__section-ttl .sub {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .page__section-ttl .sub {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
.page__section-ttl .main {
  display: block;
  font-size: 2.2rem;
}
@media print, screen and (min-width: 768px) {
  .page__section-ttl .main {
    font-size: 2.6rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__section-ttl .main {
    font-size: 3.2rem;
  }
}
.page__section-ttl.no-main {
  margin-bottom: 16px;
}
.page__section-ttl.no-main .sub {
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .page__section-ttl.no-main .sub {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__section-ttl.no-main .sub {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .page__section-ttl.page-right {
    margin-left: calc(42.8% + 48px);
  }
}

/* ************************************************
 *	ヘッダー
 * *************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  background-color: #fff;
  transition: transform 0.3s ease;
  z-index: 9999;
}
@media print, screen and (min-width: 960px) {
  header {
    height: 120px;
  }
}
header.hidden {
  transform: translateY(-64px);
}
@media print, screen and (min-width: 960px) {
  header.hidden {
    transform: translateY(-120px);
  }
}
header .header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}
@media print, screen and (min-width: 960px) {
  header .header__inner {
    padding: 0 32px;
  }
}
@media print, screen and (min-width: 960px) {
  header .header__inner.tgi-institute {
    padding: 0 0 0 32px;
  }
}

/* ロゴ
----------------------------------------------*/
.logo {
  width: 160px;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .logo {
    width: 18%;
    max-width: 246px;
  }
}
@media print, screen and (min-width: 960px) {
  .logo a {
    transition: opacity 0.4s;
  }
  .logo a:hover {
    opacity: 0.6;
  }
}

.logo-green {
  position: absolute;
  top: 0;
  left: 12px;
  width: 72px;
  transition: all 0.4s ease;
}
@media print, screen and (min-width: 960px) {
  .logo-green {
    top: 16px;
    left: 32px;
    width: 12vw;
    max-width: 166px;
  }
}
@media print, screen and (min-width: 960px) {
  .logo-green a {
    transition: opacity 0.4s;
  }
  .logo-green a:hover {
    opacity: 0.6;
  }
}

header.hidden .logo-green {
  transform: translateY(-100%);
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .g_nav {
    height: 100%;
    display: flex;
    align-items: center;
    width: max(82% - 32px, 100% - 278px);
  }
}
@media print, screen and (min-width: 960px) {
  .g_nav.tgi-institute {
    margin-left: auto;
    width: max(88% - 32px, 100% - 198px);
  }
}

.header__nav .header__content-nav {
  line-height: 1;
  padding: 0 5%;
  margin-top: 10px;
}
@media print, screen and (min-width: 960px) {
  .header__nav .header__content-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px min(2vw, 1.75em);
    margin-top: 0;
    padding: 0;
  }
}
.header__nav .header__content-nav li {
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header__nav .header__content-nav li {
    border-bottom: none;
  }
}
.header__nav .header__content-nav a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  padding: 20px 0;
}
@media print, screen and (min-width: 960px) {
  .header__nav .header__content-nav a {
    font-size: min(1.35vw, 16px);
    padding: 0;
    transition: all 0.3s ease;
  }
  .header__nav .header__content-nav a:hover {
    color: #BCA475;
  }
}
.header__nav .header__content-nav a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-left: 1px solid #1A1A1A;
  border-top: 1px solid #1A1A1A;
  transform: translateY(-50%) rotate(135deg);
}
@media print, screen and (min-width: 960px) {
  .header__nav .header__content-nav a::after {
    content: none;
  }
}
@media print, screen and (min-width: 960px) {
  .header__nav .header__content-nav.institute a:hover {
    color: #79B497;
  }
}

/* ************************************************
 *	ハンバーガーメニュー関連
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 70px;
  height: 64px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  transform: translateX(0);
}
@media print, screen and (min-width: 960px) {
  .menu-trigger {
    display: none;
  }
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  height: 1px;
  background-color: #1A1A1A;
  transition: all 0.5s;
}
.menu-trigger span:nth-of-type(1) {
  top: 26px;
  right: 10px;
  width: 50px;
}
.menu-trigger span:nth-of-type(2) {
  top: 36px;
  right: 10px;
  width: 36px;
}
.menu-trigger.active span:nth-of-type(1) {
  top: 21px;
  transform: translateY(6px) rotate(-20deg);
}
.menu-trigger.active span:nth-of-type(2) {
  top: 27px;
  width: 50px;
  transform: rotate(20deg);
}
.menu-trigger p {
  position: absolute;
  top: 32px;
  width: 100%;
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.5s;
}

#header.open .menu-trigger span,
header.is-show .menu-trigger span {
  background-color: #1A1A1A;
}

#header.open .menu-trigger p,
header.is-show .menu-trigger p {
  color: #1A1A1A;
}

/* メニュー枠
----------------------------------------*/
#header.open {
  background-color: #fff;
}
@media print, screen and (min-width: 960px) {
  #header.open {
    background-color: transparent;
  }
}
#header.open.hidden {
  transform: unset;
}

.header__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-color: #fff;
  transition: all 0.8s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
}
@media print, screen and (min-width: 960px) {
  .header__nav {
    position: unset;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
}

/* ************************************************
 * googlemap
 * ************************************************ */
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 33.78%;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ************************************************
 * 404
 * ************************************************ */
.notfound_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .notfound_wrap {
    padding: 48px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    justify-content: flex-end;
    padding: 80px 0 0 0;
  }
}

.notfound_txt {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 2.2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 2.6rem;
  }
}

/* ************************************************
 *	パンくずリスト
 * ************************************************ */
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  margin-top: 64px;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    margin-top: 128px;
  }
}
.breadcrumbs_wrapper.tgi-institute {
  background-color: rgba(121, 180, 151, 0.2);
  margin-top: 0;
}
.breadcrumbs_wrapper .bre {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  max-width: 1104px;
  padding: 16px 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper .bre {
    gap: 0 8px;
    padding: 16px 32px;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    font-size: 1.2rem;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 1.2rem;
  }
}

/* ************************************************
 *	フッター
 * ************************************************ */
/* リンク
----------------------------------------*/
.footer__link-wrapper {
  background-color: #383838;
  color: #fff;
  padding: 48px 0;
}
@media print, screen and (min-width: 768px) {
  .footer__link-wrapper {
    padding: 64px 0;
  }
}

.footer__link {
  display: flex;
  flex-direction: column;
  gap: 1.75em 0;
  line-height: 1;
  padding: 0 5%;
}
@media print, screen and (min-width: 768px) {
  .footer__link {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 1.75em;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__link {
    gap: 1.5em 1.75em;
    padding: 0 32px;
  }
}
.footer__link a {
  color: #fff;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 960px) {
  .footer__link a:hover {
    color: #BCA475;
  }
}

.footer__logo {
  text-align: center;
  margin-top: 56px;
}
.footer__logo a {
  display: inline-block;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 960px) {
  .footer__logo a:hover {
    opacity: 0.6;
  }
}

.footer__contact {
  text-align: center;
  margin-top: 48px;
}

/* バナー群
----------------------------------------*/
.footer__bnr {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  padding: 32px 0;
}
@media print, screen and (min-width: 768px) {
  .footer__bnr {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__bnr {
    gap: 0 64px;
    padding: 56px 0;
  }
}
.footer__bnr li {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .footer__bnr li {
    width: auto;
  }
}
.footer__bnr a {
  display: block;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 960px) {
  .footer__bnr a:hover {
    opacity: 0.6;
  }
}
.footer__bnr img {
  margin: 0 auto;
}

/* コピーライト
----------------------------------------*/
.copyright {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 24px;
}
@media print, screen and (min-width: 960px) {
  .copyright {
    font-size: 1.4rem;
    padding-bottom: 32px;
  }
}/*# sourceMappingURL=style.css.map */