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

body {
  color: #000;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "游ゴシック", "Noto Sans CJK JP", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  line-height: 1.75;
  font-size: 15px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.5;
  margin-top: 0;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}

p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
}

a:hover {
  opacity: 0.7;
}

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

@media (max-width: 768px) {
  .forpc {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .forsp {
    display: none !important;
  }
}
.innerwidth {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .innerwidth {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
  }
}
.linkbttn {
  text-align: center;
  margin-top: 55px;
  padding-left: 35px;
}
.linkbttn span {
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  font-size: 16px;
  position: relative;
  font-weight: 500;
}

.linkbttn span::before {
  position: absolute;
  content: "";
  background: url(../images/common/morebttn-icon.png) no-repeat center/contain;
  width: 50px;
  height: 50px;
  top: -10px;
  left: -60px;
}

@media (max-width: 768px) {
  .linkbttn span {
    font-size: 15px;
  }
  .linkbttn span::before {
    position: absolute;
    content: "";
    background: url(../images/common/morebttn-icon.png) no-repeat center/contain;
    width: 40px;
    height: 40px;
    top: -10px;
    left: -50px;
  }
}
.notfound {
  font-weight: 600;
  font-size: 20px;
  margin: 100px auto;
  max-width: 350px;
}

.futura {
  font-family: "FUTURA";
}

li {
  list-style: none;
}

.fadeIn {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.fadeIn.on {
  transform: translateY(0);
  opacity: 1;
}

.fade-out {
  animation: fadeOut 0.4s ease-in-out 0.5s 1 normal forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#header {
  display: flex;
  height: 120px;
}
#header .header__menu {
  display: flex;
  max-width: 620px;
  margin-right: 150px;
  margin-left: auto;
  margin-top: 45px;
  padding-left: 0px;
  z-index: 3;
}
#header .header__menu li {
  margin-right: 30px;
  font-weight: 500;
}

.header__fixbar {
  z-index: 2;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 25px 5vw;
  /*background: rgba(255, 255, 255, 0.5);*/
}
.header__fixbar .header__fixbar-logo a img {
  width: 100px;
}
.header__fixbar .header__fixbar-menubttn {
  cursor: pointer;
}
.header__fixbar .header__fixbar-menubttn img {
  width: 40px;
}
.header__fixbar .header__fixbar-menubttn.fade-out {
  animation: fadeOut 2s forwards;
}

.header__nav {
  position: fixed;
  z-index: 4;
  top: 0;
  right: -120%;
  width: 40%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  transition: all 1s;
}
.header__nav .header__nav-bttn {
  width: 40px;
  margin-left: auto;
  margin-right: 65px;
  padding: 30px 0;
  cursor: pointer;
}
.header__nav .header__nav-menu {
  font-size: 18px;
  max-width: 250px;
  margin: 30px auto;
  font-weight: 500;
}
.header__nav .header__nav-menu li {
  margin-bottom: 32px;
}
.header__nav .header__nav-access {
  font-size: 18px;
  font-weight: 500;
  max-width: 250px;
  margin: 75px auto;
  padding-left: 40px;
}
.header__nav .header__nav-access .header__nav-access-underline {
  border-bottom: 1px solid #000;
}
.header__nav .header__nav-sns {
  margin: 55px auto;
  width: 250px;
  padding-left: 40px;
}
.header__nav .header__nav-sns a img {
  width: 50px;
}

.header__nav.panelactive {
  right: 0;
}

@media (max-width: 768px) {
  #header {
    height: 70px;
  }
  .header__fixbar {
    padding: 20px 5vw;
    width: 100%;
  }
  .header__fixbar .header__fixbar-logo a img {
    width: 60px;
  }
  .header__fixbar .header__fixbar-menubttn img {
    width: 30px;
  }
  .header__nav {
    width: 100%;
  }
  .header__nav .header__nav-bttn {
    width: 30px;
    padding: 20px 0;
    margin-right: 20px;
  }
  .header__nav .header__nav-menu {
    max-width: 250px;
    margin: 65px auto;
  }
  .header__nav .header__nav-menu li {
    margin-bottom: 30px;
  }
  .header__nav .header__nav-sns {
    margin: 50px auto;
    padding-left: 40px;
  }
  .header__nav .header__nav-sns a img {
    width: 35px;
  }
}
/*ヒーロー*/
.hero .hero__img {
  overflow: hidden;
  border-radius: 10px;
}
.hero .hero__img img {
  width: 100%;
  height: auto;
  animation: zoom 5s ease-in-out forwards;
}
@keyframes zoom {
  100% {
    transform: scale(1.1);
  }
}
.hero .hero__concept {
  margin: 85px auto 95px;
  text-align: center;
}
.hero .hero__concept h1 {
  font-size: 24px;
}
.hero .hero__concept p {
  margin-top: 70px;
  letter-spacing: 1.2px;
  line-height: 2.5;
}

