@charset "utf-8";

@import url("https://fonts.googleapis.com/css?family=Great+Vibes");

:root {
  --FONTCOLOR_BASE: #000;
  --FONTCOLOR_REVERSE: #fff;
  --BACKGROUNDCOLOR_BASE: #fff;
  --BACKGROUNDCOLOR_REVERSE: #000;
  --ACCENTCOLOR: #000000;
  --ACCENTCOLOR_LIGHT: rgb(245, 245, 245);
  --BORDER_BASE: #ddd;
}

.Title {
  margin: 0 auto;
  max-width: 1050px;
  padding: 20px 0 0;
  position: relative;
}

@media screen and (max-width: 600px) {
  .Title {
    padding: 10px 0 30px;
  }
}

.TitleWord {
  padding: 0 10px;
  max-width: 700px;
}

.TitleWord__Title {
  padding: 0 0 40px;
}

@media screen and (max-width: 600px) {
  .TitleWord__Title {
    padding: 0 0 30px;
  }
}

.TitleWord__Title__Ruby {
  padding: 0 0 0;
  margin: 0;
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .TitleWord__Title__Ruby {
    padding: 0 0 0;
    font-size: 14px;
  }
}

.TitleWord__Title__Body {
  font-size: 48px;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .TitleWord__Title__Body {
    font-size: 28px;
  }
}

.TitleWord__Word {
  font-size: 16px;
  line-height: 1.8em;
}

.TitleWord__Word p {
  margin: 0;
}

@media screen and (max-width: 600px) {
  .TitleWord__Word {
    font-size: 12px;
  }
}

.TitleNav {
  position: absolute;
  top: 20px;
  right: 0;
}

@media screen and (max-width: 600px) {
  .TitleNav {
    display: none;
  }
}

.TitleNavList__ListItem {
  float: left;
  list-style-type: none;
  margin-right: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  background-color: var(--ACCENTCOLOR);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}

.TitleNavList__ListItem a {
  display: block;
  padding: 4px 10px;
  color: var(--FONTCOLOR_REVERSE);
}

.SelectItems {
  background-color: var(--BACKGROUNDCOLOR_BASE);
  color: var(--FONTCOLOR_BASE);
}

.SelectItems.--background-color__even {
  background-color: var(--ACCENTCOLOR_LIGHT);
}

@media screen and (max-width: 600px) {
  .SelectItems.--background-color__even {
    background-color: var(--BACKGROUNDCOLOR_BASE);
  }
}

.SelectItems__Inner {
  position: relative;
  margin: 0 auto;
  padding: 80px 10px;
  max-width: 1050px;
}

@media screen and (max-width: 600px) {
  .SelectItems__Inner {
    padding: 0 0 60px;
  }
}

.SelectItem__Image {
  display: grid;
  grid-template: "M L" auto "S L" 1fr / auto 62%;
  grid-gap: 40px;
  position: relative;
}

@media screen and (max-width: 600px) {
  .SelectItem__Image {
    grid-template: "L L" auto "M S" auto / 50% 50%;
    grid-gap: 0;
  }
}

.SelectItem__Image__Large {
  grid-area: L;
}

.SelectItem__Image__Medium {
  grid-area: M;
}

.SelectItem__Image__Small {
  grid-area: S;
  padding: 0 40% 0 0;
}

@media screen and (max-width: 600px) {
  .SelectItem__Image__Small {
    padding: 0 0 0 0;
  }
}

.SelectItem__Comment {
  position: relative;
  top: -50px;
  width: 55%;
  font-family:
    Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
}

@media screen and (max-width: 600px) {
  .SelectItem__Comment {
    top: 0px;
    padding: 30px 10px 20px;
    width: 100%;
  }
}

.SelectItem__Comment__Title {
  padding: 0 0 30px;
  font-size: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 600px) {
  .SelectItem__Comment__Title {
    font-size: 14px;
    padding: 0 0 15px;
  }
}

.SelectItem__Emblem {
  position: absolute;
  right: 2%;
  top: 570px;
  width: 240px;
  height: 240px;
  padding: 25px;
  background-color: var(--ACCENTCOLOR);
  color: var(--FONTCOLOR_REVERSE);
  font-size: 17px;
  text-align: center;
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  .SelectItem__Emblem {
    display: none;
  }
}

.SelectItem__Emblem__Title {
  font-family: "Great Vibes", cursive;
  font-size: 40px;
  line-height: 1.9;
  padding: 20px 0 0;
  margin: 0;
}

.SelectItem__Emblem__Text {
  margin: 0;
}

.SelectItem__Link {
  padding: 40px 0 0;
}

@media screen and (max-width: 600px) {
  .SelectItem__Link {
    padding: 0 8px 0;
  }
}

.SelectItem__Link__List {
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  list-style: none;
}

.SelectItem__Link__ListItem {
  margin: 10px;
  width: calc(calc(100% / 6) - 20px);
}

@media screen and (max-width: 600px) {
  .SelectItem__Link__ListItem {
    margin: 4px;
    width: calc(calc(100% / 3) - 8px);
  }
}

.ItemCard {
  display: block;
  padding: 0;
  font-size: 10px;
  line-height: 1.7em;
}

.ItemCard img {
  border: 1px solid var(--BORDER_BASE);
}

.SelectItems.--background-color__even .ItemCard img {
  border: none;
}

@media screen and (max-width: 600px) {
  .SelectItems.--background-color__even .ItemCard img {
    border: 1px solid var(--BORDER_BASE);
  }
}

.ItemCard__Start {
  margin: 10px 0 0;
  border: 1px solid #cc0000;
  padding: 2px 5px;
  display: inline-block;
  color: #cc0000;
}

@media screen and (max-width: 600px) {
  .ItemCard__Start {
    margin: 5px 0 0;
  }
}

.ItemCard__Name {
  padding: 10px 0 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 600px) {
  .ItemCard__Name {
    padding: 5px 0 0;
  }
}

.ItemCard__Price {
  padding: 5px 0 0;
}

.ToTop {
  display: block;
  position: fixed;
  bottom: 0;
  right: 40px;
  padding: 15px;
  background-color: var(--BACKGROUNDCOLOR_REVERSE);
  color: var(--FONTCOLOR_REVERSE);
  font-size: 17px;
}

.ToTop:hover,
.ToTop:visited {
  color: var(--FONTCOLOR_REVERSE);
}

@media screen and (max-width: 600px) {
  .ToTop {
    display: none;
  }
}

/*inview
--------------------*/

.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 70px);
  -webkit-transform: translate(0, 70px);
  transition: 0.9s;
}

.fadeInUp {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
