@charset "UTF-8";
/*// <uniquifier>: Use a unique and descriptive class name

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
    box-shadow: 0 1px 5px rgba($color: $text-main-color, $alpha: 0.2);
*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #faf8f4;
  font-size: 0.9375rem;
  color: #554c3c;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

body.is-noScroll {
  width: 100%;
  height: 100%;
  position: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
  cursor: pointer;
}

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

li {
  list-style: none;
  font-family: "Noto Sans", sans-serif;
}

.italic {
  font-style: italic;
}

.align-right {
  text-align: right;
}

.btn {
  display: inline-block;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(85, 76, 60, 0.2);
  padding: 10px 27px;
  color: #faf8f4;
  transition: 0.3s;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.7;
}

.btn-brown {
  background-color: #554c3c;
  box-shadow: 0 1px 5px rgba(250, 248, 244, 0.2);
}

.btn-green {
  background-color: #4e7660;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
main {
  padding: 0 20px 50px 20px;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 787px) {
  main {
    padding: 0 20px 20px 20px;
  }
}
header {
  padding-top: 2vw;
  max-width: 62.5vw;
  text-align: center;
  margin: 0 auto;
}
header .center {
  margin-top: 2vw;
  text-align: center;
}
header .header-nav {
  margin-top: 15px;
}
header .header-nav .site-id {
  display: inline-block;
  margin-bottom: 2vw;
}
header .header-nav img {
  width: 23vw;
}
header .gnav ul {
  display: flex;
  justify-content: space-between;
}
header .gnav ul li {
  font-size: 1rem;
  transition: 0.3s;
}
header .gnav ul li:hover {
  opacity: 0.6;
}
header .btn-nav {
  position: fixed;
  z-index: 998;
  top: 1.5vw;
  right: 1.5vw;
}
header .btn-nav .lang-nav {
  margin-bottom: 6px;
}
header .btn-nav ul li {
  display: inline-block;
}
header .btn-nav ul .slash {
  margin: 0 10px;
}
header .gnav {
  display: block;
}
header .sp-nav {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}
header .sp-nav.is-active {
  pointer-events: auto;
  opacity: 1;
}
header .sp-nav {
  transition: 0.3s;
  width: 450px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #e9e7e0;
  z-index: 999;
}
header .sp-nav .inner {
  margin-left: 30%;
  margin-top: 5vh;
  text-align: left;
}
header .sp-nav .line {
  margin: 6vh 0;
  display: block;
  width: 100px;
  height: 1px;
  background-color: #faf8f4;
}
header .sp-nav .lang-nav {
  display: flex;
  margin-top: 44px;
  margin-left: 30%;
}
header .sp-nav .lang-nav .slash {
  margin: 0 10px;
}
header .sp-nav .sp-nav-list {
  text-align: left;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
header .sp-nav .sp-nav-list li {
  transition: 0.3s;
}
header .sp-nav .sp-nav-list li:hover {
  opacity: 0.6;
}
header .sp-nav .sp-nav-list a {
  line-height: 2.5;
}
header .sp-nav .sns-list a {
  text-decoration: none;
}
header .sp-nav .sns-list i {
  margin-right: 7px;
  width: 24px;
}
header .sp-nav .sns-list li:first-child {
  margin-right: 34px;
  margin-bottom: 10px;
}
header .ham-btn {
  height: 60px;
  cursor: pointer;
  position: fixed;
  top: 25px;
  left: 35px;
  z-index: 999;
  border-radius: 2px;
  padding: 0 7px;
}
header .ham-btn span::before,
header .ham-btn span::after {
  display: block;
  content: "";
  width: 45px;
  height: 2px;
  background-color: #554c3c;
  border-radius: 1px;
  /* ボタンを押したときの変化速度 */
  transition: 0.3s;
}
header .ham-btn span::before {
  position: absolute;
  top: 30px;
}
header .ham-btn span::after {
  position: absolute;
  top: 40px;
}
header .ham-btn.active {
  background: none;
  box-shadow: none;
}
header .ham-btn.active span::before {
  transform: rotate(30deg);
  top: 40px;
}
header .ham-btn.active span::after {
  transform: rotate(-30deg);
}
header .ham-btn .text {
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
header .current-page {
  border-bottom: 1px solid #554c3c;
}
header .current-lang {
  color: #d8d2c4;
}

@media screen and (max-width: 1000px) {
  header {
    padding-top: 110px;
    max-width: 80vw;
  }
  header .btn-nav {
    top: 1.5vw;
  }
  header .header-nav img {
    width: 38vw;
  }
  header .ham-btn {
    top: 15px;
    left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .sp-nav,
  .ham-btn {
    display: block;
  }
  .center {
    display: none;
  }
}
/* footer */
footer {
  background-color: #e9e7e0;
  padding: 50px 3vw 20px 3vw;
}
footer .footer-inner {
  display: flex;
  justify-content: space-between;
}
footer .footer-right {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-right h3 {
  font-family: "Noto Sans", sans-serif;
  margin-bottom: 5px;
  font-size: 15px;
}
footer .footer-pc-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
footer .footer-logo {
  margin-right: 3vw;
}
footer .footer-logo img {
  width: 200px;
}
footer .footernav,
footer .sns-block {
  margin-right: 6vw;
}
footer .footernav li a,
footer .sns-block li a {
  line-height: 2;
}
footer .sns-block a {
  text-decoration: none;
}
footer .sns-block a i {
  margin-right: 5px;
}
footer .sns-block a .fa-brands {
  font-size: 1em;
  vertical-align: middle;
}
footer .btn {
  padding: 10px 0;
  width: 188px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}
footer .copyright {
  font-size: 12px;
  font-family: "Noto Sans", sans-serif;
  text-align: right;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #faf8f4;
}

@media screen and (max-width: 768px) {
  footer .footer-inner {
    justify-content: space-around;
    flex-wrap: wrap;
  }
  footer .footer-right {
    display: block;
    width: 280px;
  }
  footer .sns-block {
    margin-right: 0;
  }
  footer .footer-pc-flex {
    justify-content: space-between;
    margin-bottom: 30px;
  }
  footer .footer-logo img {
    margin-bottom: 40px;
  }
  footer ul.btn-list {
    text-align: center;
  }
  footer .btn {
    width: 100%;
  }
  footer .copyright {
    margin-top: 40px;
    text-align: center;
  }
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 2;
  position: absolute;
  bottom: -85px;
  z-index: 1;
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
}
.breadcrumbs li:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  margin: 0 15px;
}

@media screen and (max-width: 768px) {
  .c-breadcrumbs {
    font-size: 13px;
  }
}
.btn-top {
  position: sticky;
  right: 10px;
  bottom: 20px;
  text-align: right;
}
.btn-top img {
  width: 75px;
}
.btn-top a {
  display: inline-block;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .btn-top img {
    width: 60px;
  }
}
.page-title {
  border-left: 3px solid #d8d2c4;
  margin-top: 4vw;
  line-height: 1.5;
  padding-left: 15px;
}
.page-title .sub {
  font-size: 15px;
  font-weight: normal;
}
.page-title .title {
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
  font-weight: normal;
}

.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s, visibility 2s, transform 1s;
}

.js-fade.scroll {
  opacity: 1;
  transform: translateY(0px);
}

/* HOME main */
.home-main {
  max-width: 940px;
  margin: 0 auto;
}
.home-main .mv {
  text-align: center;
  margin-top: 7.6vw;
  margin-bottom: 110px;
}
.home-main .mv p {
  margin-top: 3.4vw;
}
.home-main .book-wrapper {
  text-align: center;
  /*liにactiveクラスがついた時の形状*/
  /*エリアの表示非表示と形状*/
  /*areaにis-activeというクラスがついた時の形状*/
}
.home-main .book-wrapper h2 {
  font-family: "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.home-main .book-wrapper .tab {
  width: 298px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  border: 1px solid #4e7660;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(85, 76, 60, 0.2);
}
.home-main .book-wrapper .tab li {
  transition: 0.3s;
}
.home-main .book-wrapper .tab li:hover {
  opacity: 0.8;
}
.home-main .book-wrapper .tab li a {
  font-weight: bold;
  border-radius: 1px;
  display: inline-block;
  color: #554c3c;
  padding: 9px 58px;
}
.home-main .book-wrapper .tab li.active a {
  background: #4e7660;
  color: #faf8f4;
  text-shadow: 0 1px 3px rgba(250, 248, 244, 0.2);
}
.home-main .book-wrapper .area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #faf8f4;
  margin-top: 37px;
}
.home-main .book-wrapper .area .book-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-main .book-wrapper .area .book-list li {
  width: 45%;
  margin-bottom: 60px;
  text-align: left;
  height: 100%;
}
.home-main .book-wrapper .area .book-list .thumbnail img {
  width: 100%;
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 1px 5px rgba(85, 76, 60, 0.2);
  border-radius: 3px;
  transition: 0.3s;
}
.home-main .book-wrapper .area .book-list .thumbnail img:hover {
  transform: scale(1.01, 1.01);
  box-shadow: 0 1px 4px rgba(85, 76, 60, 0.6);
}
.home-main .book-wrapper .area .book-list .text {
  margin-top: 2px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
.home-main .book-wrapper .area.is-active {
  display: block;
  animation: displayTab 2s forwards;
}
@keyframes displayTab {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.home-main #shortstory {
  /* スクロールバーの幅と高さを設定する */
  /* スクロールバーの形を設定する */
  /* スクロールバーの色を設定する */
}
.home-main #shortstory button {
  width: 100%;
  transition: 0.3s;
}
.home-main #shortstory button.active {
  opacity: 0.6;
}
.home-main #shortstory button.active .thumbnail,
.home-main #shortstory button.active .text {
  transform: scale(0.95, 0.9s5);
}
.home-main #shortstory .thumbnail img {
  -o-object-fit: contain;
     object-fit: contain;
}
.home-main #shortstory .short-accordion {
  margin-top: 30px;
  position: relative;
  max-width: 900px;
  width: 250%;
  border: 1px solid #d8d2c4;
  border-radius: 3px;
  padding: 30px;
  background-color: #fefcf8;
  box-shadow: 0 1px 5px rgba(85, 76, 60, 0.2);
}
.home-main #shortstory .short-accordion h4 {
  margin-bottom: 15px;
  font-size: 18px;
}
.home-main #shortstory .item:nth-of-type(even) .short-accordion {
  left: -122%;
}
.home-main #shortstory .content {
  max-height: 55vh;
  overflow: hidden;
  overflow-y: scroll;
}
.home-main #shortstory .content li {
  display: flex;
  justify-content: space-between;
  width: 200%;
  max-width: 800px;
  margin-bottom: 30px;
}
.home-main #shortstory .content .short-img {
  width: 45%;
}
.home-main #shortstory .content .short-img img {
  max-height: 225px;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 1px 5px rgba(85, 76, 60, 0.2);
}
.home-main #shortstory .content .textbox {
  width: 50%;
  margin-top: 20px;
}
.home-main #shortstory .short-close-btn {
  height: 60px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}
