@charset "UTF-8";
@import url(../css/sub.css);
@import url(../css/header.css);

:root {
  --main-bg-color: #fff;
  --accent-color01: 247, 188, 211;
  --window-padding: 50px;
  --vertical-window-padding: 100px;
  --font-family01: "Zen Old Mincho";
  --font-family02: "Noto Sans JP";
  --font-family03: "Fraunces";
  --font-family04: "Caveat", cursive;
  --font-yomogi: "Yomogi", cursive;
  --font-udmincho: "BIZ UDMincho", serif;
  --font-color01: 88, 74, 65;
  --font-color02: 65, 30, 6;
}

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

.font-fam-1 {
  font-family: var(--font-family01);
}

.font-fam-2 {
  font-family: var(--font-family02);
}

.font-fam-3 {
  font-family: var(--font-family03);
}

.font-fam-4 {
  font-family: var(--font-family04);
}

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

html {
  scroll-behavior: smooth;
}

.sp {
  display: none;
}

#top {
  padding-top: 137px;
  position: relative;
  color: rgb(var(--font-color01));
  /* background: url(../img/body_bg.png) no-repeat;
  background-position: bottom; */
  /* background-color: rgb(255, 253, 250); */
}

.bg_footer {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: url(../img/body_bg.png) no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: -1;
  bottom: 0;
}

#top main {
  background-color: rgb(255, 253, 250);
}

body {
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  padding-top: 137px;
}

body p {
  line-height: 1.5;
}

.pd-tb {
  padding-top: var(--vertical-window-padding);
  padding-bottom: var(--vertical-window-padding);
}

.pd-b {
  padding-bottom: var(--vertical-window-padding);
}

.pd-lr {
  padding-left: var(--window-padding);
  padding-right: var(--window-padding);
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.text_shadow01 {
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}

.pink_btn {
  width: 100%;
  max-width: 900px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3%;
  font-family: var(--font-family01);
  font-size: 20px;
  border: 3px double #f7bcd3;
  margin: 0 auto;
  transform: scale(1);
  font-weight: 600;
  position: relative;
}

.pink_btn:hover span {
  transform: scale(1.1);
}

.pink_btn span {
  position: relative;
  transition: transform 0.3s ease;
}

.pink_btn span.mail::after {
  content: "";
  background: url(../img/mail-icon_pink.png) no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  transition: all 0.5s;
}

.pink_btn:hover span.mail::after {
  background: url(../img/mail-icon_white.png) no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.5s;
}

.pink_btn span.arrow::after {
  content: "";
  background: url(../img/arrow-right.png) no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  transition: all 0.5s;
}

.pink_btn:hover span.arrow::after {
  background: url(../img/arrow-right_pink.png) no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.5s;
}

.pink_btn.white {
  background-color: rgb(255, 253, 250);
  color: rgba(247, 188, 211);
  border: 3px double #f7bcd3;
  transition: all 0.5s;
}

.pink_btn.pink {
  background-color: rgba(247, 188, 211);
  color: rgb(255, 253, 250);
  border: 3px double #fffdfa;
  transition: all 0.5s;
}

.pink_btn.white:hover {
  background-color: rgba(247, 188, 211);
  color: rgb(255, 253, 250);
  border: 3px double #fffdfa;
  transition: all 0.5s;
}

.pink_btn.pink:hover {
  background-color: rgb(255, 253, 250);
  color: rgba(247, 188, 211);
  border: 3px double #f7bcd3;
  transition: all 0.5s;
}

.pink_btn.brown {
  background-color: #a08e80;
  color: rgb(255, 253, 250);
  border: 3px double #fffdfa;
  transition: all 0.5s;
  max-width: 700px;
  height: 50px;
}

.pink_btn.brown:hover {
  background-color: #fff;
  color: #a08e80;
  border: 3px double #ffbb81 !important;
  transition: all 0.5s;
}

.pink_btn.brown:hover span.arrow::after {
  background: url(../img/arrow-right_brown.png) no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.5s;
}

#page_top {
  position: fixed;
  right: 2%;
  bottom: 2%;
  z-index: 99;
}

#page_top a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 100vh;
  color: #fff;
  background: linear-gradient(90deg, #e4b2c7 0%, #dcd1c4 100%);
  box-shadow: 2.12px 2.12px 14px rgba(0, 0, 0, 0.31);
  transition: all 0.3s ease;
}

#page_top a:hover {
  background: url(../img/pagetop_bg.png);
  background-position: center;
  background-size: cover;
  transition: all 0.3s ease;
}

#page_top a span:nth-child(1) {
  font-family: var(--font-family04);
  font-size: 25px;
}

#page_top a span:nth-child(2) {
  font-family: var(--font-family01);
  margin-bottom: 10px;
  font-size: 18px;
}

#page_top .sp {
  display: none;
}

.mv {
  width: 100%;
  height: 100%;
  min-height: 689px;
  background-image: url(../img/top/mv_top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  position: relative;
}

.mv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 25%);
}

.mv_text {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  width: 100%;
  z-index: 1;
  padding: 0 3%;
}

.mv_text h2 {
  font-size: 30px;
  text-shadow: #ffffff 0px 0px 6px;
  letter-spacing: 0.25em;
  font-family: var(--font-family01);
  font-weight: 900;
}

.mv_text h3 {
  font-size: 24px;
  font-family: var(--font-family01);
  font-weight: 900;
}

.mv_text h1 {
  font-size: 60px;
  text-shadow: #ffffff 0px 0px 6px;
  font-family: var(--font-family01);
  font-weight: 900;
}

.mv .scrollmv {
  position: absolute;
  font-family: "HelveticaNeueLT W20 45 Light";
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  letter-spacing: 10px;
  transform: rotate(90deg);
  right: 24%;
  bottom: 26%;
}

