@charset "utf-8";
/* 2023/07/18 16:32 */
/*
COLORS
================================================ */
:root {
  --light-blue: #4db1ec;
  --blue: #1665cc;
  --purple: #b473bf;
  --pink: #ffb2c1;
  --orange: #ff9f67;
  --yellow: #ffd673;
  --light-green: #a2e29b;
  --green: #00a2af;
  --white: #fff;
  --theme: #23c8a1;
  /* --theme: #c55aaa; */
  --light-theme: #a1e6d5;
  /* --light-theme: #e3b2d3; */
  --d2-gray: #d2d2d2;
  --light-grey: #646464;
  --gray: #505050;
  --yellow: #ffff33;
  --twitter: rgb(29 155 240);
}

/*
GENERAL STYLING
================================================ */
html {
  font-size: 100%;
  /* スムーズスクロール */
  scroll-behavior: smooth;
}
body {
  /* color: var(--grey); */
  color: var(--light-grey);
  font-family: "Lucida Grande", Verdana, "Helvetica Neue", AquaKana, Arial,
    ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
    "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
}

/*
COMMON
================================================ */
p {
  line-height: 1.7;
}
img {
  max-width: 100%;
}
a {
  text-decoration: underline;
}

/* Layout */
.wrapper {
  max-width: 887px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.submenu-button {
  position: absolute;
  top: 77px;
  right: 7px;
  text-align: center;
  padding: 3px;
  /* margin-top: 0.5rem; */
  background-color: var(--d2-gray);
  border-radius: 6px;
  border: 1px solid;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.7rem;
}

/*
HEADER
================================================ */

/*==================================================
　5-2-7 3本線が奥行きを持って回転して×に
https://coco-factory.jp/ugokuweb/move01/5-2-7/
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 4;
}

/*ボタン内側*/
.openbtn .openbtn-area {
  transition: all 0.4s;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 12px;
  height: 2px;
  background: #fff;
  width: 60%;
}

.openbtn span:nth-of-type(1) {
  top: 14px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 32px;
}

/*open-menuクラスが付与されると
線と周りのエリアが回転して×になる*/
.openbtn.open-menu .openbtn-area {
  transform: rotateY(-360deg);
}

.openbtn.open-menu span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.openbtn.open-menu span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.open-menu span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

header {
  background: var(--theme);
  padding: 6px 0;
  padding-bottom: 8px;
  width: 100%;
  z-index: 1;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
}
header a {
  color: var(--gray);
  font-size: 1rem;
}
header .star {
  color: var(--theme);
  font-size: 1.8rem;
}
header .logo {
  margin-top: 8px;
  margin-left: 2px;
}

.btn-menu {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 0.5rem 1rem;
}
.main-nav {
  background: var(--light-theme);
  width: 0;
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 0;
  overflow: hidden;
  transition: 0.3s;
  padding-top: 20px;
}
.main-nav li {
  text-align: center;
  margin: 1.5rem 0;
}
.main-nav a {
  /* display: block; */
  text-decoration: none;
}
.main-nav.open-menu {
  width: 100%;
}

/* https://cotodama.co/search-box/ */
header .search_container {
  position: relative;
  box-sizing: border-box;
  border: 1px solid var(--gray);
  display: block;
  margin-top: 9px;
  margin-left: 15px;
  padding: 3px 10px;
  border-radius: 6px;
  height: 2em;
  width: 50%;
  min-width: 190px;
  overflow: hidden;
  background: var(--white);
}

header .search_container input[type="search"] {
  width: 100%;
  padding-right: 40px;
  border: none;
  height: 1.5em;
  background-color: white;
}

header .search_container input[type="search"]:focus {
  outline: 0;
}

header .search_container input[type="submit"] {
  cursor: pointer;
  font-family: FontAwesome;
  border: none;
  background: var(--light-theme);
  color: var(--gray);
  position: absolute;
  width: 2em;
  height: 3em;
  right: 0px;
  top: -15px;
  outline: none;
  padding-left: 9px;
  padding-top: 0px;
  font-size: 20px;
}
/*
TOP HERO
================================================ */
#hero {
  /* ↓ 省略形だとブラウザーによってうまく表示されない
    background: var(--light-blue)
    url('../images/hero.jpg') no-repeat center / cover; */
  /* background-color: var(--light-blue); */
  /* background-image: url('/img/top/dot.png'),linear-gradient(#2e3133,90%, white); */
  background-size: cover;
  background-color: black;
  background-image: url("https://img.anime-sommelier.com/cdn-cgi/imagedelivery/PK1rLZIoZ2eoqvWk0XXG8Q/ef745804-c815-4d88-5124-66305bb60700/pub");
  background-repeat: no-repeat;
  background-position: center top -50px;
  padding-bottom: 40px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#hero .wrapper {
  width: 80vw;
  min-width: 365px;
}

