* {
    margin: 0;
    padding: 0;
    font-family: "M PLUS Rounded 1c", "Nunito Sans", sans-serif;
}

.raw-text {
    white-space: pre-wrap;
    margin: 0;
}

/** Header **/

.site-header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0 !important;
    right: 0;
    z-index: 103;

    color: #000;
    background: #fff;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.site-header #site-header-brand {
    color: #2e2e2e;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 38px;
    font-weight: 400;
    line-height: 38px;
    text-decoration: none;
}

.header-logo {
    height: 60px;
}

.user-icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
}


.site-header {
    color: #333;
    background: #fff;
}

.site-header-nav-item {
    color: #333;
    display: inline-block;
    padding: 10px 10px 6px 10px;
    margin-left: 1.25rem;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

.site-header-nav-item:not(.selected):hover {
    color: #777;
    border-bottom: 3px solid #ddd;
}

.site-header-nav-item.selected {
    color: #333;
    border-bottom: 3px solid #333;
}

.header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
}

.nav-items {
    margin-top: 18px;
    padding: 0;
    list-style: none;

}

.nav-items__item a {
    color: black;
    width: 100%;
    display: block;
    font-size: 20px;
    margin-bottom: 24px;
    text-decoration: none;
}

.nav-items__item:last-child a {
    margin-bottom: 0;
}

/******* Hamburger Menu *******/

.header-hamburger {
    width: 40px;
    height: 100%;
}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    margin: 8px 0;
}

.hamburger span:nth-child(3) {
    top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}

/******* Scroll Start *******/
.site-header {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.site-header.site-header-nav-scrolled {
    margin: 0;
    background-color: white;

    -webkit-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
    -moz-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
    -ms-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
    -o-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
    box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
}
/******* Scroll End *******/

/******* Scroll Start on the phone *******/
.site-header {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.site-header.site-header-nav-scrolled-ph {
    margin-top: -160px;

    -webkit-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
    -moz-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
    -ms-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
    -o-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
    box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
}
/******* Scroll End *******/

/** Jumbotron **/
.jumbotron-wrapper {
    background: #272538;
    /* padding: 0 30px; */
}

.jumbotron {
    padding-top: 150px;
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
}



/** Footer **/
.site-footer{
    position:relative;
    font-size:12px;
    line-height:1.5;
    color:#777;
    border-top:2px solid #eee;
    padding-top: 12px;
}


/** Post List **/
.post-list {
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
}

.post-card {
    display: inline-block;
    perspective: 1000;
    position: relative;
    text-align: left;
    transition: all 0.3s 0s ease-in;
    width: 80%;
    max-width: 400px;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 2px 3px 0 rgb(0 0 0 / 22%);
    padding: 0;
    cursor: pointer;
    margin-bottom: 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 8px;
}
.post-card.minecraft {
    max-width: 350px;
    height: 380px;
}

.post-card .post-img{
    /* width: 100%; */
    max-width: 100%;
    max-height: 200px;
    /* border-radius: 5px 5px 0 0; */
}

.post-card .post-img-holder {
    background: rgba(0,0,0,0.9);
    height: 200px;
    /* padding-bottom: 57%; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 5px 0 0;
}
.post-card .post-img-holder img {
    transition: all 0.1s 0s ease-in;
}
.post-card:hover > .post-img-holder img {
    transform: scale(1.05);
}
.post-card .card-title {
    background: #ffffff;
    padding: 8px 18px 14px;
    position: relative;
    z-index: 0;
    border-radius: 0 0 5px 5px;
}
.post-card .card-title p {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    margin: 6px 0 3px;
    padding: 0;
    line-height: 1.56;
    color: #555;
}

.post-card .card-title .card-htitle {
    font-size: 24px;
}

.post-card .card-title .post-date {
    display: flex;
    flex-flow: row;
    font-weight: 600;
    font-size: 0.85rem;
    justify-content: space-between;
    letter-spacing: 0.02rem;
    color: #b5b5b5;
    position: relative;
}
.post-card .card-title .post-date .players {
    font-size: 0.85rem;
    color: #b5b5b5;
    margin: 0
}

@media screen and (max-width: 767px) {
    .jumbotron-wrapper {
        padding: 0;
    }
    .post-list {
        flex-direction: column;
    }
    .post-card {
        width: 100%;
    }
}

.post-list-item {
    position: relative;
    list-style: none;
    border-bottom: 1px solid #eee;
}

.post-list-item .post-img {
    max-width: 100%;
    max-height: 500px;
    text-align: center;
    margin: auto;
    border: 1px solid #ddd;
}

.post-list-title a {
    text-decoration: none;
}

.post-list-description {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 18px;
    color: #666;
}

.post-list-meta {
    margin-top: 8px;
    margin-bottom: 0;
    color: #888;
}

.post-list-meta, .post-list-meta.octicon {
    font-size: 18px;
}

.geopattern {
    background-size: contain; /* To fix strange behavior when zoom in/out */
}

.sidebar-title {
    text-align: center;
}

.bordered-btn {
    padding: 8px 16px;
    border: 1px solid #333;
    background-color: transparent;
    color: #333;
    text-decoration: none;
}
.bordered-btn:hover {
    background-color: #eee;
    color: #333;
}

.click-to-expand-img:hover {
    cursor: pointer;
    opacity: 0.8;
}

.badge {
    font-size: 14px;
}

.bg-nazo {
    background-color: #7952b3 !important;
    color: #fff;
}

.bg-minecraft {
    background-color: #11BF6B !important;
    color: #fff;
}

.bg-lynx {
    background-color: #23B7E8 !important;
    color: #fff;
}

.platform-btn {
    color: #333;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 12px;
}
.platform-btn:hover {
    /* background-color: #333; */
    /* color: #fff; */
    border-color: #bbb;
    outline: 1px solid #bbb;
}

.platform-btn.btn-sm {
    width: 50px;
    height: 50px;
}

.platform-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.platform-icon-text {
    font-size: 14px;
    color: #666;
}

.page-title {
    font-size: 2.2rem;
    font-weight: bolder;
    font-family: 'Quicksand';
}

.section-title {
    margin: 16px 0;
    border-left: 8px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 4px 16px;
    font-size: 2.0rem;
}

.scroll-horizontal {
    overflow-y: hidden;
    overflow-x: scroll;
}



/* ヘッダー全体 */
.site-header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  z-index: 10;
}

/* ロゴ */
.header-logo {
  height: 32px;
}

/* ナビ */
.site-nav {
  gap: 2rem;
}
.site-nav .nav-item {
  position: relative;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}
.site-nav .nav-item.active {
  color: #007bff;
}
.site-nav .nav-item.active::after {
  /* 選択中の下線 */
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #007bff;
}

/* ユーザーアイコン */
.user-icon {
  width: 36px;
  height: 36px;
  object-fit: cover;
  cursor: pointer;
}

/* ドロップダウン */
.auth-dropdown .dropdown-menu {
  min-width: 140px;
}

/* ハンバーガー */
.header-hamburger {
  border: none;
  background: transparent;
  padding: 0.25rem;
}
.header-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 4px;
  background: #333;
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}

.modal {
  z-index: 2000 !important;
}

.modal-backdrop {
  z-index: 1000 !important;
}
