@charset "UTF-8";
* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /*スクロール設定*/
}

body {
  position: relative;
  color: #333;
  font-size: 16px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: normal;
  color: #555;
  line-height: 1.8;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

body p,
body span,
body dl,
body ul,
h1,
h2,
h3,
h4 {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

.br-span {
  display: inline-block;
}

ol,
ul {
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
  margin-bottom: 0;
}

.section_ttl h2 {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
}
.section_ttl p {
  font-size: 14px;
  color: #ef6f6f;
  padding-left: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 0.807rem + 0.92vw, 1.5rem);
}

h4 {
  font-size: clamp(1.125rem, 0.904rem + 0.46vw, 1.25rem);
}

p {
  margin-bottom: 0;
}

.breadcrumb {
  font-weight: normal;
  font-size: 0.875em;
  padding: 1% 5% 0;
  margin-bottom: 0;
}
.breadcrumb ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style: none;
}
.breadcrumb ol li a:hover {
  color: #8B2F30;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

.cta {
  margin: 70px 0 0;
}
.cta_btn {
  margin: 30px 0;
  text-align: center;
}
.cta a.button2-c {
  font-size: 1.2rem;
  width: 100%;
  position: relative;
  padding: 0.25rem 2rem 1rem 1.8rem;
  color: #fff;
  font-weight: 600;
  background: #ef6f6f;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 576px) {
  .cta a.button2-c {
    font-size: 16px;
    padding: 0.25rem 1rem 1rem;
  }
}
.cta a.button2-c span {
  font-size: 14px;
  position: absolute;
  top: -0.8rem;
  left: calc(50% - 180px);
  display: block;
  width: 360px;
  padding: 0.25rem 0;
  color: #ef6f6f;
  border: 2px solid #ef6f6f;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .cta a.button2-c span {
    left: calc(50% - 140px);
    width: 280px;
  }
}
.cta a.button2-c span:before, .cta a.button2-c span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
.cta a.button2-c span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #ef6f6f transparent transparent transparent;
}
.cta a.button2-c span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.cta a.button2-c i {
  margin-right: 0.75rem;
  font-size: 25px;
}
@media (max-width: 767px) {
  .cta a.button2-c i {
    display: block;
    margin-right: 0;
    font-size: 2rem;
  }
}
.cta a.button2-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #eb5b30;
}

.footprints::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 5px;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.fade.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(30%, rgb(247, 223, 117)));
  background: -webkit-linear-gradient(transparent 50%, rgb(247, 223, 117) 30%);
  background: linear-gradient(transparent 50%, rgb(247, 223, 117) 30%); /* マーカーを引く */
  display: inline; /* インライン属性を指定する */
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  -webkit-transition: background-size 1.5s;
  transition: background-size 1.5s;
}

/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

