@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@800&display=swap");
html {
  background: fff;
  color: 333;
  overflow-y: scroll;
}

body {
  font: 13px/1.22 arial, helvetica, clean, sans-serif;
  *font-size: small;
  *font: x-small;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

table {
  font-size: inherit;
  font: 100%;
}

a img, img {
  border: 0;
}

figure, blockquote, dd, div, dl, dt,
h1, h2, h3, h4, h5, h6,
li, ol, p, pre, span, td, th, ul {
  margin: 0;
  padding: 0;
}

abbr, acronym {
  border: 0;
}

address, caption, cite, code, dfn, em, th, strong, var {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

code, kbd, pre, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

* + html code, kbd, pre, samp, tt {
  font-size: 108%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

q:before, q:after {
  content: "";
}

button, fieldset, form, input, label, legend, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

hr {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  background-color: #FFF;
  color: #FFF;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

.fadein {
  opacity: 1;
  transform: translate(0, 5px);
  -webkit-transform: translate(0, 5px);
}

.only-pc {
  display: none;
}
@media (min-width: 481px) and (max-width: 1140px) {
  .only-pc {
    display: none;
  }
}
@media (min-width: 1140px) {
  .only-pc {
    display: inline;
  }
}

.only-tabsp {
  display: block;
}
@media (min-width: 481px) and (max-width: 1140px) {
  .only-tabsp {
    display: block;
  }
}
@media (min-width: 1140px) {
  .only-tabsp {
    display: none;
  }
}

.only-tab {
  display: none;
}
@media (min-width: 481px) and (max-width: 1140px) {
  .only-tab {
    display: block;
  }
}
@media (min-width: 1140px) {
  .only-tab {
    display: none;
  }
}

.only-pctab {
  display: none;
}
@media (min-width: 481px) and (max-width: 1140px) {
  .only-pctab {
    display: inline-block;
  }
}
@media (min-width: 1140px) {
  .only-pctab {
    display: inline-block;
  }
}

.only-sp {
  display: inline-block;
}
@media (min-width: 481px) and (max-width: 1140px) {
  .only-sp {
    display: none;
  }
}
@media (min-width: 1140px) {
  .only-sp {
    display: none;
  }
}

header {
  background-color: #000;
  width: 100%;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.11);
}

header .inner {
  display: -webkit-box; /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox; /*--- IE10 ---*/
  display: -webkit-flex; /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: justify; /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify; /*--- IE10 ---*/
  -webkit-justify-content: space-between; /*--- safari（PC）用 ---*/
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 481px) and (max-width: 1140px) {
  header .inner {
    width: 93%;
    margin: 0 auto;
  }
}
@media (min-width: 1140px) {
  header .inner {
    width: 1000px;
    margin: 0 auto;
  }
}

header #logo {
  width: 12%;
  padding: 0.5rem 0 0 0.5rem;
}
@media (min-width: 481px) and (max-width: 1140px) {
  header #logo {
    width: 10%;
  }
}
@media (min-width: 1140px) {
  header #logo {
    width: 80px;
    padding: 0.5rem 0 0 2rem;
  }
}

header #logo img {
  max-width: 100%;
  height: auto;
}

header h1 {
  width: 34%;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
}
@media (min-width: 1140px) {
  header h1 {
    font-size: 1rem;
  }
}

header .icon {
  position: relative;
  width: 26%;
  background: #FFFFFF;
  padding: 0.5rem;
  text-align: center;
  border: 2px solid #EAB4AC;
  color: #EAB4AC;
  font-weight: 500;
  font-size: 0.65rem;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
}

header .icon:after, header .icon:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  left: 99%;
  top: 50%;
}

header .icon:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin-top: -5px;
  border-left-color: #FFFFFF;
}

header .icon:before {
  border-color: rgba(234, 180, 172, 0);
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 15px;
  border-right-width: 15px;
  margin-top: -7px;
  margin-left: 2px;
  border-left-color: #EAB4AC;
}

header .icon span {
  font-size: 0.8em;
}

header .btn {
  width: 20%;
}

header .btn a {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  vertical-align: middle;
  background-color: #fff600;
  border-radius: 0;
  padding: 1.3rem 0;
  margin: 0;
  color: #fff;
  font-size: 0.8rem;
  border: none;
  transition: 0.5s all;
}
@media (min-width: 481px) and (max-width: 1140px) {
  header .btn a {
    font-size: 1rem;
    padding: 0.9rem 0;
  }
}
@media (min-width: 1140px) {
  header .btn a {
    font-size: 1rem;
    padding: 0.9rem 0;
  }
}
@media (max-width: 376px) {
  header .btn a {
    padding: 1.5rem 0;
  }
}