#hero img {
  width: auto;
  height: auto;
  margin: 3rem 0;
}

#hero h1,
#hero p {
  display: inline;
  color: white;
}

/*
TOP 好きなアニメ5入力
================================================ */
#five-select {
  background: linear-gradient(to bottom, black, 30%, white);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#five-select .wrapper {
  margin: auto 2rem 1rem;
  padding-bottom: 1.5rem;
  background-image: url("https://img.anime-sommelier.com/cdn-cgi/imagedelivery/PK1rLZIoZ2eoqvWk0XXG8Q/99c171ba-fa40-4857-3a15-5bd9bc22f500/pub");
  background-size: cover;
  height: auto;
  color: #848484;
}

#five-select p {
  padding: 0.5rem;
}

#five-select .center {
  text-align: center;
}

.diag-title {
  width: 94%;
  margin: 0.7rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2rem;
  position: relative;
  display: inline-block;
  padding: 0.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border: 1.4px solid #646464;
  color: #fff;
  background-image: repeating-linear-gradient(
    315deg,
    #00a8ff,
    #00a8ff 8px,
    #0087ce 8px,
    #0087ce 11px
  );
}

.login-title {
  width: 94%;
  margin: 0.7rem;
  margin-left: 3%;
  margin-right: 3%;
  font-size: 2rem;
  font-weight: 600;
  line-height: 3rem;
  position: relative;
  display: inline-block;
  padding: 0.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border: 1.4px solid #646464;
  color: #fff;
  background-image: repeating-linear-gradient(
    315deg,
    #00a8ff,
    #00a8ff 8px,
    #0087ce 8px,
    #0087ce 11px
  );
}

.top-more-btn {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.2rem;
}

.anime-title-form input {
  background: white;
  width: 95%;
  height: 2.5rem;
  padding: 0.5rem;
  margin: 0.4rem;
  border: 1px solid #646464;
  overflow: auto;
}

.anime-title-form input::placeholder {
  color: #b4b4b4;
}

.anime-title-form ul,
.anime-title-form li {
  line-height: 2rem;
}

.btn--blue.btn--border-solid {
  /* https://jajaaan.co.jp/css/button/ */
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2rem;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2.1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: 1.4px solid #646464;
  color: #fff;
  background-image: repeating-linear-gradient(
    315deg,
    #05aaff,
    #05aaff 9px,
    #26b5ff 9px,
    #26b5ff 12px
  );
}

.search-suggest-box {
  background-color: #d8f2ff;
  color: #2694c5;
  width: 95%;
  margin-left: 0.4rem;
  padding: 0 1rem 0 0.5rem;
  border: 1px solid #bbb;
  /* border-top: 2px dashed #bbb; */
  border-top: none;
  position: relative;
  top: -7px;
}

/*
TOP 20レコメンド表示カルーセル
================================================ */
#recommend-slide .center {
  text-align: center;
  margin: 0.9rem 0;
}
.blue-hr {
  width: 100%;
  height: 0.8rem;
  margin-bottom: 0.8rem;
  background-image: repeating-linear-gradient(
    315deg,
    #05aaff,
    #05aaff 12px,
    #26b5ff 12px,
    #26b5ff 16px
  );
}
.swiper {
  /* width: calc(100% - 200px); */
  height: 23.5rem;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}