.mv .line {
  position: absolute;
  right: 27.3%;
  bottom: 0;
  width: 2px;
  height: 15%;
  background-color: #fff;
  display: flex;
  animation-name: lineanimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes lineanimation {
  from {
    bottom: 0;
  }
  90% {
    bottom: -1%;
  }
  80% {
    bottom: -2%;
  }
  70% {
    bottom: -3%;
  }
  60% {
    bottom: -3%;
  }
  50% {
    bottom: -2%;
  }
  40% {
    bottom: -1%;
  }
  30% {
    bottom: 1%;
  }
  20% {
    bottom: 2%;
  }
  10% {
    bottom: 1%;
  }
  to {
    bottom: 0;
  }
}

.top_section .inner {
  max-width: 1600px;
}

/* sec01 */

.top_section h2 {
  color: rgb(var(--font-color01));
  font-size: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  font-family: "Snell Roundhand W01 Script";
  font-weight: 400;
  margin-bottom: 50px;
  position: relative;
}

.top_section h2::after {
  content: "";
  background-color: rgb(var(--accent-color01));
  width: 15%;
  height: 0.1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: 10%;
}

.top_section h2::before {
  content: "";
  background-color: rgb(var(--accent-color01));
  width: 15%;
  height: 0.1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: 10%;
}

.top_section h2 span {
  font-size: 29px;
  font-family: "Didot eText W01 Italic";
}

.top_section .section_ttl-box {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 20px;
  margin-bottom: 80px;
}

.top_section .section_ttl-box h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 90px;
  font-family: "Cinzel", serif;
  line-height: 60px;
  font-weight: 100;
  position: relative;
  margin-right: 50px;
}

.top_section .section_ttl-box h3::after {
  content: "";
  background-image: url(../img/top/color_accent01.png);
  background-repeat: no-repeat;
  position: absolute;
  right: -5px;
  bottom: -47px;
  width: 95px;
  height: 95px;
  z-index: -1;
}

.top_section .section_ttl-box h5 {
  font-size: 28px;
  font-family: var(--font-family01);
}

.top_section .top_sec02 .section_ttl-box h5,
.top_section .top_sec03 .section_ttl-box h5 {
  font-weight: 400;
}

.top_section .section_ttl-box h4 {
  font-size: 52px;
  line-height: 60px;
  font-family: var(--font-family01);
}

.top_section .top_sec02 .section_ttl-box h4 {
  font-size: 64px;
  line-height: 70px;
}

.top_section .section_ttl-box h3 span {
  font-size: 24px;
}

.top_section .img_box {
  margin-bottom: 80px;
  position: relative;
}

.top_section .img_box::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background-image: url(../img/top/color_accent01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: -66px;
  right: 20%;
}

.top_section .img_box img {
  width: 100%;
}

.top_section .wrap {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: dashed 2px rgb(var(--accent-color01));
}

.top_section .top_sec02 .wrap,
.top_section .top_sec03 .wrap {
  border-bottom: 0;
}

.top_section .wrap .cta {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_section .wrap .cta .cta_btnwrap a {
  display: flex;
  flex-direction: column;
  color: #000;
  align-items: center;
  width: 220px;
  height: 220px;
  justify-content: center;
  position: relative;
  gap: 10px;
}

.top_section .wrap .cta .cta_btnwrap a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(255, 253, 250);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 100vh;
  filter: drop-shadow(1px 3px 4px #0004);
}

.top_section .wrap .cta .cta_btnwrap a span:nth-child(1) {
  font-family: var(--font-family04);
  font-size: 30px;
  color: rgb(var(--font-color01));
  position: relative;
}

.top_section .wrap .cta .cta_btnwrap a span:nth-child(1)::after {
  content: "|";
  position: absolute;
  left: -15px;
  top: 50%;
  color: rgb(var(--font-color01));
  width: fit-content;
  font-family: var(--font-family01);
  transform: rotate(-20deg) translateY(-50%);
  font-size: 23px;
}

.top_section .wrap .cta .cta_btnwrap a span:nth-child(1)::before {
  content: "|";
  position: absolute;
  right: -15px;
  top: 50%;
  color: rgb(var(--font-color01));
  width: fit-content;
  font-family: var(--font-family01);
  transform: rotate(20deg) translateY(-50%);
  font-size: 23px;
}

.top_section .wrap .cta .cta_btnwrap a span:nth-child(3) {
  font-family: var(--font-family01);
  color: rgb(var(--font-color01));
  font-weight: 600;
  transition: all 0.3s;
  transform: scale(1);
}

.top_section .wrap .cta .cta_btnwrap a span:nth-child(3):hover {
  transition: all 0.3s;
  font-family: var(--font-family02);
  transform: scale(1.1);
}

.top_section .top_sec03 .wrap .cta .cta_btnwrap a img {
  margin-left: 20px;
}

.top_section .top_sec02 .wrap .cta .cta_btnwrap a span:nth-child(3),
.top_section .top_sec03 .wrap .cta .cta_btnwrap a span:nth-child(3) {
  font-size: 20px;
  letter-spacing: 5px;
}

.top_section .wrap .cta_textbox {
  width: 100%;
  font-family: var(--font-family01);
  font-weight: 600;
}

.top_section .wrap .cta_textbox p {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 900;
}

.top_section .top_sec03 .wrap .cta_textbox p {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  position: relative;
}

.top_section .top_sec03 .wrap .cta_textbox p span {
  position: relative;
}

.top_section .top_sec03 .wrap .cta_textbox p span::after,
.top_section .top_sec03 .wrap .cta_textbox p::after {
  content: "";
  border-bottom: solid 1px rgb(var(--accent-color01));
  width: 82%;
  height: 1px;
  left: 0;
  bottom: 0;
  position: absolute;
}

.top_section .top_sec03 .wrap .cta_textbox p span:nth-last-child(1)::after {
  content: unset;
}

.top_section .wrap .cta_textbox .large_txt {
  font-size: 30px;
}

.top_section .lower_txt {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-family01);
  border-bottom: solid 3px rgb(var(--accent-color01));
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
}

.top_section .top_sec02 .lower_txt,
.top_section .top_sec03 .lower_txt {
  border-bottom: 0;
  position: relative;
  font-family: var(--font-family01);
  font-weight: 400;
  font-size: 20px;
}

.top_section .top_sec02 .lower_txt::after,
.top_section .top_sec03 .lower_txt::after {
  content: "|";
  position: absolute;
  left: -15px;
  top: 45%;
  color: rgb(var(--font-color01));
  width: fit-content;
  font-family: var(--font-family01);
  transform: rotate(-20deg) translateY(-50%);
  font-size: 23px;
}

.top_section .top_sec02 .lower_txt::before,
.top_section .top_sec03 .lower_txt::before {
  content: "|";
  position: absolute;
  right: -15px;
  top: 45%;
  color: rgb(var(--font-color01));
  width: fit-content;
  font-family: var(--font-family01);
  transform: rotate(20deg) translateY(-50%);
  font-size: 23px;
}

.top_section .top_sec03 .lower_txt02 {
  font-family: var(--font-family01);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 50px;
  text-align: center;
}

.top_section .top_sec03 .wrap {
  align-items: end;
}

