@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url(/style/fonts/noto-sans-jp-v53-japanese-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url(/style/fonts/noto-sans-jp-v53-japanese-700.woff2) format("woff2");
}
@keyframes fadeslide {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, main,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

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

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: top;
}

html {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

pre {
  white-space: pre-wrap;
}

body {
  line-height: 1.8;
  font-size: 18px;
  font-size: 1.125rem;
  color: #675042;
  font-family: "Noto Sans JP", sans-serif;
}
body.fixed {
  height: 100%;
  overflow: hidden;
}
body.fixed .gnavsp {
  display: block;
}

header {
  text-align: center;
  padding: 32px 16px;
  background: #fff570;
}
@media (max-width: 979px) {
  header {
    text-align: left;
    padding: 8px;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 2px rgba(103, 80, 66, 0.3);
  }
}
header #logo img {
  max-width: 480px;
}
@media (max-width: 979px) {
  header #logo img {
    max-width: 320px;
    width: 60%;
  }
}
@media (max-width: 768px) {
  header #logo img {
    max-width: unset;
  }
}

#menubtn {
  display: none;
}
@media (max-width: 979px) {
  #menubtn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  #menubtn.open span {
    background: #fff570;
  }
  #menubtn.open span::before {
    top: 0;
    transform: rotate(-45deg);
  }
  #menubtn.open span::after {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menubtn span {
    display: block;
    width: 50%;
    height: 2px;
    background: red;
    position: relative;
    transition: all 0.2s ease-in-out;
  }
  #menubtn span::before, #menubtn span::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background: red;
    transition: all 0.2s ease-in-out;
  }
  #menubtn span::before {
    top: -8px;
  }
  #menubtn span::after {
    bottom: -8px;
  }
}

#wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
  max-width: 1344px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #wrap {
    padding-top: 32px;
  }
}

main {
  flex: 1;
  padding-bottom: 128px;
  position: relative;
}

section {
  margin: 64px auto;
}

footer {
  background: #fcf6db;
  padding: 16px;
}
footer .logo {
  width: 50%;
  max-width: 320px;
}
footer .sitelink {
  margin: 0 auto;
  max-width: 1120px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .snslink {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer .snslink a {
  display: block;
  margin: 4px;
  padding: 8px;
  font-size: 0;
  clip-path: circle();
}
footer .snslink a.x {
  background: black;
}
footer .snslink a.facebook {
  background: #3b5998;
}
footer .snslink a img {
  width: 32px;
}
footer .infolink {
  padding: 32px 8px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
footer .infolink li {
  padding: 0 8px;
}
footer .infolink a {
  text-decoration: none;
  color: #675042;
  font-size: 16px;
  font-size: 1rem;
}
footer #copy {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 32px 0 0;
}

a {
  transition: all 0.2s ease-in-out;
}
a img {
  transition: all 0.2s ease-in-out;
}

#bread {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  #bread {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    padding: 8px;
  }
}
#bread ul {
  max-width: 1344px;
  margin: 0 auto;
  font-size: 12px;
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  #bread li {
    padding-top: 8px;
  }
}
#bread a {
  padding: 8px 0;
  display: block;
  color: #675042;
  text-decoration: none;
  position: relative;
}
@media (max-width: 768px) {
  #bread a {
    padding: 0;
  }
}
#bread a:hover {
  color: #f85523;
}
#bread a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  font-weight: bold;
  margin: 0 8px;
}