.swiper-button-prev:after {
  content: "\f137";
  margin-left: 15px;
}
.swiper-button-next:after {
  content: "\f138";
  margin-left: -15px;
}
.swiper-pagination {
  color: #999;
}
.slide-img img {
  width: 100%;
}

.swiper-slide .slide-content h2 {
  position: absolute;
  top: 220px;
  left: 0px;
  color: #23c8a1;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.5rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  padding: 3px 8px;
  max-height: 130px;
  overflow: hidden;
}

.swiper-slide {
  width: 150px;
}

.swiper-pagination {
  padding-bottom: 0.5rem;
}

.swiper-scrollbar {
  background-color: #00a8ff;
}

.swiper-scrollbar-drag {
  background-color: #ade2fd;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 10px;
}
/*
TOP 利用方法ガイド
================================================ */
#usage {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide {
  font-size: 1.2rem;
  text-align: center;
  width: 20rem;
  padding: 1rem;
  color: #646464;
}

.btn--green.btn--border-solid {
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2rem;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2.1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: 1.4px solid #646464;
  color: var(--yellow);
  background-image: repeating-linear-gradient(
    315deg,
    var(--theme),
    var(--theme) 9px,
    #41d0ae 9px,
    #41d0ae 12px
  );
}

.twitter-share-button {
  display: inline-block;
  text-align: center;
  width: 18rem;
  height: 2.5rem;
  padding: 0.7rem;
  margin-bottom: 1rem;
  background-color: var(--twitter);
  border-radius: 6px;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

#recommend-slide a {
  text-decoration: none;
}

.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.8rem;
}
/*
FOOTER
================================================ */
footer {
  background: var(--theme);
  text-align: center;
  padding: 0.8rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

footer li {
  margin: 0 12px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer small {
  /* color: #c7c3ba; */
  color: var(--light-grey);
  font-size: 0.6rem;
}

/*
アニメ詳細
================================================
*/
.anime-info dt::after {
  content: ":";
}

.anime-header {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 2px solid;
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
}

.anime-title-container {
  display: flex;
}

.anime-mainvisual {
  width: 150px;
  height: 213px;
  min-width: 150px;
  margin: 0.5rem 0.4rem 0.5rem 0;
  object-fit: cover;
  object-position: center;
}

.anime-title-container h1,
.anime-title-container h2,
.anime-title-container h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--theme);
  margin-bottom: 2rem;
}

.anime-info {
  margin: 0.2rem 0.6rem 0.3rem 0.2rem;
}

.anime-info dl {
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  flex-flow: row wrap;
  width: 100%;
}

.anime-info dt {
  width: 55%;
  font-weight: 400;
}

.anime-info dd {
  width: 45%;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.anime-score-editor-container {
  position: relative;
}

.anime-score-editor-container select,
.anime-score-editor-container input {
  border: 1px solid #bbb;
  padding: 0.6rem;
}

.anime-score-editor-container input {
  width: 5rem;
}

.form_status {
  display: inline;
}

.form_episodes {
  /* margin-left: 1rem; */
  margin-left: 0;
  display: inline;
}

form #rate_form {
  display: inline;
  width: 100%;
  font-size: 0.9rem;
}
/*
アニメ詳細 LIGHTBOX LUMINOUS
================================================ */
.lum-lightbox.lum-open {
  z-index: 4;
}

.lum-lightbox-inner img {
  max-width: 90vw;
  /* max-height: 80vh; */
}

.lum-lightbox-caption {
  position: relative;
}
/*
アニメ詳細 スコア
https://www.cssscript.com/simple-5-star-rating-system-with-css-and-html-radios/
*/
div.stars {
  width: auto;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  margin-top: 0.4rem;
}

input.star {
  display: none;
}

label.star {
  float: right;
  padding: 0.2rem;
  font-size: 1.5rem;
  transition: all 0.2s;
}

