/* ================================
	style.css : サイト全体共通のスタイル
================================ */
:root {
  --background-color: #ffffff;
  --content-bg: #ffffff;
  --main-color: #ff7700;
  --text-color: #000000;
}

/* ----------------------------------------
  全体リセット
---------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "メイリオ", "Meiryo",
    sans-serif;
  font-weight: 500;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1,
h2,
h3,
h5,
h6 {
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
h4 {
  padding: 0.5em 0.4em 0.2em;
  border-bottom: 1px dotted;
}
p {
  font-size: min(1.25rem, 18px);
  color: var(--text-color);
  line-height: 2;
  letter-spacing: 0.013em;
  margin-bottom: 1rem;
  font-weight: 500;
}
ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  filter: brightness(105%);
}

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background-color: #e8e8e8;
  color: #333;
  padding: 10px 5px;
  font-weight: bold;
  border-bottom: 2px solid #999;
}

td {
  padding: 5px;
  border-bottom: 1px solid #ddd;
}

tr:hover {
  background-color: #f9f9f9;
}

tr:last-child td {
  border-bottom: none;
}
caption {
  caption-side: top;
}
/* ----------------------------------------
  レイアウト
---------------------------------------- */
/* 背景エリア */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.bg img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  min-height: 100vh;
  object-fit: cover;
}

/* コンテンツエリア */
.content-area {
  position: relative;
  z-index: 1;
  width: 430px;
  max-width: 430px;
  margin-left: clamp(414px, calc((100vw - 430px) / 3), 50%);
  background-color: var(--content-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1260px) {
  .content-area {
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 430px) {
  .content-area {
    width: 100vw;
  }
}

/* ----------------------------------------
  ヘッダー
---------------------------------------- */
.site-header {
  width: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo a {
  display: inline-block;
  flex-shrink: 0;
}

.logo img {
  height: 2rem;
}

/* ----------------------------------------
  ハンバーガーメニュー
---------------------------------------- */
.menu-btn {
  display: flex;
  width: 30px;
  height: 15px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 1px;
  background-color: #ffffff;
}

/* ----------------------------------------
  コンテンツ
---------------------------------------- */
.contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contents figure {
  margin: 0 !important;
}

.contents-02,
.contents-03,
.contents-04,
.contents-05,
.contents-06,
.contents-07,
.contents-08,
.contents-09,
.contents-10,
.contents-11,
.contents-12,
.contents-13,
.contents-14,
.contents-15 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 25px;
}

.full-image {
  display: block;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
  height: auto;
}

.contents-01 figure {
  position: relative;
  display: inline-block;
  width: 100%;
}

.contents-01 figure img:first-child {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 310px;
}

@media screen and (max-width: 375px) {
  .contents-01 figure img:first-child {
    max-width: min(269px, 90%);
  }
}

@media screen and (max-width: 350px) {
  .contents-01 figure img:first-child {
    top: 30px;
  }
}

.contents-01 figure img:last-child {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}

.contents-02 .text-block {
  margin: 2rem 0 0;
  text-align: left;
  max-width: 430px;
  width: 100%;
  z-index: 1;
}

.contents-02 h2 {
  text-align: center;
  font-size: min(1.75rem, 25px);
  margin-bottom: 12px;
}

.contents-02 {
  position: relative;
}

.contents-02 .blur-photo-bottom {
  position: absolute;
  top: 64%;
  left: 0;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 375px) {
  .contents-02 .blur-photo-bottom {
    top: 70%;
  }
}

.contents-02 .blur-photo-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.contents-03 {
  background-color: #fff4c6;
  padding-bottom: 0 !important;
}

.contents-03 figure.emu {
  position: relative;
  display: inline-block;
  width: 100%;
}

.contents-03 figure.emu img:nth-child(1) {
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
}

.contents-03 figure.emu img:nth-child(3) {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
}

.contents-07 {
  background-color: #fff3d9;
}

.h-line {
  width: 100%;
}

.h-line h2 {
  position: relative;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin: 1rem 0;
  padding: 0;
}

.h-line h2::before,
.h-line h2::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff7700;
}

.h-line h2::before {
  top: 0;
}

.h-line h2::after {
  bottom: 0;
}

.anshin img {
  margin-bottom: 2.75rem;
}

.inu {
  margin-bottom: 0 !important;
}

.contents-04 {
  padding-bottom: 0;
}

.contents-04 figure.anshin {
  position: relative;
  display: inline-block;
}

.contents-04 figure.anshin img:nth-child(1) {
  margin-bottom: 0.8rem;
}

.contents-04 figure.anshin img:nth-child(9) {
  position: relative;
  z-index: 3;
  margin-bottom: 0 !important;
}

.contents-04 figure.anshin img:nth-child(11) {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: auto;
}

.contents-05 figure.everyday {
  position: relative;
  display: inline-block;
  width: 100%;
}

.contents-05 figure.everyday img:nth-child(1) {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  margin-bottom: 2rem;
}

.contents-05 figure.everyday img:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 50%;
  max-width: 144px;
}

