@charset "UTF-8";
/* ==========================================
   Template: matome（https://do.gt-gt.org/）
   Copyright: 2020 do.
   利用規約を遵守の上お使いください。二次配布・販売を禁じます。
   ========================================== */
/* ==========================================
  リセットCSS
  基本的には触らないでください
  ========================================== */
  @import url('https://fonts.googleapis.com/css2?family=Baloo+2&family=Noto+Sans+JP&display=swap');
  /*
  Baloo 2
  */

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  font-family: 'Baloo 2', cursive;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
}

p {
    padding: 0 2em;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}

/* ==========================================
  以下、デザインを決める記述です。
  ※印で検索することで設定箇所へジャンプします。
   ========================================== */
body {
  background-size: auto auto;
  background-color: #fff;
  font-family: 'Baloo 2', cursive;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
  padding: 0;
  margin: 0;
  color: #5c6981;
  letter-spacing: 0.1em;
  line-height: 180%;
}

a {
  text-decoration: none;
  color: #55b7d9;
  /* ↑リンクの色　一括置換すると見出し色も一緒に変わります ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(to bottom ,#ffa29b, #6da39e);
}

a:hover {
  color: #6393a3;
  /* ↑リンクをホバーしたときの色 ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

dl,
ol,
p,
ul {
  margin: 10px auto 20px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  dl,
  ol,
  p,
  ul {
    margin: 15px auto;
  }
}

h4 {
  padding-left: 10px;
  margin: 20px 0 10px;
  font-size: 120%;
}

.center {
  text-align: center;
}

.header {
  background-color: #fdadc8;
  background-image: url(../img/header.jpg);
  /* ↑ヘッダー画像 ※ */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.header img.icon {
  display: block;
  margin: auto;
  height: 150px;
  width: 150px;
  background: #fff;
  border-radius: 50%;
  border: solid 6px #ffffff;
  position: absolute;
  bottom: -75px;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .header {
    height: 200px;
  }
  .header img.icon {
    height: 100px;
    width: 100px;
    border: solid 4px #ffffff;
    bottom: -50px;
  }
}

dl.memo dt {
  width: 100%;
  font-weight: bold;
  color: #55b7d9;
  padding: 0.5em 0;
}

dl.memo dd {
  border-left: 1px dotted #d0d0d0;
  margin: 0 0 0 1em;
  padding: 0 0 1em 1em;
}

section {
  width: 95%;
  max-width: 800px;
  margin: 60px auto;
}

.two-column {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.two-column .column {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .two-column .column {
    width: 100%;
  }
}

h2 {
  display: flex;
   justify-content: center;
   align-items: center;
  margin: 3em .5em 2em;
  font-size: 1.2em;
  text-align: center;
}
h2::before,h2::after {
  content: '';
  display: inline-block;
  margin: 0 .5em;
  width: .5em;
  height: .5em;
  font-size: 1.5em;
}
h2::before {
  margin-bottom: .5em;
  border-top: solid 1px #b3b3b3;
  border-left: solid 1px #b3b3b3;
}
h2::after {
  margin-top: .5em;
  border-right: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
}

h3 {
  margin: 1em auto;
}

.update {
  font-size: 80%;
  color: #bcbcbc;
  text-align: center;
}

.box {
  background: #ffe8eb;
  /* ↑色付きボックスの背景色 ※ */
  padding: 10px 15px;
  border-radius: 5px;
}

.cs {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.cs li {
  width: 24%;
  padding: 0;
  margin: 0 0 10px 0;
}

.cs li:not(:nth-of-type(4n-3)) {
  margin-left: calc(4% / 3);
}

.cs li a {
  width: 100%;
  display: block;
  background: linear-gradient(to right ,#ffa29b, #6da39e);
}

.cs li a img {
    display: block;
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cs li a img:hover{
    mix-blend-mode: screen;
}

.cs li a .text {
  padding: 5px;
  background-color: #fff;
}

.cs li a .text p {
  font-size: 80%;
  color: #5c6981;
  text-align: right;
}

.cs li a .text p.name {
  font-size: 80%;
  color: #55b7d9;
  margin: 0 auto 0;
}
.cs li.new::after {
    content: "\f06d";
    font-family: FontAwesome;
    background-size: auto auto;
    position: absolute;
    padding: 0 5px;
    left: 0;
    top: 0;
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    color: #f7b977;
    text-shadow:
	white 2px 2px 3px, white -2px 2px 3px,
	white 2px -2px 3px, white -2px -2px 3px;
}

@media screen and (max-width: 767px) {
  .cs li {
    width: 49%;
  }
  .cs li li a img {
    height: 100px;
  }
  .cs li:not(:nth-of-type(4n-3)) {
    margin-left: 0;
  }
  .cs li:nth-of-type(odd) {
    margin-right: 2%;
  }
}

@media screen and (max-width: 575px) {
  .cs li {
    width: 90%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .cs li:nth-of-type(odd) {
    margin-right: auto;
  }
  .cs li:not(:nth-of-type(4n-3)) {
    margin-left: auto;
  }
}

ul.sns-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 1em auto;
  -webkit-box-pack: center;
          justify-content: center;
  max-width: 600px;
}

ul.sns-list li {
  margin-bottom: 1em;
}

ul.sns-list li a {
  font-size: 14px;
  border: 2px solid #65676d;
  color: #65676d;
  padding: 5px 8px;
  border-radius: 20px;
}

ul.sns-list li a:hover {
  background: #65676d;
  color: #ffffff;
}

ul.sns-list li a.twitter:hover {
  background: #1DA1F2;
  border: 2px solid #1DA1F2;
  color: #ffffff;
}

ul.sns-list li a.tumblr:hover {
  background: #36465d;
  border: 2px solid #36465d;
  color: #ffffff;
}

ul.sns-list li a.lineat:hover {
  background: #00b900;
  border: 2px solid #00b900;
  color: #ffffff;
}

ul.sns-list li a.youtube:hover {
  background: #cd201f;
  border: 2px solid #cd201f;
  color: #ffffff;
}

ul.sns-list li a.note:hover {
  background: #2dcdb5;
  border: 2px solid #2dcdb5;
  color: #ffffff;
}

ul.sns-list li a.amazon:hover {
  background: #FF9900;
  border: 2px solid #FF9900;
  color: #ffffff;
}

ul.sns-list li a.marsh:hover {
  background: #F3969A;
  border: 2px solid #F3969A;
  color: #ffffff;
}

ul.sns-list li a.skeb:hover {
  background: #30B396;
  border: 2px solid #30B396;
  color: #ffffff;
}

ul.sns-list li a.pixiv:hover {
  background: #0096FA;
  border: 2px solid #0096FA;
  color: #ffffff;
}

ul.sns-list li a.booth:hover {
  background: #FC4D50;
  border: 2px solid #FC4D50;
  color: #ffffff;
}

ul.sns-list li a.fantia:hover {
  background: #FF5600;
  border: 2px solid #FF5600;
  color: #ffffff;
}

ul.sns-list li:not(:last-of-type) {
  margin-right: 20px;
}

footer .container {
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

footer .bottom {
  margin: 0;
}

footer .bottom a {
  text-align: center;
  width: 100%;
  padding: 5px 10px;
  margin: 0 0 0 auto;
  display: block;
}
