@charset "UTF-8";
.loading {
  width: 100%;
  height: 100vh;
  background-image: url(/images/background-image/bright.png);
  background-size: 100%;
  background-repeat: repeat;
  position: fixed;
  z-index: 15000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading .loading_contents .top {
  height: 50px;
  display: flex;
}
.loading .loading_contents .top svg {
  transform: rotate(90deg);
  width: 20px;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 15px;
  opacity: 0;
  transition: all 0.3s;
  animation: opa 1s forwards;
}
.loading .loading_contents .top svg:nth-child(2), .loading .loading_contents .top svg:last-child {
  margin-top: auto;
}
.loading .loading_contents .top svg:nth-child(2) {
  animation-delay: 0.3s;
}
.loading .loading_contents .top svg:nth-child(3) {
  animation-delay: 0.6s;
}
.loading .loading_contents .top svg:last-of-type {
  margin-right: 0;
  animation-delay: 0.9s;
}
@keyframes opa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading .loading_contents p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #F3A522;
}

header {
  height: 8.33vw;
  max-height: 120px;
  width: 100%;
  background-image: url(/images/background-image/bright.png);
  background-size: 100%;
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
}
@media (width <= 550px) {
  header {
    background-size: contain;
    height: 60px;
  }
}
header .header_inner {
  width: 94.4%;
  max-width: 94.4%;
  height: 58%;
  max-height: 70px;
  display: flex;
  justify-content: space-between;
}
@media (width <= 550px) {
  header .header_inner {
    height: 66.6%;
  }
}
header .header_inner .header_logo {
  height: 100%;
}
header .header_inner .header_logo a img {
  height: 100%;
}
header .header_inner .hamburger_menu {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #F3A522;
  border-radius: 50%;
  position: relative;
  justify-content: center;
  align-items: center;
  display: none;
  position: relative;
  z-index: 10000;
  cursor: pointer;
}
@media (width <= 550px) {
  header .header_inner .hamburger_menu {
    display: flex;
  }
}
header .header_inner .hamburger_menu span {
  width: 60%;
  height: 2px;
  position: absolute;
  background-color: #FFFDFA;
  border-radius: 1px;
  transition: transform 0.5s, top 0.5s, left 0.5s, opacity 0.5s;
}
header .header_inner .hamburger_menu span:first-of-type {
  top: 20%;
}
header .header_inner .hamburger_menu span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .header_inner .hamburger_menu span:last-of-type {
  bottom: 20%;
}
header .header_inner .open_menu_button span:first-of-type {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .header_inner .open_menu_button span:nth-of-type(2) {
  opacity: 0;
}
header .header_inner .open_menu_button span:last-of-type {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .header_inner .pc-header_right {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 50%;
  max-width: 680px;
}
@media (width <= 550px) {
  header .header_inner .pc-header_right {
    display: none;
    width: auto;
  }
}
header .header_inner .pc-header_right .header_top {
  display: flex;
  justify-content: flex-end;
  min-height: 35.7%;
  max-height: 25px;
  margin-bottom: 5px;
}
header .header_inner .pc-header_right .header_top img {
  height: 100%;
}
header .header_inner .pc-header_right .header_top .facebook_icon {
  margin-left: 10px;
}
header .header_inner .pc-header_right .header_top .inst_icon {
  margin-left: 20px;
}
header .header_inner .pc-header_right .header_top .phone_area {
  background-color: transparent;
  border-radius: 0px;
}
header .header_inner .pc-header_right .header_top .phone_area img {
  margin-right: 8px;
}
header .header_inner .pc-header_right .header_top .phone_area p {
  font-size: 2.5rem;
}
header .header_inner .pc-header_right .header_bottom {
  letter-spacing: 0.1em;
}
header .header_inner .pc-header_right .header_bottom ul {
  display: flex;
  justify-content: space-between;
}
header .header_inner .pc-header_right .header_bottom ul li {
  margin-left: 30px;
  position: relative;
}
header .header_inner .pc-header_right .header_bottom ul li:first-child {
  margin-left: 0;
}
header .header_inner .pc-header_right .header_bottom ul li::after {
  display: inline-block;
  content: "";
  background-image: url(/images/あしらい系/肉球単体.svg);
  width: 18px;
  height: 16px;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  header .header_inner .pc-header_right .header_bottom ul li:hover::after {
    opacity: 1;
  }
}
@media (hover: none) {
  header .header_inner .pc-header_right .header_bottom ul li:active::after {
    transition: all 0s;
    opacity: 1;
  }
}
@media (width <= 550px) {
  header .header_inner .pc-header_right .header_top,
  header .header_inner .pc-header_right .header_bottom {
    display: none;
  }
}

.show {
  animation: down 0.3s forwards;
}
@keyframes down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hide {
  animation: up 0.3s forwards;
}
@keyframes up {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.main_visual {
  background-image: url(/images/background-image/bright.png);
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: 8.33vw;
}
@media (width >= 1440px) {
  .main_visual {
    padding-top: 120px;
  }
}
@media (width <= 550px) {
  .main_visual {
    padding-top: 60px;
    max-width: 100%;
  }
}
.main_visual .k_image_area {
  width: 93%;
  position: relative;
}
@media (width <= 550px) {
  .main_visual .k_image_area {
    width: 95%;
    max-width: 95%;
  }
}
.main_visual .k_image_area .sm_key_img {
  display: none;
}
@media (width <= 550px) {
  .main_visual .k_image_area .sm_key_img {
    display: block;
    width: 100%;
    max-width: 100%;
  }
}
.main_visual .k_image_area .key_img {
  width: 100%;
}
@media (width <= 550px) {
  .main_visual .k_image_area .key_img {
    display: none;
  }
}
.main_visual .k_image_area .main_title {
  width: 37.5%;
  position: absolute;
  left: 40px;
  top: 40%;
}
@media (width <= 550px) {
  .main_visual .k_image_area .main_title {
    margin: 0;
    width: 93%;
    bottom: 25px;
    bottom: 6.5%;
    left: 5px;
    top: auto;
  }
}
.main_visual .k_image_area .main_visual_wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45.5%;
}
@media (width <= 550px) {
  .main_visual .k_image_area .main_visual_wave {
    width: 42.5%;
  }
}

.news {
  padding: 40px 0 120px;
  width: 100%;
  background-image: url(/images/background-image/bright.png);
  background-size: cover;
  position: relative;
}
@media (width <= 550px) {
  .news {
    padding: 20px 0 80px;
  }
}
.news::before {
  content: "";
  width: 190px;
  height: 225px;
  background-image: url(/images/あしらい系/肉球あしらい１.svg);
  background-size: cover;
  position: absolute;
  top: -140px;
  left: 0;
}
@media (width <= 550px) {
  .news::before {
    background-image: url(/images/あしらい系/sm-1.svg);
    width: 63px;
    height: 138px;
    top: 0;
  }
}
.news::after {
  content: "";
  width: 122.5px;
  height: 294px;
  background-image: url(/images/あしらい系/肉球あしらい２.svg);
  background-size: cover;
  position: absolute;
  top: -58px;
  right: 130px;
}
@media (width <= 550px) {
  .news::after {
    background-image: url(/images/あしらい系/sm-2.svg);
    width: 60px;
    height: 30px;
    top: auto;
    bottom: 56px;
    right: 18.25%;
  }
}
.news .news_contents {
  display: flex;
  width: 48.6%;
  height: 150px;
  border-radius: 20px;
  margin: 0 auto;
  background-color: #FFFDFA;
  position: relative;
  box-shadow: 2px 2px 5px rgba(89, 61, 12, 0.05);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s;
}
@media (width <= 550px) {
  .news .news_contents {
    width: 90%;
    height: auto;
    flex-flow: column;
    padding: 5vw;
    z-index: 10;
  }
}
.news .news_contents::before {
  content: "";
  width: 93px;
  height: 120px;
  background-image: url(/images/あしらい系/立ってる猫.svg);
  background-size: cover;
  position: absolute;
  top: 71px;
  left: -93px;
  z-index: 10;
}
@media (width <= 550px) {
  .news .news_contents::before {
    display: none;
  }
}
.news .news_contents .left_news {
  border-right: 1.5px solid #F3EADB;
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 550px) {
  .news .news_contents .left_news {
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
    border-right: none;
    padding-bottom: 15px;
    border-bottom: 1.5px solid #F3EADB;
  }
}
.news .news_contents .left_news .heading {
  margin-bottom: 0px;
}
.news .news_contents .left_news .heading h2 {
  font-size: 2.8rem;
}
.news .news_contents .left_news .heading h2::after {
  height: 2px;
  border-radius: 1px;
}
@media (width <= 550px) {
  .news .news_contents .left_news .heading h2 {
    font-size: 2.4rem;
  }
}
.news .news_contents .left_news .heading .sub_heading p {
  font-size: 1.8rem;
}
@media (width <= 550px) {
  .news .news_contents .left_news .heading .sub_heading p {
    font-size: 1.6rem;
  }
}
.news .news_contents .left_news .heading .sub_heading img {
  width: 18px;
}
@media (width <= 550px) {
  .news .news_contents .left_news .heading .sub_heading img {
    width: 16px;
  }
}
.news .news_contents .left_news .button {
  display: none;
}
@media (width <= 550px) {
  .news .news_contents .left_news .button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 37.5%;
    height: 80%;
  }
}
.news .news_contents .right_news {
  width: 68%;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 550px) {
  .news .news_contents .right_news {
    width: 100%;
    margin-top: 15px;
    font-size: 1.4rem;
  }
}
.news .news_contents .right_news .right_wrap {
  width: 85%;
}
@media (width <= 550px) {
  .news .news_contents .right_news .right_wrap {
    width: 100%;
  }
}
.news .news_contents .right_news .right_wrap ul {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: normal;
}
.news .news_contents .right_news .right_wrap ul li {
  border-bottom: 1.5px dashed #F3EADB;
}
.news .news_contents .right_news .right_wrap ul li:first-child a {
  padding-top: 0;
}
.news .news_contents .right_news .right_wrap ul li a {
  display: flex;
  padding: 10px 0 5px 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .news .news_contents .right_news .right_wrap ul li a:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  .news .news_contents .right_news .right_wrap ul li a:active {
    transition: all 0s;
    opacity: 0.5;
  }
}
.news .news_contents .right_news .right_wrap ul li a p:first-child {
  color: #F3A522;
  margin-right: 60px;
}
@media (width >= 1440px) {
  .news .news_contents .right_news .right_wrap ul li a p:first-child {
    margin-right: 100px;
  }
}
@media (width >= 1920px) {
  .news .news_contents .right_news .right_wrap ul li a p:first-child {
    margin-right: 160px;
  }
}
.news .news_contents_fade_in {
  opacity: 1;
  transform: translateY(0);
}

.schedule {
  background-image: url(/images/background-image/dark.png);
}
.schedule .schedule_wrap .schedule_contents {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents {
    flex-flow: column;
    z-index: 30;
  }
}
.schedule .schedule_wrap .schedule_contents .left {
  width: 50%;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.schedule .schedule_wrap .schedule_contents .left::before {
  content: "";
  width: 69px;
  height: 143px;
  background-image: url(/images/あしらい系/sm-3.svg);
  position: absolute;
  top: -133px;
  right: 20%;
  display: none;
  z-index: -1;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .left::before {
    display: block;
  }
}
.schedule .schedule_wrap .schedule_contents .left img {
  width: 100%;
}
.schedule .schedule_wrap .schedule_contents .left .text {
  margin: 10px 0;
  font-size: 1.4rem;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: normal;
  position: relative;
  z-index: 30;
}
.schedule .schedule_wrap .schedule_contents .left .text p:first-child {
  margin-bottom: 3px;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .left .text p:first-child {
    margin-bottom: 10px;
  }
}
.schedule .schedule_wrap .schedule_contents .left .text .br {
  display: none;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .left .text .br {
    display: block;
  }
}
.schedule .schedule_wrap .schedule_contents .left .phone_area {
  width: 87%;
  max-width: 540px;
  height: 27%;
  max-height: 100px;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .left .phone_area {
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    z-index: 10;
    padding: 0 20px;
    height: 50px;
  }
}
.schedule .schedule_wrap .schedule_contents .left .phone_area img {
  height: 50%;
  margin-right: 15px;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .left .phone_area img {
    margin-right: 10px;
  }
}
.schedule .schedule_wrap .schedule_contents .left .phone_area p {
  font-size: 4.5rem;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .left .phone_area p {
    font-size: 2.8rem;
  }
}
.schedule .schedule_wrap .schedule_contents .right {
  width: 43%;
  position: relative;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .right {
    width: 100%;
  }
}
.schedule .schedule_wrap .schedule_contents .right::before {
  content: "";
  background-image: url(/images/あしらい系/肉球あしらい３.svg);
  background-size: cover;
  width: 173px;
  height: 139px;
  position: absolute;
  top: -150px;
  right: 58px;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .right::before {
    background-image: url(/images/あしらい系/sm-4.svg);
    width: 83px;
    height: 168px;
    top: -166px;
    right: 6.6%;
    z-index: -1;
  }
}
.schedule .schedule_wrap .schedule_contents .right::after {
  content: "";
  background-image: url(/images/あしらい系/肉球あしらい４.svg);
  background-size: cover;
  width: 127px;
  height: 111px;
  position: absolute;
  bottom: -116px;
  right: 56px;
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents .right::after {
    background-image: url(/images/あしらい系/sm-5.svg);
    width: 72px;
    height: 76px;
    bottom: -76px;
    right: 9.7%;
    z-index: -1;
  }
}
.schedule .schedule_wrap .schedule_contents::after {
  content: "";
  background-image: url(/images/あしらい系/歩く猫.svg);
  background-size: cover;
  width: 116px;
  height: 50px;
  position: absolute;
  bottom: -84px;
  left: 0;
  transform: rotate(-2deg);
}
@media (width <= 550px) {
  .schedule .schedule_wrap .schedule_contents::after {
    width: 71px;
    height: 33px;
    bottom: -64px;
    transform: rotate(0deg);
  }
}

.flow {
  background-image: url(/images/background-image/bright.png);
}
.flow .flow_wrap .flow_contents {
  display: flex;
  gap: 0 20px;
  position: relative;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents {
    flex-flow: column;
    gap: 0;
  }
}
.flow .flow_wrap .flow_contents::after {
  content: "";
  background-image: url(/images/あしらい系/走る犬（二匹）.svg);
  background-size: cover;
  width: 179px;
  height: 73px;
  position: absolute;
  bottom: -109px;
  right: 0;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents::after {
    background-image: url(/images/あしらい系/sm-走る犬（二匹）.svg);
    width: 120px;
    height: 46px;
    bottom: -69px;
  }
}
.flow .flow_wrap .flow_contents .card {
  background-color: #FFFDFA;
  box-shadow: 2px 2px 5px rgba(89, 61, 12, 0.05);
  border-radius: 20px;
  text-align: center;
  width: 23.7%;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card {
    width: 100%;
    margin-bottom: 20px;
    padding: 5vw;
  }
  .flow .flow_wrap .flow_contents .card:last-child {
    margin-bottom: 0;
  }
}
.flow .flow_wrap .flow_contents .card .card_contents {
  margin: 12% 8%;
  width: 83%;
  position: relative;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card .card_contents {
    width: 100%;
    margin: 0;
  }
}
.flow .flow_wrap .flow_contents .card .card_contents .icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 8.3%;
  width: -moz-fit-content;
  width: fit-content;
}
.flow .flow_wrap .flow_contents .card .card_contents img {
  width: 61%;
  margin: 0 auto;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card .card_contents img {
    width: 56.4%;
  }
}
.flow .flow_wrap .flow_contents .card .card_contents h3 {
  font-size: 1.8rem;
  margin: 15px 0;
  letter-spacing: 0.15em;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card .card_contents h3 {
    margin: 10px 0 10px;
  }
}
.flow .flow_wrap .flow_contents .card .card_contents p {
  font-size: 1.4rem;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: normal;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card .card_contents p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card .card_contents br {
    display: none;
  }
}
.flow .flow_wrap .flow_contents .card .orange_arrow {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 50px;
  z-index: 100;
  transform: translateY(-50%);
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card .orange_arrow {
    top: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.flow .flow_wrap .flow_contents .flow_card_fade_in {
  opacity: 1;
  transform: translateX(0px);
}
.flow .flow_wrap .flow_contents .card_1 {
  transition-delay: 0s;
}
.flow .flow_wrap .flow_contents .card_2 {
  transition-delay: 0.2s;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card_2 {
    transition-delay: 0s;
  }
}
.flow .flow_wrap .flow_contents .card_3 {
  transition-delay: 0.4s;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card_3 {
    transition-delay: 0s;
  }
}
.flow .flow_wrap .flow_contents .card_4 {
  transition-delay: 0.6s;
}
@media (width <= 550px) {
  .flow .flow_wrap .flow_contents .card_4 {
    transition-delay: 0s;
  }
}

.concept {
  background-image: url(/images/background-image/dark.png);
}
.concept::after {
  content: "";
  background-image: url(/images/あしらい系/sm-歩く猫２.svg);
  background-size: cover;
  width: 62px;
  height: 30px;
  position: absolute;
  bottom: 50px;
  right: 24px;
  display: none;
}
@media (width <= 550px) {
  .concept::after {
    display: block;
  }
}
.concept .concept_wrap {
  position: relative;
}
.concept .concept_wrap::before {
  content: "";
  background-image: url(/images/あしらい系/肉球あしらい５.svg);
  width: 150px;
  height: 139px;
  position: absolute;
  top: -29px;
  right: 231px;
}
@media (width <= 550px) {
  .concept .concept_wrap::before {
    background-image: url(/images/あしらい系/sm-6.svg);
    top: -53px;
    right: 27%;
    width: 101px;
    height: 148px;
  }
}
.concept .concept_wrap::after {
  content: "";
  background-image: url(/images/あしらい系/肉球あしらい６.svg);
  width: 129px;
  height: 123px;
  position: absolute;
  bottom: -109px;
  right: 289px;
}
@media (width <= 550px) {
  .concept .concept_wrap::after {
    display: none;
  }
}
.concept .concept_wrap .concept_contents {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 15;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents {
    flex-flow: column;
  }
}
.concept .concept_wrap .concept_contents::after {
  content: "";
  background-image: url(/images/あしらい系/sm-8.svg);
  background-size: cover;
  width: 96px;
  height: 62px;
  position: absolute;
  bottom: -60px;
  left: 0;
  display: none;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents::after {
    display: block;
  }
}
.concept .concept_wrap .concept_contents .left {
  width: 49%;
  aspect-ratio: 3/2;
  position: relative;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents .left {
    width: 100%;
  }
}
.concept .concept_wrap .concept_contents .left img {
  width: 100%;
}
.concept .concept_wrap .concept_contents .left::after {
  display: none;
  content: "";
  background-image: url(/images/あしらい系/sm-7.svg);
  background-size: cover;
  width: 42px;
  height: 34px;
  position: absolute;
  right: 30%;
  bottom: -27px;
  z-index: -10;
  display: none;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents .left::after {
    display: block;
  }
}
.concept .concept_wrap .concept_contents .note_ring {
  width: -moz-fit-content;
  width: fit-content;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents .note_ring {
    display: none;
  }
}
.concept .concept_wrap .concept_contents .right {
  width: 49%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/images/わたしたちの想い/紙背景２.png);
  background-size: cover;
  border-radius: 20px;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents .right {
    width: 100%;
    margin-top: 20px;
    padding: 5vw;
    border-radius: 13px;
    box-shadow: 2px 2px 5px rgba(89, 61, 12, 0.05);
  }
}
.concept .concept_wrap .concept_contents .right::after {
  content: "";
  height: 40px;
  width: 97px;
  background-image: url(/images/あしらい系/歩く猫２.svg);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 50px;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents .right::after {
    display: none;
  }
}
.concept .concept_wrap .concept_contents .right::before {
  content: "";
  background-image: url(/images/わたしたちの想い/画鋲.svg);
  background-size: cover;
  width: 20px;
  aspect-ratio: 1/1;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents .right::before {
    display: block;
  }
}
.concept .concept_wrap .concept_contents .right .text_area {
  width: 83.7%;
  z-index: 20;
  position: relative;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents .right .text_area {
    width: 100%;
    display: flex;
    margin: 0 auto;
    align-items: center;
    flex-flow: column;
    text-align: center;
  }
}
.concept .concept_wrap .concept_contents .right .text_area .concept_title {
  width: 100%;
}
.concept .concept_wrap .concept_contents .right .text_area p {
  margin-top: 20px;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media (width <= 550px) {
  .concept .concept_wrap .concept_contents .right .text_area p {
    margin-top: 15px;
    line-height: 1.6;
  }
}
.concept .concept_wrap .concept_contents_fade_in {
  opacity: 1;
  transform: translateX(0);
}

.guide {
  background-image: url(/images/background-image/bright.png);
}
.guide .guide_wrap .guide_contents {
  display: flex;
  flex-flow: column;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s;
  }
}
.guide .guide_wrap .guide_contents .top_area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .top_area {
    flex-flow: column;
    margin-bottom: 20px;
  }
}
.guide .guide_wrap .guide_contents .top_area .left {
  width: 49%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .top_area .left {
    width: 100%;
    order: 2;
    opacity: 1;
    transform: translateX(0);
    transition: all 0s;
  }
}
.guide .guide_wrap .guide_contents .top_area .left .carte {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 3.3%;
  background-image: url(/images/background-image/dark.png);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 5px rgba(89, 61, 12, 0.05);
}
.guide .guide_wrap .guide_contents .top_area .left .carte .paper {
  width: 100%;
  height: 100%;
  background-image: url(/images/わたしたちの想い/紙背景２.png);
  background-size: cover;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.guide .guide_wrap .guide_contents .top_area .left .carte .paper::before {
  content: "";
  background-image: url(/images/診察案内/カルテ部品.svg);
  background-size: cover;
  width: 186px;
  height: 23px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .top_area .left .carte .paper::before {
    top: -7px;
    width: 112px;
    height: 14px;
  }
}
.guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area {
  width: 91%;
  text-align: center;
  position: relative;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area {
    width: 93%;
    margin: 20px 0;
  }
}
.guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area img:first-child {
  width: 72.5%;
  margin: 0 auto;
  margin-bottom: 15px;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area img:first-child {
    width: 90%;
  }
}
.guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area .text {
  font-size: 1.5rem;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: normal;
  margin-bottom: 3%;
  line-height: 1.5;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area .text {
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area .two_icons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  z-index: 1;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area .two_icons {
    width: 50px;
  }
}
.guide .guide_wrap .guide_contents .top_area .left .carte .paper .text_area .button {
  position: relative;
  z-index: 10;
}
.guide .guide_wrap .guide_contents .top_area .guide_left_fade_in {
  opacity: 1;
  transform: translateX(0);
}
.guide .guide_wrap .guide_contents .top_area .right {
  width: 49%;
  aspect-ratio: 3/2;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .top_area .right {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0s;
  }
}
.guide .guide_wrap .guide_contents .top_area .guide_right_fade_in {
  opacity: 1;
  transform: translateX(0);
}
.guide .guide_wrap .guide_contents .subject {
  background-color: #FFFDFA;
  box-shadow: 2px 2px 5px rgba(89, 61, 12, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .subject {
    padding: 5vw;
    opacity: 1;
    transform: translateY(0);
    transition: all 0s;
  }
}
.guide .guide_wrap .guide_contents .subject .subject_contents {
  width: 93.5%;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .subject .subject_contents {
    width: 100%;
  }
}
.guide .guide_wrap .guide_contents .subject .subject_contents .subject_title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.guide .guide_wrap .guide_contents .subject .subject_contents .subject_title h3 {
  font-size: 2.2rem;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .subject .subject_contents .subject_title h3 {
    font-size: 1.8rem;
  }
}
.guide .guide_wrap .guide_contents .subject .subject_contents .subject_title img {
  width: 22px;
  transform: rotate(15deg);
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .subject .subject_contents .subject_title img {
    height: 18px;
  }
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap {
  display: flex;
  justify-content: space-between;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap {
    justify-content: normal;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button {
  width: 22.5%;
  position: relative;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button {
    width: 100%;
  }
}
@media (hover: hover) {
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button:hover .overflow::after {
    opacity: 0.2;
  }
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button:hover .overflow img {
    transform: scale(1.2);
  }
}
@media (hover: none) {
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button:active .overflow {
    transition: all 0s;
  }
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button:active .overflow::after {
    opacity: 0.2;
  }
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button:active .overflow img {
    transform: scale(1.2);
  }
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .overflow {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .overflow::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .overflow img {
  width: 100%;
  transition: transform 0.3s;
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .subject_button_wrap {
  width: 77%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  z-index: 30;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .subject_button_wrap {
    width: 87%;
  }
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .subject_button_wrap .subject_icon_area {
  width: 50%;
  aspect-ratio: 1/1;
  background-color: #FFFDFA;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .subject_button_wrap .subject_icon_area img {
  width: 40%;
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .subject_button_wrap .subject_icon_area h4 {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 5px;
}
@media (width <= 550px) {
  .guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .subject_button_wrap .subject_icon_area h4 {
    font-size: 1.4rem;
  }
}
.guide .guide_wrap .guide_contents .subject .subject_contents .button_wrap .subject_button .subject_button_wrap img:last-child {
  margin-top: auto;
  width: 7.5%;
}
.guide .guide_wrap .guide_contents .subject_fade_in {
  opacity: 1;
  transform: translateY(0);
}
.guide .guide_wrap .guide_contents_fade_in {
  opacity: 1;
  transform: translateX(0);
}

.access {
  background-image: url(/images/background-image/dark.png);
  padding-bottom: 140px;
}
@media (width <= 550px) {
  .access {
    padding-bottom: 100px;
  }
}
.access .bottom_wave {
  height: 80px;
  margin-bottom: -20px;
}
.access .sm_bottom_wave {
  height: 60px;
  margin-bottom: -20px;
}
.access .access_wrap {
  position: relative;
}
.access .access_wrap::before {
  content: "";
  background-image: url(/images/あしらい系/肉球あしらい７.svg);
  background-size: cover;
  width: 148px;
  height: 151px;
  position: absolute;
  top: -39px;
  right: 259px;
}
@media (width <= 550px) {
  .access .access_wrap::before {
    background-image: url(/images/あしらい系/sm-9.svg);
    width: 103px;
    height: 145px;
    top: -55px;
    right: 29%;
  }
}
.access .access_wrap::after {
  content: "";
  background-image: url(/images/あしらい系/肉球あしらい８.svg);
  background-size: cover;
  width: 109px;
  height: 91px;
  position: absolute;
  bottom: -85px;
  left: 357px;
}
@media (width <= 550px) {
  .access .access_wrap::after {
    background-image: url(/images/あしらい系/sm-10.svg);
    width: 57px;
    height: 63px;
    bottom: -63px;
    left: 24%;
  }
}
.access .access_wrap .access_contents {
  background-color: #FFFDFA;
  padding: 3.2%;
  border-radius: 20px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents {
    padding: 5vw;
  }
}
.access .access_wrap .access_contents .contents_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents .contents_wrap {
    flex-flow: column;
  }
}
.access .access_wrap .access_contents .contents_wrap .left {
  width: 45%;
  clear: both;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents .contents_wrap .left {
    width: 100%;
    order: 2;
  }
}
.access .access_wrap .access_contents .contents_wrap .left .exterior_img {
  margin-bottom: 30px;
  width: 100%;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents .contents_wrap .left .exterior_img {
    margin-bottom: 20px;
  }
}
.access .access_wrap .access_contents .contents_wrap .left .info .info_text_area {
  display: flex;
  border-bottom: 1.5px dashed #593D0C;
  position: relative;
  margin-top: 15px;
  padding-bottom: 5px;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents .contents_wrap .left .info .info_text_area {
    margin-top: 10px;
    padding-bottom: 10px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.access .access_wrap .access_contents .contents_wrap .left .info .info_text_area:first-child {
  margin-top: 0;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents .contents_wrap .left .info .info_text_area:nth-child(2) {
    height: 53px;
    align-items: center;
  }
}
.access .access_wrap .access_contents .contents_wrap .left .info .info_text_area p .sm-br {
  display: none;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents .contents_wrap .left .info .info_text_area p .sm-br {
    display: block;
  }
}
.access .access_wrap .access_contents .contents_wrap .left .info .info_text_area p:last-child {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: normal;
  position: absolute;
  letter-spacing: 0.15em;
  left: 35%;
}
.access .access_wrap .access_contents .contents_wrap .left .info .button {
  margin: 20px auto 0;
  position: relative;
}
.access .access_wrap .access_contents .contents_wrap .left .info .button .cat {
  position: absolute;
  width: 85px;
  bottom: 0;
  left: -85px;
  pointer-events: none;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents .contents_wrap .left .info .button .cat {
    width: auto;
    height: 80%;
    left: -64px;
  }
}
.access .access_wrap .access_contents .contents_wrap .right {
  width: 50%;
}
@media (width <= 550px) {
  .access .access_wrap .access_contents .contents_wrap .right {
    width: 100%;
    order: 1;
    aspect-ratio: 1/1;
    margin-bottom: 20px;
  }
}
.access .access_wrap .access_contents .contents_wrap .right iframe {
  border-radius: 20px;
  display: block;
}
.access .access_wrap .access_fade_in {
  opacity: 1;
  transform: translateX(0);
}

footer {
  background-image: url(/images/background-image/bright.png);
  background-size: cover !important;
  position: relative;
}
@media (width <= 550px) {
  footer {
    background-size: contain !important;
  }
}
footer .footer_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px !important;
}
@media (width <= 550px) {
  footer .footer_wrap {
    flex-flow: column;
    position: relative;
  }
}
footer .footer_wrap .left {
  min-width: 45.6%;
  margin-right: 30px;
}
@media (width <= 550px) {
  footer .footer_wrap .left {
    margin-right: 0;
  }
}
footer .footer_wrap .left .footer_logo {
  width: 71.5%;
  margin-bottom: 10px;
}
@media (width <= 550px) {
  footer .footer_wrap .left .footer_logo {
    width: 83%;
  }
}
footer .footer_wrap .left .sns_icon {
  display: flex;
}
footer .footer_wrap .left .sns_icon img {
  width: 25px;
  margin-right: 10px;
}
footer .footer_wrap .footer_nav,
footer .footer_wrap .sm_footer_nav {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-weight: normal;
}
footer .footer_wrap .footer_nav ul,
footer .footer_wrap .sm_footer_nav ul {
  font-size: 0;
  line-height: 0;
  margin-right: 10px;
}
footer .footer_wrap .footer_nav ul:last-child,
footer .footer_wrap .sm_footer_nav ul:last-child {
  margin-right: 0;
}
footer .footer_wrap .footer_nav ul li,
footer .footer_wrap .sm_footer_nav ul li {
  font-size: 1.6rem;
  line-height: normal;
  padding: 0;
  margin-bottom: 20px;
}
footer .footer_wrap .footer_nav ul li:last-child,
footer .footer_wrap .sm_footer_nav ul li:last-child {
  margin-bottom: 0;
}
footer .footer_wrap .footer_nav ul li a,
footer .footer_wrap .sm_footer_nav ul li a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: opacity 0.3s;
}
footer .footer_wrap .footer_nav ul li a::before,
footer .footer_wrap .sm_footer_nav ul li a::before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #F322A0;
  border-radius: 50%;
  display: block;
  margin-right: 5px;
}
@media (hover: hover) {
  footer .footer_wrap .footer_nav ul li a:hover,
  footer .footer_wrap .sm_footer_nav ul li a:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  footer .footer_wrap .footer_nav ul li a:active,
  footer .footer_wrap .sm_footer_nav ul li a:active {
    opacity: 0.5;
    transition: all 0s;
  }
}
footer .footer_wrap .footer_nav {
  max-width: 550px;
}
@media (width <= 550px) {
  footer .footer_wrap .footer_nav {
    display: none;
  }
}
footer .footer_wrap .sm_footer_nav {
  display: none;
}
@media (width <= 550px) {
  footer .footer_wrap .sm_footer_nav {
    display: flex;
    margin-top: 0;
  }
}
footer .footer_wrap .right {
  max-width: 40%;
  margin-left: 20px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media (width <= 550px) {
  footer .footer_wrap .right {
    max-width: 100%;
    margin: 20px 0;
  }
}
footer .footer_wrap .right img {
  width: 100%;
  max-height: 135px;
}
footer .footer_wrap .right .text {
  margin: 5px 0;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: normal;
}
@media (width <= 550px) {
  footer .footer_wrap .right .text {
    margin: 10px 0;
  }
}
footer .footer_wrap .right .text p {
  font-size: 1.2rem;
  text-align: right;
}
footer .footer_wrap .right .text p:first-child {
  line-height: 1.6;
}
@media (width <= 550px) {
  footer .footer_wrap .right .text p:first-child {
    margin-bottom: 10px;
  }
}
@media (width <= 550px) {
  footer .footer_wrap .right .text p {
    font-size: 1.4rem;
    text-align: left;
  }
}
footer .footer_wrap .right .text .br {
  display: none;
}
@media (width <= 550px) {
  footer .footer_wrap .right .text .br {
    display: block;
  }
}
footer .footer_wrap .right .phone_area {
  margin-left: auto;
  width: 70%;
  height: 100%;
}
@media (width <= 550px) {
  footer .footer_wrap .right .phone_area {
    margin-left: 0;
    margin-right: auto;
    width: auto;
    padding: 0 20px;
    height: 55px;
  }
}
footer .footer_wrap .right .phone_area img {
  margin-right: 10px;
}
footer .footer_wrap .right .phone_area p {
  font-size: 3rem;
}
@media (width <= 550px) {
  footer .footer_wrap .right .phone_area p {
    font-size: 2.8rem;
  }
}
footer .footer_wrap .top_page_button {
  margin-left: auto;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #F3A522;
  color: #FFFDFA;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 65px;
  right: 20px;
  cursor: pointer;
  animation: top_button 1.5s infinite;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  footer .footer_wrap .top_page_button:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  footer .footer_wrap .top_page_button:active {
    transition: all 0s;
    opacity: 0.5;
  }
}
@keyframes top_button {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (width <= 550px) {
  footer .footer_wrap .top_page_button {
    width: 50px;
    right: 0px;
    bottom: -40px;
  }
}
footer .footer_wrap .top_page_button a {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_wrap .top_page_button a .top_wrap img {
  margin: 0 auto;
}
footer .footer_wrap .top_page_button a .top_wrap p {
  padding-top: 5px;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media (width <= 550px) {
  footer .footer_wrap .top_page_button a .top_wrap p {
    padding-top: 3px;
    font-size: 1.6rem;
  }
}
footer .copy_white {
  background-color: #F3A522;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
}
footer .copy_white small {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: normal;
  color: #FFFDFA;
  font-size: 1.2rem;
}

.modal {
  position: fixed;
  z-index: 1500;
  top: 0;
  right: -120%;
  width: 100%;
  padding: 80px 0 30px;
  height: 100vh;
  z-index: 999;
  background-color: #FFFDFA;
  transition: all 0.5s;
}
.modal .accordion_menu {
  width: 94.4%;
  margin: 0 auto;
}
.modal .accordion_menu a {
  display: flex;
  align-items: center;
  height: 50px;
  border-bottom: 1px solid #F3EADB;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .modal .accordion_menu a p:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  .modal .accordion_menu a p:active {
    transition: all 0s;
    opacity: 0.5;
  }
}
.modal .accordion_menu .main_menu {
  width: 100%;
  height: 50px;
  color: #593D0C;
}
.modal .accordion_menu .open_button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.modal .accordion_menu .open_button svg {
  transition: transform 0.3s;
  transform: rotate(180deg);
}
.modal .accordion_menu .open_button .main_open {
  transform: rotate(0deg);
}
.modal .accordion_menu .sub_menu {
  display: none;
}
.modal .accordion_menu .sub_menu p {
  padding-left: 20px;
  font-weight: normal;
}

.modal_active {
  right: 0;
}

html {
  font-size: 10px;
  letter-spacing: 0.05em;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 600;
  color: #593D0C;
  scroll-behavior: smooth;
}
html body {
  font-size: 1.6rem;
  width: 100%;
}
html body .facebook_icon,
html body .inst_icon {
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  html body .facebook_icon:hover,
  html body .inst_icon:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  html body .facebook_icon:active,
  html body .inst_icon:active {
    transition: all 0s;
    opacity: 0.5;
  }
}
html body .phone_area {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFDFA;
  border-radius: 20px;
}
html body .phone_area img {
  height: 50%;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
html body .phone_area p {
  line-height: 1;
  letter-spacing: 0.15em;
}
html body footer,
html body section {
  background-size: contain;
  background-size: 100%;
  background-repeat: repeat;
}
html body footer .inner,
html body section .inner {
  width: 86%;
  margin: 0 auto;
}
@media (width <= 550px) {
  html body footer .inner,
  html body section .inner {
    width: 90%;
  }
}
html body section {
  padding-bottom: 160px;
  position: relative;
}
@media (width <= 550px) {
  html body section {
    padding-bottom: 120px;
  }
}
html body section .heading {
  margin-bottom: 40px;
}
@media (width <= 550px) {
  html body section .heading {
    margin-bottom: 30px;
  }
}
html body section .heading h2 {
  color: #F322A0;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (width <= 550px) {
  html body section .heading h2 {
    font-size: 2.8rem;
  }
}
html body section .heading h2::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #F322A0;
  border-radius: 1.5px;
  position: absolute;
  bottom: 0;
  left: 0;
}
html body section .heading .sub_heading {
  display: flex;
  align-items: center;
  font-size: 2rem;
  letter-spacing: 0.15em;
}
@media (width <= 550px) {
  html body section .heading .sub_heading {
    font-size: 1.8rem;
  }
}
html body section .heading .sub_heading img {
  width: 20px;
  transform: rotate(15deg);
}
@media (width <= 550px) {
  html body section .heading .sub_heading img {
    width: 18px;
  }
}
html body section .button {
  background-color: #FFFDFA;
  border: 2px solid #F3A522;
  border-radius: 29px;
  width: 49%;
  font-size: 2rem;
  margin: 0 auto;
  transition: background-color 0.3s;
}
@media (width <= 550px) {
  html body section .button {
    width: 200px;
    height: 50px;
    border: 1.5px solid #F3A522;
    font-weight: normal;
  }
}
@media (hover: hover) {
  html body section .button:hover {
    background-color: #F3A522;
  }
  html body section .button:hover p {
    color: #FFFDFA;
  }
  html body section .button:hover svg path {
    fill: #FFFDFA;
  }
}
@media (hover: none) {
  html body section .button:active {
    background-color: #F3A522;
    transition: all 0s;
  }
  html body section .button:active p {
    color: #FFFDFA;
  }
  html body section .button:active svg path {
    fill: #FFFDFA;
  }
}
html body section .button a {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body section .button a p {
  color: #F3A522;
  margin-right: 10px;
  font-size: 1.6rem;
  padding: 0.75em 0;
  transition: color 0.3s;
}
html body section .button a svg path {
  transition: fill 0.3s;
}
html body section .wave {
  height: 80px;
  width: 100%;
}
@media (width <= 550px) {
  html body section .wave {
    height: 60px;
    width: 100%;
  }
}
html body section .bottom_wave {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (width <= 550px) {
  html body section .bottom_wave {
    display: none;
  }
}
html body section .sm_bottom_wave {
  display: none;
}
@media (width <= 550px) {
  html body section .sm_bottom_wave {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
html body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
html body a {
  text-decoration: none;
}
html .overflow_hidden {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */