@charset "UTF-8";
.slide {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .slide {
    height: 400px;
  }
}
.slide .moji1 {
  font-size: 5em;
  font-family: "Cormorant Garamond", serif;
  color: white;
  padding-top: 2em;
  text-shadow: 1px 2px 3px #808080;
}
.slide .moji2 {
  font-size: 5em;
  font-family: "Cormorant Garamond", serif;
  color: white;
  padding-top: 1em;
  text-shadow: 1px 2px 3px #808080;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url(image/Resized/top1.jpg);
  animation-delay: -3s;
}

.slide-image:nth-child(2) {
  background-image: url(image/Resized/top2.jpg);
  animation-delay: 3s;
}

.slide-image:nth-child(3) {
  background-image: url(image/Resized/top3.jpg);
  animation-delay: 6s;
  background-position: 0% 10%;
}

.slide-image:nth-child(4) {
  background-image: url(image/Resized/top4.jpg);
  animation-delay: 9s;
  background-position: 60% 10%;
}

.slide-image:nth-child(5) {
  background-image: url(image/Resized/top5.jpg);
  animation-delay: 12s;
}

.slide-image:nth-child(6) {
  background-image: url(image/Resized/top6.jpg);
  animation-delay: 15s;
}

.slide-image:nth-child(7) {
  background-image: url(image/Resized/top7.jpg);
  animation-delay: 18s;
  background-position: 60% 10%;
}

.slide-image:nth-child(8) {
  background-image: url(image/Resized/top8.jpg);
  animation-delay: 20s;
  background-position: 70% 10%;
}

@keyframes slider-1 {
  /* 非表示状態からフェードインを開始する */
  0% {
    opacity: 0;
    transform: scale(1); /* ズームのための指定 */
  }
  /* フェードインを完了し完全表示する */
  4.16% {
    opacity: 1;
  }
  /* ここまで完全表示を維持したらフェードアウトを開始する */
  33.33% {
    opacity: 1;
  }
  /* フェードアウトを完了し非表示にする */
  41.66% {
    opacity: 0;
    transform: scale(1.2); /* ズームのための指定 */
  }
  100% {
    opacity: 0;
  }
}
body {
  text-align: center;
  margin: 0;
  padding: 0;
  max-width: 1500px;
  margin: 0 auto;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fcfcfc;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: rgba(0, 0, 0, 0.6);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3em;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #f3c3c3;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #ffffff;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

.reception p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3em;
  line-height: 2;
}
.reception h2 {
  font-family: "Great Vibes", cursive;
  font-size: 5em;
  padding-top: 2em;
}
@media screen and (max-width: 767px) {
  .reception h2 {
    padding-top: 1em;
  }
}
.reception h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5em;
}
@media screen and (max-width: 767px) {
  .reception h3 {
    font-size: 1.2em;
  }
}
.reception img {
  width: 40%;
  padding-top: 3em;
  padding-bottom: 3em;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}

.host h2 {
  font-family: "Great Vibes", cursive;
  font-size: 5em;
  padding-top: 2em;
}
@media screen and (max-width: 767px) {
  .host h2 {
    padding-top: 1em;
  }
}
.host h3.hosttitle {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5em;
  padding-top: 0em;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .host h3.hosttitle {
    font-size: 1.2em;
  }
}
.host p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3em;
  line-height: 2;
}
@media (max-width: 1020px) and (min-width: 768px) {
  .host p {
    font-size: 1em;
  }
}
.host .msg {
  padding-top: 6em;
}
@media screen and (max-width: 767px) {
  .host .msg {
    padding-top: 0.5em;
  }
}
@media (max-width: 1020px) and (min-width: 768px) {
  .host .msg {
    padding-top: 1em;
  }
}
.host .container-fluid {
  padding-top: 5em;
  overflow-x: hidden;
}
.host img {
  width: 100%;
}
.host .groom {
  display: flex;
}
.host .bride {
  padding-top: 1em;
}
.host h3 {
  padding-top: 1em;
}

.parent {
  display: flex;
}

@media (max-width: 767px) {
  /*orderの順番で配置してくれる*/
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
}
.count {
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(image/Resized/0085.jpg);
  background-position: 50% 70%;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 7em;
}
.count hr {
  width: 40%;
  margin: 0 auto;
  margin-bottom: 1em;
}
.count h2 {
  font-family: "Great Vibes", cursive;
  font-size: 7em;
  padding-top: 1em;
}
.count .theDay {
  font-size: 6em;
  font-family: "Great Vibes", cursive;
}

#timerOlympic .yycountdown-box .yyc-day, .yyc-hou, .yyc-min, .yyc-sec {
  font-size: 5em;
  font-family: "Cormorant Garamond", serif;
}