@media (max-width: 768px) {
  .hero {
    margin: 10px auto;
  }
  .hero .hero__concept {
    margin: 45px auto 30px;
  }
  .hero .hero__concept h1 {
    font-size: 20px;
  }
  .hero .hero__concept p {
    text-align: left;
    margin-top: 0;
    letter-spacing: 1px;
    line-height: 2;
  }
}
/*ご挨拶*/
.greeting {
  height: 770px;
  border-radius: 10px;
  background: url(../images/top/pc_greeting.jpg) no-repeat center/cover;
}
.greeting .greeting-txt h2 {
  text-align: center;
  padding-top: 60px;
  letter-spacing: 1.2px;
  font-size: 24px;
}
.greeting .greeting-txt p {
  padding-top: 50px;
  width: 400px;
  margin-right: 50vw;
  margin-left: auto;
  font-size: 15px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .greeting {
    height: auto;
    background: none;
  }
  .greeting .greeting__img img {
    border-radius: 10px;
  }
  .greeting .greeting-txt h2 {
    text-align: center;
    padding-top: 40px;
    letter-spacing: 1.2px;
    font-size: 20px;
  }
  .greeting .greeting-txt p {
    padding-top: 35px;
    width: 100%;
    font-size: 14px;
  }
}
/*歯みがき*/
.teethbrushing h2 {
  margin: 115px auto 90px;
  text-align: center;
  letter-spacing: 1.2px;
  font-size: 24px;
}
.teethbrushing .teethbrushing__box {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
}
.teethbrushing .teethbrushing__box .teethbrushing__box-img {
  width: 460px;
  height: 353px;
}
.teethbrushing .teethbrushing__box .teethbrushing__box-img img {
  border-radius: 10px;
}
.teethbrushing .teethbrushing__box p {
  width: 430px;
  margin-left: 40px;
  margin-top: 20px;
}
.teethbrushing .teethbrushing__box:last-child {
  justify-content: flex-end;
  margin-top: 30px;
}
.teethbrushing .teethbrushing__box:last-child .teethbrushing__box-img {
  order: 2;
}
.teethbrushing .teethbrushing__box:last-child p {
  margin-left: 0;
  margin-right: 40px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .teethbrushing h2 {
    margin: 80px auto 50px;
    text-align: center;
    padding-top: 40px;
    letter-spacing: 1.2px;
    font-size: 20px;
  }
  .teethbrushing .teethbrushing__box {
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
  }
  .teethbrushing .teethbrushing__box .teethbrushing__box-img {
    width: 100%;
    height: inherit;
  }
  .teethbrushing .teethbrushing__box .teethbrushing__box-img img {
    border-radius: 10px;
  }
  .teethbrushing .teethbrushing__box p {
    width: 100%;
    margin-left: 0px;
    margin-top: 20px;
    margin-right: 0;
  }
  .teethbrushing .teethbrushing__box:last-child {
    justify-content: center;
  }
  .teethbrushing .teethbrushing__box:last-child .teethbrushing__box-img {
    order: inherit;
  }
  .teethbrushing .teethbrushing__box:last-child p {
    margin-right: 0;
  }
}
/*グルーミング*/
.grooming .grooming__title {
  text-align: center;
  margin: 115px auto 90px;
}
.grooming .grooming__title h3 {
  letter-spacing: 1.2px;
  font-size: 24px;
  margin-bottom: 0;
}
.grooming .grooming__title .futura {
  position: relative;
}
.grooming .futura::after {
  position: absolute;
  content: "";
  top: 0;
  left: 45vw;
  background: linear-gradient(to bottom, #000, #000 3px, transparent 3px, transparent 4px) repeat-y left top/2px 10px;
  padding: 70px;
  margin: 40px 0;
}
.grooming .grooming__box {
  margin-top: 170px;
}
.grooming .grooming__box .grooming__box-item {
  display: flex;
}
.grooming .grooming__box .grooming__box-item .grooming__box-item-img img {
  width: 590px;
  border-radius: 10px;
}
.grooming .grooming__box .grooming__box-item .grooming__box-item-txt {
  width: 360px;
  margin-left: 40px;
}
.grooming .grooming__box .grooming__box-item:last-child {
  margin-top: -100px;
  justify-content: flex-end;
}
.grooming .grooming__box .grooming__box-item:last-child .grooming__box-item-img {
  order: 2;
}
.grooming .grooming__box .grooming__box-item:last-child .grooming__box-item-img img {
  width: 590px;
  border-radius: 10px;
}
.grooming .grooming__box .grooming__box-item:last-child .grooming__box-item-txt {
  margin-top: 150px;
  margin-left: 0;
  margin-right: 50px;
}

@media (max-width: 768px) {
  .grooming .grooming__title {
    text-align: center;
    margin: 80px auto 80px;
  }
  .grooming .grooming__title h3 {
    font-size: 20px;
  }
  .grooming .grooming__title .futura {
    font-size: 14px;
  }
  .grooming .futura::after {
    padding: 30px;
  }
  .grooming .grooming__box {
    margin-top: 35px;
  }
  .grooming .grooming__box .grooming__box-item {
    flex-direction: column;
  }
  .grooming .grooming__box .grooming__box-item .grooming__box-item-img img {
    width: 100%;
  }
  .grooming .grooming__box .grooming__box-item .grooming__box-item-txt {
    width: 100%;
    margin-left: 0px;
    margin-top: 20px;
  }
  .grooming .grooming__box .grooming__box-item:last-child {
    margin-top: 5px;
    justify-content: center;
  }
  .grooming .grooming__box .grooming__box-item:last-child .grooming__box-item-img {
    margin-top: 40px;
    order: inherit;
  }
  .grooming .grooming__box .grooming__box-item:last-child .grooming__box-item-img img {
    width: 100%;
    border-radius: 10px;
  }
  .grooming .grooming__box .grooming__box-item:last-child .grooming__box-item-txt {
    margin-top: 20px;
  }
}
/*ホテル*/
.hotel .hotel__title {
  text-align: center;
  margin: 115px auto 90px;
}
.hotel .hotel__title h3 {
  letter-spacing: 1.2px;
  font-size: 24px;
  margin-bottom: 0;
}
.hotel .hotel__title .futura {
  position: relative;
}
.hotel .hotel__title .futura::after {
  position: absolute;
  content: "";
  top: 0;
  left: 45vw;
  background: linear-gradient(to bottom, #000, #000 3px, transparent 3px, transparent 4px) repeat-y left top/2px 10px;
  padding: 70px;
  margin: 40px 0;
}
.hotel .hotel__txt {
  margin-top: 170px;
  height: 800px;
  background: url(../images/top/pc_hotel.jpg) no-repeat center/cover;
  border-radius: 10px;
}
.hotel .hotel__txt .hotel__txt-flex {
  display: flex;
  justify-content: space-evenly;
  padding-top: 45px;
}
.hotel .hotel__txt .hotel__txt-flex .hotel__txt-flex-item {
  width: 350px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1.2px;
}
.hotel .hotel__txt .hotel__text-linkbttn {
  margin-top: 400px;
  color: #fff;
  text-align: center;
}
.hotel .hotel__txt .hotel__text-linkbttn span {
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  font-size: 16px;
  position: relative;
}
.hotel .hotel__txt .hotel__text-linkbttn span::before {
  position: absolute;
  content: "";
  background: url(../images/common/morebttn-whicon.png) no-repeat center/contain;
  width: 50px;
  height: 50px;
  top: -10px;
  left: -60px;
}

@media (max-width: 768px) {
  .hotel .hotel__title {
    text-align: center;
    margin: 80px auto 80px;
  }
  .hotel .hotel__title h3 {
    font-size: 20px;
  }
  .hotel .hotel__title .futura {
    font-size: 14px;
  }
  .hotel .hotel__title .futura::after {
    padding: 30px;
  }
  .hotel .hotel__txt {
    margin-top: 0px;
    height: auto;
    background: none;
    border-radius: 10px;
  }
  .hotel .hotel__txt .hotel__txt-flex {
    flex-direction: column;
    justify-content: center;
    padding-top: 0px;
  }
  .hotel .hotel__txt .hotel__txt-flex .hotel__txt-flex-item {
    width: 100%;
    color: #000;
    font-size: 16px;
    letter-spacing: 1.2px;
  }
  .hotel .hotel__txt .hotel__txt-flex .hotel__txt-img {
    margin: 20px 0;
  }
  .hotel .hotel__txt .hotel__txt-flex .hotel__txt-img img {
    border-radius: 10px;
    width: 100%;
    height: auto;
  }
}
/*新着情報*/
.news {
  margin-top: 135px;
}
.news h3 {
  text-align: center;
  letter-spacing: 1.2px;
  font-size: 24px;
  margin-bottom: 0;
}
.news .news__box a .news__box-item {
  display: flex;
  width: 680px;
  margin: 10px auto;
  border-bottom: 2px solid #000;
}
.news .news__box a .news__box-item date {
  font-size: 18px;
  margin: 30px;
}
.news .news__box a .news__box-item p {
  border-left: 3px solid #000;
  font-size: 18px;
  margin: 30px;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .news {
    text-align: center;
    margin: 80px auto 80px;
  }
  .news h3 {
    font-size: 20px;
  }
  .news .news__box a .news__box-item {
    flex-direction: column;
    text-align: left;
    width: 100%;
    margin: 10px auto;
    border-bottom: 2px solid #000;
  }
  .news .news__box a .news__box-item date {
    font-size: 14px;
    margin: 10px;
  }
  .news .news__box a .news__box-item p {
    border-left: 3px solid #000;
    font-size: 14px;
    margin: 10px;
    padding-left: 10px;
    margin-top: 0;
  }
}
/*SNS*/
.sns {
  margin-top: 135px;
}
.sns h3 {
  text-align: center;
  letter-spacing: 1.2px;
  font-size: 24px;
  margin-bottom: 0;
}
.sns .sns__box {
  margin: 50px 20vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.sns .sns__box .sns__box-item {
  width: 15vw;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .sns {
    text-align: center;
    margin: 80px auto 80px;
  }
  .sns h3 {
    font-size: 20px;
  }
  .sns .sns__box {
    margin: 50px 0;
  }
  .sns .sns__box .sns__box-item {
    width: 38%;
  }
}
#footer {
  background-color: #000;
  margin-top: 130px;
  padding-bottom: 25px;
}
#footer div a .footer__logo {
  width: 280px;
  margin: 0px auto;
  padding-top: 25px;
}
#footer address {
  color: #fff;
  font-style: normal;
  margin-top: 25px;
  text-align: center;
  letter-spacing: 1.2px;
}
#footer .telnum {
  margin: 0 auto;
  position: relative;
  width: 150px;
  padding-left: 20px;
  text-align: center;
}
#footer .telnum a {
  color: #fff;
  font-style: normal;
  letter-spacing: 1.2px;
}
#footer .telnum::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/tel-whbg.png) no-repeat center/contain;
  top: 5px;
  left: 0;
}
#footer p {
  text-align: center;
  margin-top: 10px;
}
#footer p a {
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 5px;
}
#footer ul {
  width: 550px;
  margin: 50px auto;
  display: flex;
  justify-content: space-evenly;
}
#footer ul li a {
  color: #fff;
  letter-spacing: 1.2px;
}
#footer .footer__pp {
  text-align: center;
}