.home-main #shortstory .short-close-btn span::before,
.home-main #shortstory .short-close-btn span::after {
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #554c3c;
  border-radius: 1px;
  /* ボタンを押したときの変化速度 */
  transition: 0.3s;
}
.home-main #shortstory .short-close-btn span::before {
  position: absolute;
  transform: rotate(30deg);
  top: 40px;
}
.home-main #shortstory .short-close-btn span::after {
  position: absolute;
  top: 40px;
  transform: rotate(-30deg);
}
.home-main #shortstory .content::-webkit-scrollbar {
  width: 5px;
  height: 30px;
}
.home-main #shortstory .content::-webkit-scrollbar-thumb {
  border-radius: 3px;
}
.home-main #shortstory .content::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: #d8d2c4;
}

@media screen and (max-width: 768px) {
  .home-main .mv .sp-only {
    margin: 0 auto;
    width: 80vw;
    max-width: 300px;
    margin-bottom: 30px;
  }
  .home-main .book-wrapper .area .book-list {
    display: block;
  }
  .home-main .book-wrapper .area .book-list li {
    width: 100%;
  }
  .home-main .book-wrapper .area .book-list li + li {
    margin-left: 0;
  }
  .home-main .book-wrapper h2 {
    font-size: 20px;
  }
  .home-main .book-wrapper .area .book-list .thumbnail img {
    height: 50vw;
  }
  .home-main #shortstory .short-close-btn {
    right: 20px;
    top: 10px;
  }
  .home-main #shortstory .item:nth-of-type(even) .short-accordion {
    left: 0;
  }
  .home-main #shortstory .short-accordion {
    padding: 74px 20px 20px;
    width: 100%;
  }
  .home-main #shortstory .short-accordion h4 {
    font-size: 15px;
  }
  .home-main #shortstory .short-accordion .item {
    width: 100%;
  }
  .home-main #shortstory .short-accordion .accordion {
    width: 100%;
  }
  .home-main #shortstory .short-accordion .content li {
    display: block;
    width: 100%;
  }
  .home-main #shortstory .short-accordion .content .short-img,
  .home-main #shortstory .short-accordion .content .textbox {
    width: 100%;
  }
  .home-main #shortstory .short-accordion .content .textbox {
    margin-bottom: 20px;
  }
}
.about-main {
  max-width: 940px;
  margin: 0 auto;
}
.about-main .main-img {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 15px;
}
.about-main .main-img img {
  width: 220px;
}
.about-main .page-intro {
  text-align: center;
}
.about-main .page-intro p {
  margin-bottom: 20px;
}
.about-main .team {
  margin-top: 150px;
}
.about-main .team .page-title {
  margin-bottom: 30px;
}
.about-main .team .team-member {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.about-main .team .team-member .name {
  margin-right: 20px;
}
.about-main .team .team-member .name p:nth-child(1) {
  color: #d8d2c4;
}
.about-main .team .team-member .name h3 {
  font-weight: normal;
  font-size: 48px;
  line-height: 1.4;
  font-family: "Noto Sans", sans-serif;
  display: inline-block;
  margin-right: 10px;
}
.about-main .team .team-member .name .fa-brands {
  vertical-align: baseline;
}
.about-main .team .team-member .intro {
  width: 65%;
  margin-top: 22px;
}

@media screen and (max-width: 768px) {
  .about-main .team .team-member {
    display: block;
    margin-bottom: 50px;
  }
  .about-main .team .team-member .intro {
    width: 100%;
    margin-top: 5px;
  }
}
.news-main {
  max-width: 940px;
  margin: 0 auto;
}
.news-main .main-img {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 80px;
}
.news-main .main-img img {
  width: 220px;
}
.news-main .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1.4fr;
  grid-gap: 100px;
}
.news-main .item .news-img img {
  transition: all 0.3s ease 0s;
  border-radius: 2px;
  height: 215px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 1px 5px rgba(85, 76, 60, 0.1);
}
.news-main .item .content div {
  display: flex;
  justify-content: space-between;
}
.news-main .item .content div p {
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
}
.news-main .item .content div p:first-child {
  color: #4e7660;
}
.news-main .item h3 {
  font-size: 20px;
  line-height: 1.5;
  margin: 8px 0;
}
.news-main .big-article {
  grid-column: 1/3;
  grid-row: 1/2;
}
.news-main .big-article a {
  display: flex;
  justify-content: space-between;
}
.news-main .big-article .big-img {
  width: 62%;
}
.news-main .big-article .big-img img {
  width: 100%;
  height: 295px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-main .big-article .content {
  width: 35%;
  margin-top: 12px;
}
.news-main .item:hover a img {
  filter: brightness(0.8);
}

@media screen and (max-width: 1000px) {
  .news-main .items {
    grid-gap: 40px;
  }
  .news-main .items .news-img img {
    height: 25vw;
  }
  .news-main .item:nth-child(1) a {
    display: block;
  }
  .news-main .item:nth-child(1) div:first-child {
    width: 100%;
  }
  .news-main .item:nth-child(1) div:first-child img {
    width: 100%;
    height: 40vw;
  }
  .news-main .item:nth-child(1) .content {
    width: 100%;
  }
}
@media screen and (max-width: 787px) {
  .news-main .items {
    display: block;
  }
  .news-main .items .item {
    margin-bottom: 50px;
  }
  .news-main .items div:first-child img {
    height: 50vw;
  }
}
.character-main {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px 120px 20px;
}
.character-main .main-img {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}
.character-main .main-img img {
  width: 240px;
}
.character-main .page-intro {
  text-align: center;
}
.character-main .page-intro p {
  margin-bottom: 60px;
}
.character-main .character-container {
  display: flex;
  flex-wrap: wrap;
}
.character-main .character-container .item {
  width: 50%;
  background-color: #fefcf8;
  border: 1px solid #d8d2c4;
  border-radius: 3px;
  padding: 10px 5px;
}
.character-main .character-container .item button div:first-child {
  width: 30%;
  margin-left: 5px;
  display: flex;
  align-items: center;
  height: 220px;
}
.character-main .character-container .item button div:first-child img {
  border-radius: 3px;
  margin: 5px 0;
}
.character-main .character-container .item h3,
.character-main .character-container .item p {
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
.character-main .character-container .item h3 {
  font-size: 20px;
}
.character-main .character-container .item button {
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.3s;
  height: 100%;
  max-height: 130px;
}
.character-main .character-container .item button:hover {
  background-color: #f6f4f0;
}
.character-main .character-container .item .text {
  text-align: left;
  width: 65%;
  margin-left: 15px;
}
.character-main .character-container .item span {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  margin-right: 5px;
}
.character-main .character-container .item span::before,
.character-main .character-container .item span::after {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #4e7660;
  /* ボタンを押したときの変化速度 */
  transition: 0.3s;
  position: absolute;
  top: 50%;
}
.character-main .character-container .item button span::after {
  transform: rotate(90deg);
}
.character-main .character-container .item button.active span::after {
  transform: rotate(0deg);
}
.character-main .character-container .accordion {
  cursor: pointer;
  position: relative;
  width: 200%;
  border: 1px solid #d8d2c4;
  border-radius: 3px;
}
.character-main .character-container .item:nth-of-type(even) .accordion {
  left: -100%;
}
.character-main .character-container .content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  margin-right: -1px;
  padding: 30px;
}
.character-main .character-container .content div:first-child {
  width: 40%;
}
.character-main .character-container .content .details {
  width: 55%;
  padding: 20px;
  padding-top: 40px;
}
.character-main .character-container .content .details a {
  text-decoration: underline;
}
.character-main .character-container .content .details a:hover {
  opacity: 0.7;
}
.character-main .character-container .content h3 {
  font-size: 24px;
}
.character-main .character-container .content h4 {
  margin-top: 15px;
}
.character-main .character-container .item button.active,
.character-main .character-container .content {
  background-color: #f6f4f0;
}

@media screen and (max-width: 768px) {
  .character-main .character-container {
    display: block;
  }
  .character-main .character-container .item {
    width: 100%;
  }
  .character-main .character-container .accordion {
    width: 100%;
  }
  .character-main .character-container .item:nth-of-type(even) .accordion {
    left: 0;
  }
  .character-main .character-container .content {
    display: block;
  }
  .character-main .character-container .content div:first-child {
    width: 60%;
    margin: 0 auto;
  }
  .character-main .character-container .content .details {
    width: 100%;
    padding-top: 0;
  }
}
.contact-main {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px 120px 20px;
}
.contact-main .page-title {
  margin-bottom: 20px;
}
.contact-main .sticky-container {
  display: flex;
  justify-content: space-between;
}
.contact-main .main-img {
  width: 32%;
}
.contact-main .main-img img {
  position: sticky;
  top: 20px;
  width: 100%;
}
.contact-main .content {
  width: 55%;
  margin-top: 40px;
}
.contact-main .ig-link {
  margin: 30px 0 40px 0;
  padding-bottom: 5px;
  padding-right: 12px;
  border-bottom: 1px solid #d8d2c4;
  display: inline-block;
}
.contact-main .ig-link .fa-brands {
  margin-right: 7px;
}
.contact-main .ig-link a {
  position: relative;
}
.contact-main .ig-link a::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border-top: solid 1px #554c3c;
  border-right: solid 1px #554c3c;
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
  right: -9px;
}
.contact-main form {
  padding: 40px 15px 20px 15px;
  border: 1px solid #d8d2c4;
  border-radius: 3px;
  background-color: #fefcf8;
}
.contact-main form h3 {
  margin-bottom: 20px;
}
.contact-main form input {
  width: 100%;
  padding: 5px 10px;
  margin: 5px 0 25px 0;
  border: 1px solid #d8d2c4;
  border-radius: 3px;
}
.contact-main form textarea {
  width: 100%;
  height: 300px;
  padding: 5px 10px;
  margin: 5px 0 25px 0;
  border: 1px solid #d8d2c4;
  border-radius: 3px;
}
.contact-main form input[type=submit] {
  width: 100%;
  background-color: #4e7660;
  color: #fefcf8;
}
.contact-main form ::-moz-placeholder {
  letter-spacing: 0.1em;
}
.contact-main form ::placeholder {
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1000px) {
  .contact-main .main-img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .contact-main .sticky-container {
    display: block;
  }
  .contact-main .main-img {
    width: 60%;
    margin-left: 13%;
  }
  .contact-main .content {
    width: 100%;
  }
}
.single-book header .btn-nav {
  z-index: 0;
}

