@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
:root {
  --color-primary:#2981f6;
  --color-gray-light-1: #f8f8f8;
  --color-grey-light-2: #f4f2f2;
  --color-gray-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-gray-dark-1: #2A2A2A;
  --color-gray-dark-2: #474747;
  --color-gray-dark-3: #828282;
  --color-rose:#b94780;
  --color-orange:#f0831e;
  --line: 1px solid var(--color-gray-dark-2);
}

*,
*::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #444;
  font-size: 1.2em;
}

h2 {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
}

.container {
  padding: 0 1rem 0 1rem;
  display: grid;
  grid-template-rows: repeat(10, min-content);
  grid-template-columns: [full-start] repeat(6, [col-start] minmax(min-content, 14rem) [col-end]) [full-end]; /*6コラム 140px=14rem 以上にならな　*/
}

/* Splideカルーセル画像サイズ調整 */
.splide__slide img {
  width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .splide__slide img {
    width: 50%;
    border: none;
  }
}
@media only screen and (max-width: 56.25em) {
  .splide__slide img {
    width: 50%;
    border: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .splide__slide img {
    width: 55%;
    border: none;
  }
}
@media only screen and (min-width: 112.5em) {
  .splide__slide img {
    width: 40%;
    border: none;
  }
}

.features {
  grid-column: full-start/full-end;
  margin: 3rem 0 8rem 0;
}
.features p {
  margin: 2.8rem 0;
}
.features table.latest tr {
  margin: 0.5rem 0.5rem 0rem 0;
  display: flex;
  align-items: center;
  line-height: 1.9;
  font-size: 0.85em;
}
.features table.latest tr h5 {
  padding: 0.5em 0 0.3em 0;
}
.features table.latest tr .date {
  color: var(--color-gray-dark-3);
}
.features table.latest tr a {
  transition: all 0.3s;
  color: var(--color-rose);
  font-size: 0.8em;
  font-weight: bold;
}
.features table.latest tr a:hover {
  opacity: 0.5;
}
.features table.latest tr td {
  padding-bottom: 1.5rem;
  width: 100%;
}
.features table.latest tr td p {
  margin: 0;
}
.features__rocket {
  width: 100%;
  text-align: center;
}
.features__rocket img {
  width: 50%;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 75em) {
  .features__rocket img {
    width: 70%;
    border: none;
  }
}
@media only screen and (max-width: 56.25em) {
  .features__rocket img {
    width: 82%;
    border: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .features__rocket img {
    width: 100%;
    border: none;
  }
}
.features__workshop {
  border: 1px solid var(--color-orange);
}
.features__workshop-title {
  background-color: var(--color-orange);
  padding: 0.5em;
}
.features__workshop-title span {
  font-family: "M PLUS 1p", sans-serif;
  color: #fff;
}
.features div.columns {
  margin: 0 5rem;
}
.features div.columns figure {
  line-height: 1;
}
@media only screen and (max-width: 37.5em) {
  .features div.columns {
    margin: 2rem 0;
  }
}
.features .smallLine {
  line-height: 0.2;
}
@media only screen and (max-width: 37.5em) {
  .features .smallLine:first-child {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 37.5em) {
  .features h2.title {
    font-size: 1.4em;
    padding: 0;
    margin: 0;
    height: 1.5em;
  }
}
@media only screen and (max-width: 37.5em) {
  .features h4.title {
    font-size: 1.2rem;
    padding-top: 2rem;
  }
}
.features__boxText {
  font-weight: 700;
  padding: 0 0.5em;
  padding-bottom: 0.2em;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #f0831e;
  border-radius: 0.5rem;
}
.features__kitchen div.thumb {
  background: linear-gradient(-90deg, rgb(0, 123, 255) 0%, #000000 0%, transparent), url("../img/bk.png");
  background-size: cover;
  background-position: top;
  background-blend-mode: lighten;
  position: relative;
}
.features__kitchen .info {
  padding: 0.5rem;
}
.features__kitchen .info h5 {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
}

.footer {
  grid-column: 1/-1;
  background: linear-gradient(-90deg, rgb(41, 129, 246) 0%, #1b5caf 100%);
  color: #f8f8f8;
}
.footer nav.level div a {
  color: var(--color-gray-light-1);
  transition: all 0.5s ease-out;
}
.footer nav.level div a:hover {
  opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity=60);
}
.footer .content {
  font-size: 0.8em;
}
.footer .content > a > span, .footer .content > span {
  color: #f8f8f8;
  line-height: 1.5em;
}
.footer .content > a {
  color: #f8f8f8;
  transition: all 0.3s;
}
.footer .content > a:hover {
  opacity: 0.5;
}

.back-to-top a {
  font-size: 1.2em;
  color: var(--color-gray-light-1);
  -ms-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.back-to-top a:hover {
  opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity=60);
}

nav.level {
  font-size: 1.2em;
}
nav.level > a {
  color: #fff;
  transition: all 0.3s;
  background-color: none;
}
nav.level > a:hover {
  height: 100%;
  color: white;
  background-color: var(--color-primary);
}

.gallery {
  grid-column: full-start/full-end;
  background: linear-gradient(-90deg, rgb(0, 123, 255) 0%, #000000 0%, transparent), url("../img/bk.jpeg");
  background-size: cover;
  background-position: top;
  background-blend-mode: lighten;
  position: relative;
  height: 32vh;
  border: none;
}
@media only screen and (max-width: 75em) {
  .gallery {
    height: 29vh;
    border: none;
  }
}
@media only screen and (max-width: 56.25em) {
  .gallery {
    height: 23vh;
    border: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .gallery {
    height: 17vh;
    border: none;
  }
}
@media only screen and (min-width: 112.5em) {
  .gallery {
    border: none;
  }
}

.search {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .search {
    order: 1;
    flex: 0 0 100%;
    /*background-color: var(--color-gray-light-2);*/
    background-color: transparent !important;
  }
}
.search__input {
  font-family: inherit;
  font-size: inherit;
  color: var(--color-grey-dark-3);
  background-color: var(--color-grey-light-2);
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 4px;
  width: 90%;
  transition: all 0.2s;
  margin-right: -4.25rem;
}
.search__input:focus {
  outline: none;
  width: 100%;
  background-color: var(--color-gray-light-3);
  opacity: 0.4;
}
.search__input::-webkit-input-placeholder {
  font-weight: 100;
  color: var(--color-grey-dark-3);
}
.search__input:focus + .search__button {
  background-color: var(--color-grey-light-3);
}
.search__button {
  border: none;
  background-color: var(--color-grey-light-2);
}
.search__button:focus {
  outline: none;
}
.search__button:active {
  transform: translateY(2px);
}
.search__icon {
  height: 2rem;
  width: 2rem;
  font-size: 2em;
}

.user-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}
.user-nav > * {
  padding: 0 1.5rem;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  font-size: 1.5em;
}
.user-nav > *:hover {
  /*background-color: var(--color-grey-light-2);*/
  background-color: none;
  opacity: 0.5;
}

.main__header {
  display: flex;
  /*width:100vw;*/
  background: linear-gradient(-90deg, rgb(0, 123, 255) 0%, #000000 0%, transparent), url("../img/gs-award_bk2025.jpg");
  background-size: cover;
  background-position: top;
  background-blend-mode: lighten;
  position: relative;
  /*.header {
      height: 5rem;
      border-bottom:var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;    
      div.columns figures{
          border:1px solid orangered;
      }
  }*/
  height: 75vh;
}
@media only screen and (max-width: 75em) {
  .main__header {
    height: 68vh;
    border: none;
  }
}
@media only screen and (max-width: 56.25em) {
  .main__header {
    height: 74vh;
    border: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .main__header {
    height: 45vh;
    border: none;
  }
}
@media only screen and (min-width: 112.5em) {
  .main__header {
    height: 70vh;
  }
}
.main__header .navbar {
  height: 4.2rem;
}
.main__header__nav .user-nav__twitter a {
  color: #fff;
  font-size: 2em;
  padding-right: 2rem;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .main__header__nav .user-nav__twitter a {
    order: 1;
    flex: 0 0 100%;
    /*background-color: var(--color-gray-light-2);*/
    background-color: transparent !important;
  }
}
.main__header__nav .user-nav__twitter a:hover {
  color: var(--color-primary);
}
.main__header__logo img {
  padding-top: 0.5rem;
  padding-left: 1rem;
}
.main__header__nav {
  font-size: 0.8em;
}
.main__header__nav > a {
  color: #fff;
  transition: all 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .main__header__nav > a {
    background-color: #08143f;
    /*background: linear-gradient(90deg, rgb(0, 123, 255) 0%, #000000 0%, transparent);*/
  }
}
.main__header__nav > a:hover {
  background-color: var(--color-primary);
  height: 100%;
  color: white;
}
.main__header__img {
  display: grid;
  justify-content: center;
  align-content: start;
}
.main__header__img figure img {
  padding: 0;
  height: 64vh;
  padding-top: 0.5rem;
}
@media only screen and (max-width: 75em) {
  .main__header__img figure img {
    height: 52vh;
    /*border:none;*/
  }
}
@media only screen and (max-width: 56.25em) {
  .main__header__img figure img {
    height: 50vh;
    border: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .main__header__img figure img {
    height: 26vh;
    padding: 0;
    margin: 0;
    border: none;
    padding-top: 0.4rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .main__header__img figure img {
    height: 64vh;
    border: none;
  }
}

.homes {
  display: flex;
  height: 30vh;
  background: linear-gradient(-90deg, rgb(0, 123, 255) 0%, #000000 0%, transparent), url("../img/bk.jpeg");
  background-size: cover;
  background-blend-mode: lighten;
  position: relative;
  margin-top: 8rem;
}

.kiji {
  grid-column: full-start/full-end;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeaet(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
  margin-top: 50px;
  justify-content: center;
}
.kiji__card {
  position: replative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border: none;
  width: 23%;
}
@media only screen and (max-width: 75em) {
  .kiji__card {
    border: none;
    width: 23%;
  }
}
@media only screen and (max-width: 56.25em) {
  .kiji__card {
    border: none;
    width: 44% !important;
    flex-direction: column;
  }
}
@media only screen and (max-width: 37.5em) {
  .kiji__card {
    border: none;
    width: 100% !important;
    flex-direction: column;
  }
}
@media only screen and (min-width: 112.5em) {
  .kiji__card {
    border: none;
    width: 23%;
  }
}
.kiji__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.kiji__card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}
.kiji__info {
  padding: 20px;
}
.kiji__info a h3 {
  color: #4374d5;
  font-size: 1em;
  font-weight: 900;
  line-height: 1.4em;
  padding-bottom: 0.8em;
}
.kiji__info .kiji__detail a {
  text-align: right;
  border: none;
  color: var(--color-rose);
  font-size: 0.8em;
  font-weight: bold;
}
.kiji__info span.info {
  font-size: 0.8em;
}
.kiji__links {
  display: flex;
  align-items: center;
}
.kiji__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 10px;
  color: #fff;
  background-color: var(--color-green);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.kiji__links a:hover {
  background-color: var(--color-dark-green);
}
.kiji .kiji-links span {
  margin-left: 10px;
}

.kyosan {
  grid-column: full-start/full-end;
  padding: 4rem 0 8rem 0;
  background-color: var(--color-gray-light-1);
  margin: 0 auto;
}
.kyosan h5 {
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 0rem;
  font-weight: 300;
}
.kyosan__logo--gold {
  display: flex;
  justify-content: center;
}
.kyosan__logo--gold li {
  text-align: center;
  line-height: 1;
  margin: 0 1rem 0 2rem;
}
.kyosan__logo--gold li span {
  /*font-size:1.3em;ロゴが入ったらトル*/
  font-size: 0.9em;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  color: var(--color-gray-dark-3);
}
@media only screen and (max-width: 37.5em) {
  .kyosan__logo--gold li {
    margin: 0;
  }
}
.kyosan__logo--gold li img {
  width: 70%;
  margin-top: 0.8rem;
  margin-bottom: 6rem;
}
.kyosan__logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.kyosan__logo li {
  text-align: center;
  line-height: 1;
  margin: 0 1rem 0 2rem;
}
.kyosan__logo li span {
  /*font-size:1.3em;ロゴが入ったらトル*/
  font-size: 0.9em;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  color: var(--color-gray-dark-3);
}
@media only screen and (max-width: 37.5em) {
  .kyosan__logo li {
    margin: 0;
  }
}
.kyosan__logo li img {
  width: 70%;
  margin-top: 0.8rem;
  margin-bottom: 6rem;
}
.kyosan__shusai {
  text-align: center;
}
.kyosan__shusai span {
  color: var(--color-gray-dark-3);
}
.kyosan__koen {
  width: 70%;
  margin: 3rem auto;
}
.kyosan__koen span {
  color: var(--color-gray-dark-3);
}

.news {
  grid-column: full-start/full-end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  margin-bottom: 4rem;
  /* ここから　トップページ Event リンク画像 */
}
.news a img {
  align-self: center;
  padding: 3px;
}
.news .card .info a h5 {
  font-size: 95%;
  line-height: 1.4em;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 130%;
  display: block;
  padding-top: 0.4em;
  padding-bottom: 0.5em;
}
.news .card .info a:hover {
  opacity: 0.5;
}
.news .card .info p {
  color: #444;
  font-size: 75%;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 130%;
  display: block;
  padding-top: 2%;
  margin-bottom: 2%;
  border: 1px solid orangere;
}
.news .card .thumb {
  padding: 0.4rem;
}
@media only screen and (max-width: 37.5em) {
  .news .card .thumb {
    grid-column: full-start/full-end;
    grid-template-columns: 1fr;
  }
}
.news .card .thumb a {
  color: var(--color-primary);
}
.news .card .thumb a:hover {
  opacity: 0.5;
  -moz-opacity: 0.5;
}
.news .card .thumb a:hover img {
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 112.5em) {
  .news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    /* ここから　トップページ Event タイトル */
  }
  .news .card {
    padding: 0.2em;
  }
  .news .card .info {
    padding: 3px;
  }
  .news a img {
    padding: 3px;
  }
  .news .card .info {
    margin-left: 4%;
    margin-right: 2%;
  }
  .news .card .info h5 {
    color: #666;
    font-size: 87%;
    font-weight: 700;
    letter-spacing: 130%;
    display: block;
  }
  .news .card .info h3 {
    font-size: 87%;
    font-weight: 700;
  }
  .news .card .info p {
    color: #333;
    font-size: 71%;
    font-weight: 100;
    letter-spacing: 130%;
    display: block;
    padding-top: 2%;
    margin-bottom: 2%;
  }
}
@media only screen and (max-width: 75em) {
  .news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    /* ここから　トップページ Event タイトル */
  }
  .news .card {
    padding: 0;
  }
  .news .card .info {
    padding: 3px;
  }
  .news a img {
    padding: 3px;
  }
  .news .card .info {
    margin-left: 4%;
    margin-right: 2%;
  }
  .news .card .info h5 {
    color: #666;
    font-size: 87%;
    font-weight: 700;
    letter-spacing: 130%;
    display: block;
  }
  .news .card .info h3 {
    font-size: 87%;
    font-weight: 700;
  }
  .news .card .info p {
    color: #333;
    font-size: 71%;
    font-weight: 100;
    letter-spacing: 130%;
    display: block;
    padding-top: 2%;
    margin-bottom: 2%;
  }
}
@media only screen and (max-width: 56.25em) {
  .news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .news a img {
    padding: 3px;
  }
}
@media only screen and (max-width: 37.5em) {
  .news {
    grid-column: full-start/full-end;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    border: none;
  }
  .news .card {
    padding: 4px;
  }
}
@media (max-width: 529px) {
  .news {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0rem;
  }
  .news .card {
    padding: 4px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 0px;
  }
  .news .card .thumb img {
    width: 100px;
    margin-right: 2%;
  }
}

.notices {
  grid-column: full-start/full-end;
  text-align: center;
  margin: 3rem 0 3rem 0;
  width: 100%;
  margin-bottom: 1rem;
}
.notices .date_place {
  margin-bottom: 2rem;
}
.notices .background {
  justify-items: center !important;
  background-color: #3273dc;
}
.notices__hero {
  margin: 0.2rem;
}
.notices__hero h2 {
  color: var(--color-gray-light-1);
}

.story__content {
  grid-column: col-start 1/col-start 4;
}
@media only screen and (max-width: 37.5em) {
  .story__content {
    grid-column: full-start/full-end;
  }
}
.story__pictures {
  grid-column: col-start 4/full-end;
  padding: 0 1rem;
}
@media only screen and (max-width: 37.5em) {
  .story__pictures {
    grid-column: full-start/full-end;
    text-align: center;
    padding: 2.5rem 0;
  }
}
.story__button {
  color: #fff;
  font-size: 1.2em;
  font-weight: normal;
  padding: 1.2rem 0.8rem 1.2rem 0.8rem;
  margin-top: 0;
  border-radius: 4px;
  background-color: #1a9bfc;
  border: 0;
  transition: all 0.3s;
}
.story__button:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 37.5em) {
  .story {
    grid-column: full-start/full-end;
  }
}

.topics {
  grid-column: full-start/full-end;
  margin: 1rem 0 2rem 0;
  padding: 2rem;
}
.topics__title {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2em;
  margin-bottom: 1.5rem;
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .topics {
    padding: 0;
  }
  .topics__title {
    font-size: 1.6em !important;
    text-align: center !important;
  }
}

.video {
  grid-column: full-start/full-end;
  background: linear-gradient(-90deg, rgb(0, 123, 255) 0%, #000000 0%, transparent), url("../img/bk2.jpeg");
  background-size: cover;
  background-position: top;
  background-blend-mode: lighten;
  position: relative;
  height: 32vh;
  border: none;
}
@media only screen and (max-width: 75em) {
  .video {
    height: 29vh;
    border: none;
  }
}
@media only screen and (max-width: 56.25em) {
  .video {
    height: 23vh;
    border: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .video {
    height: 17vh;
    border: none;
  }
}
@media only screen and (min-width: 112.5em) {
  .video {
    border: none;
  }
}

/*# sourceMappingURL=main.css.map */