.top_section .about_btn {
  transition: all 0.2s ease, visibility 0s;
  border-radius: 0px;
  background: #f7bcd3;
  border: 3px double #fffdfa;
  color: #fff;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 500;
  justify-content: center;
  font-family: var(--font-family02);
  position: relative;
}

.top_section .about_btn::after {
  content: "";
  position: absolute;
  background: url(../img/top/arrow-right.png) no-repeat;
  background-position: center;
  background-size: contain;
  width: 57px;
  height: 20px;
  right: 25%;
  top: 50%;
  transform: translateY(-50%);
}

.top_section .about_btn:hover {
  background: #fff;
  color: #f7bcd3;
  transition: all 0.2s ease, visibility 0s;
  border: 3px double #f7bcd3;
}

.top_section .about_btn:hover::after {
  background: url(../img/top/arrow-right_pink.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.top_section .top_sec03 {
  padding-bottom: 80px;
  position: relative;
}

.top_section .top_sec03::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: dashed 1px rgb(var(--accent-color01));
  width: 100%;
  max-width: 1200px;
  height: 1px;
}

/* sec02 */
.top_access {
  background-color: rgba(247, 188, 211, 0.9);
  padding-top: 20px;
  padding-bottom: 50px;
}

.top_access .img_box {
  position: relative;
}

.top_access .img_box img {
  width: 100%;
}

.top_access .img_box .cta_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 263px;
  height: 263px;
}

.top_access .img_box .cta_wrap.cta01 {
  top: -3%;
  left: 6%;
}

.top_access .img_box .cta_wrap.cta02 {
  top: 43%;
  left: 22%;
  width: 154px;
  height: 154px;
}

.top_access .img_box .cta_wrap a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 100vh;
  filter: drop-shadow(3px 3px 3px #0005);
  transition: all 0.5s;
}

.top_access .img_box .cta_wrap a:hover {
  background: url(../img/top/access_bg01.png) no-repeat;
  transition: all 0.5s;
}

.top_access .img_box .cta_wrap.cta02 a:hover {
  background: url(../img/top/access_bg02.png) no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.5s;
}

.top_access .img_box .cta_wrap a img {
  width: 100px;
}

.top_access .img_box .cta_wrap a .pink_txt {
  color: rgb(var(--accent-color01));
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-family02);
}

.top_access .img_box .cta_wrap a .yellow_txt {
  color: #da9e24;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-family02);
}

.top_access .img_box .cta_wrap a .small_txt {
  font-size: 14px;
  color: #000;
  text-align: center;
}

.top_access .img_box .cta_wrap.cta02 a .small_txt {
  font-size: 11px;
}

.top_access .img_box .cta_wrap.cta02 a img {
  width: 130px;
}

.top_access .img_box .txt_wrap {
  position: absolute;
  right: 25px;
  bottom: 0;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-family01);
}

/* sec03 */
.top_staff {
  position: relative;
  padding-bottom: 80px;
}

.top_staff .inner {
  z-index: 1;
  position: relative;
  border-bottom: dashed 2px rgb(247, 188, 211);
  padding-bottom: 80px;
}

.top_staff::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18%;
  background: linear-gradient(175deg, rgba(247, 188, 211, 0.9) 50%, rgb(255 253 250) 50%);
}

.top_staff .wrap .img_wrap {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 50px;
}

.top_staff .wrap .img_wrap .img_box {
  width: 333px;
  position: relative;
}

.top_staff .wrap .img_wrap .img_box img {
  width: 100%;
  border-radius: 100vh;
}

.top_staff .wrap .img_wrap .img_box.img_box01 {
  margin-left: 100px;
}

.top_staff .wrap .img_wrap .img_box.img_box02 {
  margin-top: 50px;
  margin-left: 100px;
  width: 300px;
}

.top_staff .wrap .img_wrap .img_box.img_box03 {
  width: 300px;
  margin-left: 150px;
}

.top_staff .wrap .img_wrap .img_box.img_box04 {
  margin-top: 50px;
  margin-left: 100px;
  width: 300px;
}

.top_access .section_ttl,
.top_staff .section_ttl,
.top_information .section_ttl {
  color: #fff;
  font-family: "Snell Roundhand W01 Script";
  font-size: 74px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  position: relative;
  max-width: 1500px;
}

.top_access .section_ttl {
  padding-left: 20%;
  margin-bottom: 50px;
}

.top_staff .section_ttl {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 50px 100px;
}

.top_information .section_ttl {
  color: rgb(var(--font-color01));
  font-size: 84px;
  margin-bottom: 80px;
}

.top_access .section_ttl::after,
.top_staff .section_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #fff;
  height: 1px;
}

.top_access .section_ttl::after {
  width: 44%;
}

.top_staff .section_ttl::after {
  width: 30%;
}

.top_information .section_ttl::after {
  content: "";
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  left: 0;
  background-color: #000;
  height: 0.1px;
  width: 37%;
}

.top_access .section_ttl::before,
.top_staff .section_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: #fff;
  height: 1px;
}

.top_information .section_ttl::before {
  content: "";
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  right: 0;
  background-color: #000;
  height: 0.1px;
  width: 37%;
}

.top_access .section_ttl::before {
  width: 20%;
}

.top_staff .section_ttl::before {
  width: 30%;
}

.top_access .section_ttl span,
.top_staff .section_ttl span {
  font-family: var(--font-family01);
  font-size: 24px;
}

.top_staff .wrap .img_wrap .img_box span {
  background-color: rgba(247, 188, 211);
  color: #fff;
  font-family: var(--font-family04);
  font-size: 28px;
  width: 230px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.top_staff .wrap .img_wrap .img_box.img_box.img_box01 span {
  right: -110px;
  bottom: 20px;
}

.top_staff .wrap .img_wrap .img_box.img_box.img_box02 span {
  right: -165px;
  bottom: -30px;
}

.top_staff .wrap .img_wrap .img_box.img_box.img_box03 span {
  top: -20px;
  left: -70px;
}

.top_staff .wrap .img_wrap .img_box.img_box.img_box04 span {
  top: 30px;
  left: -150px;
}

.top_staff .wrap .txt_box {
  text-align: center;
  font-family: var(--font-family01);
  font-size: 24px;
  font-weight: 600;
}

/* sec04 */
.top_information .desc {
  text-align: center;
  font-family: var(--font-family01);
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: 900;
}

#blog-posts-container .blog-post {
  display: none; /* Hide all posts by default */
}

#blog-posts-container .blog-post.active {
  display: block; /* Show active page's posts */
}

