@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, object, iframe, a,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.6;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

ol, ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/*-----------メディアクエリ----------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  webkit-text-size-adjust: 100%;
  line-height: 1.6;
  font-family: "Times New Roman", serif;
  background-color: #fff;
  color: #3E3E3E;
  word-break: break-all;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

section {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}

.section-title {
  font-size: 48px;
  color: #1798D5;
  margin-bottom: 50px;
  text-align: center;
}
.section-title h2 {
  font-family: "Georgia", "Times New Roman", serif;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 2px 2px 0 #FAF8E5, -2px -2px 0 #FAF8E5;
  background: repeating-linear-gradient(45deg, #B8D7E9, #B8D7E9, #fff 2px, #fff 4px);
  padding: 0.5em 1em;
  border: 2px dashed #1798D5;
  display: inline-block;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.btn {
  display: inline-block;
  width: 50%;
  text-align: center;
  margin: 0 auto;
  background: #1798D5;
  color: #fff;
  padding: 10px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}
@media (max-width: 767px) {
  .btn {
    width: 80%;
  }
}

.btn:hover {
  background: #fff;
  border: 1px solid #1798D5;
  color: #1798D5;
}

table {
  word-wrap: break-word;
}

.sp-view {
  display: none;
}
@media (max-width: 767px) {
  .sp-view {
    display: block;
  }
}

html {
  margin-top: 0 !important;
}

.wpcf7-form input[type=submit] {
  background-color: #007BFF; /* ブルー */
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.wpcf7-form input[type=submit]:hover {
  background-color: #0056b3; /* 濃いブルー */
}

/*------------header---------------------------*/
/* ロゴ */
.header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
    padding: 20px;
  }
}

.header-logo {
  text-align: center;
  color: #FAF8E5;
  font-size: 36px;
}
@media (max-width: 767px) {
  .header-logo {
    font-size: 32px;
  }
}

.header-logo_img {
  height: 60px;
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .header-logo_img {
    height: 40px;
    margin-right: 5px;
  }
}

/* ナビゲーション */
.header-nav-list {
  display: flex;
  align-items: center;
  padding: 40px 40px;
  position: relative;
  gap: 20px;
  color: #FAF8E5;
}
@media (max-width: 767px) {
  .header-nav-list {
    display: none;
  }
}

.header-nav-list a {
  font-size: 26px;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #FAF8E5;
  border-radius: 2px;
}

@media (max-width: 768px) {
  /* PC用のリンクを非表示 */
  .nav ul {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
  }
  .nav ul li {
    margin: 10px 0;
  }
  .nav ul.active {
    display: flex;
  }
  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
  }
}
/*-----------------footer--------------------------*/
/* Footer */
.footer {
  background: #3E3E3E;
  color: #FAF8E5;
  text-align: center;
  font-family: "Georgia", serif;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px;
}
@media (max-width: 767px) {
  .footer-inner {
    padding: 20px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 60px;
}

.footer-brand {
  font-size: 20px;
  line-height: 1.2;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: #cfc;
}

.sns-icon {
  display: inline-block;
  width: 60px;
}

/* コピーライト */
.footer-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-bottom a {
  color: #eee;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/*---------------body--------------------------------*/
/* FV全体 */
.fv_background {
  height: 100vh;
  background: url("../img/about_background.jpg") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* 中央ロゴ・キャッチ */
.fv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FAF8E5;
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
  white-space: nowrap;
}

.fv-center.fade-in {
  opacity: 1;
}

.fv-catch {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #FAF8E5;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 2px 2px 0 #1798D5, -2px -2px 0 #1798D5;
}
@media (max-width: 767px) {
  .fv-catch {
    font-size: 2.5rem;
  }
}

.fv-catch_text {
  font-size: 2rem;
  margin-top: 10px;
  color: #FAF8E5;
}
@media (max-width: 767px) {
  .fv-catch_text {
    font-size: 1.2rem;
  }
}

.fv_jellyfish {
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 300px;
  opacity: 0.8;
}

/* 下の商品はこちら */
.fv_bottom {
  position: relative;
}

.fv-scroll {
  position: absolute;
  bottom: 40px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 1rem;
}

.fv-scroll a {
  text-decoration: none;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
}

.arrow {
  display: block;
  width: 20px;
  height: 20px;
  margin: 8px auto 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  -webkit-animation: bounce 1.5s infinite;
          animation: bounce 1.5s infinite;
}

/* 矢印アニメーション */
@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(8px) rotate(-45deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(8px) rotate(-45deg);
  }
}
/* スクロールボタン */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
}

.scroll-down span {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #fff;
}

/* 矢印アニメーション */
.scroll-down .arrow {
  width: 24px;
  height: 24px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin: 0 auto;
  -webkit-animation: bounce 1.5s infinite;
          animation: bounce 1.5s infinite;
}
@media (max-width: 767px) {
  .scroll-down .arrow {
    width: 12px;
    height: 12px;
  }
}

/* アニメーション（上下に動く） */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(6px) rotate(-45deg);
  }
  60% {
    transform: translateY(3px) rotate(-45deg);
  }
}
/* キラキラ粒のスタイル */
.sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリックを邪魔しない */
  overflow: hidden;
  z-index: 1;
}