#timerOlympic .yycountdown-box .yyc-day-text,
#timerOlympic .yycountdown-box .yyc-hou-text,
#timerOlympic .yycountdown-box .yyc-min-text,
#timerOlympic .yycountdown-box .yyc-sec-text {
  font-size: 1.5em;
  padding-right: 1.3em;
  font-family: "Cormorant Garamond", serif;
}

#timerOlympic {
  padding-bottom: 5em;
}

.fadeIn {
  transform: translate3d(0, -10px, 0);
  transition: 2s;
  opacity: 0;
}

.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadeInLeft {
  transform: translate3d(-150px, 0px, 0);
  transition: 1s;
  opacity: 0;
}

.fadeInLeft.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadeInRight {
  transform: translate3d(150px, 0px, 0);
  transition: 1s;
  opacity: 0;
}

.fadeInRight.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.information h2 {
  padding-top: 2em;
  font-size: 5em;
  font-family: "Great Vibes", cursive;
}
@media screen and (max-width: 767px) {
  .information h2 {
    padding-top: 1em;
  }
}
.information p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3em;
}
@media screen and (max-width: 767px) {
  .information p {
    font-size: 1.5em;
  }
}
.information .info-party {
  font-size: 2em;
  padding-bottom: 0em;
}
@media screen and (max-width: 767px) {
  .information .info-party {
    font-size: 1.5em;
  }
}
.information .info-detail {
  padding-bottom: 3em;
}
.information h3 {
  font-family: "Cormorant Garamond", serif;
  padding-top: 1em;
  font-size: 3em;
}
@media screen and (max-width: 767px) {
  .information h3 {
    font-size: 2em;
  }
}
.information h3.infotitle {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5em;
  padding-top: 0em;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .information h3.infotitle {
    font-size: 1.2em;
  }
}
.information .party {
  color: aliceblue;
  padding-top: 1em;
  padding-bottom: 1em;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(image/Resized/0057.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 90%;
  margin: 0 auto;
}
.information .party h2 {
  font-size: 3em;
  font-family: "Noto Serif JP", serif;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  .information .party h2 {
    font-size: 2em;
  }
}
.information .party .day {
  font-size: 5em;
  font-family: "Cormorant Garamond", serif;
}
.information .party p {
  font-size: 2em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .information .party p {
    font-size: 1.4em;
  }
}
.information .party h4 {
  font-size: 2.5em;
  font-family: "Noto Serif JP", serif;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  .information .party h4 {
    font-size: 2em;
  }
}

.access {
  /* レイアウトのためのcss */
}
.access iframe {
  width: 60%;
  aspect-ratio: 16/6;
  padding-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .access iframe {
    width: 80%;
  }
}
.access h2 {
  font-size: 3em;
  font-family: "Cormorant Garamond", serif;
  padding-top: 2em;
}
@media screen and (max-width: 767px) {
  .access h2 {
    font-size: 2em;
  }
}
.access h3 {
  font-size: 2em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .access h3 {
    font-size: 1.5em;
  }
}
.access h4 {
  font-size: 2em;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 1em;
  padding-top: 2em;
}
@media screen and (max-width: 767px) {
  .access h4 {
    font-size: 1.5em;
  }
}
.access p {
  font-size: 1.3em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .access p {
    font-size: 1em;
  }
}
.access p span {
  background: linear-gradient(transparent 70%, #edbbde 30%);
}
.access .map-p {
  padding-bottom: 2em;
  font-size: 1em;
}
.access hr {
  width: 60%;
  margin: 0 auto;
}
.access a {
  font-size: 1.3em;
  font-family: "Noto Serif JP", serif;
  color: black;
  text-decoration: none;
}
.access .heading {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
}
.access .heading::before,
.access .heading::after {
  background-color: #6b6b6b; /* 横線の色 */
  content: "";
  height: 2px; /* 横線の高さ */
  width: 60px; /* 横線の長さ */
}
.access .heading::before {
  margin-right: 15px; /* 文字との余白 */
}
.access .heading::after {
  margin-left: 15px; /* 文字との余白 */
}

.botan {
  padding-top: 5em;
  padding-bottom: 5em;
}

a.btn_14 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 500px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #eee;
  color: #000000;
  border-radius: 100vh;
  position: relative;
  transition: 1s;
  font-size: 1.2em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  a.btn_14 {
    width: 300px;
    font-size: 1em;
    padding: 1rem 1rem;
  }
}

a.btn_14:hover {
  background: #d4eef7;
  color: #e522c8;
}

.message h2 {
  font-size: 5em;
  font-family: "Great Vibes", cursive;
  padding-top: 2em;
}
.message h3 {
  font-size: 1.3em;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 2em;
}
.message h3.msgtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5em;
  padding-top: 0em;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .message h3.msgtitle {
    font-size: 1.2em;
  }
}
.message p {
  font-size: 1.3em;
  font-family: "Noto Serif JP", serif;
}
.message p span {
  background: linear-gradient(transparent 70%, #edbbde 30%);
}

.botan {
  padding-top: 5em;
  padding-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .botan {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

a.btn_13 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 500px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #eee;
  color: #e522c8;
  border-radius: 100vh;
  position: relative;
  transition: 1s;
  font-size: 2em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  a.btn_13 {
    width: 300px;
    font-size: 1.2em;
  }
}

a.btn_13::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #e522c8;
}

a.btn_13::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #e522c8;
}