#pagination-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#page-numbers span {
  padding: 5px 15px;
  color: rgb(var(--font-color01));
  font-size: 25px;
  font-family: "Cinzel", serif;
  font-weight: 600;
}

#page-numbers span.active {
  opacity: 0.6;
}

.top_information {
  background: url(../img/top/blog_bg.png) no-repeat;
  background-size: contain;
  background-position: 100% 10%;
}

.top_information .news_pagination button {
  appearance: none;
  border: 0;
  padding: 0;
  background-color: transparent;
  font-size: 25px;
}

.top_information .inner {
  background-color: rgba(247, 188, 211, 0.7);
  padding: 20px;
  padding: 20px 20px 80px;
}

.top_information .inner h3 {
  margin-bottom: 50px;
  font-size: 45px;
  font-family: "Cinzel", serif;
  font-weight: 400;
  position: relative;
  width: 100%;
  max-width: 400px;
}

.top_information .inner h3::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 60%;
  border-bottom: dashed 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top_information .inner .news_list {
  padding: 0 50px;
  margin-bottom: 60px;
}

.top_information .inner .news_list .blog-post {
  font-family: var(--font-family01);
  margin-bottom: 30px;
  font-weight: 900;
}

.top_information .inner .news_list .blog-post p {
  margin-bottom: 20px;
  font-size: 14px;
}

.top_information .inner .news_list .blog-post a {
  color: rgb(var(--font-color01));
  font-size: 20px;
  transition: all 0.3s;
}

.top_information .inner .news_list .blog-post a:hover {
  opacity: 0.6;
}