#footer .footer__pp small {
  color: #fff;
}
#footer .footer__pp a {
  color: #fff;
}
#footer .footer__copy {
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  #footer {
    margin-top: 70px;
  }
  #footer div a .footer__logo {
    width: 220px;
    padding-top: 35px;
  }
  #footer ul {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }
  #footer ul li {
    margin-bottom: 10px;
  }
  #footer .footer__copy {
    padding-bottom: 0;
  }
}
@media (min-width: 769px) {
  .telnum {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.hotelhero h1 {
  overflow: hidden;
  border-radius: 10px;
}
.hotelhero h1 img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hotelhero {
    margin: 10px auto;
  }
}
.howto {
  margin-top: 95px;
}
.howto .howto__title {
  max-width: 340px;
  margin: 0 auto;
}
.howto .howto__box {
  max-width: 1090px;
  margin: 110px auto;
}
.howto .howto__box .howto__box-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.howto .howto__box .howto__box-item .howto__box-item-img {
  max-width: 680px;
  width: 45%;
}
.howto .howto__box .howto__box-item .howto__box-item-img img {
  border-radius: 10px;
}
.howto .howto__box .howto__box-item .howto__box-item-txt {
  max-width: 410px;
  padding-left: 40px;
}
.howto .howto__box .howto__box-item .howto__box-item-img:last-child {
  order: 1;
}
.howto .howto__box .howto__box-item:first-child {
  margin-bottom: 82px;
}
.howto .howto__box .howto__box-item:first-child .howto__box-item-img {
  order: 2;
}
.howto .howto__box .howto__box-item:first-child .howto__box-item-txt {
  padding-left: 0;
}
.howto .howto__add {
  margin-top: 85px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  text-align: center;
}
.howto .howto__add .howto__add-box {
  max-width: 300px;
  margin: 0 50px;
}
.howto .howto__add .howto__add-box .howto__add-box-illust {
  margin: 30px auto;
}
.howto .howto__add .howto__add-box .howto__add-box-txt {
  max-width: 300px;
}
.howto .howto__add .howto__add-box:first-child .howto__add-box-illust {
  max-width: 130px;
}

@media (max-width: 768px) {
  .howto {
    margin-top: 60px;
  }
  .howto .howto__title {
    max-width: 265px;
  }
  .howto .howto__box {
    max-width: 100vw;
    margin: 45px auto;
  }
  .howto .howto__box .howto__box-item {
    flex-direction: column;
    align-items: center;
  }
  .howto .howto__box .howto__box-item .howto__box-item-img {
    max-width: 310px;
    width: 100%;
  }
  .howto .howto__box .howto__box-item .howto__box-item-txt {
    max-width: 310px;
    padding-left: 0px;
    padding-top: 20px;
  }
  .howto .howto__box .howto__box-item:first-child {
    margin-bottom: 35px;
  }
  .howto .howto__box .howto__box-item:first-child .howto__box-item-img {
    order: 1;
  }
  .howto .howto__box .howto__box-item:first-child .howto__box-item-txt {
    padding-left: 0;
    order: 1;
  }
  .howto .howto__add {
    margin-top: 45px;
    flex-direction: column;
    align-items: center;
  }
  .howto .howto__add .howto__add-box {
    max-width: 185px;
  }
  .howto .howto__add .howto__add-box .howto__add-box-illust {
    margin: 30px auto;
  }
  .howto .howto__add .howto__add-box .howto__add-box-txt {
    max-width: 300px;
  }
  .howto .howto__add .howto__add-box:first-child .howto__add-box-illust {
    max-width: 90px;
  }
}
.hotelprice {
  margin-top: 95px;
}
.hotelprice .hotelprice__title {
  max-width: 340px;
  margin: 0 auto;
}
.hotelprice .hotelprice__table {
  margin-top: 95px;
}
.hotelprice .hotelprice__table .hotelprice__table-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-align: center;
}
.hotelprice .hotelprice__table .hotelprice__table-price {
  max-width: 580px;
  margin: 35px auto;
  border-collapse: collapse;
}
.hotelprice .hotelprice__table .hotelprice__table-price tr td {
  max-width: 285px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  padding: 25px 85px;
}
.hotelprice .hotelprice__table .hotelprice__table-price tr:nth-child(odd) {
  background-color: #f5f5f5;
}
.hotelprice .hotelprice__table .hotelprice__table-line {
  background-color: #fff;
  border-top: 2px dotted #000;
  width: 20vw;
  margin-bottom: 50px;
  margin-top: 50px;
}
.hotelprice .hotelprice__notice {
  max-width: 580px;
  margin: 25px auto;
}
.hotelprice .hotelprice__notice li {
  padding-left: 30px;
  position: relative;
}
.hotelprice .hotelprice__notice li::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 15px;
}
.hotelprice .hotelprice__time {
  max-width: 580px;
  margin: 25px auto;
  padding-left: 40px;
}
.hotelprice .hotelprice__time .hotelprice__time-bold {
  padding-left: 15px;
  font-weight: 600;
  font-size: 18px;
}
.hotelprice .hotelprice__time .hotelprice__time-thin {
  padding-left: 15px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .hotelprice {
    margin-top: 60px;
  }
  .hotelprice .hotelprice__title {
    max-width: 265px;
  }
  .hotelprice .hotelprice__table {
    margin-top: 45px;
  }
  .hotelprice .hotelprice__table .hotelprice__table-title {
    font-size: 16px;
  }
  .hotelprice .hotelprice__table .hotelprice__table-price {
    max-width: 310px;
    margin: 30px auto 0;
  }
  .hotelprice .hotelprice__table .hotelprice__table-price tr td {
    width: 50vw;
    max-width: 310px;
    font-size: 16px;
    text-align: center;
    padding: 20px 0;
  }
  .hotelprice .hotelprice__notice {
    max-width: 300px;
    padding-left: 0;
  }
  .hotelprice .hotelprice__notice li {
    padding-left: 15px;
  }
  .hotelprice .hotelprice__notice li::before {
    left: 0px;
  }
  .hotelprice .hotelprice__time {
    max-width: 300px;
    padding-left: 0px;
  }
  .hotelprice .hotelprice__time .hotelprice__time-bold {
    padding-left: 0px;
    font-size: 16px;
  }
  .hotelprice .hotelprice__time .hotelprice__time-thin {
    padding-left: 0px;
    font-size: 16px;
  }
}
.hotelnotice {
  margin-top: 95px;
}
.hotelnotice .hotelnotice__title {
  max-width: 340px;
  margin: 0 auto;
}
.hotelnotice .hotelnotice__txt {
  margin: 95px auto;
  max-width: 850px;
}
.hotelnotice .hotelnotice__txt li {
  font-size: 16px;
  line-height: 2;
  position: relative;
  padding-left: 15px;
}
.hotelnotice .hotelnotice__txt li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/hotel/notice-arrow.png) no-repeat center/contain;
  top: 10px;
  left: 0;
}

