@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #757e80;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

h1, h2 {
  color: #ffffff;
}

#concept h1,
#information h1,
#trimming h1,
#trimming h2,
#flow h1,
#flow h2,
#access h1,
#access h2,
#contact h1,
#calendar h1,
#attention h2 {
  text-align: center;
}

.container {
  background-color: rgba(255, 255, 255, 0);
  padding: 0 20px;
  border-radius: 3px;
}

#top_img_block_bg {
  padding-top: none;
  display: block;
}

#top_img_block_bg_phone {
  display: none;
}

@media (max-width: 992px) {
  #top_img_block_bg {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  #top_img_block_bg {
    display: none;
  }
  #top_img_block_bg_phone {
    display: block;
  }
  #top_img_block_bg_phone img {
    width: 100%;
    padding-top: 3.7rem;
  }
}
header {
  display: block;
  background-color: transparent;
  padding: 0.5rem;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: background-color 0.3s, opacity 0.3s;
  z-index: 9999;
}

header.fixed-menu {
  position: fixed;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.header_nav {
  text-align: center;
}

.header_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_nav li {
  display: inline-block;
  padding: 0.5rem 1rem;
}

.header_nav li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  width: auto;
  height: 40px;
}

.header_nav li a:hover {
  color: #5cc5ee;
}

.header_nav img {
  width: auto;
  height: 40px;
}

@media (max-width: 992px) {
  header {
    display: none;
  }
}
.header_phone {
  background-color: rgba(117, 126, 128, 0.9176470588);
  position: fixed;
  width: 100%;
  height: 60px;
  padding-top: 0.2rem;
  z-index: 9998;
  display: none;
}

.header_phone img {
  height: 40px;
}

.header_phone_item {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 60px;
  padding: 0 0 10px 0;
  clear: both;
  background-color: rgba(117, 126, 128, 0.9176470588);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

.menu-btn:checked ~ .header_phone_item {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.header_phone_item a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}

.header_phone_item li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .header_phone_item a,
.menu-btn:checked ~ .header_phone_item li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
}

@media (max-width: 992px) {
  .header_phone {
    display: block;
  }
}
.concept_block,
.information_block {
  display: flex;
  color: #ffffff;
  margin-bottom: 2rem;
}

