@charset "UTF-8";
@font-face {
  font-family: "kokoro";
  src: url("../fonts/Kokoro.otf") format("truetype");
}
/* :::::::::::::::::::

	CONTACT

:::::::::::::::::::::: */
main {
  width: 100%;
  margin: 0 auto;
}
main > .flex {
  padding-left: 2rem;
  padding-right: 2rem;
}
main > .flex {
  justify-content: center;
  padding: 8rem 2rem 12rem;
}
@media only screen and (max-width: 834px) {
  main > .flex {
    padding: 4rem 5vw 8rem;
    flex-direction: column;
  }
}

aside {
  width: 320px;
  margin-left: 8rem;
}
aside .box {
  position: sticky;
  top: 140px;
  background: #F9F6F6;
  border: 1px solid #707070;
  padding-bottom: 6rem;
}
aside h2 {
  text-align: center;
  background: #EE7C74;
  color: #fff;
  font-size: 2rem;
  padding: 0.75em 0.5em;
}
aside ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2rem;
  gap: 1.5rem;
}
aside ul li a {
  border-radius: 2em;
  display: block;
  text-align: center;
  background: #fff;
  border: 1px solid #707070;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.25em;
  transition: all ease 0.3s;
}
aside ul li a:hover {
  color: #fff !important;
  background: #707070;
}
aside .search {
  text-align: center;
  padding: 0 3rem;
}
aside .search p {
  color: #80846F;
  font-weight: bold;
  margin: 2rem 0 1rem;
}
aside .search form {
  position: relative;
}
aside .search form input[type=text] {
  appearance: none;
  border-radius: 0;
  width: 100%;
  padding: 1em 5em 1em 0.5em;
}
aside .search form button {
  position: absolute;
  appearance: none;
  border-radius: 0;
  border: 0;
  width: 4em;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1em;
  padding: 0.5em;
  background: #EE7C74;
  color: #fff;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1366px) {
  aside .box {
    max-height: 500px;
    overflow-y: scroll;
  }
  aside h2 {
    position: sticky;
    top: 0;
  }
}
@media only screen and (max-width: 834px) {
  aside {
    margin-top: 6rem;
    width: 100%;
    margin-left: 0;
  }
  aside .box {
    max-height: none;
    overflow-y: hidden;
  }
  aside ul {
    grid-template-columns: repeat(4, 1fr);
  }
  aside .search form {
    font-size: 1.6rem;
  }
  aside .search form input[type=text] {
    padding-right: 6em;
  }
}
@media only screen and (max-width: 600px) {
  aside ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

#archive {
  flex: 1;
  max-width: 1200px;
}
#archive a.btn {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: 0;
  display: block;
  color: #fff;
  font-weight: bold;
  background: #EE7C74;
  line-height: 1em;
  width: 200px;
  text-align: center;
  padding: 1em;
  border-radius: 2em;
  border: 1px solid #EE7C74;
}
#archive a.btn:hover {
  background: #fff;
  color: #EE7C74;
}
#archive a.btn:after {
  content: "▶";
  padding-left: 1em;
}
#archive article {
  display: flex;
  padding: 4rem 0;
  border-top: 1px solid #E5DED9;
}
#archive .pic {
  width: 400px;
  height: 300px;
  background: center center/cover no-repeat;
  margin-right: 5rem;
  position: relative;
}
#archive .pic a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#archive .pic a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#archive .pic a:hover img {
  transform: scale(1.2);
}
#archive .txt {
  flex: 1;
}
#archive h2 {
  font-size: 2.8rem;
  margin-bottom: 1em;
}
#archive .cat {
  margin-top: 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#archive .cat a {
  border-radius: 2em;
  border: 1px solid #543D1E;
  padding: 0.5em 1em;
  font-weight: bold;
  transition: all ease 0.3s;
}
#archive .cat a:hover {
  color: #fff !important;
  color: #80846F !important;
}
@media only screen and (max-width: 1366px) {
  #archive .pic {
    width: 240px;
    height: 180px;
  }
  #archive h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  #archive article {
    flex-direction: column;
  }
  #archive article .pic {
    width: 100%;
    height: 60vw;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

