@charset "UTF-8";
:root {
  --font-gothic:
  	"Hiragino Kaku Gothic ProN",
  	YuGothic,
  	"Helvetica Neue",
  	Arial,
  	"Hiragino Sans",
  	Meiryo,
  	sans-serif;
  --font-mincho:
  	"游明朝",
  	"Yu Mincho",
  	YuMincho,
  	"Hiragino Mincho Pro",
  	serif;
  --font-marugothic:
  	"Lucida Grande",
  	"segoe UI",
  	"ヒラギノ丸ゴ ProN W4",
  	"Hiragino Maru Gothic ProN",
  	Meiryo, Arial,
  	sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body,
ul,
ol,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #333333;
  line-height: 180%;
  font-family: var(--font-gothic);
  font-feature-settings: "palt";
}

p {
  color: #333;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

th,
td {
  vertical-align: middle;
  font-weight: normal;
  text-align: left;
}

img {
  vertical-align: middle;
  display: block;
}

a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  display: block;
}

:root {
  --img-path: "../img";
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

.txt_a {
  color: #246b45;
  text-decoration: underline;
}
.txt_a:hover {
  color: #3ec054;
}

section {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.fv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  margin: -90px auto 0;
  max-width: none;
}
@media (max-width: 600px) {
  .fv {
    margin-top: -65px;
  }
}
.fv #bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  /* 動画を背景に */
}
.fv .content {
  position: absolute;
  z-index: 1;
  color: white;
  bottom: 0;
  left: 0;
  margin-left: 30px;
  mix-blend-mode: difference;
}
@media (max-width: 600px) {
  .fv .content {
    margin-left: 15px;
  }
}
.fv .content .catch-copy {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(10px,1.833vw ,20px);
  color: #fff;
  margin-bottom: 2em;
  margin-left: 0.5em;
}
.fv .content .site-name {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(10px,8.333vw ,150px);
  color: #fff;
  margin: 0.5em 0 0.5em;
  mix-blend-mode: difference;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(0, -50%);
}

.scroll-icon {
  position: absolute;
  z-index: 1;
  font-size: 18px;
  color: #fff;
  -webkit-animation: moveDown 2s infinite;
          animation: moveDown 2s infinite;
  bottom: 0;
  right: 0;
  margin-bottom: 30px;
  margin-right: 30px;
}
@media (max-width: 600px) {
  .scroll-icon {
    margin-right: 15px;
  }
}

@-webkit-keyframes moveDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  #book-section,
#insta-section,
#info-section,
#store-info-section,
#company-section,
#profile-section,
#form-section {
    scroll-margin-top: 65px;
  }
}

.book-section,
.insta-section,
.info-section,
.store-info-section,
.company-section,
.profile-section,
.about-section,
.form-section {
  padding: clamp(30px,6.5vw ,80px) 3%;
}

.form-section {
  max-width: 650px;
}

.about-section {
  max-width: 1000px;
}

.book-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px,3.667vw ,40px) 80px;
}
.book-section .book-image {
  display: inline-block;
  overflow: hidden;
}
.book-section .book-image img {
  transition: transform 0.3s ease;
}
.book-section .book-image img:hover {
  transform: scale(1.1);
}
.book-section .book-image a:hover {
  opacity: 0.8;
}

.bg_book-section {
  background: #efefef;
}