header .btn a:hover {
  opacity: 0.7;
  border: 1px solid #fff600;
}

header.fixed {
  position: fixed;
  z-index: 2;
}

footer {
  background-color: #000;
  color: #fff;
}

footer small {
  text-align: center;
  display: block;
  padding: 0.3rem 0;
  font-size: 0.8rem;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  color: #131313;
  line-height: 160%;
  letter-spacing: 0.8px;
  width: 100%;
  height: 100%;
  text-align: left;
  margin: 0;
  padding: 0px;
  font-size: 15px;
  background-color: #fff;
  font-weight: 600;
}
@media (min-width: 481px) and (max-width: 1140px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1140px) {
  body {
    font-size: 19px;
  }
}

html {
  font-size: 15px;
}
@media (max-width: 376px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 481px) and (max-width: 1140px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 19px;
  }
}

form {
  margin: 0;
  padding: 0px;
}

li {
  line-height: 160%;
}

h1 {
  margin: 0;
  padding: 0px;
  font-weight: normal;
}

strong {
  font-weight: bolder;
}

img {
  border: none;
}

a:link {
  color: #131313;
}

a:visited {
  color: #131313;
}

a:hover {
  color: #131313;
}

a:active {
  color: #131313;
}

a {
  line-height: 160%;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0px;
}

.btn {
  width: 100%;
  text-align: center;
}

.btn a {
  padding: 0.8rem 2rem;
  background-color: #fff;
  text-align: center;
  border-radius: 3rem;
  margin: 0 auto;
  display: inline-block;
  border: 2px solid #000;
  box-sizing: border-box;
}
@media (min-width: 481px) and (max-width: 1140px) {
  .btn a {
    padding: 12px 25px;
    width: 33%;
  }
}
@media (min-width: 1140px) {
  .btn a {
    width: auto;
    padding: 12px 25px;
  }
}

.float {
  animation: float 2s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.inner {
  width: 88%;
  margin: 0 auto;
  margin: 0 auto;
}
@media (min-width: 481px) and (max-width: 1140px) {
  .inner {
    width: 88%;
  }
}
@media (min-width: 1140px) {
  .inner {
    width: 700px;
  }
}

section img {
  max-width: 100%;
  height: auto;
}

dl.is-empty {
  height: 0;
  width: 0;
}

a.linkc:link {
  color: #3e89ca;
  font-weight: bolder;
  text-decoration: underline;
}

.ttl {
  width: 100%;
  display: inline-block;
  padding: 10px 0 25px 0;
  margin: 0 0 0px 0;
  font-family: "Roboto Slab", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 1px;
}

.midashi2 {
  display: block;
  text-align: left;
  padding: 10px 15px;
  margin: 0 0 15px 0;
  font-weight: bolder;
  letter-spacing: 1px;
  background-color: #666;
}
@media (min-width: 1140px) {
  .midashi2 {
    padding: 20px 20px;
    margin: 15px 0 30px 0;
  }
}

#pagetitle {
  width: 100%;
  height: 400px;
  display: block;
  text-align: center;
  background: #999 url(../images/pt-bg.jpg) center bottom no-repeat;
  background-size: cover;
  margin: 0 auto 0px auto;
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: "Roboto Slab", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
}
@media (min-width: 481px) and (max-width: 1140px) {
  #pagetitle {
    padding: 150px 0 40px 0;
  }
}
@media (min-width: 1140px) {
  #pagetitle {
    padding: 80px 0 60px 0;
    background-size: contain;
  }
}

#pagetitle span {
  display: block;
  font-size: 0.7em;
}

#pagetitle div {
  position: absolute;
  background-color: #000;
  padding: 0.5rem 1rem;
  left: 0;
  top: 1rem;
  z-index: 3;
}
@media (min-width: 1140px) {
  #pagetitle div {
    left: 20%;
    top: 30%;
  }
}

.blocklink {
  cursor: pointer;
}

.blocklink:hover {
  opacity: 0.8;
}

.txt p {
  font-weight: 500;
  padding: 10px 0 20px 0;
}
@media (min-width: 481px) and (max-width: 1140px) {
  .txt p {
    padding: 10px 0 20px 0;
  }
}
@media (min-width: 1140px) {
  .txt p {
    padding: 20px 0 40px 0;
  }
}

#mv img {
  vertical-align: middle;
}

#mv .date {
  background-color: #000;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
}