@media (max-width: 768px) {
  .hotelnotice {
    margin-top: 60px;
  }
  .hotelnotice .hotelnotice__title {
    max-width: 265px;
  }
  .hotelnotice .hotelnotice__txt {
    margin: 25px auto;
    max-width: 300px;
    padding-left: 0;
  }
  .hotelnotice .hotelnotice__txt li {
    font-size: 14px;
    padding-left: 15px;
  }
}
.groominghero h1 {
  overflow: hidden;
  border-radius: 10px;
}
.groominghero h1 img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .groominghero {
    margin: 10px auto;
  }
}
.shampoo {
  margin-top: 95px;
}
.shampoo .shampoo__title {
  max-width: 340px;
  margin: 0 auto;
}
.shampoo .shampoo__intro {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.shampoo .shampoo__intro .shampoo__intro-img {
  max-width: 435px;
  width: 50vw;
}
.shampoo .shampoo__intro .shampoo__intro-txtbox {
  max-width: 505px;
  width: 50vw;
  margin-left: 35px;
  overflow: hidden;
}
.shampoo .shampoo__intro .shampoo__intro-txtbox .shampoo__intro-txtbox-space {
  width: 1px;
  height: 100%;
  clear: both;
}
.shampoo .shampoo__intro .shampoo__intro-txtbox .shampoo__intro-txtbox-illust {
  clear: both;
  float: right;
  margin: 10px 0 0 10px;
  width: 170px;
  height: 170px;
}
.shampoo .shampoo__intro .shampoo__intro-txtbox .shampoo__intro-txtbox-txt {
  letter-spacing: 1.2px;
  font-weight: 500;
}
.shampoo .shampoo__merit {
  margin: 85px auto 40px;
}
.shampoo .shampoo__merit .shampoo__merit-title {
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: #000;
  border-radius: 30px;
  padding: 15px 30px;
  width: 300px;
  margin: 40px auto;
  letter-spacing: 1.2px;
}
.shampoo .shampoo__merit .shampoo__merit-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: flex-start;
}
.shampoo .shampoo__merit .shampoo__merit-box .shampoo__merit-boxitem {
  display: flex;
  flex-direction: column;
  width: 25vw;
}
.shampoo .shampoo__merit .shampoo__merit-box .shampoo__merit-boxitem .shampoo__merit-box-num {
  font-family: "FUTURA";
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
  font-size: 18px;
}
.shampoo .shampoo__merit .shampoo__merit-box .shampoo__merit-boxitem .shampoo__merit-box-bold {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0;
  letter-spacing: 1.2px;
}
.shampoo .shampoo__merit .shampoo__merit-box .shampoo__merit-boxitem .shampoo__merit-box-txt {
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .shampoo {
    margin-top: 60px;
  }
  .shampoo .shampoo__title {
    max-width: 265px;
  }
  .shampoo .shampoo__intro {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
  }
  .shampoo .shampoo__intro .shampoo__intro-img {
    max-width: 310px;
    width: 100vw;
  }
  .shampoo .shampoo__intro .shampoo__intro-txtbox {
    max-width: 310px;
    width: 100vw;
    margin-left: 0px;
    overflow: hidden;
  }
  .shampoo .shampoo__intro .shampoo__intro-txtbox .shampoo__intro-txtbox-space {
    width: 0px;
    height: 0;
    clear: none;
  }
  .shampoo .shampoo__intro .shampoo__intro-txtbox .shampoo__intro-txtbox-illust {
    clear: none;
    float: none;
    margin: 30px auto;
    width: 155px;
    height: 155px;
  }
  .shampoo .shampoo__merit {
    margin: 35px auto;
  }
  .shampoo .shampoo__merit .shampoo__merit-title {
    max-width: 265px;
  }
  .shampoo .shampoo__merit .shampoo__merit-box {
    flex-direction: column;
    align-items: center;
  }
  .shampoo .shampoo__merit .shampoo__merit-box .shampoo__merit-boxitem {
    width: 100%;
  }
}
.teethbrush {
  margin-top: 95px;
}
.teethbrush .teethbrush__title {
  max-width: 340px;
  margin: 0 auto;
}
.teethbrush .teethbrush__intro {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.teethbrush .teethbrush__intro .teethbrush__intro-img {
  max-width: 435px;
  width: 50vw;
}
.teethbrush .teethbrush__intro .teethbrush__intro-txtbox {
  max-width: 505px;
  width: 50vw;
  margin-left: 35px;
  overflow: hidden;
}
.teethbrush .teethbrush__intro .teethbrush__intro-txtbox .teethbrush__intro-txtbox-space {
  width: 1px;
  height: 100%;
  clear: both;
}
.teethbrush .teethbrush__intro .teethbrush__intro-txtbox .teethbrush__intro-txtbox-illust {
  clear: both;
  float: right;
  margin: 10px 0 0 10px;
  width: 170px;
  height: 170px;
}
.teethbrush .teethbrush__intro .teethbrush__intro-txtbox .teethbrush__intro-txtbox-txt {
  letter-spacing: 1.2px;
  font-weight: 500;
}
.teethbrush .teethbrush__merit {
  margin: 85px auto 40px;
}
.teethbrush .teethbrush__merit .teethbrush__merit-title {
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: #000;
  border-radius: 30px;
  padding: 15px 30px;
  width: 300px;
  margin: 40px auto;
  letter-spacing: 1.2px;
}
.teethbrush .teethbrush__merit .teethbrush__merit-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: flex-start;
}
.teethbrush .teethbrush__merit .teethbrush__merit-box .teethbrush__merit-boxitem {
  display: flex;
  flex-direction: column;
  width: 25vw;
}
.teethbrush .teethbrush__merit .teethbrush__merit-box .teethbrush__merit-boxitem .teethbrush__merit-box-num {
  font-family: "FUTURA";
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
  font-size: 18px;
}
.teethbrush .teethbrush__merit .teethbrush__merit-box .teethbrush__merit-boxitem .teethbrush__merit-box-bold {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0;
  letter-spacing: 1.2px;
}
.teethbrush .teethbrush__merit .teethbrush__merit-box .teethbrush__merit-boxitem .teethbrush__merit-box-txt {
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .teethbrush {
    margin-top: 60px;
  }
  .teethbrush .teethbrush__title {
    max-width: 265px;
    margin: 0 auto;
  }
  .teethbrush .teethbrush__intro {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
  }
  .teethbrush .teethbrush__intro .teethbrush__intro-img {
    max-width: 310px;
    width: 100vw;
  }
  .teethbrush .teethbrush__intro .teethbrush__intro-txtbox {
    max-width: 310px;
    width: 100vw;
    margin-left: 0px;
    overflow: hidden;
  }
  .teethbrush .teethbrush__intro .teethbrush__intro-txtbox .teethbrush__intro-txtbox-space {
    width: 0px;
    height: 0;
    clear: none;
  }
  .teethbrush .teethbrush__intro .teethbrush__intro-txtbox .teethbrush__intro-txtbox-illust {
    clear: none;
    float: none;
    margin: 30px auto;
    width: 155px;
    height: 155px;
  }
  .teethbrush .teethbrush__intro .teethbrush__intro-txtbox .teethbrush__intro-txtbox-txt {
    letter-spacing: 1.2px;
    font-weight: 500;
  }
  .teethbrush .teethbrush__merit {
    margin: 35px auto;
  }
  .teethbrush .teethbrush__merit .teethbrush__merit-title {
    max-width: 265px;
  }
  .teethbrush .teethbrush__merit .teethbrush__merit-box {
    flex-direction: column;
    align-items: center;
  }
  .teethbrush .teethbrush__merit .teethbrush__merit-box .teethbrush__merit-boxitem {
    width: 100%;
  }
}
.groomingprice {
  margin-top: 95px;
}
.groomingprice h2 {
  max-width: 340px;
  margin: 0 auto;
}
.groomingprice .groomingprice__mainmenu1 {
  margin-top: 55px;
}
.groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  max-width: 360px;
  margin: 55px auto;
  padding-left: 60px;
  text-align: center;
}
.groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-subtxt {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 18px;
  text-align: center;
}
.groomingprice .groomingprice__mainmenu1 .groomingtable {
  overflow-y: auto;
  height: 470px;
  width: 730px;
  -webkit-overflow-scrolling: touch;
  margin: 40px auto;
}
.groomingprice .groomingprice__mainmenu1 .groomingtable table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.groomingprice .groomingprice__mainmenu1 .groomingtable table thead tr th {
  vertical-align: middle;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  position: sticky;
  top: 0;
  left: 0;
  border-top: none;
  background-color: #f5f5f5;
}
.groomingprice .groomingprice__mainmenu1 .groomingtable table tbody tr th {
  vertical-align: middle;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}
