@charset "UTF-8";
/* 共通フェードアップアニメーション */
.fadeup {
  opacity: 0;
  transform: translateY(30px); /* 初期状態 */
  transition: opacity 0.3s, transform 0.3s; /* 補助でスムーズに */
}
.fadeup.inview {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* keyframes はグローバルに置く */
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.front-mainview {
  position: relative;
}
.front-mainview li {
  overflow: hidden;
}
.front-mainview li .image {
  height: 70vh;
}
.front-mainview li .image img {
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .front-mainview li .image {
    height: 100%;
  }
  .front-mainview li .image img {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .front-mainview li .image {
    height: 80vh;
  }
  .front-mainview li .image img {
    height: 80vh;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.front-mainview .swiper-slide-active .image,
.front-mainview .swiper-slide-duplicate-active .image,
.front-mainview .swiper-slide-prev .image {
  animation: zoomUp 7s linear 0s normal both;
}
.front-mainview .swiper-slide img {
  height: auto;
  width: 100%;
}
.front-mainview .front-mainview__title {
  z-index: 1;
  position: absolute;
  bottom: 10%;
  left: 20px;
}
@media (min-width: 768px) {
  .front-mainview .front-mainview__title {
    left: 30px;
  }
}
@media (min-width: 1025px) {
  .front-mainview .front-mainview__title {
    bottom: 15%;
    left: 80px;
  }
}
.front-mainview .front-mainview__title .title-ja {
  margin-bottom: 15px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.6;
}
@media (min-width: 1025px) {
  .front-mainview .front-mainview__title .title-ja {
    font-size: 30px;
  }
}
.front-mainview .front-mainview__title .title-en {
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.6;
}
@media (min-width: 1025px) {
  .front-mainview .front-mainview__title .title-en {
    font-size: 14px;
  }
}

.front-fair {
  position: relative;
  padding: 75px 0 25px;
  /* Swiper ナビゲーションカスタマイズ */
}
.front-fair .front-fair__title {
  padding: 0 20px;
}
.front-fair .front-fair__list {
  margin-bottom: 20px;
  padding-left: 20px;
}
.front-fair .front-fair__list .front-fair__item .front-fair__link .image {
  margin-bottom: 10px;
}
.front-fair .swiper-button-prev,
.front-fair .swiper-button-next {
  height: 25px;
  width: 25px;
}
.front-fair .swiper-button-prev::after,
.front-fair .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 25px;
  margin: auto;
  width: 25px;
}
.front-fair .swiper-button-prev::after {
  position: absolute;
  left: -50px;
  background-image: url(../images/common/arrow-left.svg);
}
.front-fair .swiper-button-next::after {
  position: absolute;
  right: -50px;
  background-image: url(../images/common/arrow-right.svg);
}
@media (min-width: 768px) {
  .front-fair {
    padding: 85px 0 35px;
  }
  .front-fair .front-fair__title {
    padding: 0 30px;
  }
  .front-fair .front-fair__list {
    margin-bottom: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1025px) {
  .front-fair {
    padding: 120px 0 50px;
  }
  .front-fair .front-fair__title {
    padding: 0;
  }
  .front-fair .front-fair__list {
    margin-bottom: 30px;
    padding-left: 0;
  }
}

.front-concept {
  padding: 75px 20px;
}
@media (min-width: 768px) {
  .front-concept {
    padding: 85px 30px;
  }
}
@media (min-width: 1025px) {
  .front-concept {
    padding: 120px 0;
  }
}
.front-concept .front-concept__title {
  color: #9CA57D;
}
.front-concept .front-concept__title .title__en {
  margin-bottom: 10px;
  padding-left: 5px;
  font-family: "Libre Baskerville", serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
.front-concept .front-concept__title .title__ja {
  margin-bottom: 20px;
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .front-concept .front-concept__title .title__en {
    padding-left: 0;
    text-align: center;
  }
  .front-concept .front-concept__title .title__ja {
    margin-bottom: 30px;
    font-size: 35px;
    text-align: center;
  }
  .front-concept .front-concept__title .title__ja br {
    display: none;
  }
}
@media (min-width: 1025px) {
  .front-concept .front-concept__title .title__ja {
    margin-bottom: 30px;
    font-size: 45px;
  }
}
.front-concept .front-concept__txt {
  margin-bottom: 20px;
}
.front-concept .front-concept__txt p {
  margin-bottom: 1em;
}
.front-concept .front-concept__txt p br {
  display: none;
}
@media (min-width: 768px) {
  .front-concept .front-concept__txt {
    margin-bottom: 30px;
    text-align: center;
  }
  .front-concept .front-concept__txt p {
    margin-bottom: 1em;
  }
  .front-concept .front-concept__txt p br {
    display: block;
  }
}
@media (min-width: 1025px) {
  .front-concept .front-concept__txt {
    margin-bottom: 45px;
  }
}
.front-concept .front-concept__movie {
  margin: 0 auto;
}
.front-concept .front-concept__movie iframe {
  display: block;
  width: 100%;
  height: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .front-concept .front-concept__movie iframe {
    height: 400px;
  }
}
@media (min-width: 1025px) {
  .front-concept .front-concept__movie iframe {
    max-width: 1000px;
    height: 535px;
    margin: 0 auto 60px;
    text-align: center;
  }
}

.front-service {
  background-image: url("../images/common/pattern_bg.jpg");
  background-repeat: repeat;
}
.front-service .btn__block {
  text-align: right;
}
.front-service .front-ceremony .image .main {
  width: 95%;
  margin: 0 0 0 auto;
}
.front-service .front-ceremony .image .second {
  width: 42%;
  margin: -20px 0 20px 0;
}
.front-service .front-ceremony .image .third {
  width: 60%;
  margin: 0 30px 0 auto;
}
.front-service .front-ceremony .image .main.inview,
.front-service .front-ceremony .image .second.inview,
.front-service .front-ceremony .image .third.inview {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.front-service .front-ceremony .front-ceremony__detail {
  z-index: 2;
  padding: 35px 20px 50px;
}
@media (min-width: 768px) {
  .front-service .front-ceremony .image .second {
    display: none;
  }
  .front-service .front-ceremony .image .third {
    display: none;
  }
  .front-service .front-ceremony .front-ceremony__detail {
    padding: 50px 30px 75px;
  }
}
@media (min-width: 1025px) {
  .front-service .front-ceremony {
    position: relative;
    display: flex;
    justify-content: end;
    margin-bottom: 100px;
  }
  .front-service .front-ceremony .image {
    order: 1;
  }
  .front-service .front-ceremony .image .main {
    width: 95%;
    max-width: 1000px;
    margin: 0 0 0 auto;
  }
  .front-service .front-ceremony .image .second {
    display: block;
    width: 40%;
    max-width: 320px;
    margin: -100px 0 40px -40px;
  }
  .front-service .front-ceremony .image .third {
    display: block;
    width: 60%;
    max-width: 450px;
    margin: -200px 100px 0 auto;
  }
  .front-service .front-ceremony .front-ceremony__detail {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 630px;
    padding: 85px;
    background-image: url("../images/common/pattern_bg.jpg");
    background-repeat: repeat;
  }
}
.front-service .front-banquet .image .main {
  width: 95%;
  margin: 0 auto 0 0;
}
.front-service .front-banquet .image .main.inview {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.front-service .front-banquet .front-banquet__detail {
  padding: 35px 20px 50px;
}
@media (min-width: 768px) {
  .front-service .front-banquet .front-banquet__detail {
    padding: 50px 30px 75px;
  }
}
@media (min-width: 1025px) {
  .front-service .front-banquet {
    position: relative;
    display: flex;
    margin-bottom: 100px;
  }
  .front-service .front-banquet .image .main {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto 0 0;
  }
  .front-service .front-banquet .front-banquet__detail {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 630px;
    padding: 85px;
    background-image: url("../images/common/pattern_bg.jpg");
    background-repeat: repeat;
  }
}
.front-service .front-service__inner {
  padding: 0 20px;
}
.front-service .front-service__inner .front-cuisine .image {
  height: 170px;
}
.front-service .front-service__inner .front-cuisine .image img {
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-service .front-service__inner .front-cuisine .front-cuisine__detail {
  padding: 35px 0 50px;
}
.front-service .front-service__inner .front-dress .image {
  height: 170px;
}
.front-service .front-service__inner .front-dress .image img {
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-service .front-service__inner .front-dress .front-dress__detail {
  padding: 35px 0 50px;
}
@media (min-width: 768px) {
  .front-service .front-service__inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 0 30px;
  }
  .front-service .front-service__inner .front-cuisine {
    width: 50%;
  }
  .front-service .front-service__inner .front-cuisine .image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
  }
  .front-service .front-service__inner .front-cuisine .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .front-service .front-service__inner .front-cuisine .front-cuisine__detail {
    padding: 35px 0 85px;
  }
  .front-service .front-service__inner .front-dress {
    width: 50%;
  }
  .front-service .front-service__inner .front-dress .image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
  }
  .front-service .front-service__inner .front-dress .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .front-service .front-service__inner .front-dress .front-dress__detail {
    padding: 35px 0 85px;
  }
}
@media (min-width: 1025px) {
  .front-service .front-service__inner {
    padding: 0;
  }
  .front-service .front-service__inner .front-cuisine .front-cuisine__detail {
    padding: 35px 10px 120px;
  }
  .front-service .front-service__inner .front-dress .front-dress__detail {
    padding: 35px 10px 120px;
  }
}

.parallax .image {
  height: 240px;
}
.parallax .image img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .parallax .image {
    height: 320px;
  }
  .parallax .image img {
    height: 320px;
  }
}
@media (min-width: 1025px) {
  .parallax .image {
    height: 500px;
  }
  .parallax .image img {
    height: 500px;
  }
}

.front-weddingstyle {
  padding: 75px 20px;
}
@media (min-width: 768px) {
  .front-weddingstyle {
    padding: 85px 30px;
  }
  .front-weddingstyle .front-weddingstyle__title {
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .front-weddingstyle {
    padding: 120px 0;
  }
}
@media (min-width: 1025px) {
  .front-weddingstyle .weddingstyle__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding: 30px 0 25px 0;
  text-decoration: none;
  color: inherit;
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item:hover .btn-arrow {
  border: 1px solid #4F483F;
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item:hover .btn-arrow:after {
  color: #4F483F;
}
@media (min-width: 768px) {
  .front-weddingstyle .weddingstyle__list .weddingstyle__item {
    width: 80%;
    margin-bottom: 45px;
    padding: 45px 0 35px 0;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 1025px) {
  .front-weddingstyle .weddingstyle__list .weddingstyle__item {
    margin-bottom: 60px;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item:nth-child(1), .front-weddingstyle .weddingstyle__list .weddingstyle__item:nth-child(2) {
    width: 46%;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item:nth-child(3), .front-weddingstyle .weddingstyle__list .weddingstyle__item:nth-child(4), .front-weddingstyle .weddingstyle__list .weddingstyle__item:nth-child(5) {
    width: 30%;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item:nth-child(odd) {
    margin-left: auto;
    margin-right: auto;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item:nth-child(even) {
    margin-left: auto;
    margin-right: auto;
  }
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 150px;
  height: 100%;
  background-color: #FBF9F5;
  z-index: -1;
}
@media (min-width: 768px) {
  .front-weddingstyle .weddingstyle__list .weddingstyle__item:after {
    width: 45%;
  }
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__num {
  position: absolute;
  top: 0;
  left: -3px;
  color: #9CA57D;
  font-family: "Homemade Apple", cursive;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  transform: rotate(-10deg);
}
@media (min-width: 768px) {
  .front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__num {
    font-size: 35px;
  }
}
@media (min-width: 1025px) {
  .front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__num {
    top: 10px;
    font-size: 30px;
  }
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item .image {
  width: 86%;
  margin-bottom: 15px;
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail {
  position: relative;
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .weddingstyle__copy {
  margin-bottom: 5px;
  font-size: 13px;
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .weddingstyle__name {
  margin-bottom: 5px;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .weddingstyle__txt {
  width: 86%;
}
.front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .btn-arrow {
  position: absolute;
  right: 15px;
  bottom: 5px;
}
@media (min-width: 768px) {
  .front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .weddingstyle__copy {
    font-size: 15px;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .weddingstyle__name {
    font-size: 25px;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .btn-arrow {
    right: 25px;
    bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .weddingstyle__txt {
    width: 83%;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .weddingstyle__name {
    font-size: 26px;
  }
  .front-weddingstyle .weddingstyle__list .weddingstyle__item .weddingstyle__detail .btn-arrow {
    right: 15px;
    bottom: 5px;
  }
}

.front-plan {
  position: relative;
  padding: 0 0 75px;
}
@media (min-width: 768px) {
  .front-plan {
    padding: 0 0 85px;
  }
}
@media (min-width: 1025px) {
  .front-plan {
    padding: 0 0 120px;
  }
  .front-plan .content-inner--plan {
    width: calc(100% - 200px);
    margin: 0 0 0 auto;
  }
  .front-plan .btn {
    margin: 0 auto 0 0;
  }
}
.front-plan:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url("../images/common/pattern_bg.jpg");
  z-index: -1;
}
@media (min-width: 768px) {
  .front-plan:after {
    height: 450px;
  }
}
@media (min-width: 1025px) {
  .front-plan:after {
    height: 570px;
  }
}
.front-plan .front-plan_title {
  padding: 0 20px;
}
.front-plan .front-plan_title .section__title {
  margin-bottom: 10px;
}
.front-plan .front-plan_title .front-plan_title__inner .section__title-ja {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .front-plan .front-plan_title {
    padding: 0 30px;
  }
}
@media (min-width: 1025px) {
  .front-plan .front-plan_title {
    padding: 0;
    display: flex;
  }
  .front-plan .front-plan_title .section__title {
    margin: 0 100px 0 0;
  }
  .front-plan .front-plan_title .front-plan_title__inner .section__title-ja {
    margin-bottom: 10px;
    font-family: "Shippori Mincho", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 1px;
  }
}
.front-plan .front-plan__list {
  padding: 0 0 0 20px;
}
@media (min-width: 768px) {
  .front-plan .front-plan__list {
    padding: 0 0 0 30px;
  }
}
@media (min-width: 1025px) {
  .front-plan .front-plan__list {
    margin-bottom: 50px;
    padding: 0;
  }
}
.front-plan .front-plan__list .front-plan__item .front-plan__link .image {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 10px;
}
.front-plan .front-plan__list .front-plan__item .front-plan__link .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-plan .front-plan__list .front-plan__item .front-plan__link .front-plan__detail {
  padding: 10px 0;
}
.front-plan .front-plan__list .front-plan__item .front-plan__link .front-plan__detail .front-plan__cat {
  margin-bottom: 5px;
}
.front-plan .front-plan__list .front-plan__item .front-plan__link .front-plan__detail .front-plan__cat li {
  display: inline-block;
  min-width: 60px;
  margin-right: 2px;
  padding: 3px 6px;
  background-color: #4F483F;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}
.front-plan .front-plan__list .front-plan__item .front-plan__link .front-plan__detail .front-plan__txt {
  margin-bottom: 10px;
}
.front-plan .front-plan__list .front-plan__item .front-plan__link .front-plan__detail .front-plan__price {
  padding: 10px 12px;
  background-color: #FBF9F5;
  color: #BF9668;
  font-size: 14px;
  font-weight: 600;
}

.front-partyreport {
  padding: 75px 20px 50px;
}
@media (min-width: 768px) {
  .front-partyreport {
    padding: 85px 30px 60px;
  }
  .front-partyreport .front-partyreport__title {
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .front-partyreport {
    padding: 120px 0 80px;
  }
}
@media (min-width: 768px) {
  .front-partyreport .front-partyreport__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.front-partyreport .front-partyreport__list .front-partyreport__item {
  margin-bottom: 35px;
}
.front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link:hover {
  opacity: 0.75;
  transition: all 0.5s;
}
.front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .image {
  height: 170px;
  margin-bottom: 15px;
}
.front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .image img {
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .front-partyreport__detail .front-plan__txt {
  margin-bottom: 15px;
}
.front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .front-partyreport__detail .front-plan__desc {
  color: #9CA57D;
  font-size: 13px;
}
@media (min-width: 768px) {
  .front-partyreport .front-partyreport__list .front-partyreport__item {
    width: 48.5%;
    margin-bottom: 45px;
  }
  .front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .image {
    height: 170px;
    margin-bottom: 15px;
  }
  .front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .image img {
    height: 170px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .front-partyreport__detail .front-plan__txt {
    margin-bottom: 15px;
  }
  .front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .front-partyreport__detail .front-plan__desc {
    color: #9CA57D;
    font-size: 13px;
  }
}
@media (min-width: 1025px) {
  .front-partyreport .front-partyreport__list .front-partyreport__item {
    width: 31%;
    margin-bottom: 45px;
  }
  .front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
  }
  .front-partyreport .front-partyreport__list .front-partyreport__item .front-partyreport__link .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.other-contents {
  padding: 25px 20px 45px;
}
@media (min-width: 768px) {
  .other-contents {
    padding: 25px 30px 50px;
  }
}
@media (min-width: 1025px) {
  .other-contents {
    padding: 50px 0 100px;
  }
}
@media (min-width: 768px) {
  .other-contents .other-contents__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.other-contents .other-contents__list .other-contents__item {
  margin-bottom: 30px;
  padding: 0 0 20px 5px;
  border-bottom: 1px solid #BEB9B5;
}
.other-contents .other-contents__list .other-contents__item .other-contents__link {
  position: relative;
}
.other-contents .other-contents__list .other-contents__item .other-contents__link .other-contents__title {
  margin-bottom: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 23px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
}
.other-contents .other-contents__list .other-contents__item .other-contents__link .other-contents__txt {
  width: 85%;
}
.other-contents .other-contents__list .other-contents__item .other-contents__link .btn-arrow {
  position: absolute;
  right: 10px;
  bottom: 5px;
}
.other-contents .other-contents__list .other-contents__item .other-contents__link:hover .btn-arrow {
  border: 1px solid #4F483F;
}
.other-contents .other-contents__list .other-contents__item .other-contents__link:hover .btn-arrow:after {
  color: #4F483F;
}
@media (min-width: 768px) {
  .other-contents .other-contents__list .other-contents__item {
    width: 48.5%;
  }
}
@media (min-width: 1025px) {
  .other-contents .other-contents__list .other-contents__item {
    width: 48%;
    margin-bottom: 35px;
    padding: 0 0 25px 5px;
  }
}/*# sourceMappingURL=front.css.map */