@font-face {
  font-family: "myself";
  src: url("/scss/fonts/myself.eot");
  src: url("/scss/fonts/myself.eot#iefix") format("embedded-opentype"), url("/scss/fonts/myself.woff") format("woff"), url("/scss/fonts/myself.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
#sidenav {
  width: 300px;
  margin-top: 32px;
  margin-left: 32px;
  padding-top: 16px;
  line-height: 1.4;
  position: sticky;
  top: 0;
}
@media (max-width: 1024px) {
  #sidenav {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    max-width: 400px;
    width: 100%;
    height: 100vh;
    background: rgba(255, 238, 153, 0.9);
    overflow-y: auto;
    padding: 88px 0 32px;
    z-index: 8;
    transition: all 0.2s ease-in-out;
  }
  #sidenav.show {
    transform: translateX(0);
  }
}
@media (max-width: 640px) {
  #sidenav {
    max-width: unset;
  }
}
#sidenav dt {
  margin-top: 16px;
  padding: 8px;
  background: #675042;
  color: white;
  font-size: 16px;
  font-size: 1rem;
}
#sidenav dt::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 0.3em;
  line-height: 1;
  font-weight: bold;
  margin-right: 8px;
}
#sidenav .category dt::before {
  content: "\f00b";
}
#sidenav .aboutus {
  display: none;
}
@media (max-width: 1024px) {
  #sidenav .aboutus {
    display: block;
  }
}
#sidenav .aboutus dt::before {
  content: "\f1ad";
}
#sidenav li {
  border-bottom: 1px dashed #b2a7a0;
}
#sidenav a {
  display: block;
  text-decoration: none;
  color: #675042;
  padding: 16px 4px;
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 640px) {
  #sidenav a {
    padding: 16px;
  }
}
#sidenav a:hover {
  color: #f85523;
}
#sidenav .close {
  display: none;
}
@media (max-width: 1024px) {
  #sidenav .close {
    display: block;
    margin-top: 64px;
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
  }
  #sidenav .close em {
    display: inline-block;
    color: #005799;
    border-bottom: 1px solid #005799;
  }
  #sidenav .close em::before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 0.3em;
    line-height: 1;
    padding-right: 4px;
  }
}
#sidenav .actionbtn {
  width: 94%;
  max-width: 1024px;
  margin: 32px auto;
  display: none;
}
@media (max-width: 640px) {
  #sidenav .actionbtn {
    display: block;
  }
}
#sidenav .actionbtn li {
  padding: 8px 0;
  border-bottom: none;
}
#sidenav .actionbtn a {
  border-radius: 12px;
  border: 3px solid white;
  box-shadow: 0 0 3px rgba(103, 80, 66, 0.3);
  padding: 12px 16px;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  position: relative;
}
#sidenav .actionbtn a.trial {
  background: #fff570;
}
#sidenav .actionbtn a.form {
  background: #ef7e17;
  color: white;
}
#sidenav .actionbtn a.form::after {
  color: white;
}
#sidenav .actionbtn a.contact {
  background: #908075;
  color: white;
}
#sidenav .actionbtn a.contact::after {
  color: white;
}

.searchform {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .searchform {
    width: 94%;
    max-width: 1024px;
    margin: 32px auto;
  }
}
.searchform input.field {
  flex: 1;
  padding: 12px 8px;
  font-size: 16px;
  font-size: 1rem;
}
.searchform input.submit {
  border: none;
  outline: none;
  width: 4em;
  background: #675042;
  color: white;
}

/* headline ---------------
------------------------*/
.title_line {
  font-weight: bold;
  border-bottom: 2px solid #b2a7a0;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 4px;
}

/* box ---------------
------------------------*/
.list_block {
  animation: fadeslide 1s ease 0s 1 normal;
  display: none;
}
.list_block.show {
  display: block;
}

.gradientbtn {
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
  text-align: center;
  margin: 24px auto;
}
.gradientbtn a {
  display: inline-block;
  border-radius: 2.4em;
  background: linear-gradient(rgb(98.88, 76.8, 63.36), #675042);
  box-shadow: 0 0 8px rgba(103, 80, 66, 0.2);
  text-align: center;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 auto;
  max-width: 640px;
  min-width: 240px;
  border: 3px solid white;
  position: relative;
  line-height: 1.4;
}
.gradientbtn a:hover {
  opacity: 0.8;
}
.gradientbtn a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  position: absolute;
  right: 8px;
  top: calc(50% - 0.5em);
}
.gradientbtn span {
  display: block;
  font-size: 0.9em;
  font-weight: bold;
}

hr {
  border: none;
  padding: 24px 0;
}

.round {
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
  margin: 24px auto;
  text-align: right;
}
.round a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
  color: #756154;
  font-weight: bold;
  border-radius: 38px;
  border: 1px solid #b2a7a0;
  padding: 16px 42px 16px 24px;
  margin: 8px 0;
  box-shadow: 0 3px 0 #b2a7a0;
  position: relative;
  background: white;
}
.round a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 16px;
  color: #52a7cc;
}
.round a:hover {
  background: #fcf6db;
}

/* text ---------------
------------------------*/
.center {
  text-align: center;
}

.bnr {
  text-align: center;
  margin: 24px 0;
}

em, .bold {
  font-weight: bold;
}

.blue {
  color: #005799;
  font-weight: bold;
}

.red {
  color: #f85523;
  font-weight: bold;
}

.orange {
  color: #ef7e17;
  font-weight: bold;
}