.pt-15 {
  padding-top: 15px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.mt-30 {
  margin-top: 30px;
}

.xxl2 {
  display: block;
}
@media (max-width: 576px) {
  .xxl2 {
    display: none;
  }
}

.lg {
  display: none;
}
@media (max-width: 1199px) {
  .lg {
    display: block;
  }
}

.lg-2 {
  display: none;
}
@media (max-width: 1199px) {
  .lg-2 {
    display: block;
  }
}
@media (max-width: 767px) {
  .lg-2 {
    display: none;
  }
}

.md {
  display: none;
}
@media (max-width: 991px) {
  .md {
    display: block;
  }
}

.md2 {
  display: none;
}
@media (max-width: 991px) {
  .md2 {
    display: block;
  }
}
@media (max-width: 576px) {
  .md2 {
    display: none;
  }
}

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

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

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

header {
  width: 100%;
  background-color: #8B2F30;
}

.header_inner {
  position: fixed;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  background: #ef6f6f;
  z-index: 100;
}
.header_inner .nav {
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 991px) {
  .header_inner .nav {
    display: none;
  }
}
.header_inner .nav_list {
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .header_inner .nav_list {
    padding-left: 0;
  }
}
.header_inner .nav_list li {
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
}
@media (max-width: 1199px) {
  .header_inner .nav_list li {
    display: block;
  }
}
.header_inner .nav_item {
  line-height: 1.6;
}
.header_inner .nav_item:not(:last-child) a {
  border-right: 3px dotted #fbd7d2;
}
.header_inner .nav_item a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px 0 0;
  margin: 10px 0;
}
.header_inner .nav_item a img {
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_inner .nav_item a:hover img {
  transform: translateY(-20%);
  -webkit-transform: translateY(-20%); /*上に20％位置に移動*/
}
.header_inner .nav_item:nth-of-type(5) .nav_item-ttl span, .header_inner .nav_item:nth-of-type(6) .nav_item-ttl span {
  letter-spacing: -1px;
}
.header_inner .nav_item-ttl {
  font-size: 0.9rem;
  font-weight: normal;
}
.header_inner .nav_item-ttl span {
  font-size: 1.3rem;
  letter-spacing: -1px;
}
.header_inner .nav_item-sub {
  display: block;
  font-size: 12px;
  color: #fbd7d2;
}
.header_inner .nav li.nav_item:not(:last-child).current {
  background-image: url(../images/current.png);
  background-position: 50% 50%;
}
@media (max-width: 1199px) {
  .header_inner .nav li.nav_item:not(:last-child).current {
    background-image: url(../images/current-lg.png);
  }
}
.header_inner .nav li.nav_item:last-child a.current {
  background-color: #ef6f6f;
}
.header_logo {
  width: 250px;
  height: auto;
  padding: 1.5rem 1.5rem;
}

.hamburger {
  position: fixed;
  cursor: pointer;
  right: 30px;
  top: 16px;
  width: 46px;
  height: 46px;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  background: #ef6f6f;
  border-radius: 50%;
  z-index: 9999;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 576px) {
  .hamburger {
    right: 5%;
  }
}
.hamburger_border {
  position: absolute;
  left: 11px;
  width: 25px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.hamburger_border_top {
  top: 14px;
}
.hamburger_border_bottom {
  top: 22px;
}
.hamburger p {
  position: absolute;
  bottom: 4px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
}

.hamburger_nav {
  position: fixed;
  right: -300px; /* 右から出てくる */
  top: 0;
  width: 300px;
  height: 100vh;
  padding: 50px 20px;
  background-color: #fbd7d2;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 300;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
@media (max-width: 767px) {
  .hamburger_nav {
    right: -100%;
    width: 100%;
    padding: 70px 30px;
  }
}
.hamburger_nav::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
}
.hamburger_nav p {
  font-size: 14px;
}
.hamburger_list > li:not(:last-of-type) {
  border-bottom: 1px solid #555;
}
.hamburger_list > li:last-of-type a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hamburger_list a {
  display: inline-block;
  width: 100%;
  padding: 0.6rem 0;
}
.hamburger_list a:hover {
  opacity: 0.7;
}
.hamburger_list .insta_icon {
  width: 60px;
  height: auto;
  padding-left: 0.5rem;
}
.hamburger_sublist {
  padding-left: 2rem;
  font-size: 14px;
}
.hamburger_sublist li {
  border-bottom: 1px dotted #555;
}
.hamburger_sublist a {
  padding-bottom: 0.5;
}
.hamburger_sublist img {
  padding-right: 0.5rem;
}

/* ハンバーガーがクリックされた時用のCSS */
.nav-open .hamburger_border_top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 18px;
}
.nav-open .hamburger_border_bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
}
.nav-open .hamburger_nav {
  right: 0;
}

.access {
  background-color: #8B2F30;
  color: #fff;
  margin-top: 70px;
}
.access_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .access_item {
    display: block;
  }
}
.access_left {
  width: 40%;
}
@media (max-width: 1199px) {
  .access_left {
    width: 100%;
  }
}
.access_left-logo {
  padding-bottom: 30px;
  text-align: center;
}
.access_left-logo img {
  width: 300px;
  height: auto;
}
@media (max-width: 767px) {
  .access_left-logo img {
    width: 200px;
  }
}
.access_left-logo p {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.access_left-logo p::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #fff;
}
.access_left-logo p span {
  position: relative;
  padding: 0 1em;
  background-color: #8B2F30;
}
.access_left table {
  line-height: 2.5;
  width: 100%;
  font-weight: 500;
}
.access_left tr:first-of-type td {
  line-height: 1.2;
}
.access_left th {
  width: 30%;
}
@media (max-width: 1199px) {
  .access_left th {
    width: 40%;
  }
}
.access_left td {
  width: 70%;
}
@media (max-width: 1199px) {
  .access_left td {
    width: 60%;
  }
}
.access_left th, .access_left td {
  vertical-align: baseline;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.access_right {
  width: 55%;
}
.access_right iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .access_right {
    width: 100%;
    height: 350px;
    padding-top: 30px;
  }
}

.footer {
  background-color: #8B2F30;
  color: #fff;
  padding-top: 30px;
}
.footer .copy {
  margin-bottom: 100px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .footer .copy {
    margin-bottom: 0;
  }
}

