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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: normal;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

td,
th {
  vertical-align: middle;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

li {
  list-style: none;
}

body {
  background: #FBF2E8;
  font-family: "Noto Sans JP", sans-serif;
}

.sp-br {
  display: block;
}
@media screen and (min-width: 640px) {
  .sp-br {
    display: none;
  }
}

.pc-br {
  display: none;
}
@media screen and (min-width: 640px) {
  .pc-br {
    display: block;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

p {
  font-size: 1.6rem;
}

.nav-wrap nav {
  position: relative;
}

.service-submenu {
  border: 2px solid #000;
  position: absolute;
  padding-left: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  z-index: 5;
  padding: 2rem;
  top: 45px;
  left: 35%;
}

.service-submenu a {
  display: block;
  margin: 0 0 2rem 0;
  padding: 0 0 2rem 0;
  border-bottom: 1px dashed #E88F75;
}
.service-submenu a:last-child {
  margin: 0;
  border-bottom: 0;
  padding: 0;
}

#h-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 10;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(37, 37, 37, 0.9);
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#h-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#h-nav.panelactive #h-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#h-nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 50%;
  width: 95%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#h-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#h-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#h-nav li {
  text-align: center;
  list-style: none;
  display: block;
  border-bottom: 2px dotted #fff;
}

#h-nav li a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 20px 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 640px) {
  #h-nav li a {
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  display: block;
  position: fixed;
  top: 10px;
  right: 15px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #000;
}
@media screen and (min-width: 1000px) {
  .openbtn1 {
    display: none;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 5px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 80%;
}

.openbtn1 span:nth-of-type(1) {
  top: 13px;
}

.openbtn1 span:nth-of-type(2) {
  top: 24px;
}

.openbtn1 span:nth-of-type(3) {
  top: 35px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 12px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background: #fff;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 12px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background: #fff;
}

.column {
  padding: 4rem 0;
  background: #fff;
  border-bottom: 2px solid #000;
}
@media screen and (min-width: 640px) {
  .column {
    padding: 18rem 0 7rem 0;
    background: #fff;
    border-bottom: 2px solid #000;
  }
}

.column-inner {
  max-width: 1000px;
  padding: 0 1rem;
  margin: 0 auto;
}
.column-inner h2 {
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.3rem;
  font-feature-settings: "palt";
  margin: 2rem 0;
}
.column-inner h2:after {
  content: "";
  display: block;
  background: #000;
  width: 50px;
  height: 3px;
  margin: 3rem auto 0 auto;
}
.column-inner h2 span {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 200px;
  text-align: center;
  font-family: "Montserrat";
  color: #fff;
  background: #000;
  font-size: 2rem;
  padding: 0.5rem 3rem;
}
@media screen and (min-width: 640px) {
  .column-inner {
    max-width: 1000px;
    padding: 0 1rem;
    margin: 0 auto;
  }
  .column-inner h2 {
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 0.3rem;
    font-feature-settings: "palt";
    margin: 4rem 0 3rem 0;
  }
  .column-inner h2:after {
    content: "";
    display: block;
    background: #000;
    width: 50px;
    height: 3px;
    margin: 3rem auto 0 auto;
  }
  .column-inner h2 span {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 200px;
    text-align: center;
    font-family: "Montserrat";
    color: #fff;
    background: #000;
    font-size: 2rem;
    padding: 0.5rem 3rem;
  }
}

.feed-wrap {
  display: block;
  padding: 2rem 0;
}
@media screen and (min-width: 640px) {
  .feed-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 4rem 0;
  }
}

.feed-item {
  width: 100%;
  margin: 0 0 4rem 0;
  display: block;
}
.feed-item:last-child {
  margin: 0;
}
.feed-item img {
  height: 200px;
  object-fit: cover;
  margin: 0 0 1.5rem 0;
}
.feed-item .tag {
  font-size: 1.3rem;
  color: #fff;
  background: #000;
  padding: 0.2rem 2rem;
  border-radius: 50px;
  margin: 0 1rem 0 0;
}
.feed-item p {
  color: #A2A2A2;
  font-size: 1.2rem;
  margin: 1rem 0;
}
.feed-item h3 {
  font-size: 2rem;
}
.feed-item:hover {
  opacity: 0.8;
}
@media screen and (min-width: 640px) {
  .feed-item {
    width: 28%;
    margin: 0 0 0rem 0;
  }
  .feed-item img {
    height: 200px;
    object-fit: cover;
    margin: 0 0 1.5rem 0;
  }
  .feed-item .tag {
    font-size: 1.3rem;
    color: #fff;
    background: #000;
    padding: 0.2rem 2rem;
    border-radius: 50px;
    margin: 0 1rem 0 0;
  }
  .feed-item p {
    color: #A2A2A2;
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  .feed-item h3 {
    font-size: 2rem;
  }
  .feed-item:hover {
    opacity: 0.8;
  }
}

.feed-link {
  color: #fff;
  font-size: 1.6rem;
  background: #000;
  display: block;
  width: 300px;
  text-align: center;
  padding: 1rem;
  border-radius: 60px;
  margin: 4rem auto 0 auto;
  cursor: pointer;
  border: 1px solid #000;
}
.feed-link:hover {
  background: #fff;
  color: #000;
}

.news-feed {
  padding: 7rem 0;
  background: #fff;
  border-top: 3px solid #000;
}

.news-feed-wrap {
  display: block;
  margin: 4rem 0 0 0;
  padding: 4rem 0 0 0;
  border-top: 2px solid #000;
}
@media screen and (min-width: 640px) {
  .news-feed-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 7rem 0 0 0;
    padding: 7rem 0 0 0;
    border-top: 2px solid #000;
  }
}

.news-feed-item a {
  display: block;
  font-size: 1.6rem;
  padding: 2rem 0;
  border-bottom: 2px dotted #A2A2A2;
  letter-spacing: 0.25rem;
}
.news-feed-item a span {
  display: block;
  color: #A2A2A2;
  font-size: 1.4rem;
  margin: 0 0rem 0.5rem 0;
}
.news-feed-item a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 640px) {
  .news-feed-item a {
    display: block;
    font-size: 1.6rem;
    padding: 2rem 0;
    border-bottom: 2px dotted #A2A2A2;
    letter-spacing: 0.25rem;
  }
  .news-feed-item a span {
    display: inline-block;
    color: #A2A2A2;
    font-size: 1.4rem;
    margin: 0 5rem 0 0;
  }
  .news-feed-item a:hover {
    opacity: 0.6;
  }
}