.pen, .pen_cream {
  font-weight: bold;
  background: repeating-linear-gradient(#fff570, #fff570) 0 100%/100% 10px no-repeat;
}

/* list ---------------
------------------------*/
.disc, .decimal {
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
  margin: 32px auto;
  line-height: 1.4;
}
.disc li, .decimal li {
  padding: 12px 0;
  margin-left: 24px;
}

.disc {
  list-style: disc;
}

.decimal {
  list-style: decimal;
}

[class^=face-], [class*=" face-"], .list-star {
  margin-bottom: 32px;
}
[class^=face-] li, [class*=" face-"] li, .list-star li {
  padding-left: 40px;
  margin: 16px 8px;
  background-position: left 6px;
  background-repeat: no-repeat;
  background-size: 26px;
}

.face-smile li {
  background-image: url(/image/common/list/smile.webp);
}

.face-sad li {
  background-image: url(/image/common/list/sad.svg);
}

.list-star li {
  background-image: url(/image/common/list/star.webp);
}

.list_post {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 24px auto;
}
.list_post li {
  width: 33.3333333333%;
  padding: 8px 8px 16px;
}
@media (max-width: 768px) {
  .list_post li {
    width: 100%;
  }
}
.list_post li.develop .category {
  background: #ff9fb7;
}
.list_post li.refusal .category {
  background: #75bacc;
}
.list_post li.study .category {
  background: #009783;
}
.list_post li.exam .category {
  background: #f99678;
}
.list_post li.education .category {
  background: #4b93b4;
}
.list_post li.tutor .category {
  background: #f3a45B;
}
.list_post a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  line-height: 1.4;
  color: #675042;
  box-shadow: 0 0 3px rgba(103, 80, 66, 0.3);
  height: 100%;
  padding-bottom: 16px;
  background: white;
  position: relative;
}
.list_post a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(103, 80, 66, 0.6);
  background: #fcf6db;
}
.list_post .img {
  height: 240px;
}
@media (max-width: 768px) {
  .list_post .img {
    height: 160px;
  }
}
.list_post .title {
  padding: 16px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
.list_post .category {
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 8px;
  border-radius: 0 0 6px 0;
  min-width: 4em;
  text-align: center;
}

.img {
  overflow: hidden;
}
.img img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}

.list_post_mini li {
  border-bottom: 1px dashed #675042;
}
.list_post_mini li a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #675042;
  padding: 4px 0;
}
.list_post_mini li a:hover {
  background: #fcf6db;
}
.list_post_mini li a:hover .img img {
  transform: scale(1.08);
}
.list_post_mini li a .img {
  width: 100px;
  height: 72px;
}
.list_post_mini li a .title {
  flex: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 8px;
}

.tab_category {
  animation: fadeslide 1s ease 0s 1 normal;
}
.tab_category ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  box-shadow: 1px 1px 3px rgba(103, 80, 66, 0.4);
  border-radius: 6px;
  overflow: hidden;
}
.tab_category li {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  background: white;
  position: relative;
}
@media (max-width: 768px) {
  .tab_category li {
    flex: auto;
    min-width: 25%;
    padding: 16px 4px;
  }
}
.tab_category li::after {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #f4f2f1;
}
.tab_category li:last-child::after {
  content: none;
}
.tab_category li:hover {
  background: #fcf6db;
  color: white;
}
.tab_category li:hover.news {
  background: #fff570;
  color: #675042;
}
.tab_category li:hover.develop {
  background: #ff9fb7;
}
.tab_category li:hover.refusal {
  background: #75bacc;
}
.tab_category li:hover.study {
  background: #009783;
}
.tab_category li:hover.exam {
  background: #f99678;
}
.tab_category li:hover.education {
  background: #4b93b4;
}
.tab_category li:hover.tutor {
  background: #f3a45B;
}
.tab_category li.active {
  color: white;
}
.tab_category li.active.news {
  background: #fff570;
  color: #675042;
}
.tab_category li.active.develop {
  background: #ff9fb7;
}
.tab_category li.active.refusal {
  background: #75bacc;
}
.tab_category li.active.study {
  background: #009783;
}
.tab_category li.active.exam {
  background: #f99678;
}
.tab_category li.active.education {
  background: #4b93b4;
}
.tab_category li.active.tutor {
  background: #f3a45B;
}

.list_block {
  animation: fadeslide 1s ease 0s 1 normal;
  display: none;
}
.list_block.show {
  display: block;
}

/* page ---------------
------------------------*/
#page {
  animation: fadeslide 1s ease 0s 1 normal;
}