.mv {
  position: relative;
}
.mv_box {
  width: 90%;
  margin-left: auto;
}
@media (max-width: 576px) {
  .mv_box {
    width: 100%;
  }
}
.mv_logo {
  position: absolute;
  top: 25%;
  left: 50px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .mv_logo {
    top: 15%;
  }
}
@media (max-width: 991px) {
  .mv_logo {
    top: 2%;
    left: 10px;
  }
}
.mv_logo a {
  width: 300px;
  height: auto;
}
@media (max-width: 1199px) {
  .mv_logo a {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .mv_logo a {
    width: 150px;
  }
}
.mv_txt {
  position: absolute;
  top: 75%;
  left: 100px;
  font-weight: normal;
  padding: 10px 15px;
  background-color: #fff;
  mix-blend-mode: luminosity;
  z-index: 1;
}
@media (max-width: 1199px) {
  .mv_txt {
    left: 50px;
  }
}
@media (max-width: 767px) {
  .mv_txt {
    left: 30px;
  }
}
@media (max-width: 576px) {
  .mv_txt {
    left: 5px;
  }
}
.mv_txt h1,
.mv_txt p {
  color: #000;
  font-size: 16px;
  font-family: "Kiwi Maru", "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 2;
}
@media (max-width: 576px) {
  .mv_txt h1,
  .mv_txt p {
    font-size: 14px;
  }
}
.mv_txt h1 {
  border-bottom: 2px dotted #333;
}
.mv_bgi {
  position: absolute;
  width: 300px;
  height: 80vh;
  top: 10%;
  left: 1%;
  background-color: #f9e2e2;
  z-index: -1;
}
@media (max-width: 576px) {
  .mv_bgi {
    display: none;
  }
}

.swiper {
  height: 80vh;
  border-bottom-left-radius: 50px;
}
@media (max-width: 1399px) {
  .swiper {
    height: 700px;
  }
}
@media (max-width: 991px) {
  .swiper {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .swiper {
    height: 500px;
  }
}
@media (max-width: 400px) {
  .swiper {
    height: 400px;
  }
}

.swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .swiper-slide img {
    -o-object-position: right 50% top 0;
       object-position: right 50% top 0;
  }
}
@media (max-width: 767px) {
  .swiper-slide img {
    -o-object-position: right 35% top 0;
       object-position: right 35% top 0;
  }
}
@media (max-width: 576px) {
  .swiper-slide img {
    -o-object-position: right 40% top 0;
       object-position: right 40% top 0;
  }
}
@media (max-width: 400px) {
  .swiper-slide img {
    -o-object-position: right 45% top 0;
       object-position: right 45% top 0;
  }
}

/* ページネーションのサイズと色 */
.slider .swiper-pagination-bullet {
  background-color: #bbb;
  border-radius: 0;
  height: 10px;
  width: 10px;
}

/* ページネーションがアクティブな時の色 */
.slider .swiper-pagination-bullet-active {
  background-color: #8B2F30;
}

/* スクロールダウン アニメーション設定 */
.scroll {
  position: absolute;
  font-size: 13px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  top: 12%;
  right: 3%;
  z-index: 3;
}
@media (max-width: 1399px) {
  .scroll {
    top: 12%;
  }
}
@media (max-width: 767px) {
  .scroll {
    top: 8%;
  }
}
@media (max-width: 576px) {
  .scroll {
    display: none;
  }
}
.scroll p {
  color: #555;
}

.scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #555;
  right: 50%;
  bottom: -115px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100px;
  -webkit-animation: scroll 3s infinite;
          animation: scroll 3s infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.news {
  padding-top: clamp(4.375rem, 4rem + 1.88vw, 6.25rem);
  margin-bottom: 70px;
}
.news > div {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news_box {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 30px;
  padding: 15px;
}
@media (max-width: 991px) {
  .news_box {
    margin-top: 0;
    padding: 30px 15px 15px 50px;
  }
}
@media (max-width: 576px) {
  .news_box {
    padding: 30px 1rem 50px;
  }
}
.news_box #newsList li {
  display: inline-block;
  width: 100%;
  border-bottom: 2px dotted #AFAFAF;
  color: #555;
  padding-top: 1rem;
  padding-bottom: 1rem;
  line-height: 1.5;
}
.news_box #newsList li .clearfix {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向中央揃え */
}
.news_box #newsList li span {
  display: inline-block;
}
.news_box #newsList .up_ymd {
  width: 80px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
@media (max-width: 991px) {
  .news_box #newsList .up_ymd {
    width: 100%;
  }
}
.news_box #newsList span.catName {
  width: 100px;
  font-size: 12px;
  letter-spacing: 0.2px;
  background-color: #fbd7d2;
  color: #444;
  border-radius: 5px;
  padding: 3px;
  margin-bottom: 5px;
}
.news_box #newsList .title {
  width: auto;
  padding-left: 1.5rem;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .news_box #newsList .title {
    width: 100%;
    padding-left: 0;
  }
}
.news_box #newsList .title:hover {
  color: #D44B48;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.news_btn a {
  position: relative;
  background-color: #8B2F30;
  color: #fff;
  padding: 0.5rem 4rem 0.5rem 3rem;
  border-radius: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.news_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.news_btn a:hover {
  background-color: #ef6f6f;
}
.news_btn a:hover::after {
  right: 1.4rem;
}

.bgi-item3 {
  position: absolute;
  top: 20%;
  left: -1%;
  z-index: -1;
}
@media (max-width: 767px) {
  .bgi-item3 {
    top: 5.5%;
  }
}