/* footer */
footer {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.footer_logo a {
  display: flex;
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100vh;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}

.footer_logo a img {
  width: 78px;
  height: 58px;
}

footer .desc {
  color: #fff;
  font-family: var(--font-family01);
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.footer_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  gap: 20px;
  font-family: var(--font-family01);
  position: relative;
  width: 100%;
  max-width: fit-content;
  margin: 0 auto 50px;
  padding-left: 65px;
}

.footer_contact a::after {
  content: "";
  background: url(../img/tel-icon.png) no-repeat;
  background-position: center;
  background-size: 30px;
  background-color: #ffa8cf;
  border-radius: 100vh;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer_contact a img {
  width: 30px;
}

.footer_contact p {
  text-align: center;
  color: #fff;
  font-family: var(--font-family01);
  font-size: 20px;
  margin-bottom: 10px;
}

.footer_contact .pink_bg {
  background-color: rgb(247, 188, 211);
  color: #fff;
  width: 100%;
  max-width: 700px;
  height: 70px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: solid 1px;
  font-family: var(--font-family01);
}

.footer_nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer_nav ul li a {
  color: #fff;
  font-family: var(--font-family01);
  font-weight: 600;
}

.copyright {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.follow_cta {
  position: absolute;
  top: 20px;
  right: 25%;
  transform: translateX(-50%);
  text-align: center;
}

.follow_cta span {
  font-family: var(--font-family04);
  font-size: 30px;
  color: #fff;
  position: relative;
}

.follow_cta span::after {
  content: "|";
  position: absolute;
  left: -15px;
  top: 50%;
  color: #fff;
  width: fit-content;
  font-family: var(--font-family01);
  transform: rotate(-20deg) translateY(-50%);
  font-size: 23px;
}

.follow_cta span::before {
  content: "|";
  position: absolute;
  right: -15px;
  top: 50%;
  color: #fff;
  width: fit-content;
  font-family: var(--font-family01);
  transform: rotate(20deg) translateY(-50%);
  font-size: 23px;
}

.follow_cta .btns {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.follow_cta .btns a {
  display: flex;
  align-items: center;
}

.follow_cta .btns a img {
  width: 100%;
}

/* company */
.sub_company {
  position: relative;
}

.sub_company.bg::after {
  content: "";
  background: linear-gradient(185deg, rgba(247, 188, 211, 1) 50%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60%;
}

.sub_company .section_ttl-box {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}

.sub_company .section_ttl-box .line {
  border-bottom: 1px solid #ffff;
  border-top: 3px solid #fff;
  padding: 5px 0 0;
  width: 100%;
}

.sub_company .section_ttl-box div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-family01);
  color: #fff;
}

.sub_company .section_ttl-box div:nth-child(2) h3 {
  font-size: 26px;
}

.sub_company .section_ttl-box div:nth-child(2) h2 {
  font-size: 50px;
}

.sub_company .inner {
  z-index: 1;
  position: relative;
}

.sub_company .sec01 {
  padding: 0px 3% 30px;
  text-align: center;
}

.sub_company .sec01 .img_txt {
  width: 300px;
  height: 60px;
  margin: 0 auto 50px;
}

.sub_company .sec01 .wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.sub_company .sec01 .wrap .img_box {
  width: 100%;
}

.sub_company .sec01 .wrap .img_box img {
  width: 100%;
}

.sub_company .sec01 .wrap .txt_box {
  width: 100%;
  font-family: var(--font-family01);
  color: rgb(var(--font-color01));
}

.sub_company .sec01 .wrap .txt_box h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

.sub_company .sec01 .wrap .txt_box p {
  font-size: 16px;
  line-height: 35px;
  text-align: start;
}

.sub_company .pink_btn:hover {
  border: 3px double rgb(255, 64, 64);
}

.sub_company .sec02 {
  padding: 60px 3% 80px;
  font-family: var(--font-family01);
  color: rgb(var(--font-color01));
  position: relative;
}

.sub_company .sec02::after {
  content: "";
  background: url(../img/company/color-accent-top.png);
  background-size: contain;
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

.sub_company .sec02::before {
  content: "";
  background: url(../img/company/color-accent-bottom.png);
  background-size: contain;
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sub_company .sec02 .txt_box {
  max-width: 800px;
  margin: 0 auto;
}

.sub_company .sec02 .txt_box h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.sub_company .sec02 .txt_box p {
  font-size: 18px;
  line-height: 35px;
  padding: 0 3%;
}

.sub_company .sec03 {
  padding-top: 30px;
  padding-bottom: 80px;
  position: relative;
}

.sub_company .sec03::after {
  content: "";
  background: linear-gradient(177deg, rgba(247, 188, 211, 1) 50%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 22%;
}

.sub_company .sec03 .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 45px;
  font-family: "Cormorant Garamond", serif;
  color: rgb(var(--font-color01));
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 120px;
  position: relative;
  width: 100%;
  max-width: 600px;
}

.sub_company .sec03 .ttl::after {
  content: "";
  background: url(../img/company/paw_icon01.png) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
}

.sub_company .sec03 .ttl span {
  font-size: 24px;
  font-family: var(--font-family01);
}

.sub_company .sec03 .wrap .card {
  display: flex;
  position: relative;
}

.sub_company .sec03 .wrap .card.paw-icon::after {
  content: "";
  background: url(../img/company/paw_icon02.png) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.sub_company .sec03 .wrap .card.paw-icon.paw-icon2::after {
  right: 0;
  left: unset;
}

.sub_company .sec03 .wrap .card .img_box {
  width: 50%;
  text-align: center;
}

.sub_company .sec03 .wrap .card .img_box img {
  width: 257px;
  border-radius: 100vh;
}

.sub_company .sec03 .wrap .card .txt_box {
  width: 100%;
  color: rgb(var(--font-color02));
  font-family: var(--font-family01);
  font-size: 18px;
}

.sub_company .sec03 .wrap .card .txt_box .name {
  width: fit-content;
  text-align: center;
  margin: 0 auto 40px 0;
}

.sub_company .sec03 .wrap .card.card02 .txt_box .name {
  margin: 0 0 40px auto;
}

.sub_company .sec03 .wrap .card.card02 .txt_box .desc {
  padding-left: 25%;
  max-width: 550px;
}

.sub_company .sec03 .wrap .card.card03 .txt_box .desc {
  padding-left: 20%;
  max-width: 550px;
}

.sub_company .sec03 .wrap .card.card04 .txt_box .name {
  margin: 0 0 40px auto;
}

.sub_company .sec03 .wrap .card.card04 .txt_box .desc {
  padding-left: 25%;
  max-width: 600px;
}

.sub_company .sec03 .wrap .card .txt_box .name h3 {
  font-family: var(--font-family04);
  color: rgb(var(--font-color01));
  font-size: 28px;
  font-weight: 400;
}

.sub_company .sec03 .wrap .card .txt_box .name h2 {
  font-size: 30px;
}

.sub_company .sec03 .wrap .card .txt_box .name h4 {
  font-size: 18px;
}

.sub_company .sec03 .wrap .card .txt_box .desc {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  padding-left: 10%;
}

.sub_company .sec03 .wrap .card .txt_box .desc span {
  border-bottom: dashed 1px;
  padding-right: 3%;
  margin-bottom: 20px;
  font-weight: 600;
}

.sub_company.sec04 {
  padding-bottom: 80px;
}

.sub_company.sec04 .section_ttl-box {
  background-color: rgb(247, 188, 211, 1);
  padding: 50px 3%;
  margin-bottom: 70px;
}

.sub_company.sec04 .section_ttl-box .inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.sub_company.sec04 .section_ttl-box div:nth-child(2) h2 {
  font-size: 38px;
}

.sub_company.sec04 .wrap h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: rgb(var(--font-color01));
  font-family: var(--font-family01);
  width: 100%;
}

.sub_company.sec04 .wrap {
  margin-bottom: 60px;
}

.sub_company.sec04 .wrap .wrap_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.sub_company.sec04 .wrap .wrap_flex .img_box {
  width: 100%;
  text-align: center;
}

.sub_company.sec04 .wrap .wrap_flex .img_box img {
  width: 318px;
  height: 318px;
}

.sub_company.sec04 .wrap .wrap_flex .txt_box {
  width: 100%;
  font-family: var(--font-family01);
  color: rgb(var(--font-color01));
  font-weight: 600;
}

.sub_company.sec04 .wrap .wrap_flex .txt_box h3 {
  display: flex;
  flex-direction: column;
  align-items: self-end;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: 22px;
  text-align: center;
}

.sub_company.sec04 .wrap .wrap_flex .txt_box h3 span {
  color: red;
  font-size: 13px;
}

.sub_company.sec04 .wrap .wrap_flex .txt_box p {
  text-align: start;
  font-size: 18px;
}

.contactbnr {
  background-image: url(../img/contactbnr.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 3%;
  font-weight: 600;
}

.contactbnr .inner {
  overflow: hidden;
}

.contactbnr .wrap {
  background-color: #ffffff8a;
  padding: 30px;
  text-align: center;
  color: rgb(var(--font-color01));
  font-family: var(--font-family01);
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

.contactbnr .wrap.active {
  animation-name: animate-top;
  animation-duration: 1s;
  animation-delay: 250ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes animate-top {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }

  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.contactbnr .wrap h2 {
  font-family: "Fredericka the Great";
  font-size: 40px;
}

.contactbnr .wrap h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.contactbnr .contact_mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 426px;
  height: 60px;
  border-radius: 15px;
  background-color: #ffa8cf;
  color: rgb(var(--font-color01));
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto 30px;
}

.contactbnr .contact_mail span {
  transform: scale(1);
  transition: all 0.5s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contactbnr .contact_mail span:hover {
  transform: scale(1.1);
}

.contactbnr .contact_mail img {
  width: 25px;
}

.contactbnr .contact_tel {
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgb(var(--font-color01));
  margin-bottom: 30px;
}

.contactbnr .contact_tel div {
  background-color: #ffa8cf;
  border-radius: 100vh;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactbnr .contact_tel div img {
  width: 30px;
}

.contactbnr .wrap02 {
  font-size: 18px;
  font-family: var(--font-family01);
  color: #fff;
  line-height: 35px;
}

.sub-service_flow {
  padding-top: 50px;
  padding-bottom: 80px;
}

.sub-service_flow .section-ttl_box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.sub-service_flow .section-ttl_box div {
  width: 100%;
}

.sub-service_flow .section-ttl_box div.line {
  border-bottom: solid 1px rgb(247, 188, 211);
  height: 1px;
  margin-top: 30px;
}

.sub-service_flow .section-ttl_box div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family01);
  color: rgb(var(--font-color01));
}

.sub-service_flow .section-ttl_box div:nth-child(2) h3 {
  font-size: 25px;
}

.sub-service_flow .section-ttl_box div:nth-child(2) h2 {
  font-size: 36px;
}

.sub-service_flow .wrap01 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-service_flow .wrap01 .card {
  width: 250px;
  height: 408px;
  min-height: 408px;
  text-align: center;
  position: relative;
  font-family: var(--font-family01);
  font-weight: 600;
  padding: 50px 1% 20px;
}

.sub-service_flow .wrap01 .card01,
.sub-service_flow .wrap01 .card03 {
  background-color: rgb(247, 187, 210);
  color: #fff;
}

.sub-service_flow .wrap01 .card01 a,
.sub-service_flow .wrap01 .card03 a {
  color: #fff;
}

.sub-service_flow .wrap01 .card02,
.sub-service_flow .wrap01 .card04 {
  background-color: rgb(220, 209, 196);
  color: rgb(var(--font-color01));
}

.sub-service_flow .wrap01 .card02 a,
.sub-service_flow .wrap01 .card04 a {
  color: rgb(var(--font-color01));
}

.sub-service_flow .wrap01 .card h3 {
  position: absolute;
  top: 25px;
  left: 8px;
  transform: rotate(-25deg);
  font-size: 22px;
  font-family: cookhand, ms gothic, ヒラギノ角ゴ pro w3, hiragino kaku gothic pro, osaka, sans-serif;
}

.sub-service_flow .wrap01 .card .img_box {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sub-service_flow .wrap01 .card a {
  border: solid 1px;
  padding: 5px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  width: 100%;
  max-width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  transition: all 0.3s;
}

.sub-service_flow .wrap01 .card a:hover {
  background-color: rgb(160, 82, 34);
  color: #fff;
}

.sub-service_flow .wrap01 .card h2 {
  margin-bottom: 30px;
  font-size: 22px;
}

.sub-service_flow .wrap01 .card h2 span {
  font-size: 16px;
}

.sub-service_flow .wrap01 .card p {
  margin-bottom: 25px;
  font-size: 14px;
  height: 60px;
}

.sub-service_flow .wrap01 .card svg {
  position: absolute;
  bottom: -23px;
  right: -17px;
  transform: rotate(80deg);
  z-index: 1;
}

.sub-service_flow.sec02 .ttl {
  font-size: 28px;
  font-family: var(--font-family01);
  color: rgb(var(--font-color01));
  margin-bottom: 30px;
  text-align: center;
}

.sub-service_flow.sec02 .ttl02 {
  font-size: 20px;
  font-family: var(--font-family01);
  color: rgb(var(--font-color01));
  margin-bottom: 100px;
  text-align: center;
}

.sub-service_flow.sec02 .wrap02 {
  border: solid 5px #f7bbd4;
  padding: 80px 50px 50px;
  position: relative;
  margin-bottom: 200px;
  position: relative;
}

.sub-service_flow.sec02 .wrap02.wrap02-04 {
  margin-bottom: 60px;
}

.sub-service_flow.sec02 .wrap02::after {
  content: "";
  background-image: url(../img/service-flow/step01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 170px;
  height: 104px;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
}

.sub-service_flow.sec02 .wrap02.wrap02-02::after {
  background-image: url(../img/service-flow/step02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sub-service_flow.sec02 .wrap02.wrap02-03::after {
  background-image: url(../img/service-flow/step03.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sub-service_flow.sec02 .wrap02.wrap02-04::after {
  background-image: url(../img/service-flow/step04.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sub-service_flow.sec02 .wrap02 .card h2 {
  text-align: center;
  font-size: 24px;
  color: rgb(var(--font-color01));
  margin-bottom: 30px;
}

.sub-service_flow.sec02 .wrap02.wrap02-02 .card h2,
.sub-service_flow.sec02 .wrap02.wrap02-03 .card h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sub-service_flow.sec02 .wrap02 .card h2 span {
  font-size: 18px;
  font-family: var(--font-family01);
  font-weight: 400;
}

.sub-service_flow.sec02 .wrap02 .card .wrap-flex {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.sub-service_flow.sec02 .wrap02 .card .wrap-flex.sp {
  display: none;
}

.sub-service_flow.sec02 .wrap02 .card .wrap-flex .txt_box {
  width: 100%;
  font-size: 18px;
  color: rgb(var(--font-color01));
  font-family: var(--font-family01);
  line-height: 35px;
}

.sub-service_flow.sec02 .wrap02.wrap02-02 .card .wrap-flex,
.sub-service_flow.sec02 .wrap02.wrap02-03 .card .wrap-flex {
  background: rgb(250, 250, 250);
  padding: 20px;
  filter: drop-shadow(0px 0px 5px #0005);
  position: relative;
}

.sub-service_flow.sec02 .wrap02.wrap02-03 .card .wrap-flex {
  padding: 40px 20px;
}

.sub-service_flow.sec02 .wrap02.wrap02-02 .card .wrap-flex.ribbon::after {
  content: "";
  position: absolute;
  background-image: url(../img/service-flow/ribbon01.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  left: -35px;
  top: -30px;
}

.sub-service_flow.sec02 .wrap02.wrap02-02 .card .wrap-flex .txt_box h3,
.sub-service_flow.sec02 .wrap02.wrap02-03 .card .wrap-flex .txt_box h3 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
  width: fit-content;
  margin: 0 auto 25px;
  padding: 0 30px;
}

.sub-service_flow.sec02 .wrap02.wrap02-02 .card .wrap-flex .txt_box h3::after {
  content: "";
  background-image: url(../img/service-flow/leaf01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 40px;
  height: 40px;
  right: -10px;
  bottom: 3px;
  transform: rotate(80deg);
}

.sub-service_flow.sec02 .wrap02.wrap02-03 .card .wrap-flex .txt_box h3::after {
  content: "";
  background-image: url(../img/service-flow/leaf02.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sub-service_flow.sec02 .wrap02.wrap02-02 .card p,
.sub-service_flow.sec02 .wrap02.wrap02-03 .card p {
  margin-bottom: 20px;
  text-align: start;
}

.sub-service_flow.sec02 .wrap02 .card .wrap-flex .img_box {
  width: 90%;
}

.sub-service_flow.sec02 .wrap02 .card .wrap-flex .img_box img {
  width: 100%;
}

.sub-service_flow.sec02 .wrap02 .card p {
  text-align: center;
  color: rgb(var(--font-color01));
  font-family: var(--font-family01);
  font-size: 18px;
  margin-bottom: 40px;
}

.sub-service_flow.sec02 .wrap02 .card a {
  color: rgb(var(--font-color01));
  font-family: var(--font-family01);
  font-size: 20px;
  font-weight: 600;
  border: solid 1px #3333;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.sub-service_flow.sec02 .wrap02.arrow-down::before {
  content: "";
  position: absolute;
  background-image: url(../img/service-flow/arrow-down.png);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 75px;
  animation-name: arrow-down_animation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.sub-service_flow.sec02 .wrap02.wrap02-02.arrow-down::before {
  animation-name: arrow-down_animation02;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.sub-service_flow.sec02 .wrap02.wrap02-03.arrow-down::before {
  animation-name: arrow-down_animation03;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes arrow-down_animation {
  from {
    bottom: -15%;
  }
  90% {
    bottom: -16%;
  }
  80% {
    bottom: -17%;
  }
  70% {
    bottom: -18%;
  }
  60% {
    bottom: -19%;
  }
  50% {
    bottom: -20%;
  }
  40% {
    bottom: -19%;
  }
  30% {
    bottom: -18%;
  }
  20% {
    bottom: -17%;
  }
  10% {
    bottom: -16%;
  }
  to {
    bottom: -15%;
  }
}

@keyframes arrow-down_animation02 {
  from {
    bottom: -9%;
  }
  90% {
    bottom: -10%;
  }
  80% {
    bottom: -11%;
  }
  70% {
    bottom: -12%;
  }
  60% {
    bottom: -13%;
  }
  50% {
    bottom: -14%;
  }
  40% {
    bottom: -13%;
  }
  30% {
    bottom: -12%;
  }
  20% {
    bottom: -11%;
  }
  10% {
    bottom: -10%;
  }
  to {
    bottom: -9%;
  }
}

@keyframes arrow-down_animation03 {
  from {
    bottom: -8%;
  }
  90% {
    bottom: -9%;
  }
  80% {
    bottom: -10%;
  }
  70% {
    bottom: -11%;
  }
  60% {
    bottom: -12%;
  }
  50% {
    bottom: -13%;
  }
  40% {
    bottom: -12%;
  }
  30% {
    bottom: -11%;
  }
  20% {
    bottom: -10%;
  }
  10% {
    bottom: -9%;
  }
  to {
    bottom: -8%;
  }
}

.sub-service_flow .inner .lower-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sub-service_flow .inner .lower-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--font-color01));
  font-family: var(--font-family01);
  font-size: 18px;
  padding: 10px 20px;
  width: 100%;
  margin: 0 auto;
  border: solid 1px #3333;
  max-width: 350px;
  font-weight: 600;
}

#voice .lower-mv::before {
  content: unset;
}

#voice .sub-voice {
  background-color: #f4f4f4;
}

.sub-voice {
  font-family: var(--font-family01);
  color: rgb(var(--font-color01));
  font-weight: 400;
}

.sub-voice .inner {
  max-width: 800px;
}

.sub-voice .ttl {
  font-size: 60px;
  color: rgb(160, 142, 128);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 55px;
  margin-bottom: 40px;
}

.sub-voice .ttl span {
  font-size: 25px;
  color: rgb(var(--font-color01));
  text-shadow: rgb(0 0 0 / 0%) 0px 4px 5px;
}

.sub-voice h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 60px;
}

.sub-voice .wrap_voice {
  margin-bottom: 50px;
}

.sub-voice .wrap_voice h2 {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  font-family: var(--font-family01);
  line-height: 45px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffffe0;
}

.sub-voice .wrap_voice h2 span:nth-child(2) {
  text-align: end;
}

.sub-voice .wrap_voice .wrap_flex {
  display: flex;
  gap: 20px;
}

.sub-voice .wrap_voice .wrap_flex .img_box {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  width: 30%;
}

.sub-voice .wrap_voice .wrap_flex .img_box img {
  width: fit-content;
  border-radius: 100vh;
  margin: 0 auto;
}

.sub-voice .wrap_voice .wrap_flex .txt_box {
  width: 100%;
}

.sub-voice .wrap_voice .wrap_flex .txt_box p {
  margin-bottom: 20px;
  font-size: 18px;
}

.sub-voice .lower-btn h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}

.sub-voice .lower-btn p {
  text-align: center;
}

.sub-voice .wrap_voice:nth-child(8) h2 {
  font-size: 20px;
}

.sub-voice .wrap_voice:nth-child(8) h2 span:nth-child(2) {
  text-align: start;
}

#common-cases .lower-mv::after {
  content: unset;
}

#common-cases .lower-mv {
  min-height: 538px;
}

.sub-common_cases {
  position: relative;
  padding-top: 20px;
  padding-bottom: 150px;
}

.sub-common_cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url(../img/common-cases/bg-color-accent.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 100% -34%;
}

.sub-common_cases.sec05::before {
  background-position: 100% -14%;
}

.sub-common_cases.sec05::after {
  background-position: 100% -15%;
}

.sub-common_cases::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url(../img/common-cases/bg-color-accent.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 100% -35%;
  transform: rotate(180deg);
}

.sub-common_cases .inner {
  z-index: 1;
  position: relative;
}

#common-cases .lower-mv .txt-box h2 {
  text-transform: unset;
}

#common-cases .ttl {
  font-size: 77px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #e7e5e5;
  font-family: var(--font-family01);
  padding-top: 50px;
}

#common-cases .ttl span {
  font-size: 25px;
  color: rgb(var(--font-color01));
  font-family: var(--font-family02);
  font-weight: 300;
}

.sub-common_cases .case {
  width: 100%;
  max-width: 608px;
  margin: 0 auto 150px;
}

.sub-common_cases .case:nth-last-child(1) {
  margin-bottom: 0;
}

.sub-common_cases .case .img_box {
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto 30px;
}

.sub-common_cases .case .img_box img {
  width: 184px;
  height: 184px;
  border-radius: 100vh;
}

.sub-common_cases .case .img_box span {
  position: absolute;
  top: 25px;
  right: -100px;
  font-family: var(--font-family04);
  font-weight: 100;
  color: rgb(var(--font-color01));
  font-size: 25px;
  transform: rotate(-10deg);
}

.sub-common_cases .case.dachshund .img_box span {
  right: -190px;
}

.sub-common_cases .case.cat .img_box span {
  right: -40px;
}

.sub-common_cases .case .case_name {
  font-size: 25px;
  color: rgb(var(--font-color01));
  font-family: var(--font-family02);
  font-weight: 300;
  text-align: center;
}

.sub-common_cases .case .line {
  height: 10px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.sub-common_cases .case .line::after {
  content: "";
  background: url(../img/common-cases/line.png);
  background-size: contain;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sub-common_cases .case .case_wrap {
  margin-bottom: 50px;
  font-size: 20px;
  color: rgb(var(--font-color01));
  font-family: var(--font-family02);
  font-weight: 300;
  position: relative;
}

.sub-common_cases .case .case_wrap.paw-left::before {
  content: "";
  position: absolute;
  left: -150px;
  top: -25px;
  width: 100px;
  height: 100px;
  background-image: url(../img/common-cases/paw-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sub-common_cases .case .case_wrap.paw-right::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -25px;
  width: 100px;
  height: 100px;
  background-image: url(../img/common-cases/paw-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sub-common_cases .case .case_wrap h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 0 30px;
}

.sub-common_cases .case .case_wrap ul {
  padding: 20px 30px;
}

.sub-common_cases .case .case_wrap.case_a ul {
  background: #fff6db;
}

.sub-common_cases .case .case_wrap.case_b ul {
  background: #ded9d5;
}

.sub-common_cases .case .case_wrap.case_c ul {
  background: #ffecf1;
}

.sub-common_cases .case .case_wrap ul li {
  display: flex;
  margin-bottom: 10px;
  font-size: 17px;
}

.sub-common_cases .case .case_wrap ul .bb_dash {
  border-bottom: dashed 1px #000;
  margin-bottom: 10px;
}

.sub-common_cases .case .case_wrap ul li span:nth-child(1) {
  width: 100%;
}

.sub-common_cases .case .case_wrap ul li span:nth-child(2) {
  width: 20%;
}

.sub-common_cases .case a {
  display: flex;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 3% 0 7%;
  color: rgb(var(--font-color01));
  background-color: #f7bcd3;
  border-radius: 10px;
  border: 3px double #fffdfa;
  font-size: 18px;
  position: relative;
  transform: scale(1);
  transition: all 0.3s;
}

.sub-common_cases .case a span::after {
  content: "";
  background-image: url(../img/common-cases/icon01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.sub-common_cases .case a.mail-icon span:after {
  background-image: url(../img/common-cases/mail-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sub-common_cases .case a span {
  position: relative;
  transition: all 0.3s;
}

.sub-common_cases .case a span:hover {
  transform: scale(1.1);
  color: #f7bcd3;
  font-weight: 600;
}

.sub-common_cases .case a span:hover:after {
  background-image: url(../img/common-cases/icon01-pink.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.sub-common_cases .case a.mail-icon span:hover:after {
  background-image: url(../img/common-cases/mail-icon_pink.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sub-common_cases .case a:hover {
  background-color: #fff;
}

#common-cases .contactbnr {
  position: relative;
}

#common-cases .contactbnr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff9e;
  width: 100%;
  height: 100%;
}

#common-cases .contactbnr .wrap {
  font-family: var(--font-family02);
}

#common-cases .contactbnr .wrap h3 {
  font-weight: 300;
}

#common-cases .contactbnr .contact_mail span {
  font-weight: 300;
}

#common-cases .contactbnr .contact_tel {
  color: #000;
  background-color: #fff;
  border-radius: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 3%;
  margin-bottom: 10px;
  font-weight: 400;
}

#common-cases .contactbnr .wrap02 {
  color: rgb(var(--font-color01));
  font-family: var(--font-family02);
  font-weight: 400;
}

@media screen and (max-width: 1400px) {
  body,
  #top {
    padding-top: 100px;
  }

  .bg_footer {
    background-size: cover;
  }

  .mv .line {
    right: 28.5%;
  }

  .mv {
    min-height: 450px;
  }

  .top_staff .wrap .img_wrap .img_box.img_box01 {
    margin-left: 0;
  }

  .top_staff .wrap .img_wrap .img_box.img_box02 {
    margin-left: 0;
  }

  .top_staff .wrap .img_wrap .img_box.img_box03 {
    margin-left: 50px;
  }

  .top_staff .wrap .img_wrap .img_box.img_box.img_box01 span {
    right: -80px;
    bottom: 30px;
  }

  .top_staff .wrap .img_wrap .img_box.img_box.img_box02 span {
    right: -140px;
    bottom: -20px;
  }

  .top_staff .section_ttl {
    margin: 0 auto;
  }

  .sub-common_cases::before {
    background-position: 100% -15%;
  }

  .sub-common_cases::after {
    background-position: 100% -20%;
  }

  .sub-common_cases.sec05::before {
    background-position: 100% -7%;
  }

  .sub-common_cases.sec05::after {
    background-position: 100% -8%;
  }
}

@media screen and (max-width: 1100px) {
  :root {
    --window-padding: 3%;
    --vertical-window-padding: 60px;
  }

  body,
  #top {
    padding-top: 90px;
  }

  .top_staff .wrap .img_wrap .img_box.img_box.img_box02 span {
    right: -100px;
  }

  .bg_footer {
    background-position: center;
    background-size: cover;
  }

  .mv .scrollmv {
    right: 0;
  }

  .mv .line {
    right: 5.7%;
  }

  .top_section h2::after {
    width: 5%;
    margin-left: 0;
  }

  .top_section h2::before {
    width: 5%;
    margin-right: 0;
  }

  .top_section .section_ttl-box h4 {
    font-size: 40px;
  }

  .top_staff .section_ttl {
    margin: 0 auto 100px;
  }

  .top_information .section_ttl::before,
  .top_information .section_ttl::after {
    width: 15%;
  }

  .top_section .wrap .cta_textbox p {
    font-size: 20px;
  }

  .top_section .wrap .cta_textbox .large_txt {
    font-size: 25px;
  }

  .top_section .about_btn {
    max-width: 800px;
  }

  .top_section .top_sec03 {
    padding-bottom: 50px;
    margin-bottom: 0;
  }

  .sub_company.bg::after {
    height: 35%;
    background: linear-gradient(182deg, rgba(247, 188, 211, 1) 50%, rgba(255, 255, 255, 0) 50%);
  }

  .sub_company .section_ttl-box {
    margin-bottom: 80px;
    gap: 20px;
  }

  .sub_company .section_ttl-box div:nth-child(2) h3 {
    font-size: 18px;
  }

  .sub_company .section_ttl-box div:nth-child(2) h2 {
    font-size: 35px;
  }

  .sub_company .sec01 .img_txt {
    width: 200px;
  }

  .sub_company .sec01 .wrap {
    flex-direction: column;
  }

  .sub-voice .wrap_voice h2 span:nth-child(2) {
    text-align: start;
  }

  .sub-voice .wrap_voice h2 {
    display: unset;
  }

  .sub-voice .wrap_voice .wrap_flex {
    margin-top: 30px;
  }

  .sub-common_cases::before {
    background-position: 100% -10%;
  }

  .sub-common_cases::after {
    background-position: 100% -15%;
  }

  .sub-common_cases.sec05::before {
    background-position: 100% -5%;
  }

  .sub-common_cases.sec05::after {
    background-position: 100% -5%;
  }
}
