@charset "UTF-8";
/* CSS Document */
/* ▼header*/
.header-area {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 1000;
  display: flex;
  padding: 0 2%;
}
.header_top-title {
  width: 70%;
  height: auto;
  display: flex;
  place-items: center;
}
.header_top-logo img {
  opacity: 0.7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header_top-title p {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #fff;
}
@media(min-width:770px) {
  .header-top-title p {
    font-size: 1.4rem;
  }
  .header-area {
    width: 100%;
    height: 80px;
  }
}
/* ▲header*/
/*▼top-img*/
.top-img-area {
  width: 100%;
  height: 100vh;
}
.img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.img-01, .img-02, .img-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.img-01 {
  background-image: url("../img/sp-top_miya3.jpg");
  animation: slide-animation-01 24s infinite;
}
.img-02 {
  background-image: url("../img/sp-top_miyanoya1.jpg");
  animation: slide-animation-02 24s infinite;
}
.img-03 {
  background-image: url("../img/sp-top_miyanoya4.jpg");
  animation: slide-animation-03 24s infinite;
}
@media(min-width:770px) {
  .img-01 {
    background-image: url("../img/pc-top_miya4.jpg");
    animation: slide-animation-01 24s infinite;
  }
  .img-02 {
    background-image: url("../img/pc-top_miyanoya1.jpg");
    animation: slide-animation-02 24s infinite;
  }
  .img-03 {
    background-image: url("../img/pc-top_miyanoya4.jpg");
    animation: slide-animation-03 24s infinite;
  }
}
@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1.0);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0
  }
  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1.0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1.0);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