.bg_store-info-section {
  background-image: url("../img/bg01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.book-image img {
  width: clamp(150px,30vw ,350px);
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.book-info {
  max-width: 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.book-info ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.book-info .book-title {
  font-size: clamp(18px,2.7vw ,24px);
  line-height: 1.3em;
  margin-bottom: 1em;
}

.store-info-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.store-info-section table th,
.store-info-section table td {
  padding: 12px;
  border: 1px solid #ddd;
}
@media (max-width: 600px) {
  .store-info-section table th,
.store-info-section table td {
    border-top: none;
  }
}
.store-info-section table th {
  background-color: #f4f4f4;
  text-align: left;
}
.store-info-section table td {
  background-color: #fafafa;
}

h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px,3.6vw ,32px);
  color: #222222;
  margin-bottom: clamp(20px,3.667vw ,40px);
  text-align: center;
}

h3 {
  font-size: clamp(18px,2.7vw ,24px);
  border-bottom: 1px solid #2e2e2e;
  margin-bottom: 0.5em;
  color: #246b45;
}

.amazon-button,
.submit-button,
.button {
  background-color: #2E8B57;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin: auto 0;
  transition: background-color 0.3s;
  text-align: center;
}
@media (max-width: 600px) {
  .amazon-button,
.submit-button,
.button {
    margin-top: 20px;
  }
}

.amazon-button {
  background-color: #ffd814;
  color: #222;
}
.amazon-button:hover {
  background-color: #ffce12;
}

.button {
  width: 450px;
  margin: clamp(20px,4.167vw ,50px) auto;
}
@media (max-width: 600px) {
  .button {
    width: 100%;
  }
}

.submit-button:hover,
.button:hover {
  background-color: #246b45;
}

.insta-widget iframe {
  width: 100%;
  max-width: 1400px;
  height: clamp(150px,43.5vw ,620px);
  border: none;
  display: block;
  margin: 0 auto;
}

.insta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.insta_button a {
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.insta_button a:hover {
  opacity: 0.5;
}
.insta_button a span {
  margin-left: 8px;
  font-size: 16px;
  color: #000;
}
.insta_button p {
  margin-left: 1em;
}
.insta_button img {
  display: block;
  width: 30px;
  height: 30px;
}

.info-text,
.store-info-text,
.company-table,
.profile-content,
form {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.company-table {
  max-width: 800px;
}

.profile-content {
  margin-top: 50px;
}
.profile-content .pro {
  margin: 30px 0 0;
}
.profile-content .pro .name {
  font-size: 1.2em;
}

@media screen and (max-width: 600px) {
  table,
tbody,
tr,
th,
td {
    display: block;
    width: 100%;
  }
  th {
    background: #f5f5f5;
    font-weight: bold;
    padding-top: 12px;
  }
  td {
    padding-bottom: 12px;
  }
}
.company-table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 600px) {
  .company-table table {
    display: block;
  }
}
.company-table tr:last-child {
  border-bottom: 1px solid #c9c9c9;
}
.company-table th {
  padding: 12px 10px;
  font-weight: bold;
  width: 180px;
  color: #222222;
  border-top: 1px solid #c9c9c9;
}
@media (max-width: 600px) {
  .company-table th {
    width: 100%;
  }
}
.company-table td {
  padding: 12px 10px;
  border-top: 1px solid #c9c9c9;
}
.profile-content img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.profile-content p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

label {
  font-weight: bold;
  margin-top: 20px;
  display: block;
}

.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #fafafa;
  margin-top: 5px;
}
.form-section a {
  color: #2E8B57;
  text-decoration: underline;
}
.form-section a:hover {
  color: #246b45;
}
.form-section textarea {
  height: 150px;
}
.form-section .radio-group {
  margin-bottom: 10px;
}
.form-section .radio-group label {
  font-weight: normal;
  margin-right: 20px;
  display: inline-block;
}
.form-section .form-footer {
  text-align: center;
  margin-top: 30px;
}
.form-section .error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}
.form-section .required {
  color: red;
  font-size: 13px;
  margin-left: 4px;
}
.form-section .hidden {
  display: none;
}
.form-section span {
  font-size: 13px;
}
.form-section span .required {
  color: red;
}
.form-section .radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
  font-weight: normal;
  white-space: nowrap;
}
.form-section .submit-button {
  margin: 0 auto;
}

.between_v {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  height: clamp(150px,27.5vw ,300px);
  margin: 0 auto;
  max-width: none;
}
.between_v #bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: clamp(150px,27.5vw ,300px);
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  /* 動画を背景に */
}
.between_v .content {
  position: absolute;
  z-index: 1;
  color: white;
  bottom: 0;
  right: 0;
  margin-right: clamp(15px,2.75vw ,30px);
  text-align: end;
  mix-blend-mode: difference;
}
.between_v .content .catch-copy {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(10px,1.833vw ,20px);
  color: #fff;
  margin-bottom: 2em;
  margin-right: 0.5em;
}
.between_v .content .site-name {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(10px,5.833vw ,100px);
  color: #fff;
  margin: 0.5em 0 0.5em;
  mix-blend-mode: difference;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(0, -50%);
}