input.star:checked ~ label.star:after {
  content: "\f005";
  color: #fd4;
  transition: all 0.25s;
}
input.star-10:checked ~ label.star:after {
  color: #fe7;
  text-shadow: 0 0 20px #952;
}
input.star-9:checked ~ label.star:after {
  color: #ff0404;
}
input.star-8:checked ~ label.star:after {
  color: #ff0404;
}
input.star-7:checked ~ label.star:after {
  color: #ff0404;
}
input.star-6:checked ~ label.star:after {
  color: #b277ff;
}
input.star-5:checked ~ label.star:after {
  color: #b277ff;
}
input.star-4:checked ~ label.star:after {
  color: #b277ff;
}
input.star-3:checked ~ label.star:after {
  color: #00cbff;
}
input.star-2:checked ~ label.star:after {
  color: #00cbff;
}
input.star-1:checked ~ label.star:after {
  color: #00cbff;
}
label.star:after {
  content: "\f006";
  font-weight: 300;
  font-family: FontAwesome;
}
/*
アニメ詳細 情報
================================================ */
.main-visual-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.main-visual-menu p {
  font-size: 0.8rem;
  text-align: center;
  margin: 0.5rem;
}

/*
アニメ詳細 これも見ています
================================================ */
.gray-title {
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2rem;
  position: relative;
  display: inline-block;
  padding: 0.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #707070;
  background-color: var(--d2-gray);
}

.general-links {
  line-height: 2.4rem;
  margin-left: 0.6rem;
  margin-bottom: 1.5rem;
}

.anime-info-item {
  margin-top: 0.8rem;
  margin-left: 0.5rem;
}

.anime-status-button-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 1rem;
}

.anime-info-status-box {
  text-align: center;
}

.anime-info-status-box label {
  display: inline-block;
  text-align: center;
  width: 9rem;
  height: 2.5rem;
  padding: 0.7rem;
  border-radius: 6px;
  color: var(--gray);
  font-weight: 800;
  cursor: pointer;
}

#similar-anime .anime-info {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.similar-anime-status {
  display: none;
}

.similar-anime-status:checked + label {
  background-color: var(--theme);
  color: white;
}

.similar-anime-status:disabled + label {
  color: white;
  background-color: #eee;
}
/*
recommend
================================================ */
#recommend-head p {
  line-height: 1.3rem;
}

.status-open-config {
  font-size: 0.7rem;
  padding-top: 0.5rem;
}

.status-open-config a {
  text-decoration: none;
}

.green-title {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 0.3rem;
  border: red;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #707070;
  background-color: var(--theme);
}

.round-title-active {
  padding: 0.5rem 0;
  margin: 0.1rem 1.2rem;
  border-radius: 100vh;
  background-color: white;
  font-size: 1.1rem;
  font-weight: 600;
}
/*
アニメリスト - 今期アニメ
================================================ */
.anime-column-view-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.anime-column-view-item {
  width: 171px;
  height: 376px;
  position: relative;
  margin-bottom: 0.6rem;
}

.anime-info h2 {
  max-height: 73px;
  overflow: hidden;
}

.anime-column-view-item label {
  position: absolute;
  bottom: 0px;
  left: 5px;
}

.start-date {
  font-size: 0.8rem;
  width: 100%;
  position: absolute;
  bottom: 55px;
  left: 40px;
}

.anime-list-view-container table {
  margin: 0.8rem 0 2.5rem 0;
  width: 100%;
}
.anime-list-view-container th,
td {
  display: block;
}

.anime-list-view-container .table-title {
  font-weight: normal;
  background: var(--light-theme);
  vertical-align: middle;
  padding: 0.2rem;
}

.anime-list-view-container th {
  font-weight: 700;
  background: #caf1e7;
  vertical-align: middle;
  padding: 0.2rem;
}

.anime-list-view-container td {
  padding: 0.4rem 1rem 0.4rem;
}
.anime-list-view-container tr:nth-child(odd) {
  background: #f0fffb;
}
.anime-list-view-container tr:nth-child(even) th {
  background: white;
}
/* ページ送り */
.pagination {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  text-align: center;
}

.pagination a:hover {
  background: #93d8d0;
  color: #fff;
}