/*▲top-img*/
/*▼caption*/
.caption {
  font-family: "ヒラギノ角ゴ ProN";
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
}
.caption h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  padding-bottom: 10px;
}
.caption p {
  font-size: 1.4rem;
  color: #a8a8a8;
}
@media(min-width:770px) {
  .caption {
    padding-bottom: 100px;
  }
  .caption h2 {
    font-size: 2.2rem;
  }
  .caption p {
    font-size: 1.6rem;
  }
}
/*▲caption*/
p {
  font-size: 1.4rem;
}
@media(min-width:770px) {
  p {
    font-size: 1.6rem;
  }
}
/*▼news*/
.news-area {
  padding: 60px 0 80px;
  background: #f4f5f7;
}
.news-list {
  display: flex;
  overflow-x: scroll;
}
.news-list::-webkit-scrollbar {
  height: 4px;
}
.news-list::-webkit-scrollbar-thumb {
  background: #919191;
  border-radius: 6px;
}
.news-list::-webkit-scrollbar-track {
  background: #dbdbdb;
  border-radius: 6px;
}
.news-frame {
  width: 300px;
  height: auto;
  margin: 0px 0px 20px 20px;
  border-radius: 30px;
  background: #f4f5f7;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 6px 4px 10px #c5c5c5, -6px 0px 10px #fff;
  flex-shrink: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.news-frame a {
  color: #D9292C;
  text-decoration: underline;
}
.news-frame a:hover {
  color: #BC5759;
  transition: all 0.4s ease-out;
}
.news-frame img {
  object-fit: cover;
  width: 100%;
  height: 172px;
  border-radius: 30px 30px 0px 0px;
}
.news-list :last-child {
  margin-right: 0px;
}
.news-title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0em;
  padding: 4px 10px 0px;
}
.news-text {
  font-size: 1.4rem;
  letter-spacing: 0em;
  padding: 4px 10px 0;
  color: #979797;
}
.news-time {
  font-size: 1.2rem;
  letter-spacing: 0em;
  padding: 4px 10px 20px;
  color: #979797;
}
@media(min-width:770px) {
  .news-area {
    padding: 100px 0 120px;
  }
  .news-frame {
    margin: 0px 0px 80px 40px;
  }
  .news-list :last-child {
    margin-right: 0px;
  }
}
/*▲news*/
/*▼services*/
.service-area {
  padding: 60px 0 80px;
  background: #e8e8e8;
}
.service-img-miya {
  background-image: url("../img/link_miya.jpg");
  background-size: cover;
  background-position: center;
  width: 90%;
  aspect-ratio: 3/4;
  margin: 0 5% 20px;
  position: relative;
  border-radius: 80px;
  z-index: 0;
  overflow: hidden;
}
.service-img-miya:before {
  content: '';
  background: inherit;
  -webkit-filter: brightness(75%);
  -moz-filter: brightness(75%);
  -o-filter: brightness(75%);
  -ms-filter: brightness(75%);
  filter: brightness(75%);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.service-img-miyanoya {
  background: url("../img/link_miyanoya.jpg");
  background-size: cover;
  background-position: center;
  width: 90%;
  aspect-ratio: 3/4;
  margin: 0 5%;
  position: relative;
  border-radius: 80px;
  z-index: 0;
  overflow: hidden;
}
.service-img-miyanoya:before {
  content: '';
  background: inherit;
  -webkit-filter: brightness(75%);
  -moz-filter: brightness(75%);
  -o-filter: brightness(75%);
  -ms-filter: brightness(75%);
  filter: brightness(75%);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.link-area {
  position: relative;
}
.service-title {
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-title img {
  opacity: 0.7;
  width: 90%;
  padding-bottom: 20%;
}
.service-button {
  display: flex;
  justify-content: center;
}
.service-button-link {
  display: flex;
  background: #fff;
  opacity: 0.8;
  width: 100%;
  padding: 10% 10%;
  border-radius: 110px;
  color: #6B6B6B;
  font-size: 1.4rem;
  line-height: 1.4;
  text-decoration: none;
  outline: none;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease-out;
}
.service-button-link:hover {
  color: #333;
  background: #e8e8e8;
  opacity: 0.8;
  animation: infinite;
}
@media(min-width:570px) {
  .service-list {
    display: flex;
    flex-direction: row;
    width: 90%;
    justify-content: space-around;
    margin: 0 5%;
  }
  .link-area {
    width: 40%;
  }
  .service-img-miya {
    width: 100%;
    aspect-ratio: 3/4;
    margin: 0;
    position: relative;
    border-radius: 80px;
  }
  .service-img-miyanoya {
    width: 100%;
    aspect-ratio: 3/4;
    margin: 0;
    position: relative;
    border-radius: 80px;
  }
}
@media(min-width:770px) {
  .service-area {
    padding: 100px 0 120px;
  }
  .service-button-link {
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 8% 10%;
  }
}
/*▲service*/
/*▼story*/
.story-bg {
  padding: 80px 0 140px;
}
.story-bg::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: 50% 100%;
  background-image: url("../img/sp_bg-kamon.jpg");
  background-size: cover;
}
.story-caption {
  height: auto;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.story-caption h2 {
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.4em;
  padding-bottom: 5%;
}
.story-caption p {
  font-size: 1.2rem;
  display: inline;
  letter-spacing: 0.2em;
  border-top: #333 0.1rem solid;
  padding-top: 5%;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #a8a8a8;
}
.story-filter {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 80px 0 80px;
}
.story-table {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
  padding: 0 5%;
}
.story-table-border {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: #a3a3a3;
  z-index: 1;
}
.story-list {
  width: 100%;
}
.story-time {
  font-size: 1.2rem;
  color: #a8a8a8;
}
/*▼右*/
.story-list-item-right {
  margin-left: 5%;
  justify-content: right;
}
.story-list-img-right {
  display: flex;
  align-items: center;
}
.point {
  width: 5%;
  aspect-ratio: 1 / 1;
  border-radius: 100px;
  background: #3a3a3a;
}
.story-list-img-right hr {
  width: 25%;
  height: 1.6px;
  background: #3a3a3a;
}
.story-list-img-right img {
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  box-shadow: 6px 4px 10px #3a3a3a, 0px 0px 0px #f4f5f7;
}
.story-list-item-right p {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 1.4rem;
  margin: 10% 0 20%;
  text-align: right;
}
/*▲右*/
/*▼左*/
.story-list-item-left {
  margin-right: 5%;
}
.story-list-item-left:first-child {
  margin-top: 50%;
}
.story-list-img-left {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.story-list-img-left hr {
  width: 25%;
  height: 1.6px;
  background-color: #3a3a3a;
}
.story-list-img-left img {
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  box-shadow: 6px 4px 10px #3a3a3a, 0px 0px 0px #fff;
}
.story-list-item-left p {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 1.4rem;
  margin: 10% 0 20%;
  text-align: left;
}
/*▲左*/
@media(min-width:770px) {
  .story-bg {
    padding: 0;
  }
  .story-bg::before {
    background-image: url("../img/pc_bg-kamon.jpg");
    width: 100%;
    height: 100%;
  }
  .story-caption h2 {
    color: #e8e8e8;
    font-size: 2rem;
    padding-bottom: 2%;
  }
  .story-caption p {
    font-size: 1.2rem;
    border-top: #a8a8a8 0.1rem solid;
    padding-top: 2%;
    color: #a8a8a8;
  }
  .story-filter {
    background: none;
    padding: 0;
  }
  .story-pc-filter {
    background-color: rgba(70, 70, 70, 0.5);
    padding: 100px 0 80px;
    width: 70%;
    margin: 0 15%;
  }
  .story-table {
    width: 80%;
    margin: 0 10%;
  }
  .story-time {
    font-size: 1.4rem;
  }
  /*▼右*/
  .point {
    width: 5%;
    background: #e8e8e8;
  }
  .story-list-img-right hr {
    width: 60%;
    height: 1.6px;
  }
  .story-list-img-right img {
    width: 50%;
  }
  .story-list-item-right p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #e8e8e8;
  }
  /*▲右*/
  /*▼左*/
  .story-list-item-left:first-child {
    margin-top: 40%;
  }
  .story-list-img-left hr {
    width: 60%;
    height: 1.6px;
  }
  .story-list-img-left img {
    width: 50%;
  }
  .story-list-item-left p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #e8e8e8;
  }
  /*▲左*/
}
/*▲story*/
/*▼about*/
.about-area {
  padding: 60px 5% 40px;
  background: #f4f5f7;
}
.about-list {
  padding: 01%;
}
.about-item {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.about-item th {
  padding-right: 28px;
  text-align: justify;
  text-align-last: justify;
  font-weight: normal;
}
.about-item td {
  padding-bottom: 40px;
}
@media(min-width:570px) {
  .about-area {
    padding: 100px 10% 60px;
  }
  .about-list {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .about-item {
    width: 60%;
    display: flex;
    padding: 0 5% 0 0;
    border-right: 0.1rem solid #e8e8e8;
  }
  .shop {
    width: 40%;
    padding: 10px 0 0 5%;
  }
  .shop a:hover {
    color: #a8a8a8;
    transition: all 0.4s ease-out;
  }
  .shop li {
    list-style: none;
    padding: 10px 0 10px 2%;
    border-bottom: 0.1rem solid #e8e8e8;
    width: 100%;
  }
  .shop li:first-child {
    border-top: 0.1rem solid #e8e8e8;
  }
}
@media(min-width:770px) {
  .about-item {
    font-size: 1.6rem;
  }
}
@media(max-width:570px) {
  .shop {
    display: none;
  }
}
/*▲about*/