#mv .date .small {
  font-size: 0.75em;
  font-weight: 600;
}

#mv .date .small2 {
  font-size: 0.7em;
  font-weight: 600;
}

@media (min-width: 1140px) {
  #mv {
    background: #e6e6e6;
    text-align: center;
  }
  #mv img {
    width: 600px;
    margin: 0 auto;
  }
}
#news {
  padding: 2rem 0;
}

#news h3 {
  margin: 2.5rem 0 0.5rem 0;
}

#news h3 span {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "Roboto Slab", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  background-color: #000;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  transform: rotate(-2deg);
}

#news dl {
  padding: 0.8rem 0;
  border-bottom: 1px solid #000;
}

#news dl:last-of-type {
  border: none;
}

#news dl dt {
  color: #e7d009;
  font-size: 0.8rem;
  padding: 0 0 0.3rem 0;
}

#news dl dd {
  font-size: 0.95rem;
}

#news .bn {
  text-align: center;
}

#midokoro {
  background-color: #FFFA00;
  padding: 4rem 0;
}

#midokoro h2 {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0;
}

#midokoro h2 span.komidashi {
  display: block;
  font-size: 0.5em;
  padding: 0 0 1rem;
}

#midokoro .small {
  font-size: 0.8em;
}

#midokoro .read {
  padding: 2rem 0;
}
@media (min-width: 1140px) {
  #midokoro .read {
    padding: 3rem 0 0 0;
  }
}

#midokoro .read:last-of-type {
  padding: 0rem 0 2rem 0;
}
@media (min-width: 1140px) {
  #midokoro .read:last-of-type {
    padding: 2rem 0 4rem 0;
  }
}

#mokuji {
  padding: 2rem 0;
}

#mokuji h3 {
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.8rem 0;
}

#mokuji .waku {
  background-color: #fff;
  box-sizing: border-box;
  padding: 1.5rem;
  border-radius: 0.8rem;
}

#mokuji .waku li {
  font-size: 0.9rem;
  padding: 0.2rem 0;
}

#mokuji .waku li span {
  font-size: 0.7em;
  padding: 0.1rem 0.5rem;
  border: 1px solid #000;
  border-radius: 1.5rem;
}

#mokuji .waku ol li:nth-of-type(2) span {
  border: 1px solid #1e842c;
  color: #1e842c;
}

#mokuji .waku ol li:nth-of-type(3) span {
  border: 1px solid #1780e9;
  color: #1780e9;
}

#mokuji .waku ol li:nth-of-type(4) span {
  border: 1px solid #393b11;
  color: #393b11;
}

#mokuji .waku ol li:nth-of-type(5) span {
  border: 1px solid #e95a17;
  color: #e95a17;
}

#mokuji .waku ol li:nth-of-type(6) span {
  border: 1px solid #960c0c;
  color: #960c0c;
}

#mokuji .waku ol li:nth-of-type(7) span {
  border: 1px solid #410c32;
  color: #410c32;
}

#mokuji .waku ol li:nth-of-type(8) span {
  border: 1px solid #e10e7b;
  color: #e10e7b;
}

#mokuji .waku ol li:nth-of-type(9) span {
  border: 1px solid #00979f;
  color: #00979f;
}

#mokuji .waku ol li:nth-of-type(10) span {
  border: 1px solid #2f3386;
  color: #2f3386;
}

#post-list {
  position: relative;
}

@media (min-width: 1140px) {
  #post-list .pc-layout {
    position: relative;
    width: 700px;
    margin: 0 auto;
  }
}

#post-list .fukidashi {
  position: absolute;
  right: 5%;
  top: 1rem;
  font-size: 0.7rem;
  line-height: 1.5;
}

#post-list .fukidashi div {
  position: relative;
  width: fit-content;
  padding: 0.5rem 0.5rem;
  border: 2px solid #333333;
  border-radius: 4px;
}

#post-list .fukidashi div::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #FFFA00; /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}

#post-list .fukidashi div::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: #333333 #333333 transparent transparent;
  rotate: 135deg;
  translate: -50%;
}

#post-list h3 {
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin: 0 0 1.5rem 0;
}

#post-list ol {
  display: -webkit-box; /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox; /*--- IE10 ---*/
  display: -webkit-flex; /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: justify; /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify; /*--- IE10 ---*/
  -webkit-justify-content: space-between; /*--- safari（PC）用 ---*/
  justify-content: space-between;
  -webkit-flex-wrap: wrap; /*--- safari（PC）用 ---*/
  flex-wrap: wrap;
}