@media screen and (max-width: 425px) {
  .contents-05 figure.everyday img:nth-child(3) {
    width: 42%;
  }
}

.contents-05 figure.same {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contents-05 .image-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.contents-05 .image-wrap img.left,
.contents-05 .image-wrap img.right {
  width: 48%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contents-05 .image-wrap img.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  z-index: 2;
}

.support {
  margin-bottom: 2rem;
}

.contents-05 figure.inu2 {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.contents-05 figure.inu2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.39);
  transform-origin: left;
  display: block;
}

figure.campaign {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem !important;
}

figure.campaign img:nth-child(1) {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  margin-bottom: 25%;
}

.contents-10 figure.campaign img:nth-child(1) {
  margin-bottom: 23%;
}

figure.campaign img:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 60%;
  max-width: 230px;
}

figure.teiki {
  position: relative;
  display: inline-block;
}

figure.teiki img:nth-child(1) {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}

figure.teiki img:nth-child(3) {
  position: absolute;
  top: 30px;
  right: 27px;
  z-index: 2;
  width: 84px;
  height: auto;
}

.contents-06,
.contents-07 {
  position: relative;
}

.contents-06 .image-block,
.caption,
.contents-07 .image-block {
  z-index: 10;
}

.contents-06 .blur-photo-bottom,
.contents-07 .blur-photo-bottom {
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

.contents-06 .cv-btn {
  z-index: 10 !important;
}

.contents-07 .blur-photo-bottom {
  transform: scaleY(-1);
  bottom: -275px;
}

.contents-06 .blur-photo-bottom img,
.contents-07 .blur-photo-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.contents-07 figure.seizou {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem !important;
}

.contents-07 figure.seizou img:nth-child(1) {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  margin-bottom: 1rem;
}

.contents-07 figure.seizou img:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 194px;
  height: auto;
  z-index: 2;
}

.tag {
  padding: 2rem 0 1rem;
}

.kanri {
  z-index: 10;
}

.nintei-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 2rem 0 !important;
}

.nintei-images img {
  width: 100%;
  display: block;
  box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.16);
}

.contents-08 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.contents-08 figure.overlap {
  position: relative;
}

.contents-08 figure.overlap img.eiyoushi,
.contents-08 figure.overlap img.eiyoushi-blur {
  display: block;
  width: 100%;
  height: auto;
}

.contents-08 figure.overlap img.eiyoushi-blur {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  transform: scaleY(-1);
}

.contents-08 .overlay-text.message {
  position: relative;
  margin-top: -100px;
  width: 100%;
  text-align: center;
  background-color: #fffadd;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: left !important;
  z-index: 2;
}

.contents-08 .message p {
  font-family: Noto Serif JP;
  line-height: 1.8rem !important;
  font-weight: 300 !important;
  padding: 1rem 1rem 0.5rem;
  margin: 0;
}

.contents-08 .overlay-text.message p.k-name {
  font-weight: 500 !important;
  text-align: right;
  padding: 0.5rem 1rem 1rem;
}

.merit {
  text-align: left;
  list-style: auto;
  padding-left: 2.5rem;
  line-height: 2;
  font-size: 1.1rem;
}

.contents-09 .text-block {
  width: 100%;
}

.contents-03 p,
.contents-05 p,
.contents-07 p {
  text-align: left !important;
  line-height: 1.75 !important;
  margin: 1rem 0 !important;
  letter-spacing: 0.05em;
}

.contents-03 .orange {
  font-weight: 700;
  font-size: 1.25rem;
  text-align: left !important;
  letter-spacing: 0.07em;
  color: #ff7700;
  margin-bottom: 0;
}

.contents-05 .orange,
.contents-07 .orange {
  color: #f55500;
}