a.btn_13:hover {
  background: #d4eef7;
  color: #e522c8;
}

.footer h2 {
  font-family: "Great Vibes", cursive;
  font-size: 5em;
}
.footer h3.lasttitle {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5em;
  padding-top: 0em;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .footer h3.lasttitle {
    font-size: 1.2em;
  }
}
.footer p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3em;
  padding-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .footer p {
    font-size: 1em;
  }
}
.footer .copy {
  font-size: 2em;
  font-family: "Great Vibes", cursive;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .footer .copy {
    font-size: 1em;
  }
}
.footer a {
  text-decoration: none;
  color: black;
}

@media screen and (max-width: 480px) {
  .slide-image:nth-child(1) {
    background-position: 60% 0%;
  }
  .slide-image:nth-child(3) {
    background-position: 60% 0%;
  }
  .slide-image:nth-child(4) {
    background-position: 60% 0%;
  }
  .slide .moji1 {
    font-size: 3em;
    font-family: "Cormorant Garamond", serif;
    color: white;
    padding-top: 1em;
  }
  .slide .moji2 {
    font-size: 3em;
    font-family: "Cormorant Garamond", serif;
    color: white;
    padding-top: 6em;
  }
  .reception img {
    width: 80%;
  }
  .reception p {
    font-size: 1em;
  }
  .fadeIn {
    transform: translate3d(0, -5px, 0);
    transition: 1.5s;
    opacity: 0;
  }
  .fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .fadeInLeft {
    transform: translate3d(-50px, 0px, 0);
    transition: 1s;
    opacity: 0;
  }
  .fadeInLeft.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .fadeInRight {
    transform: translate3d(50px, 0px, 0);
    transition: 1s;
    opacity: 0;
  }
  .fadeInRight.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .host h2 {
    padding-top: 1.5em;
  }
  .host p {
    font-size: 1em;
    padding: 0em 2em;
  }
  .host .groom h3 {
    padding-top: 0.1em;
  }
  .host .bride h3 {
    padding-top: 0.1em;
  }
  .count {
    background-size: 130%;
    padding-top: 0em;
    margin-top: 0em;
  }
  .count h2 {
    font-size: 4em;
    padding-top: 1.5em;
  }
  .count .theDay {
    font-size: 3em;
    padding-top: 0em;
    margin-bottom: 0em;
  }
  #timerOlympic .yycountdown-box .yyc-day, .yyc-hou, .yyc-min, .yyc-sec {
    font-size: 3em;
  }
  #timerOlympic .yycountdown-box .yyc-day-text,
  #timerOlympic .yycountdown-box .yyc-hou-text,
  #timerOlympic .yycountdown-box .yyc-min-text,
  #timerOlympic .yycountdown-box .yyc-sec-text {
    font-size: 1em;
    padding-right: 0.3em;
  }
  #timerOlympic {
    padding-bottom: 1em;
  }
  .information h2 {
    font-size: 4.5em;
  }
  .information p {
    font-size: 1em;
  }
  .information .party {
    width: 100%;
    background-position: center;
  }
  .information .party .day {
    font-size: 3em;
  }
  .access h3 {
    padding-bottom: 1em;
  }
  .access iframe {
    height: 300px;
    margin-bottom: 2em;
  }
  .access a {
    font-size: 1em;
  }
  .message h2 {
    padding-top: 2em;
  }
  .message p {
    font-size: 1em;
  }
  .message h3 {
    font-size: 1em;
  }
}
@media print, screen and (min-width: 767px) {
  .pc-n {
    display: none;
  }
}
.photos img {
  width: 100%;
}
.photos .col-md-2 {
  padding: 0;
}
.photos .col-3 {
  padding: 0;
}
@media print, screen and (min-width: 767px) {
  .photos .pc-n-p {
    display: none;
  }
}/*# sourceMappingURL=invitation.css.map */