@charset "utf-8";

html {
  font-size: 0.625em; /* 10 / 16 */
  -webkit-font-smoothing: antialiased
}

@media only screen and (min-width: 767px) {
  html {
    font-size: 0.6875em; /* 11 / 16 */
  }
}

@media only screen and (min-width: 896px) {
  html {
    font-size: 0.75em; /* 12 / 16 */
  }
}

@media only screen and (min-width: 1216px) {
  html {
    font-size: 0.8125em; /* 13 / 16 */
  }
}

@media only screen and (min-width: 1408px) {
  html {
    font-size: 0.875em; /* 14 / 16 */
  }
}

body {
  font-family: "游ゴシック Medium", "游ゴシック", YuGothic, "Noto Sans CJK JP", Meiryo, Roboto, sans-serif;
  background-image: url(/doraemon-assets/images/bg.png);
  background-size: 600px;
  text-align: center;
  font-size: 1.2rem;
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  vertical-align: middle;
  width: 100%;
}

p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.is-item-cover {
  box-shadow: 0 2px 5px 0 rgba(70, 70, 70, 0.26);
}

/* Bulma互換ユーティリティ */
.section {
  display: block;
  width: 100%;
}

.is-subsection {
  margin-top: 2rem;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  margin-top: -0.6rem;
  padding-left: 0;
}

.column {
  box-sizing: border-box;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding: 0.6rem;
}

.has-text-centered {
  text-align: center;
}

.is-half {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
}

.is-inline-block {
  display: inline-block;
}

.is-item-cover {
  display: block;
  width: 100%;
  height: auto;
}

.is-mobile {
  display: flex;
}

.is-multiline {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.is-one-third-mobile {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 33.3333%;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 767px) {
  .is-one-fifth-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%;
  }
}

#layout-body {
  border-top: 0;
}

/* グローバルヘッダー */

#global-header {
  width: 100%;
  position: fixed;
  max-width: 100%;
  height: 50px;
  top: 0;
  z-index: 30;
  background: rgba(0, 91, 172, 0.8);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#global-header.global-header--hidden {
  background: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#global-header__logo {
  box-sizing: content-box;
  display: block;
  max-width: 200px;
  width: 100%;
  padding: 0.8rem;
}

/* ハンバーガーメニュー*/

.drawer-hamburger {
  height: 80%;
  padding: 0 1rem 1rem;
  position: absolute;
  width: 3rem;
  z-index: 40;
  border-left: none;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #fff;
}

.drawer-open .drawer-hamburger-icon::after,
.drawer-open .drawer-hamburger-icon::before {
  background-color: #1a72c6;
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  top: -10px;
}

.drawer-hamburger-icon:after {
  top: 10px
}

.menu-list {
  font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック", YuGothic, "Noto Sans CJK JP", Meiryo, Roboto, sans-serif;
  margin-top: 6rem;
}

.menu-list > li {
  border-bottom: none;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.menu-list > li > a {
  color: #1a72c6;
  padding: 1rem;
  font-weight: bold;
}

/* メイン */

.main {
  max-width: 800px;
  width: 90%;
  margin: auto;
  padding: 5rem 0 2rem;
}

.main-pc {
  display: none;
}

.caption-white {
  color: #fff;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: bold;
  padding: 0 1rem;
  font-size: 1.3rem;
}

.news-container {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem 0;
  margin: auto;
}

.item-news-img {
  margin-right: 1rem;
  max-width: 170px;
  width: 30%;
}

.item-news-text {
  font-weight: bold;
  color: #ff0;
  text-align: left;
}

.item-news-text a {
  color: #ff0;
  text-decoration: underline;
}

.sec-series {
  max-width: 1200px;
  margin: 5rem 1rem 0;
  padding: 4rem 2rem;
  border-radius: 30px;
  background-image: url(/doraemon-assets/images/red-line.png);
  background-size: 1250px;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
}

.bg-white {
  background-color: #fff;
}

.comic-title {
  font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック", YuGothic, "Noto Sans CJK JP", Meiryo, Roboto, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.comic-title small {
  font-size: 1.2rem;
}

.text-blue {
  color: #1a72c6;
}

.item-img {
  margin-bottom: 2rem;
}

.item-text p {
  text-align: left;
}

.text-bold {
  font-weight: bold;
}

.button-doraemon-box {
  margin: 2rem auto;
}

.button-boraemon {
  max-width: 400px;
  font-weight: bold;
  margin: 1.5rem auto;
}

.button-boraemon a {
  display: block;
  width: 100%;
  padding: 1.5rem;
}

.button-boraemon-blue {
  background-color: #1a72c6;
  border-radius: 30px;
}

.button-boraemon-white {
  border-radius: 30px;
  border: solid 2px #1a72c6;
}

.button-boraemon-blue a {
  color: #fff;
}

.button-boraemon-white a {
  color: #1a72c6;
}

.bell {
  width: 50px;
  position: absolute;
  left: 45%;
  bottom: -2rem;
}

a.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.doraemon-bn {
  max-width: 640px;
  margin: 6rem auto 0;
  padding: 0 1rem;
}

/* ページトップ */

#page-top {
  width: 100px;
  border-radius: 10px;
  position: fixed;
  right: 5px;
  bottom: 20px;
  z-index: 1;
}