/* 星の粒（白〜水色系） */
.sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(173, 216, 230, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  -webkit-animation: twinkle 3s ease-in-out infinite;
          animation: twinkle 3s ease-in-out infinite;
  filter: blur(1px);
}

/* きらきらアニメーション */
@-webkit-keyframes twinkle {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  30% {
    opacity: 1;
    transform: scale(1.5) rotate(45deg);
  }
  60% {
    opacity: 0.8;
    transform: scale(1) rotate(90deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
}
@keyframes twinkle {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  30% {
    opacity: 1;
    transform: scale(1.5) rotate(45deg);
  }
  60% {
    opacity: 0.8;
    transform: scale(1) rotate(90deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
}
/* Service セクション */
.service {
  padding: 80px 20px;
}
@media (max-width: 767px) {
  .service {
    padding: 40px 20px;
  }
}

.service-list {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: grid;
}

.service-item figure {
  margin: 0;
  aspect-ratio: 373/280; /* 正方形。3:2 にしたければ 3 / 2 */
  overflow: hidden;
  border-radius: 50% 50% 0 0; /* 上が丸いアーチ型 */
}

.service-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-item img:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

.service-item h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #1798D5;
}
@media (max-width: 767px) {
  .service-item h3 {
    font-size: 18px;
    margin-top: 15px;
  }
}

.service-item p {
  color: #3E3E3E;
  margin: 10px 0 20px;
}

.service-point {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  color: #3E3E3E;
}
@media (max-width: 767px) {
  .service-point {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}
/* About セクション */
.about {
  background: url("../img/fv_background.jpg") no-repeat center center/cover;
  color: #3E3E3E;
  padding: 80px 20px;
}
@media (max-width: 767px) {
  .about {
    padding: 40px 20px;
  }
}

.about__content {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.about-box {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .about-box {
    padding: 20px;
  }
}

.about-box h3 {
  font-size: 22px;
  color: #1798D5;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .about-box h3 {
    font-size: 20px;
  }
}

.about-box p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-img img {
  border-radius: 8px;
  width: 100%;
}

.about-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.point-text:not(:first-child) {
  margin-top: 1em;
}

/* フォーム */
.contact_text {
  font-weight: 400;
}

#cf-tbl table {
  width: 100%;
  background-color: #fff;
  border-collapse: collapse;
}

#cf-tbl table p {
  white-space: nowrap;
}

#cf-tbl tr:nth-of-type(4) td p {
  white-space: normal;
}

#cf-tbl tr:nth-of-type(6) td p {
  white-space: normal;
}

@media screen and (max-width: 768px) {
  #cf-tbl table p {
    white-space: normal;
  }
}
.post_content td, .post_content th {
  border: 1px solid #fff;
  padding: 15px 20px 15px 0;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .post_content td, .post_content th {
    padding: 0;
  }
  .post_content th {
    padding-bottom: 10px;
  }
  .post_content td {
    padding-bottom: 35px;
  }
}
#cf-tbl table tr th:nth-of-type(2n+1) {
  width: calc(35% - 15px);
  margin: 0;
  font-size: 15px;
  background: #fff;
  vertical-align: middle;
  font-weight: 700;
  border: none;
}

@media screen and (max-width: 768px) {
  #cf-tbl table tr th:nth-of-type(2n+1) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #cf-tbl table tr td {
    margin: 0 auto !important;
  }
}
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  height: 38px;
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
  }
}
textarea.wpcf7-form-control.wpcf7-textarea {
  height: 80px;
}

.wpcf7 select {
  width: 100%;
  max-width: 100%;
}

/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: red;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  #cf-tbl {
    width: 100%;
  }
  #cf-tbl table,
#cf-tbl table tbody,
#cf-tbl table tr,
#cf-tbl table tr th,
#cf-tbl table tr td {
    display: block;
  }
  #cf-tbl table {
    width: 100%;
    border-width: 0 0 1px 0;
  }
  #cf-tbl table tr th,
#cf-tbl table tr td {
    width: 100%;
  }
  #cf-tbl table tr td {
    border-width: 0px 1px 0px 1px;
  }
  .wpcf7 form {
    margin: 0;
  }
}
.post_content tbody th:before {
  background-color: #fff;
}

.post_content td:last-child {
  border-right: none;
}

/* チェックボックス */
.wpcf7-checkbox input, .wpcf7-acceptance input {
  position: relative;
  top: 2px;
  border-radius: 1px;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
}

/* プライバシー */
.privacy_td {
  padding-left: 5% !important;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .privacy_td {
    padding-left: 0% !important;
  }
}
.privacy_td a {
  padding-left: 2em;
  text-decoration: underline;
  transition: 2s;
}

.privacy_td a:hover {
  text-decoration: none;
}

/* 送信ボタン */
#cf-tb2 {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  #cf-tb2 {
    margin-top: 0px;
  }
}
#cf-tb2 p {
  text-align: center;
}

#cf-tb2 p input {
  width: 100%;
  max-width: 450px;
  padding: 17px 18px 19px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  background-color: #2072be;
  border: 1px solid hsla(0deg, 0%, 78%, 0.5);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #cf-tb2 p input {
    padding: 10px 1em;
  }
}
.wpcf7-spinner {
  display: block;
}