.bgi-item2 {
  position: absolute;
  top: 12%;
  right: 1%;
  z-index: 1;
}
@media (max-width: 767px) {
  .bgi-item2 {
    top: 14%;
    z-index: -1;
    width: 60%;
  }
}

.bgi-item4 {
  position: absolute;
  top: 45%;
  right: 2%;
  z-index: -1;
}
@media (max-width: 767px) {
  .bgi-item4 {
    top: 55%;
    left: -20px;
    z-index: -1;
  }
}

.bgi-dot0 {
  position: absolute;
  top: 40%;
  right: -1%;
}

.bgi-dot1 {
  position: absolute;
  top: 30%;
  left: 3%;
}

.topPuppies {
  margin-bottom: 70px;
}
.topPuppies_list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
@media (max-width: 576px) {
  .topPuppies_list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
  }
}
.topPuppies_item {
  position: relative;
  background-color: #fbd7d2;
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 767px) {
  .topPuppies_item {
    width: 100%;
  }
}
.topPuppies_item figure a {
  width: 100%;
  height: 200px;
}
@media (max-width: 767px) {
  .topPuppies_item figure a {
    height: 250px;
  }
}
.topPuppies_item figure a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topPuppies_details-ttl {
  border-bottom: 2px dotted #AFAFAF;
}
.topPuppies_details .price {
  font-family: "メイリオ", sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 0.2rem 0 0 0.5rem;
  color: #8B2F30;
}
.topPuppies_details table {
  width: 100%;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 5px;
}
.topPuppies_details table th {
  width: 30%;
}
.topPuppies_details-btn {
  margin-top: 15px;
  font-weight: 500;
}
.topPuppies_details-btn a {
  position: relative;
  display: block;
  width: 50%;
  margin: 0 auto;
  background-color: #ef6f6f;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .topPuppies_details-btn a {
    width: 80%;
  }
}
.topPuppies_details-btn a:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #eb5b30;
  opacity: 0.8;
}
.topPuppies_icon {
  position: absolute;
  left: -8px;
  top: -8px;
  background: #ef6f6f;
  color: #fff;
  font-size: 0.9rem;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
}
.topPuppies_btn {
  margin-top: 30px;
}
.topPuppies_btn a {
  position: relative;
  display: block;
  background-color: #8B2F30;
  color: #fff;
  text-align: center;
  padding: 0.5rem 4rem 0.5rem 2rem;
  border-radius: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.topPuppies_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.topPuppies_btn a:hover {
  background-color: #ef6f6f;
}
.topPuppies_btn a:hover::after {
  right: 1.4rem;
}

.sold a {
  pointer-events: none;
}
.sold .price {
  visibility: hidden; /* 元の金額を隠す */
}
.sold .price::before {
  content: "－"; /* 「－」を表示 */
  visibility: visible; /* 「－」を表示 */
}

.topPuppies_icon-sold {
  position: absolute;
  left: -8px;
  top: -8px;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
  width: 150px;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .topPuppies_icon-sold {
    top: -5px;
    left: -5px;
  }
}

.naminami {
  height: 50px;
  background-image: url(../images/bgi.svg);
  background-repeat: repeat-x;
  margin-top: 70px;
}

.flow {
  padding: 70px 0;
  background-color: #fbd7d2;
}
.flow_list {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
}
.flow_list:not(:last-child) {
  margin-bottom: 70px;
}
.flow_list:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 20px 15px 0 15px;
}
.flow_item {
  padding: 1.5rem 1rem 1rem;
}
.flow_item > div {
  padding-bottom: 0.5rem;
  border-bottom: 2px dotted #AFAFAF;
}
.flow_item i {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

@-webkit-keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--right {
  -webkit-animation: infinity-scroll-right 60s infinite linear 0.5s both;
          animation: infinity-scroll-right 60s infinite linear 0.5s both;
}

.scroll-infinity__itemRight {
  width: 33.3333333333vw;
}
@media (max-width: 991px) {
  .scroll-infinity__itemRight {
    width: 40vw;
  }
}
@media (max-width: 767px) {
  .scroll-infinity__itemRight {
    width: 90.9090909091vw;
  }
}
@media (max-width: 576px) {
  .scroll-infinity__itemRight {
    height: 200px;
  }
}

.scroll-infinity__itemRight img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.access {
  padding-top: 50px;
}
.access_txt {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .access_txt {
    padding-top: 0;
  }
}
@media (max-width: 576px) {
  .access_txt {
    text-align: center;
  }
}
.access_txt > p {
  font-size: 1.125rem;
}
.access_txt-name {
  font-size: 1.375rem;
}
.access_add {
  padding-top: 1rem;
  line-height: 2;
}
.access_tel {
  padding-left: 1rem;
}
@media (max-width: 576px) {
  .access_tel {
    padding-left: 0;
  }
}
.access_map {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .access_map {
    padding-top: 30px;
  }
}
.access_map iframe {
  max-width: 100%;
}

ul#newsList {
  margin: 0 0 15px;
  padding: 0;
}