#post-list ol li:first-of-type {
  width: 100%;
}

#post-list ol li {
  width: 48%;
  padding: 0.5rem 0;
}

#message {
  padding: 3rem 0;
  background-image: url(../images/bg-y.png);
}

#message h3 {
  font-size: 1.9rem;
  font-family: "Roboto Slab", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.5;
}

#message h3 span {
  font-size: 1rem;
  display: block;
  font-weight: 600;
}

#message .waku {
  margin: 2rem auto 0.3rem auto;
  background-color: #fff;
  box-sizing: border-box;
  padding: 1.5rem;
  line-height: 1.6;
}

#message .waku p {
  padding: 1rem 0;
  font-weight: 500;
  color: #333;
}

#message p.link {
  text-align: right;
  font-size: 0.7rem;
}

#message p.link a {
  text-decoration: underline;
  color: #b9b9b9;
}

#info {
  padding: 3rem 0;
}

#info h2 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 3rem 0;
}

#info .book-main {
  width: 60%;
  margin: 0 auto 2rem auto;
}

#info h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
}

#info .name {
  text-align: center;
  font-size: 1.05rem;
  margin: 0 0 3.5rem 0;
}

#info dl {
  width: 80%;
  margin: 0 auto;
  font-size: 0.9rem;
  border-bottom: 1px solid #ccc;
  display: -webkit-box; /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox; /*--- IE10 ---*/
  display: -webkit-flex; /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: justify; /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify; /*--- IE10 ---*/
  -webkit-justify-content: space-between; /*--- safari（PC）用 ---*/
  justify-content: space-between;
  padding: 0.2rem 0;
}

#info dl dt {
  letter-spacing: 0;
  width: 20%;
}

#info dl dd {
  width: 65%;
}

#info .links {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
}

#info .links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#info .links li img {
  display: block;
  /* Make sure max-width is added */
  max-width: 100%;
  width: 100px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1140px) {
  #info .links li img {
    width: 150px;
  }
}

#yoyakutokuten {
  background-color: #fff700;
  padding: 2rem 0 1rem 0;
}

#yoyakutokuten h3 {
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 0rem 0 3rem 0;
  padding: 0.2rem 0 2rem 0;
  background-image: repeating-linear-gradient(45deg, #000000 0 2px, transparent 2px 4px);
  background-repeat: no-repeat;
  background-size: 4rem 0.4rem;
  background-position: center bottom;
}

#yoyakutokuten .read {
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 2rem 0;
}

#yoyakutokuten h3 span {
  display: block;
  font-size: 0.3em;
  font-family: "Roboto Slab", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
}

#yoyakutokuten .uline {
  text-decoration: underline;
}

#yoyakutokuten .cam-img {
  margin: 2.5rem 0;
}

#yoyakutokuten .date {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0;
}

#yoyakutokuten .pink {
  font-size: 1.3em;
  color: #FF007A;
  font-weight: 800;
}

#yoyakutokuten .small {
  font-size: 0.8em;
}

#yoyakutokuten .btn {
  margin: 1rem 0;
}

#yoyakutokuten .btn a {
  width: 80%;
}

#yoyakutokuten .btn-biko {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

#yoyakutokuten .small3 {
  font-size: 0.6em;
  letter-spacing: 0px;
  opacity: 0.6;
}

#yoyakutokuten .biko {
  padding: 3rem 0 0 0;
}

#yoyakutokuten .biko li {
  border-top: 1px solid #555;
  letter-spacing: 0px;
  line-height: 1.6;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 1.3rem 1rem 1.3rem 1rem;
  position: relative;
}

#yoyakutokuten .biko li:before {
  content: "*";
  display: block;
  position: absolute;
  left: 0;
  top: 1.5rem;
}

#yoyakutokuten .biko li a:link {
  text-decoration: underline;
}

#yoyakutokuten .privacy {
  font-size: 0.85rem;
  padding: 1.5rem 0 0 0;
  text-align: center;
}

#yoyakutokuten .privacy a {
  text-decoration: underline;
}

#prof {
  padding: 4rem 0;
}

#prof .prof-photo {
  width: 50%;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
}

#prof h4 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 2rem 0;
}

#prof h4 span {
  font-size: 0.8rem;
}

#prof .prof-txt {
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.1px;
}

#prof .sns {
  padding: 2rem 0;
  display: -webkit-box; /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox; /*--- IE10 ---*/
  display: -webkit-flex; /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: justify; /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify; /*--- IE10 ---*/
  -webkit-justify-content: center; /*--- safari（PC）用 ---*/
  justify-content: center;
  width: 30%;
  margin: 0 auto;
}

