@charset "UTF-8";
.main {
  padding: 0; }

/* Button
===============================*/
/* ゆくゆくは下記にボタン統一 */
/* wedding、reportが最新。こちらに統一したい */
.btn-wrap {
  margin: 3rem auto 0;
  width: 90%;
  max-width: 42rem;
  min-width: 20rem; }

.btn {
  display: inline-block;
  position: relative;
  background-color: #fff;
  border: 2px solid #333;
  padding: 1.4rem 2.1rem;
  width: 100%;
  color: #333;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  outline: none;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transition: color 0.3s cubic-bezier(0.16, 0.08, 0.355, 1), background-color 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
  cursor: pointer; }
  .btn:hover {
    background: #333;
    border-color: #333;
    color: #fff !important; }

.btn-arrow span {
  display: inline-block;
  position: relative;
  transition: all 0.3s ease-out;
  will-change: transform; }

.btn-arrow--go span {
  transform: translateX(-1rem); }

.btn-arrow--back span {
  transform: translateX(1rem); }

.btn-arrow:hover span {
  transform: translateX(0); }

.btn-arrow--go span::after {
  content: ">>";
  position: absolute;
  width: 2em;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
  will-change: right, opacity;
  color: #333; }

.btn-arrow--go:hover span::after {
  opacity: 0;
  right: 0; }

.btn-arrow--back span::after {
  content: "<<";
  position: absolute;
  width: 2em;
  left: -4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
  will-change: left, opacity;
  color: #333; }

.btn-arrow--back:hover span::after {
  opacity: 0;
  left: 0; }

/* Common
====================*/
/* ad */
.fixedad {
  position: fixed;
  bottom: -50px;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  height: 150px;
  max-width: 640px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.8s ease, bottom 0.5s ease-in-out 0.3s; }
  .fixedad.ad-on {
    opacity: 1;
    bottom: 0; }
  .fixedad__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 6px 2rem;
    text-decoration: none; }
    .fixedad__link:hover {
      color: #333; }
  .fixedad__tmb {
    flex-basis: calc((100% - 20px) * 0.35);
    flex-shrink: 1;
    flex-grow: 0;
    margin-right: 20px; }
  .fixedad__img {
    width: 100%;
    height: auto; }
  .fixedad__textarea {
    flex-basis: calc((100% - 20px) * 0.65);
    flex-shrink: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%; }
  .fixedad__attr {
    color: #999;
    font-size: 14px; }
  .fixedad__ttl {
    height: calc(3em * 1.6);
    overflow: hidden;
    font-size: 16px;
    font-weight: bold; }

.closebtn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 50px;
  height: 50px; }
  .closebtn::before, .closebtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #666;
    transform-origin: center; }
  .closebtn::before {
    transform: rotate(45deg); }
  .closebtn::after {
    transform: rotate(-45deg); }

.footer.ad-on {
  padding-bottom: 17rem; }
  .footer.ad-on ~ .operation {
    bottom: 17rem; }

.footer.no-fixed {
  padding-bottom: 4rem; }
  .footer.no-fixed ~ .operation {
    bottom: 4rem; }

.fixedbtn--wed-contact {
  background-color: #ffc1df; }

.fixedbtn__link--wed-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  color: #4f3945;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0; }
  .fixedbtn__link--wed-contact:link, .fixedbtn__link--wed-contact:visited {
    color: #4f3945; }

.fixedbtn__inner {
  position: relative;
  padding-right: calc(4rem + 0.5em); }
  .fixedbtn__inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 4rem;
    height: 4rem;
    background: url("/res/img/wedding/icon_speech-balloons.svg") no-repeat center/contain;
    transform: translateY(-50%); }

/* Archive
===============================*/
.report-header {
  margin-bottom: 2rem;
  font-size: 2.6rem;
  font-weight: normal; }

.report-list__item {
  position: relative;
  margin-bottom: 20px;
  border: solid 1px #666; }
  .report-list__item:last-of-type {
    margin-bottom: 0; }
  .report-list__item::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px;
    border-color: transparent #e84091 #e84091 transparent;
    transition: opacity 0.3s, border-width 0.3s; }
  .report-list__item:hover::after {
    opacity: 0.6;
    border-width: 25px; }

.report-list__link {
  display: flex;
  padding: 16px;
  text-decoration: none; }

.report-list__tmb {
  flex-basis: 30%;
  flex-shrink: 0;
  margin-right: 20px; }

.report-list__img {
  width: 100%;
  height: auto; }

.report-list__ttl {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4; }

/* Detail
====================*/
.repo-single-header__cat {
  margin-bottom: 2rem;
  color: #af9c54; }

.repo-single-header__ttl {
  background-color: #f8f6e7;
  margin-bottom: 30px;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.4; }

.repo-post__wrap {
  margin-bottom: 40px; }
  .repo-post__wrap p {
    margin: 1.5em 0; }
  .repo-post__wrap img {
    margin: 1.5em 0;
    height: auto; }
  .repo-post__wrap .repo-post__onna-message {
    margin-top: 60px; }

.repo-post__content {
  margin-bottom: 60px; }

.repo-post__header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  text-align: center;
  color: #4f3946;
  font-size: 20px;
  font-weight: normal; }
  .repo-post__header::before, .repo-post__header::after {
    content: "";
    flex-grow: 1;
    flex-basis: 20px;
    height: 6px;
    border-top: 2px solid #4f3946;
    border-bottom: 2px solid #4f3946; }
  .repo-post__header::before {
    margin-right: 2rem; }
  .repo-post__header::after {
    margin-left: 2rem; }

.repo-post__sub-header {
  background-color: #f8e4e4;
  margin: 40px 0 30px;
  padding: 10px 10px 10px calc(10px + 1em);
  font-weight: normal;
  text-indent: -1em; }
  .repo-post__sub-header:first-of-type {
    margin: 0 0 30px; }

.repo-post__sub-header-init {
  margin-right: 0.2em;
  font-weight: bold; }

.repo-post__onna-message {
  position: relative;
  color: #af9c54; }
  .repo-post__onna-message::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 12px;
    background: url(/res/img/wedding/header_heart.svg) no-repeat center/contain; }

.repo-post__wrapafter {
  margin-bottom: 60px;
  width: 100%;
  height: 6px;
  border-top: 2px solid #4f3946;
  border-bottom: 2px solid #4f3946; }

/* Responsive
====================*/
/*[ MAX ]---------------------------*/
@media (max-width: 30em) {
  /*480*/
  .report-header {
    font-size: 1.8rem; } }

@media (max-width: 23.75em) {
  /*380*/
  .report-list__tmb {
    flex-basis: 24%; }
  .report-list__ttl {
    font-size: 16px; }
  .repo-single-header__ttl {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 20px; }
  .repo-post__wrap {
    margin-bottom: 30px; }
  .repo-post__header {
    margin-bottom: 20px; }
  .repo-post__sub-header {
    margin: 40px 0 20px; }
    .repo-post__sub-header:first-of-type {
      margin: 0 0 20px; }
  .repo-post__wrapafter {
    margin-bottom: 40px; } }

@media (max-width: 21.25em) {
  /*340*/
  .report-list__item::after {
    border-width: 16px; }
  .report-list__item:hover::after {
    border-width: 20px; }
  .report-list__link {
    padding: 10px; }
  .repo-single-header__ttl {
    font-size: 18px; }
  .repo-post__header {
    margin-bottom: 20px;
    font-size: 18px; }
    .repo-post__header::before, .repo-post__header::after {
      flex-basis: 30px; }
    .repo-post__header::before {
      margin-right: 1rem; }
    .repo-post__header::after {
      margin-left: 1rem; }
  .repo-post__content {
    margin-bottom: 40px; } }