.catName {
  text-align: center;
}

/* Pager style（外部化可） */
.pager {
  text-align: right;
  padding: 10px;
  clear: both;
}

/*ページャーボタン*/
.pager a {
  border: 1px solid #999;
  border-radius: 5px 5px 5px 5px;
  color: #333;
  font-size: 12px;
  padding: 3px 7px 2px;
  text-decoration: none;
  margin: 0 1px;
}

/*現在のページのボタン*/
.pager a.current {
  background: #999;
  border: 1px solid #999;
  border-radius: 5px 5px 5px 5px;
  color: #fff;
  font-size: 12px;
  padding: 3px 7px 2px;
  margin: 0 1px;
  text-decoration: none;
}

.pager a:hover {
  background: #999;
  color: #fff;
}

.overPagerPattern {
  padding: 0 2px;
}

.news_content {
  background-color: #fff;
  border-radius: 2rem;
}
.news_content h2 {
  margin-top: 3rem;
  font-weight: bold;
  border-bottom: 4px dotted #AFAFAF;
  padding: 0.5rem 1rem;
  background-image: url(../images/dog.png);
  background-size: 4rem;
  background-position: 1% 95%;
  background-repeat: no-repeat;
}
.news_content #up_ymd {
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  margin: 1rem 1rem 0;
}
.news_content .detailUpfile {
  margin: 5px 0 35px;
  text-align: center;
}
.news_content .backORcloseBtn {
  text-align: center;
  line-height: 100%;
  margin-top: 15px;
}
.news_content .backORcloseBtn a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem 0.5rem 2.5rem;
  border: 2px solid #888;
  color: #888;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}
.news_content .backORcloseBtn a::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 1.5rem;
  font-size: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
.news_content .fa-xmark {
  font-size: 1rem;
}
.news_content .detailUpfile img {
  max-width: 100%;
  height: auto;
}
.news_content .detailText {
  font-size: 16px !important;
  padding: 0.5rem 0 3rem 1rem;
}
.news_content .detailText div,
.news_content .detailText span {
  font-size: 16px !important;
}

.puppies_main {
  width: 100%;
  height: 500px;
  margin-top: 30px;
  border-radius: 50px;
  background-image: url(../images/puppies-main.jpg);
  background-position: 50% 60%;
  background-size: cover;
}
@media (max-width: 576px) {
  .puppies_main {
    height: 300px;
    background-position: 53% 0;
  }
}
.puppies_lead {
  line-height: 2;
}
.puppies_select {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
}
.puppies_select:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.puppies select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.no-puppies p:first-child {
  font-size: 1.5rem;
}
.no-puppies p:last-child {
  font-size: 14px;
}