.concept_img_area,
.point_img_area {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.concept_img img {
  width: auto;
  max-width: 400px;
  height: auto;
}

.concept_label {
  text-align: center;
}

.concept_txt p {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 0.9rem;
}

@media (max-width: 575px) {
  .concept_img img {
    width: 100%;
  }
}
.infor_block {
  justify-content: center;
}

.row .info_box {
  background-color: rgba(61, 61, 61, 0.7294117647);
  color: #ffffff;
  width: 100%;
  max-width: 800px;
  height: 250px;
  margin: auto;
}

.info_scroll_bar {
  overflow-x: hidden;
  overflow-y: scroll;
}

.info_scroll_bar::-webkit-scrollbar {
  width: 10px;
}

.info_scroll_bar::-webkit-scrollbar-track {
  background-color: #757e80;
}

.info_scroll_bar::-webkit-scrollbar-thumb {
  background-color: #ffffff;
}

.info_content {
  margin-bottom: 1rem;
}

.info_content .info_title {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  position: relative;
  border-bottom: 2px solid;
}

.info_content .info_title:before {
  position: absolute;
  content: "";
  width: 15%;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #5cc5ee;
}

.info_content .info_date {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.info_content .info_txt {
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .row .info_box {
    height: 280px;
  }
}
@media (max-width: 575px) {
  .row .info_box {
    height: 300px;
  }
}
.point_block {
  display: block;
  color: #ffffff;
  margin-bottom: 2rem;
}

.point_img_area img {
  width: auto;
  max-width: 400px;
  height: auto;
}

.point_label {
  text-align: center;
}

.point_label .point_num {
  color: #5cc5ee;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.point_txt .point_txt_content {
  margin-bottom: 2rem;
}

.point_txt .point_txt_content .point_txt_title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.point_txt p {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.discount {
  color: #ffffff;
  padding: 1rem 2rem;
  border-top: dotted 1px #ffffff;
  border-bottom: dotted 1px #ffffff;
  width: 800px;
  margin: auto auto 1rem auto;
}

.discount .title {
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.menu_block {
  color: #ffffff;
  margin-bottom: 3rem;
}

.menu_content_name {
  text-align: center;
}

.menu_list {
  margin: auto;
  color: #ffffff;
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
}

.menu_list_row .border,
.menu_list .row_border_under {
  border-bottom: 1px solid;
}

.menu_list_row .breed_name,
.menu_list_row .option_name,
.menu_list_row .price_shampoo,
.menu_list_row .price_small {
  border-right: 1px solid;
}

.menu_list_row th,
.menu_list_row td {
  height: auto;
  text-align: center;
  padding: 0.4rem;
}

.menu_list_row .breed_name,
.menu_list_row .option_name {
  width: 48%;
}

.menu_list_row .price_shampoo,
.menu_list_row .price_cut,
.menu_list_row .price_small,
.menu_list_row .price_medium {
  width: 26%;
}

.menu_list_row .nowrap_name {
  white-space: unset;
}

.menu_course {
  color: #ffffff;
  margin: 0 auto 3rem auto;
  border: double 4px #ffffff;
  width: auto;
  max-width: 800px;
}

.menu_course .shampoo_info {
  margin-bottom: 2rem;
  border-bottom: dotted 1px #ffffff;
}

.menu_course .title {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.menu_course ul {
  display: flex !important;
  flex-wrap: wrap;
}

.menu_course ul li {
  padding-right: 0.5rem;
}

.row .option_content_box {
  background-color: rgba(61, 61, 61, 0.7294117647);
  color: #ffffff;
  max-width: 800px;
  margin: auto;
}

@media (max-width: 575px) {
  .point_img_area img {
    max-width: 100%;
  }
  .menu_list_row .breed_name,
  .menu_list_row .option_name {
    width: 34%;
  }
  .menu_list_row .price_shampoo,
  .menu_list_row .price_cut,
  .menu_list_row .price_small,
  .menu_list_row .price_medium {
    width: 33%;
  }
  .menu_list_row .nowrap_name {
    white-space: nowrap;
  }
}
#flow .row {
  width: 80%;
  margin: auto auto 1.5rem auto;
}

@media (max-width: 768px) {
  #flow .row {
    width: 100%;
  }
}
#access iframe {
  width: 100%;
}

#access h2 {
  font-size: 1.4rem;
  font-weight: 400;
}

.access_map_block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.access_info_content table {
  color: #ffffff;
  font-size: base_font_size;
  border-collapse: collapse;
  width: 100%;
}

.access_info_content table .item_type,
.access_info_content table .item {
  padding: 0.5rem;
}

.access_info_content table .border {
  border-bottom: solid 1px #ffffff;
}

.access_info_content table .item_type {
  border-right: solid 1px #ffffff;
  text-align: center;
}

.fluid_box_contact .contact_item {
  max-width: 850px;
  margin: auto;
}

.contact_icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_icon img {
  padding: 1rem;
}

.contact_txt {
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
}

.contact_txt a {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  padding: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-radius: 0.5rem;
}

a.btn-border {
  border: 3px solid #ffffff;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
}

a.btn-border:before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  content: "";
  transition: all 0.3s;
  border: 1px solid #ffffff;
}

a.btn-border:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.row .guide_area {
  background-color: rgba(31, 33, 34, 0.3215686275);
  color: #ffffff;
  max-width: 800px;
  margin: auto;
}

.guide_area .guide_title {
  font-size: 1.5rem;
  text-align: center;
}

.guide_content_box {
  padding: 1rem 1rem 0.5rem;
  position: relative;
  border: 2px solid #ffffff;
}

.guide_content_box .guide_content_title {
  background-color: #596062;
  font-size: 1em;
  font-weight: 800;
  color: #ffffff;
  padding: 0 5px;
  line-height: 1;
  position: absolute;
  top: -5px;
  left: 20px;
}

.calendar_box {
  margin: auto auto 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.display_calendar_pc {
  display: block;
}

.display_calendar_phone {
  display: none;
}

@media (max-width: 992px) {
  .contact_txt a {
    height: 86px;
  }
}
@media (max-width: 768px) {
  .contact_txt a {
    height: auto;
  }
}
@media (max-width: 575px) {
  .display_calendar_pc {
    display: none;
  }
  .display_calendar_phone {
    display: block;
  }
}
.row .attention_area {
  background-color: rgba(31, 33, 34, 0.3215686275);
  color: #ffffff;
  max-width: 800px;
  margin: auto;
}

.attention_area .attention_title {
  font-size: 1.5rem;
  text-align: center;
}

.attention_content_box {
  padding: 1rem;
  position: relative;
  border: 2px solid #ffffff;
}

.attention_content_box .attention_content_title {
  background-color: #596062;
  font-size: 1em;
  font-weight: 800;
  color: #ffffff;
  padding: 0 5px;
  line-height: 1;
  position: absolute;
  top: -5px;
  left: 20px;
}

#footer {
  color: #ffffff;
  text-align: center;
}

.footer_logo img {
  width: 200px;
  height: auto;
  padding: 1rem;
}

.footer_nav ul {
  list-style: none;
  padding: 0;
}