/* single ---------------
------------------------*/
#single {
  padding: 32px;
  animation: fadeslide 1s ease 0s 1 normal;
}
@media (max-width: 768px) {
  #single {
    padding: 0;
  }
}
#single h1 {
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  #single h1 {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 0 8px;
  }
}
#single h2, #single h3, #single h4 {
  line-height: 1.4;
  margin-top: 64px;
  font-weight: bold;
}
#single h2 small, #single h3 small, #single h4 small {
  display: block;
}
#single h2 {
  font-size: 24px;
  font-size: 1.5rem;
  border: 1px dashed transparent;
  border-radius: 12px;
  padding: 16px;
  margin-top: 80px;
  border-color: #ef7e17;
  background: #fee7d1;
}
@media (max-width: 768px) {
  #single h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
#single h3 {
  font-size: 22px;
  font-size: 1.375rem;
  border: 1px solid #f3a45b;
  padding: 16px 24px;
  position: relative;
}
@media (max-width: 768px) {
  #single h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#single h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #f3a45b;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
#single h4 {
  font-size: 22px;
  font-size: 1.375rem;
  border-bottom: 1px solid #f3a45b;
  position: relative;
  padding: 16px 24px;
}
@media (max-width: 768px) {
  #single h4 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#single h4::before, #single h4::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  position: absolute;
}
#single h4::before {
  bottom: 0;
  left: 0;
}
#single h4::after {
  bottom: 0;
  right: 0;
}
#single .postdate {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 32px;
  text-align: right;
}
@media (max-width: 768px) {
  #single .postdate {
    margin-bottom: 16px;
  }
}
#single .postdate::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  margin-right: 8px;
}
#single .thumbnail {
  text-align: center;
}
#single .content {
  padding: 32px 0;
}
#single .content p {
  margin: 32px 0;
}
@media (max-width: 768px) {
  #single .content p {
    margin: 32px 16px;
  }
}
#single .content dl {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  margin: 32px auto;
}
#single .content dl dt {
  font-weight: bold;
  line-height: 1.4;
  text-indent: -22px;
  margin-left: 20px;
  padding-left: 8px;
}
#single .content dl dt::before {
  content: "■";
  color: #ef7e17;
  margin-right: 4px;
}
#single .content dl dd {
  padding: 16px;
}
#single .content dl dd:last-child {
  padding-bottom: 0;
}
#single .content dl dd *:first-child {
  margin-top: 8px;
}
#single .content [class^=box-bg-], #single .content [class*=" box-bg-"] {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  background: #fcf6db;
  padding: 16px 32px 4px;
}
#single .content .box-bg-yellow {
  background: #fcf6db;
}
#single .content .box-bg-orange {
  background: #fee7d1;
}
#single .content .box-bg-blue {
  background: #e8f4f9;
}
#single .content .twobtns {
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
  margin: 32px auto;
  text-align: center;
}
#single .content .twobtns a {
  display: block;
  border-radius: 48px;
  font-weight: bold;
  margin: 0 auto 16px;
  line-height: 1.4;
  padding: 16px 8px;
  text-decoration: none;
  max-width: 640px;
}
#single .content .twobtns a.detail {
  background: #ef7e17;
  color: white;
  font-size: 28px;
  font-size: 1.75rem;
  box-shadow: 0 3px 0 rgb(205.8812903226, 105.6029032258, 14.1987096774);
}
#single .content .twobtns a.detail:hover {
  background: rgb(240.28, 136.32, 41.56);
  transform: translateY(3px);
  box-shadow: 0 0 0 #ef7e17;
}
@media (max-width: 768px) {
  #single .content .twobtns a.detail {
    font-size: 4.5454545455vw;
    padding: 18px 6px;
  }
}
#single .content .twobtns a.toform {
  border: 2px solid #ef7e17;
  background: white;
  color: #ef7e17;
  padding: 12px;
  font-size: 24px;
  font-size: 1.5rem;
}
#single .content .twobtns a.toform:hover {
  background: #fcf6db;
}
@media (max-width: 768px) {
  #single .content .twobtns a.toform {
    font-size: 4.1666666667vw;
    padding: 0.4em 0.2em;
    width: 100%;
    padding: 12px 6px;
  }
}
#single .content .twobtns small {
  display: block;
  font-size: 16px;
  font-size: 1rem;
}
#single div#ez-toc-container {
  background: #fcf6db;
  margin: 64px auto;
  border: none;
  padding: 32px;
}
#single div#ez-toc-container nav {
  transform: translateY(16px);
}
#single div#ez-toc-container .ez-toc-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
#single div#ez-toc-container .ez-toc-heading-level-2 {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #b2a7a0;
}
#single div#ez-toc-container .ez-toc-heading-level-2:last-child {
  margin-bottom: 0;
  border: none;
}
#single div#ez-toc-container .ez-toc-heading-level-2 > a {
  padding: 4px 0;
  font-weight: bold;
}
#single div#ez-toc-container .ez-toc-heading-level-2 > a::before {
  content: "●";
  font-size: 20px;
  font-size: 1.25rem;
  color: #ef7e17;
  line-height: 1.4;
}
#single div#ez-toc-container .ez-toc-heading-level-3 {
  margin-bottom: 4px;
}
#single div#ez-toc-container .ez-toc-heading-level-3 > a {
  padding: 4px 0;
}
#single div#ez-toc-container .ez-toc-heading-level-3 > a::before {
  color: #ef7e17;
}
#single div#ez-toc-container .ez-toc-heading-level-4 {
  margin-bottom: 4px;
}
#single div#ez-toc-container .ez-toc-heading-level-4 > a {
  padding: 4px 0;
}
#single div#ez-toc-container .ez-toc-heading-level-4 > a::before {
  content: "・";
  color: #ef7e17;
}
#single .link-tagbox {
  margin: 24px auto;
}
#single .link-tagbox i {
  background: #675042;
  color: white;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 4px 12px;
}
#single .link-tagbox a {
  border: 1px solid #675042;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  padding: 16px 8px;
  color: #675042;
}
#single .link-tagbox a:hover {
  color: #f85523;
}
#single .link-tagbox a img {
  max-width: 24%;
  line-height: 1;
}
#single .link-tagbox a div {
  flex: 1;
}
#single .link-tagbox a p {
  width: auto;
  margin: 0 8px;
  max-width: none;
  padding: 0;
  line-height: 1.4;
}
#single .link-tagbox a p.title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 8px;
}
#single .link-tagbox a p.excerpt {
  font-size: 16px;
  font-size: 1rem;
}