.groomingprice .groomingprice__mainmenu1 .groomingtable table tbody tr td {
  vertical-align: middle;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}
.groomingprice .groomingprice__mainmenu1 .groomingtable table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
.groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-notice {
  width: 730px;
  margin: 35px auto;
}
.groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-notice li {
  letter-spacing: 1px;
  line-height: 1.8;
  position: relative;
}
.groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-notice li::before {
  position: absolute;
  content: "※";
  top: 0;
  left: -20px;
}
.groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/grooming/scissors.png) no-repeat center/contain;
  top: 0;
  left: 0;
}
.groomingprice .groomingprice__mainmenu2 {
  margin-top: 55px;
  background-color: #f5f5f5;
  padding: 50px 0;
}
.groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  max-width: 300px;
  margin: 55px auto;
  padding-left: 60px;
  text-align: center;
  position: relative;
}
.groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/grooming/comb.png) no-repeat center/contain;
  top: 0;
  left: 0;
}
.groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-other {
  width: 700px;
  margin: 0 auto;
  font-weight: 600;
}
.groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-other .groomingprice__mainmenu2-other-title {
  font-size: 18px;
  letter-spacing: 1.2px;
  background-color: #000;
  border-radius: 20px;
  width: 260px;
  padding: 10px 0px;
  text-align: center;
  color: #fff;
}
.groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-other .groomingprice__mainmenu2-other-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
.groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-other .groomingprice__mainmenu2-other-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  margin: 15px;
}
.groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-other .groomingprice__mainmenu2-other-list li::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/grooming/nikukyu.png) no-repeat center/contain;
  top: 0;
  left: 0;
}
.groomingprice .groomingprice__mainmenu3 {
  width: 700px;
  margin: 55px auto;
}
.groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  max-width: 280px;
  margin: 55px auto;
  padding-left: 60px;
  text-align: center;
  position: relative;
}
.groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/grooming/bottle.png) no-repeat center/contain;
  top: 0;
  left: 0;
}
.groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-option {
  padding-left: 0;
}
.groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-option li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  margin: 15px;
  font-weight: 500;
}
.groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-option li::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/grooming/bone.png) no-repeat center/contain;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .groomingprice {
    margin-top: 60px;
  }
  .groomingprice h2 {
    max-width: 265px;
    margin: 0 auto;
  }
  .groomingprice .groomingprice__mainmenu1 {
    margin-top: 30px;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-title {
    position: relative;
    max-width: 300px;
    margin: 60px auto 30px;
    padding-left: 0px;
    text-align: center;
    font-size: 16px;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-subtxt {
    font-size: 16px;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable {
    height: 400px;
    width: 300px;
    margin: 40px auto;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable table thead tr th {
    font-size: 12px;
    background-color: #f5f5f5;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable table thead tr .fix0 {
    z-index: 1;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable table tbody tr {
    border: 1px solid #f5f5f5;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable table tbody tr th {
    font-size: 12px;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable table tbody tr .sticky {
    position: sticky;
    top: 0;
    left: 0;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable table tbody tr td {
    font-size: 12px;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable table tbody tr:nth-child(even) {
    background-color: unset;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingtable table tbody .fix1 {
    background-color: #fff;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-notice {
    width: 100%;
    max-width: 300px;
    margin: 35px auto;
    padding-left: 10px;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-notice li {
    letter-spacing: 0px;
  }
  .groomingprice .groomingprice__mainmenu1 .groomingprice__mainmenu1-title::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: url(../images/grooming/scissors.png) no-repeat center/contain;
    top: -25px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .groomingprice .groomingprice__mainmenu2 {
    margin-top: 30px;
    background-color: #f5f5f5;
    padding: 30px 0;
    border-radius: 10px;
  }
  .groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-title {
    font-size: 16px;
    margin: 55px auto;
    padding-left: 0;
  }
  .groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-title::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: url(../images/grooming/comb.png) no-repeat center/contain;
    top: -25px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-other {
    width: 300px;
    margin: 0 auto;
    font-weight: 600;
  }
  .groomingprice .groomingprice__mainmenu2 .groomingprice__mainmenu2-other .groomingprice__mainmenu2-other-title {
    font-size: 16px;
    margin: 0 auto;
  }
  .groomingprice .groomingprice__mainmenu3 {
    margin-top: 30px;
    padding: 30px 0;
    width: 300px;
  }
  .groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-title {
    font-size: 16px;
    max-width: 300px;
    margin: 55px auto;
    padding-left: 0;
  }
  .groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-title::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: url(../images/grooming/bottle.png) no-repeat center/contain;
    top: -25px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-option {
    padding-left: 0;
  }
  .groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-option li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    margin: 15px;
    font-weight: 500;
  }
  .groomingprice .groomingprice__mainmenu3 .groomingprice__mainmenu3-option li::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/grooming/bone.png) no-repeat center/contain;
    top: 0;
    left: 0;
  }
}
.contact {
  margin-top: 95px;
}
.contact .contact__title {
  font-size: 20px;
  text-align: center;
}
.contact .contact__box {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  margin: 50px;
}
.contact .contact__box .contact__box-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact .contact__box .contact__box-item .contact__box-item-txt {
  font-weight: 600;
  font-size: 18px;
}
.contact .contact__box .contact__box-item a .contact__box-item-logo {
  width: 100px;
  margin: 10px auto;
}
.contact .contact__box .contact__box-item a .contact__box-item-bttn {
  text-align: center;
  margin-top: 30px;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .contact {
    margin-top: 60px;
  }
  .contact .contact__title {
    font-size: 18px;
    text-align: left;
  }
  .contact .contact__box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
  }
  .contact .contact__box .contact__box-item {
    margin-top: 40px;
  }
  .contact .contact__box .contact__box-item .contact__box-item-txt {
    font-size: 16px;
  }
  .contact .contact__box .contact__box-item a .contact__box-item-logo {
    width: 80px;
  }
  .contact .contact__box .contact__box-item a .contact__box-item-bttn {
    text-align: center;
    margin-top: 30px;
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .telephonenumber {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.post .post__title {
  margin: 50px auto;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post .post__title .post__title-title {
  font-size: 18px;
  font-weight: 600;
}
.post .post__title .post__title-date {
  font-weight: 600;
  padding-left: 20px;
  border-left: 3px solid #000;
}
.post .post__text {
  max-width: 700px;
  margin: 20px auto;
}
.post .post__page {
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}
.post .post__page .post__page-previous {
  font-weight: 500;
}
.post .post__page .post__page-next {
  font-weight: 500;
}

@media (max-width: 768px) {
  .post .post__title {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100vw;
  }
  .post .post__text {
    max-width: 100vw;
  }
  .post .post__page {
    max-width: 100vw;
    flex-direction: column;
  }
  .post .post__page .post__page-previous {
    text-align: left;
  }
  .post .post__page .post__page-next {
    text-align: right;
  }
}
.conetnts .contents-header {
  max-width: 250px;
  text-align: center;
  margin: 50px auto;
}
.conetnts .contents-header .contents-header__title {
  font-size: 20px;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.conetnts .contents-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  max-width: 80vw;
  margin: 0 auto;
}
.conetnts .contents-body .entry {
  max-width: 25vw;
}
.conetnts .contents-body .entry .entry__inner .entry__inner-img a img {
  width: 30vw;
  height: auto;
  border-radius: 20px;
}
.conetnts .contents-body .entry .entry__text .entry__time time {
  font-size: 14px;
  font-weight: 500;
}
.conetnts .contents-body .entry .entry__text .entry__ttl {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .conetnts .contents-body {
    display: block;
  }
  .conetnts .contents-body .entry {
    max-width: 80vw;
  }
  .conetnts .contents-body .entry .entry__inner {
    display: flex;
    height: 120px;
  }
  .conetnts .contents-body .entry .entry__inner .entry__inner-img {
    max-width: 100px;
    text-align: center;
  }
  .conetnts .contents-body .entry .entry__inner .entry__inner-img a img {
    width: 100%;
    border-radius: 10px;
  }
  .conetnts .contents-body .entry .entry__text {
    max-width: 60vw;
    margin-left: 20px;
  }
  .conetnts .contents-body .entry .entry__text .entry__time time {
    font-size: 14px;
    font-weight: 500;
  }
  .conetnts .contents-body .entry .entry__text .entry__ttl {
    font-size: 16px;
    font-weight: 600;
  }
}

/*# sourceMappingURL=style.css.map */