.caption {
  width: 100%;
  text-align: left !important;
  font-size: 1rem;
  font-weight: 500;
}

.contents-09 h3.bk-black,
.contents-10 span.bk-black {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.5rem 0;
  margin: 1rem 0;
  color: #ffffff;
  background-color: #000000;
  letter-spacing: 0.1em;
}

.contents-09 p,
.contents-10 p {
  text-align: left !important;
  font-weight: 400;
  line-height: 1.3 !important;
  letter-spacing: 0.07em;
}

.contents-10 .text-block {
  width: 100%;
}

.image-group {
  position: relative;
  width: 100%;
  height: 140px;
}

.image-group img {
  position: absolute;
  display: block;
  max-width: 100%;
  height: auto;
}

.image-group img.img-voice {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 250px;
  height: auto;
  z-index: 1;
}

.image-group img.img-dog {
  position: absolute;
  width: 22px;
  top: 58%;
  left: 71.5%;
  transform: translate(-50%, -50%) rotate(13deg);
  z-index: 2;
}

@media screen and (max-width: 375px) {
  .image-group img.img-dog {
    top: 64%;
    left: 80%;
  }
}

.image-group img.img-fukidashi {
  top: 0;
  left: 0;
  width: 270px;
  transform: rotate(356deg);
}

.contents-11 {
  background-color: #ffdddd;
}

.contents-11 .voice {
  padding: 1.25rem;
  margin: 1rem 0;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.contents-11 .voice p {
  text-align: left !important;
  font-weight: 400;
  line-height: 1.4 !important;
  padding: 1rem 0;
  margin: 0;
}

.monitor {
  max-width: 340px;
  height: 364px;
  overflow: hidden;
  border-radius: 10px;
}

.monitor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contents-11 .voice p.m-name {
  font-weight: 500;
  padding: 0.5rem 0;
  border-top: 1px dotted;
  text-align: right !important;
}

.jackrussell {
  width: 100%;
  max-width: 300px;
}

.fukidashi {
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 0.75rem 2.5rem;
  margin-bottom: 1.5rem;
  border-radius: 50px;
  text-align: center;
  position: relative;
}

.fukidashi::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 6px 0 6px;
  border-style: solid;
  border-color: var(--main-color) transparent transparent transparent;
}

.faq {
  text-align: left !important;
  font-weight: 500;
  margin: 2.5rem 0;
}

.question {
  font-size: 1.15rem;
  color: var(--main-color);
}

.answer {
  line-height: 1.4 !important;
  margin: 0;
}

.contents-15 h2 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  background: #000;
  width: 100%;
  padding: 1.2rem 0.2rem;
}

.contents-15 .item {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.contents-15 .title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contents-15 .detail {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

.footer .footer-link {
  color: var(--text-color);
  text-decoration: underline;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.footer .footer-link:last-child {
  margin-bottom: 0;
}

.tel,
.mail {
  text-decoration: underline;
}

/* ----------------------------------------
  CTAボタン
---------------------------------------- */
.cv-btn {
  margin: 0.5rem 0 3rem;
  transition: transform 0.3s ease;
}

.cv-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.cta-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 1rem;
  z-index: 999;
  flex-direction: row;
}

.cta-btn img {
  display: block;
  max-width: 380px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cta-btn img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@media screen and (max-width: 1800px) {
  .cta-btn {
    flex-direction: column;
  }
}

@media screen and (max-width: 1260px) {
  .cta-btn {
    display: none;
  }
}

.line-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  margin: 1.5rem 0;
  border: 3px solid #5ac363;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.line-btn i {
  color: #5ac363;
  font-size: 47px;
}

.line-btn:hover {
  transform: scale(1.05);
}
.commercial-table {
  width: 100% !important;
  margin: 20px 0 !important;
  display: contents !important;
}

.commercial-table tbody {
  display: contents !important;
}

.commercial-table tr {
  display: contents !important;
}

.commercial-table th,
.commercial-table td {
  border: 1px solid #ccc !important;
  padding: 12px 15px !important;
  text-align: left !important;
  font-weight: normal !important;
  display: block !important;
  width: 100% !important;
}

.commercial-table th {
  background-color: #f5f5f5 !important;
  font-weight: bold !important;
  color: inherit !important;
}

.commercial-table a {
  color: #0066cc !important;
  text-decoration: none !important;
}

.commercial-table a:hover {
  text-decoration: underline !important;
}