.footer {
  background-color: #333;
  color: white;
  padding: 30px 20px;
  text-align: center;
  font-size: 12px;
}
.footer .copyright {
  padding-top: 1em;
  opacity: 0.5;
}
.footer p {
  color: white;
}
.footer p a {
  font-size: 1rem;
  color: #fff;
}
.footer p a:hover {
  opacity: 0.5;
}
.footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .footer-container .footer-info p {
  margin: 5px 0;
  color: #fff;
}
.footer .footer-container .footer-links {
  margin: 0.5em 0;
}
.footer .footer-container .footer-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer .footer-container .footer-links ul li {
  display: inline;
  margin: 0 15px;
  word-break: keep-all;
}
.footer .footer-container .footer-links ul li a {
  color: white;
  text-decoration: none;
}
.footer .footer-container .footer-links ul li a:hover {
  text-decoration: underline;
}
.footer .footer-container .footer-social {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  gap: 0 5px;
}
.footer .footer-container .footer-social a:hover {
  opacity: 0.5;
}
.footer .footer-container .footer-social img {
  width: 35px;
  height: auto;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-links ul {
    margin: 10px 0;
  }
  .footer-links li {
    display: block;
    margin: 10px 0;
  }
  .footer-social a {
    display: block;
    margin: 10px 0;
  }
}
.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .navbar {
    height: 65px;
  }
  .navbar.active {
    background: none;
    box-shadow: none;
    transition: transform 0.3s ease-in-out;
  }
}
.navbar.hide {
  transform: translateY(-100%);
}
.navbar .navbar-slide {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.navbar .navbar-slide .navbar-list {
  display: flex;
}
@media (max-width: 600px) {
  .navbar .navbar-slide {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .navbar .navbar-slide.active {
    right: 0;
  }
  .navbar .navbar-slide .navbar-list {
    list-style: none;
    padding: 50px 20px 20px 20px;
    display: flex;
    flex-direction: column;
  }
  .navbar .navbar-slide .navbar-list li {
    margin: 0;
  }
  .navbar .navbar-slide .navbar-list a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: block;
    /* ←ここが重要 */
    padding: 12px 16px;
    /* お好みで */
    text-decoration: none;
    color: inherit;
  }
  .navbar .navbar-slide .navbar-list a:hover {
    opacity: 0.6;
  }
  .navbar .navbar-slide .navbar-list img {
    width: 20px;
    height: 20px;
  }
}
.navbar .navbar-slide li {
  margin: auto 15px;
}
.navbar .navbar-slide li img {
  display: block;
  width: 20px;
  height: 20px;
}
.navbar .navbar-slide li a {
  color: #222;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}
.navbar .navbar-slide li a:hover {
  opacity: 0.5;
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 23px;
  gap: 4px;
  z-index: 1001;
}
@media (max-width: 600px) {
  .navbar .hamburger {
    display: flex;
  }
}
.navbar .hamburger span {
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.privacy-section {
  font-family: sans-serif;
  line-height: 1.6;
  padding: 20px;
  margin: auto;
  font-size: 0.85em;
  padding-bottom: 100px;
}
.privacy-section h1 {
  font-size: 1.8em;
  margin-bottom: 1em;
}
.privacy-section h2 {
  font-size: 1.3em;
  margin: clamp(16px,3.133vw ,36px) 0 clamp(10px,1.633vw ,16px);
  text-align: left;
  border-bottom: 1px solid #dedede;
}
.privacy-section ul {
  padding-left: 1.5em;
}
.privacy-section li {
  margin-bottom: 0.5em;
}
.privacy-section .date {
  text-align: right;
}

input[type=submit],
.wpcf7-submit,
.submit-button {
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  margin: 0 0.5em 0 0;
  vertical-align: middle;
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  transform: scale(1);
  /* Safariのズレを防止 */
}

label {
  display: flex;
  gap: 0.3em;
  /* ラベルとボタンの間隔 */
}

.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  -moz-appearance: auto !important;
       appearance: auto !important;
  -webkit-appearance: auto !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 0.5em 0 0 !important;
  transform: none !important;
  -webkit-transform: none !important;
  width: 1rem !important;
  height: 1rem !important;
}

@supports (-webkit-touch-callout: none) {
  .wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
    -moz-appearance: auto !important;
         appearance: auto !important;
    -webkit-appearance: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    margin-left: 0 !important;
    width: 1rem !important;
    height: 1rem !important;
  }
}
/*# sourceMappingURL=style.css.map */