.puppiesDetail {
  margin-bottom: 70px;
}
.puppiesDetail_item {
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fbd7d2;
  border-radius: 20px;
  padding: 20px;
}
.puppiesDetail_img {
  width: 55%;
}
@media (max-width: 991px) {
  .puppiesDetail_img {
    width: 100%;
  }
}
.puppiesDetail_img .swiperMain {
  width: auto;
  height: 400px;
}
@media (max-width: 767px) {
  .puppiesDetail_img .swiperMain {
    height: 300px;
  }
}
.puppiesDetail_img .swiperMain .swiper-slide img {
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
.puppiesDetail_img .swiperThumbnail {
  padding-top: 5px;
  overflow-x: scroll;
}
.puppiesDetail_img .swiperThumbnail .swiper-slide {
  height: 100px;
  width: 26.3157894737% !important;
}
@media (max-width: 991px) {
  .puppiesDetail_img .swiperThumbnail .swiper-slide {
    width: 40% !important;
  }
}
.puppiesDetail_img .swiperThumbnail .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.puppiesDetail_details {
  width: 43%;
}
@media (max-width: 991px) {
  .puppiesDetail_details {
    width: 100%;
  }
}
.puppiesDetail_details table {
  width: 100%;
  font-size: 1rem;
  line-height: 2.5;
}
.puppiesDetail_details table tr {
  border-bottom: 1.5px solid #AFAFAF;
}
@media (max-width: 767px) {
  .puppiesDetail_details table tr:nth-of-type(5) {
    border-bottom: none;
  }
}
.puppiesDetail_details table th {
  width: 40%;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .puppiesDetail_details table th {
    vertical-align: bottom;
  }
  .puppiesDetail_details table th::before {
    content: "■";
    padding-right: 5px;
  }
}
@media (max-width: 767px) {
  .puppiesDetail_details table th, .puppiesDetail_details table td {
    display: block;
    width: 100%;
    padding-left: 0.5rem;
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .puppiesDetail_details table td {
    padding-left: 1rem;
  }
}
.puppiesDetail_details > p {
  font-weight: bold;
  padding-top: 15px;
  text-align: center;
}
.puppiesDetail_details .price {
  font-size: 2rem;
  color: #8B2F30;
}
.puppiesDetail_details-btn {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  background-color: #8B2F30;
  border-radius: 50px;
}
@media (max-width: 991px) {
  .puppiesDetail_details-btn {
    margin: 5% 0;
  }
}
.puppiesDetail_details-btn a {
  display: block;
  padding: 1rem 0;
}
.puppiesDetail_details-btn div {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.puppiesDetail_details-btn div i {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.puppiesDetail_icon {
  position: absolute;
  left: -10px;
  top: -10px;
  background: #ef6f6f;
  color: #fff;
  font-size: 1.2rem;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  z-index: 2;
}
.puppiesDetail_introduction {
  margin-top: 50px;
  border: 2px solid #8B2F30;
  border-radius: 20px;
}
.puppiesDetail_introduction > div {
  padding: 0 25px 20px;
}
.puppiesDetail_introduction > div h3 {
  position: relative;
  top: -1rem;
  display: inline-block;
  background-color: #fff;
  font-size: 1.3rem;
  padding: 0 2rem;
}
.puppiesDetail_video {
  margin-top: 30px;
  text-align: center;
}
.puppiesDetail_video video {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #333;
}

/* 音量スライダーを非表示にする */
#video::-webkit-media-controls-volume-slider {
  display: none !important;
}

/* 音量ボタン自体を非表示にする場合 */
#video::-webkit-media-controls-volume-button {
  display: none !important;
}

.shooting-day {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 10px;
  font-size: 14px;
  font-weight: normal;
}

.petInsurance {
  position: relative;
}
.petInsurance_main {
  width: 100%;
  height: 500px;
  margin-top: 30px;
  border-radius: 50px;
  background-image: url(../images/petInsurance-main.jpg);
  background-position: 0 25%;
  background-size: cover;
}
@media (max-width: 991px) {
  .petInsurance_main {
    background-position: 50% 0;
  }
}
@media (max-width: 576px) {
  .petInsurance_main {
    height: 300px;
  }
}
.petInsurance_lead {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.petInsurance_lead-item01 {
  grid-area: 1/1/3/3;
}
.petInsurance_lead-item02 {
  grid-area: 3/2/5/5;
}
.petInsurance_lead-item03 {
  grid-area: 2/3/3/4;
}
.petInsurance_lead-item04 {
  grid-area: 1/4/2/5;
}
.petInsurance_lead-item05 {
  grid-area: 3/1/4/2;
}
.petInsurance_lead p {
  line-height: 2;
}
.petInsurance_lead-item03, .petInsurance_lead-item04, .petInsurance_lead-item05 {
  border-radius: 10px;
  overflow: hidden;
}
.petInsurance_lead-item03 img, .petInsurance_lead-item04 img, .petInsurance_lead-item05 img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.petInsurance_lead-item02 {
  padding-left: 100px;
}
.petInsurance_lead-item03 {
  margin-top: -50px;
}
.petInsurance_lead-item05 {
  margin-top: -70px;
}
@media (max-width: 1199px) {
  .petInsurance_lead-item05 {
    margin-top: 0;
    grid-area: 4/1/5/2;
  }
}
@media (max-width: 991px) {
  .petInsurance_lead {
    display: block;
  }
  .petInsurance_lead-item02 {
    padding-left: 0;
  }
  .petInsurance_lead-item03 {
    margin-top: 15px;
    height: 300px;
  }
  .petInsurance_lead-item04, .petInsurance_lead-item05 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .petInsurance_Recommended {
    margin-top: 100px;
  }
}
.petInsurance_Recommended a {
  -webkit-transition: 0.3 ease-in;
  transition: 0.3 ease-in;
}
.petInsurance_Recommended a:hover {
  opacity: 0.7;
}
.petInsurance_bgi-item2 {
  position: absolute;
  top: 700px;
  right: 50px;
  z-index: -1;
}
@media (max-width: 991px) {
  .petInsurance_bgi-item2 {
    top: 850px;
    opacity: 0.5;
  }
}
.petInsurance_bgi-item3 {
  position: absolute;
  top: 250px;
  left: -10px;
  z-index: -1;
}
.petInsurance_bgi-item4 {
  position: absolute;
  bottom: 1000px;
  left: 20px;
  z-index: -1;
}
@media (max-width: 991px) {
  .petInsurance_bgi-item4 {
    bottom: 1400px;
  }
}
@media (max-width: 767px) {
  .petInsurance_bgi-item4 {
    bottom: 1920px;
  }
}
@media (max-width: 576px) {
  .petInsurance_bgi-item4 {
    bottom: 1750px;
  }
}
.petInsurance_bgi-dot0 {
  position: absolute;
  top: 650px;
  left: 100px;
  width: 200px;
  height: auto;
  z-index: -1;
}
.petInsurance_bgi-dot1 {
  position: absolute;
  top: 1200px;
  right: 100px;
  width: 200px;
  height: auto;
  z-index: -1;
}

.solicitation-policy {
  margin-top: 50px;
  line-height: 2;
}
.solicitation-policy h3 {
  letter-spacing: 10px;
  text-align: center;
}
.solicitation-policy p {
  padding-top: 30px;
}
.solicitation-policy ol li {
  list-style-type: decimal;
  list-style-position: inside;
  padding-top: 1rem;
}

.aboutUs {
  position: relative;
}
.aboutUs_main {
  width: 100%;
  height: 500px;
  margin-top: 30px;
  border-radius: 50px;
  background-image: url(../images/aboutUs-main.jpg);
  background-position: 0 25%;
  background-size: cover;
}
@media (max-width: 991px) {
  .aboutUs_main {
    background-position: 50% 0;
  }
}
@media (max-width: 576px) {
  .aboutUs_main {
    height: 300px;
  }
}
.aboutUs_lead {
  position: relative;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2.5;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .aboutUs_lead {
    padding-top: 50px;
  }
}
.aboutUs_lead > img {
  width: 250px;
  height: 100%;
}
@media (max-width: 767px) {
  .aboutUs_lead > img {
    display: none;
  }
}
.aboutUs_lead-text {
  width: 55%;
}
@media (max-width: 767px) {
  .aboutUs_lead-text {
    width: 100%;
  }
}
.aboutUs_bgc {
  position: absolute;
  background-color: #fbd7d2;
  width: 100%;
  height: 650px;
  z-index: -1;
  bottom: 150px;
}
.aboutUs_bgc-after {
  position: absolute;
  bottom: 50px;
  width: 100%;
  height: 100px;
  z-index: -1;
}

.greeting {
  margin-top: 100px;
  margin-bottom: 100px;
}
.greeting .parent1 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.greeting .parent1 .div1 {
  grid-area: 1/1/4/5;
}
.greeting .parent1 .div2 {
  grid-area: 2/5/7/8;
}
.greeting .parent1 .div3 {
  grid-area: 4/3/8/5;
}
.greeting .parent1 .div4 {
  grid-area: 1/2/7/6;
}
.greeting .parent1 .greeting_text {
  padding: 50px 0 50px 50px;
}
.greeting .parent1 .greeting_text h3 {
  font-size: clamp(1.5rem, 0.614rem + 1.85vw, 2rem);
}
.greeting .parent1 .greeting_text p {
  font-size: 16px;
  line-height: 2;
}
.greeting .parent1 .greeting_text p:nth-of-type(2) {
  border-bottom: 1px solid #666;
  padding-bottom: 10px;
}
.greeting .parent1 .div4 {
  background-color: #b5cde0;
  z-index: -1;
}
@media (max-width: 991px) {
  .greeting .parent1 {
    display: block;
    position: relative;
  }
  .greeting .parent1 .div1 {
    padding: 0 0.5rem 0 1.5rem;
  }
  .greeting .parent1 .div2 {
    width: 80%;
    margin: 0 auto;
  }
  .greeting .parent1 .div3 {
    display: none;
  }
  .greeting .parent1 .div4 {
    position: absolute;
    top: 10%;
    width: 70%;
    height: 300px;
  }
}

.contact {
  margin-bottom: 200px;
}
.contact_item {
  margin-top: 30px;
}
.contact_item > div {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_item img {
  width: 40%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .contact_item img {
    height: 150px;
  }
}
@media (max-width: 767px) {
  .contact_item img {
    width: 100%;
  }
}
.contact_item table {
  border-collapse: collapse;
  width: 60%;
}
@media (max-width: 767px) {
  .contact_item table {
    width: 100%;
  }
}
.contact_item table th {
  width: 50%;
}
@media (max-width: 767px) {
  .contact_item table th {
    width: 30%;
  }
}
.contact_item table th, .contact_item table td {
  border: 1px solid #AFAFAF;
  padding-left: 1rem;
}
.contact_mailbox {
  position: relative;
  background-color: #fbd7d2;
  border-radius: 50px;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .contact_mailbox {
    border-radius: 30px;
    padding: 70px 1rem;
  }
}
.contact_mailbox dl dt span {
  background-color: #FF3E3E;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  padding: 0 0.5rem 0.1rem;
  margin-left: 0.5rem;
  border-radius: 10px;
}
.contact_mailbox .radio dd {
  display: inline-block;
  padding: 10px 0 0 2rem;
}
@media (max-width: 1399px) {
  .contact_mailbox .radio dd {
    display: block;
    padding: 10px 0 0 1rem;
  }
}
@media (max-width: 576px) {
  .contact_mailbox .radio dd {
    padding-left: 0;
  }
}
.contact_mailbox input[type=text],
.contact_mailbox input[type=tel],
.contact_mailbox input[type=email] {
  width: 100%;
  margin-top: 5px;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  background-color: #fff;
  border-radius: 10px;
}
.contact_mailbox input::-webkit-input-placeholder {
  font-size: 16px;
  color: #666666;
  font-weight: normal;
}
.contact_mailbox input::-moz-placeholder {
  font-size: 16px;
  color: #666666;
  font-weight: normal;
}
.contact_mailbox input:-ms-input-placeholder {
  font-size: 16px;
  color: #666666;
  font-weight: normal;
}
.contact_mailbox input::-ms-input-placeholder {
  font-size: 16px;
  color: #666666;
  font-weight: normal;
}
.contact_mailbox input::placeholder {
  font-size: 16px;
  color: #666666;
  font-weight: normal;
}
.contact_mailbox textarea {
  width: 100%;
  height: 20rem;
  margin-top: 10px;
  padding: 1rem;
  background-color: #f7f7f7;
  border-radius: 20px;
}
.contact_mailbox ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #ef6f6f;
  font-size: 1.5rem;
}
.contact_mailbox ::-moz-placeholder { /* Others */
  color: #888;
  font-size: 0.875rem;
}
.contact_mailbox :-ms-input-placeholder { /* Others */
  color: #888;
  font-size: 0.875rem;
}
.contact_mailbox ::-ms-input-placeholder { /* Others */
  color: #888;
  font-size: 0.875rem;
}
.contact_mailbox ::placeholder { /* Others */
  color: #888;
  font-size: 0.875rem;
}
.contact_mailbox .contact_agree input[type=submit] {
  margin: 5px 0 0;
  padding: 1.5rem 8rem;
  background-color: #8B2F30;
  border-radius: 60px;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .contact_mailbox .contact_agree input[type=submit] {
    padding: 1.5rem 20%;
  }
}
.contact_mailbox .contact_agree input[type=submit]:hover {
  background-color: #ef6f6f;
}
.contact_mailbox .form-text {
  font-weight: normal;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .contact_mailbox .form-text {
    padding-top: 70px;
  }
}
.contact_mailbox a {
  color: #8B2F30;
  text-decoration: underline;
}
.contact_mailbox a:hover {
  opacity: 0.7;
}

.contact:nth-child(n+2) {
  padding-top: 70px;
}

.contact:last-child {
  margin-bottom: 150px;
}

.privacy .section_ttl + p {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .privacy .section_ttl + p {
    padding-top: 70px;
  }
}
.privacy dl, .privacy ol, .privacy p {
  padding-left: 1rem;
}
.privacy ol li {
  list-style-type: auto;
  list-style-position: inside;
  padding-left: 1rem;
}
.privacy_desk dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .privacy_desk dl {
    display: block;
  }
}
.privacy_desk dt {
  width: 180px;
}
.privacy_desk dd {
  font-size: 0.9rem;
}

#formWrap {
  margin-top: 70px;
}
#formWrap h3 {
  padding: 30px 0;
}
#formWrap table.formTable {
  width: 100%;
  margin: 30px auto;
  border-collapse: collapse;
}
#formWrap table.formTable td,
#formWrap table.formTable th {
  border: 1px solid #ccc;
  padding: 10px;
}
#formWrap table.formTable th {
  width: 30%;
  font-weight: bold;
  background: #fbd7d2;
  text-align: left;
}
#formWrap table.formTable td {
  font-weight: normal;
  background: #fff;
}
#formWrap input[type=submit] {
  background-color: #8B2F30;
  border-radius: 30px;
  color: #fff;
  font-weight: normal;
  padding: 1rem 3rem;
  margin: 0.5rem;
}
#formWrap input[type=submit]:hover {
  background-color: #ef6f6f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#formWrap input[type=button] {
  background-color: #777;
  border-radius: 30px;
  color: #fff;
  font-weight: normal;
  padding: 1rem 3rem;
  margin: 0.5rem;
}
#formWrap input[type=button]:hover {
  background-color: #333;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#formWrap p.error_messe {
  margin: 5px 0;
  color: red;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 767px) {
  #formWrap {
    margin: 70px auto;
  }
  #formWrap table.formTable {
    margin: 30px auto 50px;
  }
  #formWrap table.formTable th,
  #formWrap table.formTable td {
    width: auto;
    display: block;
  }
  #formWrap table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }
  #formWrap form input[type=submit],
  #formWrap form input[type=reset],
  #formWrap form input[type=button] {
    display: block;
    width: 100%;
    height: auto;
    margin: 30px 0 0;
  }
}
.thanks {
  margin-bottom: 150px;
}
.thanks_txt {
  font-weight: normal;
  text-align: center;
  line-height: 2.5;
}
@media (max-width: 576px) {
  .thanks_txt {
    text-align: left;
    text-indent: 1rem;
  }
}
.thanks_txt p:nth-of-type(n+2) {
  padding-top: 2rem;
}
.thanks_btn {
  display: block;
  background-color: #ef6f6f;
  color: #fff;
  margin-top: 50px;
  padding: 1rem 8rem;
  border-radius: 30px;
}
.thanks_btn:hover {
  background-color: #dde016;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}/*# sourceMappingURL=style.css.map */