.pagination a,
.pagination .current {
  border-radius: 50%;
  padding-top: 9px;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
.pagination .current {
  background: #ccc;
  color: #fff;
}
/*
見たアニメリスト
================================================ */
.histogram {
  text-align: center;
}

.histogram img {
  max-height: 18rem;
}

.anime-info .rate {
  font-size: 0.8rem;
  width: 80%;
  position: absolute;
  bottom: 55px;
  text-align: center;
  margin-right: 30px;
  /* left: 40px; */
}

.anime-info .r10 {
  color: #fe7;
  text-shadow: 0 0 20px #952;
}
.anime-info .r9,
.anime-info .r8,
.anime-info .r7 {
  color: #ff0404;
}
.anime-info .r6,
.anime-info .r5,
.anime-info .r4 {
  color: #b277ff;
}
.anime-info .r3,
.anime-info .r2,
.anime-info .r1 {
  color: #00cbff;
}

.anime-info-status-box-listed label {
  display: inline-block;
  text-align: center;
  width: 9rem;
  height: 2.5rem;
  padding: 0.7rem;
  color: white;
  font-weight: 800;
}

.status-gray label {
  /* デフォルト自分も興味ある */
  background-color: var(--d2-gray);
}
.status-blue label {
  /* デフォルトリスト済み */
  background-color: #05aaff;
}
.status-1 label {
  /* 視聴中 */
  background-color: #a7dddb;
}
.status-2 label {
  /* 視聴完了 */
  background-color: #c7e6ff;
}
.status-3 label {
  /* 保留 */
  background-color: #f8cd9b;
}
.status-4 label {
  /* 見切り */
  background-color: #eab3cb;
}
.status-6 label {
  /* 興味ある */
  background-color: #edeeee;
}

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-content-container {
  padding: 0.3rem 1.5rem;
  color: var(--gray);
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

.filter-form {
  position: absolute;
  top: 73px;
  left: 10px;
}

/* Form */
input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  border: 1px solid #bbb;
  background: #fff;
  padding: 0;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
textarea::placeholder {
  color: #bbb;
}

textarea {
  height: 10rem;
}

label {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

legend {
  color: var(--theme);
  padding-top: 1.3rem;
}

.select-box {
  position: relative;
}

/* デフォルトのチェックボックスを非表示 */
input[type="checkbox"] {
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

/* チェックボックス用の四角形を作る */
input[type="checkbox"] + span::before {
  display: inline-block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  margin: -0.125rem 0.5rem 0 0;
  vertical-align: middle;
  font-family: FontAwesome;
  font-weight: 900;
  font-size: 0.6rem;
  padding: 0 1px;
  line-height: 1.5;
}

input[type="checkbox"] + span::before {
  border: 1px solid #bbb;
}

/* チェックが入るとチェックアイコンを表示 */
input[type="checkbox"]:checked + span::before {
  content: "\f00c";
  background-color: var(--light-theme);
  transition: all 0.2s;
}

/* https://kodocode.net/design-css-radiobutton/ */
.radio-inline__input {
  position: absolute !important;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
}

.radio-inline__label {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  margin-right: 1rem;
  border-radius: 3px;
  transition: all 0.2s;
}

.radio-inline__input:checked + .radio-inline__label {
  background: var(--theme);
  color: #fff;
}

.form-filter-submit {
  text-align: center;
  width: 4rem;
  height: 1.8rem;
  margin-top: 0.5rem;
  background-color: var(--d2-gray);
  border-radius: 6px;
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
}

.form-filter-submit:disabled {
  background-color: white;
  color: white;
  transition: all 0.2s;
  cursor: wait;
}

.center {
  text-align: center;
}
/*
興味あるリスト
================================================ */
.delete-form {
  display: flex;
  position: absolute;
  bottom: 13px;
  height: 40px;
}

.added-date {
  font-size: 0.7rem;
  padding: 0.7rem 0;
  font-weight: 600;
}

.anime-info-delete-box input {
  display: block;
  background-color: #0f0;
}

.anime-info-delete-box label {
  position: static;
  text-align: center;
  width: 3rem;
  height: 2.5rem;
  padding: 0.7rem 0;
  margin-left: 0.5rem;
  border: 1px solid var(--gray);
  background-color: white;
  color: var(--gray);
  font-weight: 700;
}

.anime-info-delete-box:checked + label {
  background-color: var(--theme);
  color: white;
}
/*
アカウントメニュー
================================================ */
.user-name {
  text-align: right;
}

.user-name .name {
  font-size: 1.5rem;
  text-align: right;
}

.user-name .screen_name {
  font-size: 1rem;
  text-align: right;
}

.account-menu {
  display: flex;
  /* text-align: center; */
  justify-content: space-around;
}

.account-menu button {
  display: inline-block;
  text-align: center;
  width: 9rem;
  height: 2.5rem;
  padding: 0.7rem;
  margin: 0.5rem 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.9rem;
  background-color: var(--theme);
  color: white;
}

.account-menu a {
  display: inline-block;
  text-align: center;
  width: 9rem;
  height: 2.5rem;
  padding: 0.7rem;
  margin: 0.5rem 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.9rem;
  background-color: var(--theme);
  color: white;
  text-decoration: none;
}

.account-description {
  line-height: 1.6;
  font-size: 17px;
}

.account-description-box {
  width: 80%;
  text-align: center;
  margin: 0.8rem 3rem 0;
}
hr.style5 {
  background-color: #fff;
  border-top: 2px dashed #8c8b8b;
  margin: 1rem 0;
}

.account-form {
  appearance: auto;
  -webkit-appearance: auto;
}

.account-submit {
  display: inline-block;
  text-align: center;
  width: 9rem;
  height: 2.5rem;
  padding: 0.7rem;
  background-color: var(--d2-gray);
  border-radius: 6px;
  color: var(--gray);
  font-weight: 800;
  cursor: pointer;
}
.account-list {
  line-height: 1.8rem;
}
.space-line {
  margin-top: 1rem;
}
.label-inline {
  display: inline;
}
/*
ログイン
================================================ */
.twitter-login {
  display: inline-block;
  text-align: center;
  width: 11rem;
  height: 2.5rem;
  padding: 0.7rem;
  background-color: var(--twitter);
  border-radius: 6px;
  color: white;
  font-weight: 800;
  cursor: pointer;
}
/*
検索結果
================================================ */
.anime-info .date {
  font-size: 0.8rem;
  width: 80%;
  position: absolute;
  bottom: 45px;
  text-align: center;
  margin-right: 30px;
}

.anime-info .cat {
  font-size: 0.8rem;
  width: 80%;
  position: absolute;
  bottom: 25px;
  text-align: center;
  margin-right: 30px;
}

/*
興味あるリスト
================================================ */
.anime-column-view-item-remove {
  animation: fadeout 0.3s linear 0s;
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*
アニメ画像リスト
================================================ */
.image-menu-wrapper {
  width: 100%;
  position: relative;
  top: -11px;
}

ul.image-menu {
  display: flex;
  justify-content: center;
}

ul.image-menu li {
  list-style: none;
  margin: 0 1rem;
  font-size: 0.8rem;
}

.anime-short {
  height: 290px;
}

.anime-info-edit-box {
  position: static;
  text-align: center;
  width: 3rem;
  height: 2.5rem;
  padding: 0.7rem 0;
  margin-left: 0.5rem;
  border: 1px solid var(--gray);
  background-color: white;
  color: var(--gray);
  font-weight: 700;
}

.df-main {
  background-color: var(--light-theme);
}

.no-underline {
  text-decoration: none;
}
/*
アニメ画像アップロード
================================================ */
.upload-button {
  text-align: center;
  width: 7rem;
  height: 1.5rem;
  border: 1px solid var(--gray);
  background-color: white;
  color: var(--gray);
  font-weight: 700;
}

ul.general-list {
  /* https://saruwakakun.com/html-css/reference/ul-ol-li-design */
  border: solid 2px var(--light-theme);
  margin: 0.5rem 0;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

ul.general-list li {
  line-height: 0.8;
  padding: 0.5em 0;
  font-size: 0.9rem;
}

ul.general-list li:before {
  font-family: FontAwesome;
  content: "\f00c";
  position: absolute;
  left: 1em;
  color: var(--light-theme);
}
/*
アニメ画像編集
================================================ */
ul.image-info {
  margin: 0.5rem 0;
  padding: 0.5em 1em;
  position: relative;
  text-align: center;
}

ul.image-info li {
  line-height: 0.4;
  padding: 0.5em 0;
  font-size: 0.8rem;
}

.image-edit-form {
  text-align: left;
}

.image-edit-submit {
  display: inline-block;
  text-align: center;
  width: 9rem;
  height: 2.5rem;
  padding: 0.7rem;
  border-radius: 6px;
  color: var(--gray);
  font-weight: 800;
  cursor: pointer;
  background-color: var(--d2-gray);
}

.image-edit-submit:hover {
  background-color: var(--light-theme);
}
.image-edit-submit:active {
  background-color: white;
  color: white;
}
/*
今期アニメリスト
================================================ */
.anime-middle {
  height: 350px;
}

.anime-info-status-box-listed-gray a {
  display: inline-block;
  text-align: center;
  width: 9rem;
  height: 2.5rem;
  padding: 0.7rem;
  color: white;
  font-weight: 800;
  background-color: var(--d2-gray);
  text-decoration: none;
  position: absolute;
  bottom: 0px;
  left: 10px;
}
ul.season-list {
  padding: 0;
  font: 14px/1.6 "arial narrow", sans-serif;
  width: 100%;
  list-style: none;
}
.season-list a {
  text-decoration: none;
}
ul.season-list li {
  position: relative;
  padding: 7px 5px 7px 10px;
  margin-bottom: 5px;
  background: #f1fff8;
  border-left: solid 5px var(--light-theme);
  color: var(--theme);
  font-weight: bold;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.header-menu-left {
  position: absolute;
  left: 1rem;
  top: 4.6rem;
}
.header-menu-right {
  position: absolute;
  right: 1rem;
  top: 4.6rem;
}
/*
ユーザーリスト
================================================ */
.user-info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.user-info-item {
  width: 100px;
  height: 160px;
  position: relative;
  margin-bottom: 0.6rem;
}

.userlist-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  margin: 0 0 0 10px;
  /* padding: 0 0 0 10px; */
  object-fit: cover;
  object-position: center;
}

.user-info {
  margin: 0;
  text-align: center;
}

.user-info a {
  text-decoration: none;
}

.user-info h2 {
  font-feature-settings: "palt" 1;
  line-height: 1.4;
  font-size: 0.8rem;
  max-height: 54px;
  overflow: hidden;
}

.user-info .count {
  font-size: 0.8rem;
  color: var(--theme);
}
/*
チュートリアル
================================================ */
.tutorial-wrapper {
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.tutorial-closebox {
  font-size: 4rem;
  text-align: right;
  margin: 1rem 2rem 0 0;
  color: var(--d2-gray);
}

.tutorial-content {
  font-size: 1.7rem;
  text-align: center;
  min-height: 400px;
  display: grid;
  place-items: center;
  color: var(--light-grey);
}

.tutorial-next-btn {
  text-align: center;
  margin: 1rem 0 1rem 0;
}

.tutorial-next-btn a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 10rem;
  height: 3rem;
  padding: 0.9rem;
  margin-bottom: 2rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  background-color: var(--theme);
  color: white;
}

.tutorial-pagination {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  text-align: center;
}

.tutorial-pagination a:hover {
  background: #93d8d0;
  color: #fff;
}

.tutorial-pagination a,
.tutorial-pagination .current {
  border-radius: 50%;
  margin: 0 8px 0 8px;
  display: inline-block;
  width: 27px;
  height: 27px;
  text-decoration: none;
  border: 1.5px solid var(--d2-gray);
}

.tutorial-pagination .current {
  background: var(--theme);
}
/*
アニメソムリエについて
================================================ */
.about ul,
ol {
  /* https://saruwakakun.com/html-css/reference/ul-ol-li-design */
  list-style: decimal;
  border-top: solid #1e366a 1px;
  border-bottom: solid #1e366a 1px;
  padding: 0.5em 0 0.5em 1.5em;
  margin: 0.5rem;
}
.about ul li,
ol li {
  line-height: 1.5;
  padding: 0.2em 0;
  font-size: 17px;
}
h2.about-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1.5rem 0 0.5rem 0;
}
h3.about-title {
  font-size: 1.15rem;
  font-weight: bold;
  margin: 1.5rem 0 0.5rem 0;
}
.about-main-text {
  /* https://techblog.yahoo.co.jp/entry/2023052430423559/ */
  line-height: 1.6;
  font-size: 17px;
}
.about-main-text-wide {
  line-height: 1.8;
  font-size: 17px;
}
img.drop-shadow {
  filter: drop-shadow(15px 15px 8px #999);
}
/* API設定とか */
.long-token {
  font-family: "Source Code Pro", "Source Han Code JP", "UDEV Gothic",
    "Ricty Diminished", "Cica", "Courier New", Courier, monospace, sans-serif;
  font-size: 18px;
  overflow-wrap: break-word;
  background: #eee;
  line-height: 1.4rem;
  margin: 0.8rem 0;
  white-space: pre-wrap;
}
.code {
  font-family: "Source Code Pro", "Source Han Code JP", "UDEV Gothic",
    "Ricty Diminished", "Cica", "Courier New", Courier, monospace, sans-serif;
}
/*
ランキング
================================================ */
.half-width-menu {
  width: 50%;
}
.round-title-container {
  display: flex;
  justify-content: space-around;
}
.round-title-inactive {
  padding: 0.5rem 0;
  margin: 0.1rem 1.2rem;
  border-radius: 100vh;
  background-color: var(--light-theme);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  width: auto;
  min-width: 9rem;
}
.ranking-number {
  background-color: #00a7fd;
  /* flex-basis: 28px; */
  width: 27px;
  min-width: 27px;
  height: 212px;
  margin: 0.5rem 5px 0 0;
  color: white;
  text-align: center;
  line-height: 212px;
  font-weight: 600;
  text-decoration: none;
}
.wide-info {
  margin: 0.6rem 0 0.3rem 0.1rem;
  /* overflow: hidden;
  flex-basis: auto; */
}
.no-decoration {
  text-decoration: none;
}
.ranking-dl {
  max-width: 12rem;
}
/*
タッチパネル
================================================ */
@media (hover: none) {
  .btn--blue:active,
  .btn--blue:active {
    color: var(--yellow);
  }

  footer a:active {
    color: var(--yellow);
  }

  .btn--green:active,
  .btn--green:active {
    color: var(--theme);
    background-image: repeating-linear-gradient(
      315deg,
      var(--yellow),
      var(--yellow) 9px,
      var(--yellow) 9px,
      var(--yellow) 12px
    );
  }
  label.star:active {
    transform: rotate(-15deg) scale(1.3);
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    display: none;
  }
}

/*
DESKTOP
================================================ */
@media (hover: hover) {
  .btn--blue:hover,
  .btn--blue:hover {
    color: var(--yellow);
  }

  footer a:hover {
    color: var(--yellow);
  }

  .btn--green:hover,
  .btn--green:hover {
    color: var(--theme);
    background-image: repeating-linear-gradient(
      315deg,
      var(--yellow),
      var(--yellow) 9px,
      var(--yellow) 9px,
      var(--yellow) 12px
    );
  }
  label.star:hover {
    transform: rotate(-15deg) scale(1.3);
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-size: 55px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
    top: -70px;
    text-shadow: #999 1px 0 15px;
  }
}
/*
大きい画面
================================================ */
@media (min-width: 600px) {
  .anime-score-editor-container input {
    width: 8rem;
  }
  .anime-list-view-container .table-title {
    font-weight: normal;
    background: transparent;
    vertical-align: middle;
    padding: 0.2rem;
  }
  .anime-list-view-container tr:nth-child(odd) {
    background: #f0fffb;
  }
  .anime-list-view-container tr:nth-child(even) th {
    background: white;
  }

  .anime-list-view-container th,
  td {
    /* padding: 0 0 0; */
    display: table-cell;
  }
  .anime-list-view-container th {
    /* width: 24%; */
    vertical-align: middle;
  }
  .anime-list-view-container td {
    /* width: 76%; */
    padding: 0.5rem 0.6rem;
  }
}
