@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap");

p,
h2 {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #FFF;
  /* Fills the page */
  position: relative;
  /* Fix for absolute positioning */
}

/* ハンバーガーメニュー */
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #C73C3F;
  border-radius: 50%;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

/* ハンバーガーメニューのメニュー */
.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1rem;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 30%;
  height: auto;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #e87475;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu-btn-check:checked~.menu-content {
  left: 70%;
  /*メニューを画面内へ*/
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.7;
  color: #202020;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*  header  */
.logo {
  width: 100px;
  margin-top: 14px;
  margin-left: 10px;
}

.page-header {
  display: flex;
  /*　両端の設定の指定 */
  justify-content: space-between;
}

.wrapper {
  margin: 0 auto;
  padding: 0 4%;
}

/*　冒頭文 */
.op-sentence {
  margin: 10px 50px 30px 50px;
  text-align: center;
}

/*　フェードイン　*/
/*左から右にフェードイン*/
.fade {
  font-size: 40px;
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  /*←@keyframesにも同じ名前を記述*/
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeIn {

  /*←animation-nameにも同じ名前を記述*/
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {

  /*←animation-nameにも同じ名前を記述*/
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
  }
}

.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 2s;
}

.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0.1;
  transform: translateY(20px);
  transition: all 1s;
}

.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/* ナビゲーション */
#menu {
  list-style-type: none;
  height: 50px;
  margin-bottom: 10px;
  padding: 0;
  background: #C73C3F;
  display: flex;
  flex-wrap: wrap;
}

#menu li {
  z-index: 70;
  position: relative;
  flex: 1;
  margin: 0;
  padding: 0;
  text-align: center;
}

.department-menu a {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-shadow: 3px 3px 5px #aaa;*/
}

#menu li ul {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}

#menu li:last-child ul {
  left: -100%;
  width: 100%;
}

#menu li ul li {
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #fff;
  transition: 0.2s;
}

#menu li ul li a {
  padding: 13px 15px;
  background: #D1A045;
  text-align: left;
  font-size: 0.75rem;
  font-weight: normal;
}

#menu li:hover>a {
  background: #D1A045;
}

#menu li:hover ul li {
  overflow: visible;
  height: 38px;
  border-bottom: 1px solid #fff;
}

#menu li:hover ul li:first-child {
  border-top: 0;
}

#menu li:hover ul li:last-child {
  border-bottom: 0;
}

/*  全体  */
.home-content {
  background-color: #FFF;
}

.header-img {
  background-size: cover;
  background-repeat: no-repeat;
}

/*  各賞のコンテンツ内容  */
.award-contents {
  font-size: 4rem;
  font-weight: normal;
}

/*  メダルとタイトル  */
.award-content-header {
  position: relative;
  padding-top: 4px;
  margin-bottom: 40px;
}

.award-wrapper {
  padding-top: 10px;
  background-color: white;
}

.award-wrapper h1 {
  padding: 30px;
  text-align: center;
}

.blog-title {
  font-size: 2.5rem;
  margin-top: 30px;
  margin-left: 150px;
  color: #595959;
  text-align: left;
  padding-left: 30px;
}

.special {
  margin-top: 5px;
  padding-left: 50px;
  margin-bottom: -70px;
}

.ribbon {
  display: inline-block;
  position: relative;
  height: 60px;
  /*リボンの高さ*/
  line-height: 27px;
  /*リボンの高さ*/
  text-align: center;
  padding: 5px 40px;
  /*横の大きさ*/
  font-size: 20px;
  /*文字の大きさ*/
  background: #FFD859;
  /*塗りつぶし色*/
  color: #FFF;
  /*文字色*/
  box-sizing: border-box;
  margin-left: 180px;
}