.request {
  max-width: 800px;
  margin: 32px auto;
  border-radius: 6px;
  padding: 16px 32px;
  background: #fcf6db;
}
@media (max-width: 768px) {
  .request {
    padding: 8px;
  }
}
.request p.title {
  border-bottom: 2px solid #ef7e17;
  padding-bottom: 8px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-weight: bold;
  line-height: 1.4;
}

.author {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: 16px;
  padding-bottom: 32px;
}

.authorphoto {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 3px rgba(103, 80, 66, 0.8));
}
.authorphoto img {
  width: auto;
  height: auto;
  clip-path: circle();
}

.authorname {
  padding-left: 16px;
  font-weight: bold;
}
.authorname p {
  font-size: 18px;
  font-size: 1.125rem;
  width: auto;
  max-width: none;
  padding: 0;
  line-height: 1.4;
}
.authorname p.title {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.authorname p small {
  font-size: 14px;
  font-size: 0.875rem;
}

.authorbox {
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 6px;
  border: 8px solid #b2a7a0;
  padding: 16px 32px;
  position: relative;
  margin: 64px auto;
  background: white;
}
@media (max-width: 768px) {
  .authorbox {
    padding: 16px;
  }
}
.authorbox .comment {
  font-size: 16px;
  font-size: 1rem;
  padding: 8px 0;
}
.authorbox::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url(/image/content/column/authorbox.webp) no-repeat center bottom/contain;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
}
.authorbox .author {
  padding-left: 0;
  padding-bottom: 0;
}

.pager {
  text-align: center;
  max-width: 1120px;
  width: 96%;
  margin: 0 auto;
  margin: 64px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.pager > a, .pager > span {
  width: 3em;
  margin: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 2px solid #675042;
  text-decoration: none;
  font-weight: 800;
}
.pager > a.dots, .pager > span.dots {
  border: none;
  padding: 0;
}
@media (max-width: 768px) {
  .pager > a, .pager > span {
    width: auto;
    display: inline-block;
    padding: 0 8px;
  }
}
.pager > a {
  background: white;
  color: #675042;
}
.pager > a:hover {
  background: #675042;
  color: white;
}
.pager > span:not(.dots) {
  background: #675042;
  color: white;
}

.title_archive {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 3px solid #675042;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .title_archive {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.title_archive::before {
  content: "\f07c";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  font-weight: 400;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .title_archive::before {
    margin-right: 0;
  }
}

.search .title_archive::before {
  content: "\f044";
}/*# sourceMappingURL=page.css.map */