.news-feed-item-wrap {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .news-feed-item-wrap {
    width: 70%;
  }
}

.seemore-btn {
  color: #fff;
  font-size: 1.6rem;
  background: #000;
  margin: 4rem auto 0 auto;
  display: block;
  width: 300px;
  text-align: center;
  padding: 1rem;
  border-radius: 60px;
  float: none;
  cursor: pointer;
  border: 1px solid #000;
}
.seemore-btn:hover {
  background: #fff;
  color: #000;
}
@media screen and (min-width: 640px) {
  .seemore-btn {
    color: #fff;
    font-size: 1.6rem;
    background: #000;
    margin: 4rem 0 0 0;
    display: block;
    width: 300px;
    text-align: center;
    padding: 1rem;
    border-radius: 60px;
    float: right;
    cursor: pointer;
    border: 1px solid #000;
  }
  .seemore-btn:hover {
    background: #fff;
    color: #000;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  border-radius: 30px;
  margin: 2rem 0 4rem 0;
}
@media screen and (min-width: 640px) {
  .pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 4rem 0 0 0;
  }
}

.current {
  font-size: 1.4rem;
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
  pointer-events: none;
  font-weight: bold;
}
@media screen and (min-width: 640px) {
  .current {
    font-size: 1.6rem;
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
    pointer-events: none;
    font-weight: bold;
  }
}

.pagination li {
  display: inline-block;
}

.pagination a {
  font-size: 1.4rem;
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #000;
}
@media screen and (min-width: 640px) {
  .pagination a {
    font-size: 1.6rem;
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000;
  }
}

.pagination a:hover {
  background-color: #000;
  color: #fff;
}

.pagination .active a {
  background-color: #000;
  color: #fff;
  pointer-events: none;
  font-weight: bold;
}

.pagination .disabled a {
  color: #000;
  pointer-events: none;
}

footer {
  background: #E88F75;
  padding: 4rem 0 0 0;
}
@media screen and (min-width: 640px) {
  footer {
    background: #E88F75;
    padding: 7rem 0 0 0;
  }
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-inner img {
  margin: 0 auto;
  width: 84px;
  height: 130px;
  object-fit: contain;
}
@media screen and (min-width: 640px) {
  .footer-inner img {
    margin: 0;
    width: 84px;
    height: 130px;
    object-fit: contain;
  }
}

.footer-wrap {
  display: block;
  padding: 3rem 0 4rem 0;
}
@media screen and (min-width: 640px) {
  .footer-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3rem 0 7rem 0;
  }
}

.footer-text {
  width: 100%;
  margin: 0 0 3rem 0;
}
.footer-text p {
  font-size: 1.4rem;
  line-height: 2.8rem;
  letter-spacing: 0.25rem;
  margin: 0 0 3rem 0;
}
.footer-text ul li a {
  font-size: 1.4rem;
  letter-spacing: 0.25rem;
  font-weight: bold;
}
@media screen and (min-width: 640px) {
  .footer-text {
    width: 50%;
    margin: 0;
  }
  .footer-text p {
    font-size: 1.4rem;
    line-height: 2.8rem;
    letter-spacing: 0.25rem;
    margin: 0 0 3rem 0;
  }
  .footer-text ul li a {
    font-size: 1.4rem;
    letter-spacing: 0.25rem;
    font-weight: bold;
  }
}

.tel-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 2rem 0;
}
.tel-link:before {
  content: "\e0b0";
  font-family: "Material Icons";
  font-size: 2rem;
  margin: 0 1rem 0 0;
}

.mail-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 2rem 0;
}
.mail-link:before {
  content: "\e158";
  font-family: "Material Icons";
  font-size: 2rem;
  margin: 0 1rem 0 0;
}

.insta-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.insta-link:before {
  content: "";
  background: url("../img/instagram-icon.svg") no-repeat;
  background-size: contain;
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 1rem 0 0;
}

.footer-link {
  width: 100%;
}
.footer-link a {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 640px) {
  .footer-link {
    width: 45%;
  }
  .footer-link a {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    margin: 0 0 1rem 0;
  }
}

.allright {
  text-align: center;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  padding: 0.5rem;
}/*# sourceMappingURL=common.css.map */