.book-main {
  padding: initial;
  max-width: initial;
  margin: initial;
}
.book-main .carousel h1 {
  text-align: center;
  color: #554c3c;
  padding: 10px 0;
  letter-spacing: 0.1em;
}
.book-main .carousel li {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  padding: 40px 3vw;
  z-index: 1;
  background-color: #e9e7e0;
  box-shadow: 0px -6px 8px 0px rgba(85, 76, 60, 0.2);
}
.book-main .carousel li.book-center {
  justify-content: center;
}
.book-main .carousel .book-img {
  width: 65%;
  text-align: center;
}
.book-main .carousel .book-img img {
  margin-right: 30px;
  width: auto;
  box-shadow: 0 1px 5px rgba(85, 76, 60, 0.15);
  border-radius: 1px;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.book-main .carousel .textbox {
  width: 30%;
}
.book-main .carousel p {
  line-height: 2;
}
.book-main .carousel li:first-child {
  height: auto;
  min-height: 40vh;
  background-color: #faf8f4;
  box-shadow: none;
  justify-content: center;
}
.book-main .about-story {
  padding: 0px 20px;
  max-width: 940px;
  margin: 0 auto;
}
.book-main .about-story h3 {
  margin-bottom: 40px;
  padding: 0;
}
.book-main .closing {
  text-align: center;
  font-size: 24px;
  color: #554c3c;
  font-weight: bold;
  width: auto;
  line-height: 40vh;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
.book-main .btn-center {
  text-align: center;
  padding-top: 70px;
}
.book-main .btn {
  background-color: dominant-color;
  color: #554c3c;
  border: 1px solid #554c3c;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .book-main {
    overflow: hidden;
  }
  .book-main .carousel h1 {
    font-size: 20px;
  }
  .book-main .carousel li {
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 95vh;
    padding: 60px 3vw;
    top: initial;
  }
  .book-main .carousel li:first-child {
    min-height: initial;
  }
  .book-main .carousel .book-img {
    width: 100%;
  }
  .book-main .carousel img {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .book-main .carousel .textbox {
    display: flex;
    justify-content: center;
    width: initial;
  }
  .book-main .closing {
    line-height: 25vh;
  }
}
.single-main {
  max-width: 740px;
  padding-bottom: 0;
}
.single-main .single-wrapper {
  padding: 30px 0 0 0;
}
.single-main .title-wrapper {
  display: flex;
  margin-bottom: 20px;
}
.single-main .title-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
}
.single-main .title-wrapper h1 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  line-height: 1.2;
  font-size: 24px;
}
.single-main .title-wrapper .cat-list {
  display: flex;
}
.single-main .title-wrapper .cat-list li {
  color: #4e7660;
  margin-right: 20px;
}
.single-main .title-wrapper .cat-list time {
  letter-spacing: 0.01em;
}
.single-main .post-wrapper .eyecatch img {
  border-radius: 3px;
}
.single-main .post-wrapper p {
  margin: 28px 0;
}
.single-main .post-wrapper .images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
}
.single-main .post-wrapper .images-wrapper img {
  border-radius: 2px;
}
.single-main .cite {
  margin: 28px 0 50px 0;
  padding-left: 15px;
  border-left: 2px solid #d8d2c4;
}
.single-main .cite p:first-child {
  font-weight: bold;
}
.single-main .cite p {
  margin: 0;
}
.single-main .page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px;
  margin-top: 40px;
  border-top: 1px dashed #d8d2c4;
  border-bottom: 1px dashed #d8d2c4;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4e7660;
}

@media screen and (max-width: 767px) {
  .single-main .title-wrapper h1 {
    font-size: 20px;
  }
  .single-main .post-wrapper .images-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}
main.thanks {
  max-width: 600px;
  margin-top: -60px;
  text-align: center;
}
main.thanks p {
  line-height: 2.5;
  margin-top: 20px;
}
main.thanks .btn-center {
  text-align: center;
}
main.thanks .btn {
  border: 1px solid #4e7660;
  border-radius: 2px;
  color: #4e7660;
  margin: 50px;
}

body.en-page h1,
body.en-page h2,
body.en-page h3,
body.en-page p,
body.en-page li,
body.en-page a {
  font-family: "Noto Sans", sans-serif;
}
body.en-page .home-main .book-wrapper .tab li a {
  padding: 9px 0;
  width: 150px;
}/*# sourceMappingURL=style.css.map */