#single {
  flex: 1;
  max-width: 1050px;
  /* ez-toc */
}
#single article p {
  font-size: 1.8rem;
  line-height: 2.5em;
  margin-top: 1em;
}
@media only screen and (max-width: 834px) {
  #single article p {
    line-height: 2em;
  }
}
@media only screen and (max-width: 600px) {
  #single article p {
    line-height: 1.8em;
  }
}
#single article h1 {
  font-size: 3.2rem;
  line-height: 5rem;
  margin-bottom: 4rem;
}
#single article h2 {
  font-size: 2.4rem;
  padding: 1em;
  margin-top: 12rem;
  color: #EE7C74;
  background: #F2F7E1;
}
#single article h2 + p {
  margin-top: 2rem;
}
#single article h3 {
  font-size: 2.4rem;
  color: #E7A914;
  font-weight: normal;
  margin-top: 1.5em;
  border-top: 1px solid #707070;
  padding-top: 1.5em;
}
#single article figure + h3 {
  padding-top: 0;
  border-top: 0;
}
#single article h4 {
  font-size: 1.8rem;
  margin: 1.5em 0 0.5em;
}
#single article h1 + .column_txt {
  padding-top: 6rem;
}
#single article figure {
  margin-top: 6rem;
}
#single article .wp-block-image {
  text-align: center;
}
#single article .wp-block-image img {
  height: auto;
}
#single article .wp-block-table td:first-of-type {
  width: auto;
}
#single article .wp-block-table td:last-of-type {
  width: auto;
}
#single article a.wp-block-button__link {
  display: inline-flex;
  justify-content: center;
  background: #EE7C74;
  border: 1px solid #EE7C74;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 6rem;
  padding: 0 6rem;
  border-radius: 6rem;
  margin: 4rem 0 6rem;
  transition: all ease 0.3s;
}
#single article a.wp-block-button__link:hover {
  background: #fff;
  color: #EE7C74;
}
#single article a.wp-block-button__link:after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 1em;
}
@media only screen and (max-width: 834px) {
  #single article p {
    font-size: 1.6rem;
  }
  #single article h1 {
    font-size: 3.2rem;
    margin-bottom: 4rem;
  }
  #single article h2 {
    font-size: 2.2rem;
    margin-top: 8rem;
  }
  #single article h3 {
    font-size: 2.2rem;
  }
  #single article h4 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 600px) {
  #single article p {
    font-size: 1.4rem;
  }
  #single article h1 {
    font-size: 2rem;
    line-height: 3rem;
    letter-spacing: 0;
    margin-bottom: 3rem;
  }
  #single article h2 {
    font-size: 1.8rem;
    margin-top: 6rem;
  }
  #single article h3 {
    font-size: 1.8rem;
  }
  #single article h4 {
    font-size: 1.4rem;
  }
  #single article a.wp-block-button__link {
    font-size: 1.6rem;
    line-height: 4rem;
    padding: 0 2rem;
    border-radius: 2rem;
    margin: 4rem 0;
  }
}
#single article .col-foot {
  margin-top: 12rem;
  text-align: center;
}
@media only screen and (max-width: 834px) {
  #single article .col-foot {
    margin-top: 8rem;
  }
}
@media only screen and (max-width: 600px) {
  #single article .col-foot {
    margin-top: 10rem;
  }
}
#single article .col-foot a.est-bnr {
  display: inline-block;
}
#single article .col-foot a.coltop {
  margin-inline: auto;
  display: block;
  color: #fff;
  font-weight: bold;
  background: #EE7C74;
  line-height: 1em;
  max-width: 320px;
  text-align: center;
  padding: 1em;
  border-radius: 2em;
  border: 1px solid #EE7C74;
}
#single article .col-foot a.coltop:hover {
  background: #fff;
  color: #EE7C74;
}
#single article .col-foot a.coltop:after {
  content: "▶";
  padding-left: 1em;
}
@media only screen and (max-width: 600px) {
  #single article .col-foot .wp-block-table td {
    font-size: 1.4rem;
  }
  #single article .col-foot a.coltop {
    font-size: 1.6rem;
    line-height: 6rem;
    padding: 0 6rem;
    border-radius: 3rem;
    margin-top: 6rem;
  }
}
#single #ez-toc-container {
  margin-top: 8rem;
  width: 100%;
  border: 2px solid #96C748;
  background: #F2F7E1;
  font-weight: bold;
  padding: 4rem;
  border-radius: 1rem;
}
#single #ez-toc-container .ez-toc-title-container {
  text-align: center;
  padding: 0 0 2rem;
  border-bottom: 2px dashed #80846F;
}
#single #ez-toc-container nav {
  padding: 4rem;
}
#single #ez-toc-container li {
  margin-top: 1em;
}
#single #ez-toc-container li:before {
  content: "■";
  color: #80846F;
  display: inline-block;
  margin-right: 1em;
}
#single #ez-toc-container li li {
  font-size: 0.9em;
}
@media only screen and (max-width: 834px) {
  #single #ez-toc-container {
    padding: 4rem 2rem 0;
  }
  #single #ez-toc-container nav {
    padding: 4rem 0;
  }
  #single #ez-toc-container a {
    display: inline;
  }
}
@media only screen and (max-width: 600px) {
  #single #ez-toc-container ul ul {
    margin-left: 1em;
  }
}/*# sourceMappingURL=column.css.map */