/* フッター */

#footer-doraemon {
  background-color: #fff;
  margin-top: 8rem;
  padding: 5rem 0 1rem;
}

.share-button-box {
  position: relative;
}

.share-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -8rem;
  left: 85px;
  transform: translateX(-33%);
  -webkit-transform: translateX(-33%);
  -ms-transform: translateX(-33%);
  width: 250px;
}

.share-button-container li {
  margin: 0 0.8rem;
}

.text-bule {
  color: #1a72c6;
  font-weight: bold;
  padding: 1rem 0;
}

/* シリーズページ */

.bg-series {
  margin: 0 1rem;
}

.series-content {
  padding-top: 5rem;
}

.comic-container-series {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comic-container-series .item-img {
  width: 40%;
  margin-right: 1rem;
}

.comic-container-series .item-text {
  width: 55%;
}

.comic-container-series .comic-title {
  margin-bottom: 1rem;
}

@media screen and (min-width: 767px) {

  /* グローバルヘッダー */

  #global-header {
    height: 70px;
  }

  #global-header__logo {
    max-width: 280px;
  }

  /* ハンバーガーメニュー */

  .drawer-hamburger {
    padding: 0 3rem 1rem;
  }

  .drawer-nav {
    width: 35%;
  }

  .drawer-hamburger-icon:after,
  .drawer-hamburger-icon:before {
    top: -12px;
  }

  .drawer-hamburger-icon:after {
    top: 12px
  }

  /* メイン */

  .doraemon-content {
    margin: 0 2rem;
  }

  .main-sp {
    display: none;
  }

  .main-pc {
    display: block;
  }

  .caption-white {
    font-weight: 400;
    font-size: 1.6rem;
  }

  .sec-series {
    margin: 5rem auto 0;
    padding: 4rem 2rem;
    border-radius: 30px;
  }

  .comic-title {
    font-size: 2.4rem;
    font-weight: bold;
  }

  .comic-title small {
    font-size: 1.6rem;
  }

  .comic-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .item-img {
    width: 40%;
    margin-right: 2rem;
  }

  .item-text {
    width: 50%;
  }

  .item-text p {
    font-size: 1.2rem;
  }

  .button-doraemon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .button-boraemon {
    max-width: 260px;
    width: 100%;
    margin: 0 1rem 1rem 0;
  }

  .button-boraemon a {
    padding: 1rem;
    font-size: 1rem;
  }

  .bell {
    width: 60px;
    left: 47.7%;
  }

  a.anchor {
    display: block;
    padding-top: 150px;
    margin-top: -150px;
  }

  /* ページトップ */

  #page-top {
    width: 120px;
    right: 1.5rem;
    bottom: 50px;
  }

  /* フッター */

  .share-button-container {
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 300px;
  }

  /*シリーズページ */

  .bg-series {
    margin: 1rem auto;
  }

  .comic-container-series {
    max-width: 800px;
    margin: auto;
  }

  .comic-container-series .item-img {
    width: 40%;
    margin-right: 1rem;
  }

  .comic-container-series .item-text {
    min-width: 200px;
    width: auto;
  }

  .button-boraemon-center {
    margin: 0 auto 2rem;
    max-width: 400px;
  }

  .button-boraemon-center a {
    font-size: 1.2rem;
  }

  .cover-container-series {
    max-width: 860px;
    margin: 2rem auto 0;
  }
}

@media only screen and (min-width: 896px) {
  #hamburger-menu {
    display: block;
  }
}