.ribbon:before,
.ribbon:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.ribbon:before {
  top: 0;
  left: 0;
  border-width: 30px 0px 28px 20px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.ribbon:after {
  top: 0;
  right: 0;
  border-width: 30px 20px 28px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

.blog-title a {
  color: #595959;
  text-decoration: underline;
}

.rensai-box a {
  color: #595959;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1rem;
}

p {
  font-size: 1.1rem;
}

.rensai-here {
  font-weight: bold;
  pointer-events: none;
}

.blog-eyecatch {
  padding: 30px 60px 30px 60px;
}

.award-content {
  margin-top: -20px;
  padding: 5px;
  display: flex;
}

.award-title img {
  width: 70%;
  height: auto;
  margin-top: 30px;
  margin-left: 150px;
  text-align: left;
  -o-object-fit: contain;
  object-fit: contain;
}

.award-title h2 {
  text-align: left;
}

.medal {
  /*    transform: rotate(20deg);*/
  width: 180px;
  height: 180px;
  position: absolute;
  display: flex;
  padding: 10px;
}

.award-content-header {
  margin-bottom: 80px;
}

/* 第一話リンク */
.rensai-box {
  margin: 10px 60px 10px 60px;
  padding: 30px;
  /* width: 90%;
   border: 1px solid #ccc; /* 枠線 */
  background-color: #fff;
  /* 背景色 */
  box-shadow: 1px 1px 10px #ccc;
}

.rensai-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
}

.rensai-btn-container {
  margin: 0 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #D1A045;
  border: 1px solid #D1A045;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}

a.btn_03:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}

a.btn_03:hover {
  background: #fff;
  color: #D1A045;
}

a.btn_03:hover:before {
  border-top: 2px solid #D1A045;
  border-right: 2px solid #D1A045;
}

.rensai-btn-container {
  font-size: 0.9rem;
}

.sentence-and-btn,
.footer-content p {
  font-size: 1rem;
  margin-left: 40px;
  color: #595959;
}

.each-rensai {
  display: flex;
  padding: 5px;
  border-bottom: 1px dashed;
}

/* 受賞コメント */
.comment-box {
  padding: 0em 0.3em 0.3em 0.3em;
  margin: 0.5em 0.8em;
  color: #D1A045;
  background: #C73C3F;
  border-bottom: solid 6px #D1A045;
  border-radius: 9px;
}

.comment-box p {
  margin: 10px;
  padding: 10px;
  color: white;
  overflow-wrap: break-word;
}

.comment-box h2 {
  font-style: italic;
  border-bottom: solid 2px #D1A045;
  display: inline-block;
  margin-bottom: 5px;
}

.balloon5 {
  width: 100%;
  margin: 30px 0 50px;
  overflow: hidden;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon5 .faceicon img {
  width: 100%;
  height: auto;
  border: solid 3px #f7dea0;
  border-radius: 50%;
}

.name {
  font-size: 0.8rem;
  text-align: center;
  margin-top: -30px;
}

.balloon5 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative;
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #f7dea0;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #f7dea0;
}

.says p {
  margin: 0.4rem;
  padding: 0;
  font-size: 1rem;
}

/* ボタン */
a.btn--goblog {
  color: #fff;
  background-color: #F9E2DE;
  border-bottom: 5px solid #E5778C;
}

a.btn--goblog:hover {
  margin-top: 3px;
  color: #fff;
  background: #F9E2DE;
  border-bottom: 2px solid #E5778C;
}

.btn,
a.btn,
button.btn {
  /*float: right;*/
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  margin: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/* サイド */
.aside-content {
  position: relative;
}

footer {
  background: #C73C3F;
  text-align: center;
  padding: 26px;
  margin-top: 50px;
}

footer p {
  color: #fff;
  font-size: 0.875rem;
}

.history-p {
  font-size: 1.5rem !important;
  font-weight: bold;
  height: 40px;
  margin-bottom: 10px;
  color: #FFF !important;
  background-color: #C73C3F !important;
  margin: 40px 60px 10px 60px;
  padding-left: 25px;
}

.histories {
  margin: 60px 60px;
}

.history {
  display: flex;
}

.ogp-body {
  width: 40%;
  border: 1px solid #e5e5e5;
  background-color: #FFFFFF;
  box-sizing: border-box;
  line-height: 1.3em;
  margin: 0px 50px 10px 50px;
  display: flex;
  flex-direction: row;
}

.ogp-image {
  width: 70px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.ogp-link {
  text-decoration: none !important;
  display: flex;
}

.ogp-box {
  padding: 15px;
  -webkit-flex: 1;
  flex: 1;
  overflow: hidden;
  color: #595959;
}

@media screen and (max-width: 480px) {
  .header-content p {
    font-size: 0.8rem;
  }

  .award-title img {
    width: 80%;
    height: auto;
    margin-top: 30px;
    margin-left: 30px;
    text-align: left;
    -o-object-fit: contain;
    object-fit: contain;
  }

  #menu-btn-check:checked~.menu-content {
    left: 50%;
    /*メニューを画面内へ*/
  }

  .menu-content {
    width: 50%;
  }

  .menu-content ul li a {
    font-size: 1rem;
  }

  #menu li a {
    font-size: 0.9rem;
  }

  #menu {
    height: auto;
  }

  .medal {
    width: 100px;
    height: 100px;
  }

  .award-title h2 {
    padding-left: 20px;
    padding-right: 5px;
  }

  .award-contents {
    font-size: 1rem;
  }

  .award-content {
    margin-top: 0px;
  }

  .blog-eyecatch {
    padding: 10px 20px;
  }

  .eyecatch-special {
    margin-top: -20px;
  }

  .sentence-and-btn {
    margin-left: 5px;
  }

  .rensai-box {
    margin: 5px;
    padding: 3px;
  }

  .each-rensai p {
    font-size: 0.9rem;
  }

  .rensai-title {
    margin-right: 5px;
    margin-left: 5px;
  }

  a.btn_03 {
    font-size: 0.7rem;
    padding: 0 3px 0 3px;
    width: 100px;
    height: 40px;
  }

  a.btn_03:before {
    right: 12px;
    margin-top: -4px;
  }

  .blog-title {
    font-size: 1.3rem;
    /* margin-top: 5px; */
    margin-left: 80px;
    /* padding-left: 30px; */
  }

  .ribbon {
    height: 40px;
    line-height: 15px;
    font-size: 15px;
    margin-left: 100px;
    margin-top: 30px;
  }

  .ribbon:before {
    border-width: 20px 0px 21px 20px;
  }

  .ribbon:after {
    border-width: 20px 20px 21px 0px;
  }

  .special {
    margin-bottom: 0px;
  }

  .award-content-header {
    margin-bottom: 30px;
  }

  .sentence-and-btn p {
    font-size: 1rem;
  }

  .btn,
  a.btn,
  button.btn {
    font-size: 1.2rem;
  }

  .history-p {
    margin: 40px 0px 10px 0px;
  }

  .history {
    display: block;
  }

  .ogp-body {
    width: 100%;
    margin: 0px 0px 10px 0px;
  }

  .name {
    margin-top: 0px;
  }

}

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

  /*　画面サイズが1024pxからはここを読み込む　*/
  .content-wrapper {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }

  .sentence-and-btn p {
    font-size: 1.1rem;
  }

  .btn,
  a.btn,
  button.btn {
    font-size: 1.2rem;
  }

  .comment-box p {
    font-size: 1.2rem;
  }

  .comment-box h2 {
    font-size: 1.5rem;
  }
}