#prof .sns li {
  width: 25%;
  padding: 0 0.5rem;
}

#prof .btn a {
  line-height: 1.4;
  font-weight: 800;
}

#prof .btn span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
}

#prof .history {
  padding: 1rem 0;
}

#prof a:link {
  color: rgb(254, 114, 203);
  text-decoration: underline;
}

#prof a:visited {
  color: rgb(254, 114, 203);
  text-decoration: underline;
}

#main-prof p {
  padding: 1rem 0;
  font-weight: 500;
  word-break: break-all;
}

#main-prof h3 {
  font-weight: 700;
  font-size: 1.1em;
}

#main-prof .history {
  font-size: 0.9em;
  color: #444;
  padding: 1.5rem;
  background-color: #f3f3f3;
  margin: 1.2rem 0;
}

.post-bg {
  background-color: #fff700;
  padding: 2rem 0 2rem 0;
  position: relative;
  z-index: 0;
}

#post-page .point {
  width: 25%;
  background-image: url(../images/bg-y.png);
  text-align: center;
  padding: 0.5rem;
  margin: 2rem auto;
  font-family: "Roboto Slab", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
}

#post-page .point span {
  font-size: 1.5rem;
  display: block;
}

#post-page h2 {
  position: relative;
  line-height: 1.4;
  padding: 1rem 1em;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0rem 0 2rem;
}

#post-page h2:before, #post-page h2:after {
  content: "";
  width: 15px;
  height: 25px;
  position: absolute;
  display: inline-block;
}

#post-page h2:before {
  border-left: solid 2px #000000;
  border-top: solid 2px #000;
  top: 0;
  left: 0;
}

#post-page h2:after {
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
  bottom: 0;
  right: 0;
}

#post-page h2 .small {
  font-size: 0.8em;
}

#post-page .img-area {
  position: relative;
  width: 100%;
  padding: 3rem 0 0 0;
}

#post-page .img-area:before {
  position: absolute;
  width: 15%;
  height: 5px;
  background-color: #000;
  content: "";
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#post-page .honbun {
  background-color: #fff;
  padding: 1.3rem;
  border-radius: 0.5rem;
  margin: 1rem 0 1rem 0;
  width: 100%;
  box-sizing: border-box;
}

#post-page .honbun p {
  padding: 1.2rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

.honbun {
  position: relative;
  width: fit-content;
  padding: 12px 16px;
  border: 2px solid #333333;
  background-color: #ffffff;
}

.honbun .strong {
  font-weight: 700;
}

.honbun .uline {
  text-decoration: underline;
}

.honbun .yline {
  background: linear-gradient(transparent 50%, #ffae5b 50%);
}

.honbun::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: -2;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px solid #333333;
  border-radius: 0.5rem;
  background-image: url(../images/bg-y.png);
}

.honbun::after {
  content: "";
  position: absolute;
  top: calc(100% + 20px);
  left: 55%;
  z-index: -1;
  width: 40px;
  height: 2px;
  transform: rotate(50deg);
  box-sizing: border-box;
  background-color: #333333;
  box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff; /* 背景色と同じ色を指定 */
}

.honbun .frame-bg {
  background-color: #eee;
  padding: 1.2rem;
}

.honbun .frame-bg p {
  border-bottom: 1px dotted #999;
  font-size: 0.9em !important;
}

.honbun .frame-bg p:last-of-type {
  border: none;
}

#post-page .writtenby {
  width: 30%;
  margin: 0 0 0 auto;
}

#post-page .writtenby img {
  border-radius: 50%;
}

#privacy h3 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
  padding: 3rem 0;
}

#privacy span {
  font-size: 0.5em;
  text-align: center;
  font-family: "Roboto Slab", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  display: block;
}

#privacy {
  background-color: yellow;
  padding: 0 0 3rem 0;
}

#privacy .inner {
  background-color: #fff;
  padding: 1.5rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
}

#privacy dl {
  padding: 1.5rem 0;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  font-size: 0.9rem;
}

#privacy dl dt {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.3rem 1rem;
  margin: 0 0 0.5rem 0;
  background-color: #000000;
  color: #fff;
}

#privacy dl dd p {
  padding: 0.5rem 0;
}

#privacy .read {
  padding: 1.5rem 0;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  font-size: 0.9rem;
}

#privacy .line {
  border-top: 1px solid #ccc;
  margin: 1rem 0 0 0;
  padding: 1rem 0 0 0;
}

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