.footer_nav li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer_nav li a:hover {
  color: #5cc5ee;
}

@media (max-width: 768px) {
  .footer_logo img {
    width: 150px;
  }
}
.fluid_box {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 40px;
  z-index: 0;
}

.fluid_box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  filter: brightness(30%);
  z-index: -1;
}

.fluid_box_inner {
  margin: 0 auto;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0);
}

.fluid_box_top_img {
  background-image: url(../img/bg_photo/trimming_bg.jpg?1);
}

.fluid_box_top_img_phone {
  background-image: url(../img/bg_photo/trimming_bg.jpg?1);
  padding: 0 !important;
}

.fluid_box_concept {
  background-image: url(../img/bg_photo/concept_bg.jpg?1);
}

.fluid_box_info {
  background-image: url(../img/bg_photo/shadow.jpg?1);
}

.fluid_box_black {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1f2122;
  padding: 40px;
}

.fluid_box_trimming_photo {
  background-image: url(../img/bg_photo/trimming_bg.jpg?1);
}

.fluid_box_flow {
  background-image: url(../img/bg_photo/white-wall.jpg?1);
}

.fluid_box_flow::before {
  filter: brightness(50%) !important;
}

.fluid_box_access {
  background-image: url(../img/bg_photo/leaf.jpg?1);
}

.fluid_box_contact {
  margin: 0;
  padding: 2em;
  background-image: linear-gradient(0deg, transparent 19px, #949ea0 20px), linear-gradient(90deg, transparent 19px, #949ea0 20px);
  background-size: 20px 20px;
  position: relative;
}

.fluid_box_attention {
  background-image: url(../img/bg_photo/trimming_bg.jpg?1);
}

@media (max-width: 992px) {
  .fluid_box_top_img .container {
    max-width: 900px !important;
  }
}
@media (max-width: 768px) {
  .fluid_box_inner {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .fluid_box {
    padding: 40px 30px;
  }
}
.option_list {
  list-style: none;
  padding-left: 0px;
}

.option_list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.option_list_icon {
  position: absolute;
  left: 0;
  top: 0;
  fill: #ffffff;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-in.show {
  opacity: 1;
}

.flow_area {
  width: auto;
  max-width: 520px;
  margin: auto;
}

.flow_area ul {
  padding: 0;
  margin: auto;
}

.flow_area li {
  list-style-type: none;
}

dd {
  margin-left: 0;
}

.flow {
  padding-left: 120px;
  position: relative;
}

.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.flow li {
  position: relative;
}

.flow li:not(:last-child) {
  margin-bottom: 8vh;
}

.flow li dl {
  padding-left: 4rem;
  position: relative;
  width: 100%;
}

.flow li dl::before,
.flow li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow li dl::before {
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: #5cc5ee;
  border-radius: 50%;
  left: -4px;
}

.flow li dl::after {
  width: 50px;
  border-bottom: 1px dashed #ffffff;
  position: absolute;
  left: 5px;
  margin-top: 12px;
}

.flow li dl dt {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1vh;
  padding: 0.5rem 0;
}

.flow li dl dt .flow_num {
  color: #5cc5ee;
}

.flow li dl dd {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}

.flow li dl dd.flow_img {
  font-size: 12px;
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6b90db", endColorstr="#66d5e9",GradientType=1 );
  top: 0;
  left: 0;
  z-index: 100;
  width: 400px;
  height: 266px;
  background-size: cover;
  background-position: center;
  margin: 0 0 1rem 0;
}

/* 各アイコンの背景画像 */
.flow li .flow_img_1 {
  background-image: url(../img/dog_photo/flow/flow_1.jpg?1);
}

.flow li .flow_img_2 {
  background-image: url(../img/dog_photo/flow/flow_2.jpg?1);
}

.flow li .flow_img_3 {
  background-image: url(../img/dog_photo/flow/flow_3.jpg?1);
}

.flow li .flow_img_4 {
  background-image: url(../img/dog_photo/flow/flow_4.jpg?1);
}

.flow li .flow_img_5 {
  background-image: url(../img/pointcard.jpg?1);
}

@media (max-width: 768px) {
  .flow > li dl dd.flow_img {
    width: 300px;
    height: 200px;
  }
}
@media (max-width: 575px) {
  .flow li dl {
    padding-left: 2rem;
  }
  .flow li dl::after {
    width: 1.4rem;
  }
  .flow li dl dt {
    font-size: 1.4rem;
  }
  .flow li dl dd.flow_img {
    width: 250px;
    height: 170px;
    margin: auto auto 1rem auto;
  }
}
.nowrap {
  white-space: nowrap;
}/*# sourceMappingURL=main-style.css.map */