.hana {
  position: absolute;
  height: 0;
  width: 0;
  border: 10px solid pink;
  transform: skew(10deg, 30deg);
  /* calc((90deg - 欲しい角度) / 2) */
}

#menu {
  height: auto;
}

summary {
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #595959;
}

summary {
  position: relative;
  display: block;
  /* 矢印を消す */
  padding: 10px 10px 10px 30px;
  /* アイコンの余白を開ける */
  cursor: pointer;
  /* カーソルをポインターに */
  font-weight: bold;
  transition: 0.2s;
}

summary::-webkit-details-marker {
  display: none;
  /* 矢印を消す */
}

/* 疑似要素でアイコンを表示 */
summary:before,
summary:after {
  content: "";
  margin: auto 0 auto 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

summary:before {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: #C0282E;
}

summary:after {
  left: 6px;
  width: 5px;
  height: 5px;
  border: 4px solid transparent;
  border-left: 5px solid #fff;
  box-sizing: border-box;
  transition: 0.1s;
}

/* オープン時のスタイル */
/* --- 
details[open] summary {
  background-color: #F8CD5E;
} --- */
details[open] summary:after {
  transform: rotate(90deg);
  /* アイコンを回転 */
  left: 4px;
  /* 位置を調整 */
  top: 5px;
  /* 位置を調整 */
}

/* アニメーション */
details[open] .details-content {
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

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