@charset "UTF-8";
/* ======================================================================= */
/*!
 * CUSTOM STYLESHEET
 * 01. HTML Basic Settings
 * 02. Header Area
 * 03. Main Area
 * 04. Sidebar Area
 * 05. Footer Area
 * 06. Original Module Settings
 */
/* ======================================================================= */

/*!
 * 01. HTML Basic Settings
 * ----------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Miss+Fajardose&Cinzel:wght@500&family=Shippori+Mincho+B1:wght@600&display=swap');

html {
  font-family: 'Shippori Mincho B1','游明朝体',YuMincho,'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','Yu Mincho','ＭＳ Ｐ明朝','MS PMincho',serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #595757;
  -webkit-tap-highlight-color: rgba(0,0,0,0.8);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Shippori Mincho B1','游明朝体',YuMincho,'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','Yu Mincho','ＭＳ Ｐ明朝','MS PMincho',serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #595757;
  -webkit-tap-highlight-color: rgba(0,0,0,0.8);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 500;
}
h1, .h1 {
  font-size: 1.5rem;
}
h2, .h2 {
  font-size: 1.4rem;
}
h3, .h3 {
  font-size: 1.3rem;
}
h4, .h4 {
  font-size: 1.2rem;
}
h5, .h5 {
  font-size: 1.1rem;
}
h6, .h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #595757;
}

a {
  color: #C6AE8B;
  text-decoration: none;
  transition: .8s;
}
a:hover {
  color: #31281b;
  text-decoration: none;
  transition: .8s;
}
a img {
  opacity: 1;
  transition: .8s;
}
a:hover img {
  opacity: .8;
  transition: .8s;
}

.Miss-Fajardose {
  font-family: 'Miss Fajardose', cursive;
}
.Cinzel {
  font-family: 'Cinzel', serif;
}

/* layout */
.site {
  overflow-x: hidden;
  position: relative;
}

/*!
 * 02. Header Area
 * ----------------------------------------------------------------------- */
.header {
  background-image: url("../images/bg-header.png");
  background-repeat: repeat-x;
  background-position: top center;
}
.header a {
  color: #595757;
}

/* header-top */
.header-top {
  padding-top: 1rem;
  padding-bottom: .75rem;
}
.header-top .branding .site-description {
  margin-bottom: .25rem;
  text-align: center;
  font-size: .8rem;
}
.header-top .branding .logo {
  display: block;
  max-width: 320px;
}

.header-top .desktop-sub-nav {
  margin-bottom: .25rem;
  padding-left: .5rem;
  padding-right: .5rem;
}
.header-top .desktop-sub-nav .nav-link {
  padding-left: .5rem;
  padding-right: .5rem;
  font-size: .9rem;
}
.header-top .desktop-sub-nav .nav-link:hover {
  color: #c6af8b;
}
.header-top .desktop-sub-nav .nav-link .icon-circle {
  display: inline-block;
  text-align: center;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  color: #C6AE8B;
  background-color: #f5f2ee;
  border-radius: 3rem;
}

.header-top .desktop-button-nav {
  padding-left: .5rem;
  padding-right: .5rem;
}
.header-top .desktop-button-nav .nav-link {
  text-align: center;
  font-size: .9rem;
}

.header-top .contact-us {
  padding-left: .5rem;
  padding-right: .5rem;
}
.header-top .contact-us p {
  margin: 0;
  font-size: .8rem;
}
.header-top .contact-us .tel {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 500;
}
.header-top .contact-us .number {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #a99271;
}

.mobile-contact-us .nav-link {
  padding: .5rem;
  text-align: center;
  color: #C6AE8B;
  white-space: nowrap;
}

/* header-middle */
.header-middle {
  padding: .25rem 0;
  background: -webkit-gradient(0deg, #FFFFFF 35%, #f9f7f5);
  background: linear-gradient(0deg, #FFFFFF 35%, #f9f7f5);
}
.desktop-main-nav .nav-link {
  text-align: center;
  font-size: .9rem;
  line-height: 1.25;
}
.desktop-main-nav .nav-link:hover {
  color: #C6AE8B;
}

@media (min-width: 992px) { 
  .desktop-main-nav .nav-item {
    position: relative;
  }
  .desktop-main-nav .nav-item:first-of-type::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: .75rem;
    background-color: #c8c8c8;
    transform: translateY(-50%);
  }
  .desktop-main-nav .nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: .75rem;
    background-color: #c8c8c8;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .header-top .container {
    padding-right: 0;
  }
  .header-top .branding .logo {
    display: block;
    max-width: 80%;
  }
}
@media (max-width: 1199.98px) {
  .desktop-main-nav .nav-link {
    padding: .5rem .75rem;
    font-size: .8rem;
    letter-spacing: -1px;
  }
}

/*!
 * 03. Main Area
 * ----------------------------------------------------------------------- */

/* color */
.text-main-color {
  color: #C6AE8B;
}
.text-red {
  color: #d70035;
}
.text-line {
  color: #17c313;
}

/* typography */
.text-large {
  font-size: 120%;
}
.text-xl-large {
  font-size: 180%;
}

/* hero */
.main .hero {
  overflow: hidden;
  position: relative;
  height: 640px;
}
.main .hero .catch-copy {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-30%,-50%);
  z-index: 3;
}
.main .hero .catch-copy p {
  font-size: 3rem;
}
@media (min-width: 1400px) {
  .main .hero .cover {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
}
@media (max-width: 1399.98px) {
  .main .hero .cover {
    position: absolute;
    right: -10%;
    top: 0;
    z-index: 1;
  }
}
@media (max-width: 1199.98px) {
  .main .hero .cover {
    position: absolute;
    right: -25%;
    top: 0;
    z-index: 1;
  }
}
@media (max-width: 991.98px) {
  .main .hero .catch-copy {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%,-50%);
  }
  .main .hero .catch-copy p {
    color: #FFF !important;
  }
  .main .hero .bg-catch-copy {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    z-index: 2;
  }
  .main .hero .cover {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
}

/* about */
.main .about {
  padding: 5rem 0;
}
.main .about p {
  margin-bottom: 2rem;
  line-height: 2;
}
@media (min-width: 992px) { 
  .main .about p:last-of-type {
    margin-bottom: 0;
  }
}
.main .about .haedline {
  position: relative;
  line-height: 1.5;
}
.main .about .haedline::before {
  white-space: pre;
  content: 'About\AMegumi Wedding';
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
  font-family: 'Miss Fajardose', cursive;
  font-size: 8rem;
  color: #f0f0f0;
  z-index: -1;
  transform: rotate(-15deg);
}

/* point */
.main .point {
  padding: 5rem 0;
  background: -webkit-gradient(0deg, #FFFFFF 35%, #f5f2ee);
  background: linear-gradient(0deg, #FFFFFF 35%, #f5f2ee);
}
.main .point .haedline {
  position: relative;
  line-height: 1.5;
}
.main .point .point-card {
  text-align: center;
}
.main .point .point-card .card-title {
  padding-top: 0;
  color: #C6AE8B;
  border: none;
}
.main .point .point-card::before {
  white-space: pre;
  content: 'Point';
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  text-align: left;
  font-family: 'Miss Fajardose', cursive;
  font-size: 3rem;
  color: rgba(0,0,0,.125);
  transform: rotate(-15deg);
}
.main .point .point-card .card-img-top {
  margin-left: auto;
  margin-right: auto;
  max-width: 60%;
  height: auto;
}

/* place */
.main .place {
  padding: 3rem 0;
}
.main .place .haedline {
  position: relative;
  padding: 3rem 0;
  line-height: 1.5;
}
.main .place .haedline::before {
  white-space: pre;
  content: 'Place of Ceremony';
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: left;
  font-family: 'Miss Fajardose', cursive;
  font-size: 6rem;
  color: #f0f0f0;
  z-index: -1;
  transform: translate(-50%,-50%) rotate(-3deg);
}
.main .place .sub-haedline {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.125);
}

/* entry-header */
.main .entry-header {
  overflow: hidden;
  position: relative;
  height: 320px;
}
.main .entry-header .lead {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.main .entry-header .lead .page-title {
  position: relative;
  margin-left: -1rem;
  margin-bottom: 0;
  padding: 1rem;
  font-size: 1.5rem;
  background-color: rgba(255,255,255,.8);
}
.main .entry-header .lead .page-title:first-letter {
  font-size: 1.8rem;
  color: #C6AE8B;
}
.main .entry-header .lead .page-title-sub {
  position: absolute;
  top: -.75rem;
  left: 0;
  font-family: 'Miss Fajardose', cursive;
  margin-bottom: 0;
  line-height: .5;
  font-size: 3rem;
  color: #FFF;
  text-transform: capitalize;
  text-shadow: 1px 1px 2px rgba(0,0,0,.4);
  transform: rotate(-5deg);
  z-index: 3;
}
.main .entry-header .cover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

/* entry-content */
.main .entry-content {
  padding: 3rem 0;
}

.main .entry-content a {
  text-decoration: underline;
}
.main .entry-content a:hover {
  text-decoration: none;
}

.main .entry-content ol li,
.main .entry-content ul li {
  margin-bottom: .75rem;
}
.main .entry-content .list-group li.list-group-item {
  margin-bottom: 0;
}
.main .entry-content .list-group li.list-group-item i {
  font-size: 1.2rem;
  color: #C6AE8B;
}

.main .entry-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 3px double #b3a081;
}
.main .entry-content h3:first-child {
  margin-top: 0;
}
.main .entry-content h4 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d9d4cb;
}

/* form-step */
.form-step {
  overflow: hidden;
}
.form-step .nav-item {
  margin: 0 !important;
  position: relative;
  padding: 1rem 0;
  color: #FFF;
  background-color: #595757;
}
.form-step .nav-item.active {
  color: #FFF;
  background-color: #b3a081;
}

.form-step .nav-item:last-child{
  padding-right: 1em;
}
.form-step .nav-item:last-child:before,
.form-step .nav-item:last-child:after{
  display:none;
}
.form-step .nav-item:before,
.form-step .nav-item:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.form-step .nav-item:before{
  top: 50%;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}
.form-step .nav-item:after{
  top: 50%;
  right:-.8rem;
  border-style: solid;
  border-color: transparent transparent transparent #595757;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}
.form-step .nav-item.active:after{
  top: 50%;
  right:-.8rem;
  border-style: solid;
  border-color: transparent transparent transparent #b3a081;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}

/* -------------------------------------------
 Shrine Wedding
------------------------------------------- */
/* #shrineTitle figure { background: url(../images/shrine/eyecatch.jpg) no-repeat center top; } */

#shrineTop, #shrinePack20 { text-align: center; padding-bottom: 60px; }

#shrineTop h2 em, #shrinePackage:before, #SPackContents p, #SPackContents p:after,
#shrineFlowDraw, #SWProgram figure {
 background-image: url(../images/shrine/shrine.png); background-repeat: no-repeat; background-size: 900px auto; }

#shrineTop h2 { font-size: 2.8rem; line-height: 1.4; margin: 0; padding-top: 60px; position: relative; }
#shrineTop h2 em {
 position: absolute; top: 0; left: 50%;
 background-position: -750px -250px; width: 110px; height: 29px; margin: 0 0 0 -55px; }
.ie11 #shrineTop h2, .ie10 #shrineTop h2 { margin-bottom: -.25em; padding-top: 70px; }

#shrineTop h2 strong { font-size: 3.4rem; letter-spacing: .075em; display: block; }

#shrineTop h3 {
 color: #896200; font-size: 2.4rem; line-height: 1.8; letter-spacing: .05em; margin: 38px 0; }
 .win #shrineTop h3 { font-weight: normal; }
.ie11 #shrineTop h3, .ie10 #shrineTop h3 { margin: 50px 0 25px; }

#shrineTop h3 strong { font-size: 2.8rem; font-weight: normal; }
#shrineTop h3 em { font-style: normal; vertical-align: .15em; }
#shrineTop h3 span { margin: 0 -.2em; }

#shrinePackage { width: 860px; margin: 50px auto 0; position: relative; }
#shrinePackage:before {
 content: ''; position: absolute; top: 50%; left: 50%; background-position: -750px -320px;
 width: 60px; height: 60px; margin: -30px 0 0 -30px; display: block; }

#shrinePackage div { width: 380px; margin: 0; border-top: 2px solid #d0b780; border-bottom: 2px solid #d0b780; }

#shrinePackage p {
 font-size: 2.4rem; text-align: center; letter-spacing: .05em; text-indent: .05em; margin: 3px 0;
 border-top: 1px solid #d0b780; border-bottom: 1px solid #d0b780; }

#SPack01 { padding: 30px 0; }
#SPack01 em { color: #c08c14; font-size: 4.8rem; font-style: normal; vertical-align: -.18em; margin: 0 .1em; }
#SPack01 span { font-size: 2.8rem; vertical-align: -.05em; } 
#SPack01 small { font-size: 1.5rem; margin-left: -.35em; vertical-align: .1em; }

#SPack02 { padding: 27px 0; }
#SPack02 small { font-size: 1.4rem; letter-spacing: 0; margin: 16px 0 0 1em; display: block; }

.ie11 #SPack01, .ie10 #SPack01 { padding: 50px 0 6px; }
.ie11 #SPack02, .ie10 #SPack02 { padding: 38px 0 17px; }

#shrinePack20 h2 { font-size: 2.8rem; line-height: 1.5; letter-spacing: .05em; }
#shrinePack20 h2 em { font-size: 3.1rem; font-style: normal; margin: 0 2px 0 5px; vertical-align: -1px; }
#shrinePack20 h2 strong { font-size: 3.4rem; display: block; }

.ie11 #shrinePack20, .ie10 #shrinePack20 { padding-top: 75px; }
.ie11 #shrinePack20 h2, .ie10 #shrinePack20 h2 { margin-bottom: -.5em; }

#shrinePack20 h2 small, #shrinePackFlow h3 small, #shrineWeddingPlace h2 em, #shrineWeddingFlow h2 em {
 color: #bba759; font-size: 1.7rem; font-style: normal; letter-spacing: .075em; margin: .5em 0 0; display: block; }

.ie11 #shrinePack20 h2 small, .ie10 #shrinePack20 h2 small { margin-top: -.5em; }

#SPackContents { width: 900px; height: 778px; margin: 40px auto 0; position: relative; z-index: 1; }

#SPackContents:before, #SPackContents:after {
 content: ''; position: absolute; top: 0; left: 50%;
 border: 6px solid #f9ecf0; width: 720px; height: 720px; margin-left: -360px; display: block; }
#SPackContents:after {
 top: 6px; width: 716px; height: 716px; margin-left: -354px; border: 2px solid #fff; }
 
#SPackContents:before, #SPackContents:after, #SPackContents figure {
 -webkit-border-radius: 50%; border-radius: 50%; }

#SPackContents figure { position: absolute; width: 200px; height: 200px; z-index: 5; }

#SPackContents img { width: 100%; height: auto; }

#SPC01 { top: 0; left: 130px; }
#SPC02 { top: 0; right: 130px; }
#SPC03 { top: 240px; left: 30px; }
#SPC04 { top: 250px; left: 200px; }
#SPC05 { top: 240px; right: 30px; }
#SPC06 { top: 250px; right: 200px; }
#SPC07 { top: 520px; left: 0; }
#SPC08 { top: 520px; left: 200px; }
#SPC09 { top: 520px; right: 233px; }
#SPC10 { top: 520px; right: 0; }

#SPackContents figcaption {
 position: absolute; font-size: 1.5rem; text-align: center; padding: 8px 10px; display: block; z-index: 10; }

#SPackContents p {
 position: absolute; background-position: -600px -470px; white-space: nowrap;
 font-size: 1rem; text-align: center; letter-spacing: .05em; margin: 0; padding: 13px 8px 12px; z-index: 15; }
#SPackContents p:after {
 content: ''; position: absolute; bottom: 0; left: 0;
 background-position: -600px -470px; width: 100%; height: 2px; display: block; }

.ie11 #SPackContents p, .ie10 #SPackContents p { padding: 20px 8px 4px; }
.ie11 #SPackContents #SPCT01, .ie10 #SPackContents #SPCT01 { padding-bottom: 6px; }

#SPackContents small { font-size: .8rem; letter-spacing: 0; margin-left: -.35em; }

#SPCT01 { left: 335px; top: 30px; line-height: 1.2; }
#SPCT02 { right: 330px; top: 130px; }
#SPCT03 { left: 130px; top: 460px; }
#SPCT04 { right: 130px; top: 460px; }
#SPCT05 { left: 27px; top: 735px; }
#SPCT06 { left: 210px; top: 735px; }
#SPCT07 { left: 490px; top: 735px; }
#SPCT08 { right: -2px; top: 735px; }

#shrinePackFlow h3 { font-size: 2.8rem; letter-spacing: .05em; margin: 30px 0 0; }
#shrinePackFlow h3 small, #shrineWeddingPlace h2 em, #shrineWeddingFlow h2 em { margin-top: 1em; }
.ie11 #shrinePackFlow h3, .ie10 #shrinePackFlow h3 { margin-top: 45px; }
.ie11 #shrinePackFlow h3 small, .ie10 #shrinePackFlow h3 small { margin-top: .5em; }

#shrineFlowDraw { background-position: 0 0; width: 900px; height: 172px; margin: 45px auto 0; }

#shrineFlowDraw figcaption {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

#shrineWeddingPlace, #shrineWeddingFlow { padding-bottom: 60px; }

.ie11 #shrineWeddingPlace, .ie11 #shrineWeddingFlow,
.ie10 #shrineWeddingPlace, .ie10 #shrineWeddingFlow { padding-top: 75px; }
.ie11 #shrineWeddingPlace h2 em, .ie10 #shrineWeddingPlace h2 em { margin-top: 0; }
.ie11 #shrineWeddingFlow h2, .ie10 #shrineWeddingFlow h2 { margin-bottom: -.25em; }

#shrineWeddingPlace h2 { font-size: 2.8rem; letter-spacing: .05em; }

#shrinePlaceList { padding-bottom: 0; }
#shrinePlaceList div { width: 200px; }
#shrinePlaceList figure { overflow: hidden; }
#shrinePlaceList img { width: 100%; height: auto; }

#shrinePlaceList p { font-size: 1.5rem; line-height: 1.5; letter-spacing: .075em; margin: 12px 0 0; }
#shrinePlaceList span { color: #777; display: block; }
.ie11 #shrinePlaceList span, .ie10 #shrinePlaceList span { margin-top: -2px; }

#SWPBT { margin-top: 40px; } #SWPBT a { padding: .7em 2em .575em 1.5em; }
.ie11 #SWPBT a, .ie10 #SWPBT a { padding: 1.15em 2em .175em 1.5em; }

#shrineWeddingFlow h2 { font-size: 3rem; letter-spacing: .05em; }

#shrineWeddingFlow p { font-size: .9rem; text-align: center; letter-spacing: .075em; margin: 45px 0 0; }
#shrineWeddingFlow p span { color: #dd3300; margin-right: .25em; }

#SWProgram {
 background-color: #fff; width: 798px; height: 332px;
 margin: 40px auto 0; padding-top: 50px; border: 1px solid #ddd; }
#SWProgram figure { background-position: 0 -200px; width: 686px; height: 268px; margin: 0 auto; }

#SWProgram figcaption {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

#shrineBottomIM { margin-top: 0; }

#SPackContents:before, #SPackContents:after, #SPackContents figure {
 -webkit-border-radius: 50%; border-radius: 50%; }

#SPackContents figure { overflow: hidden; position: absolute; width: 200px; height: 200px; z-index: 5; }

@media (max-width: 991.98px) {
  /* -------------------------------------------
   Shrine Wedding
  ------------------------------------------- */

  #shrineTop, #shrinePack20 { text-align: center; padding-bottom: 50px; }

  #shrineTop h2 em, #shrinePackage:before, #SPackContents p, #SPackContents p:after {
   background-image: url(../images/shrine/sp-shrine.png); background-repeat: no-repeat; background-size: 250px auto; }

  #shrineTop h2 { font-size: 2.5rem; line-height: 1.5; margin: 0; padding-top: 50px; position: relative; }
  #shrineTop h2 em {
   position: absolute; top: 0; left: 50%;
   background-position: 0 0; width: 100px; height: 27px; margin: 0 0 0 -50px; }

  #shrineTop h2 strong { font-size: 2.6rem; letter-spacing: .075em; display: block; }

  #shrineTop .mainCopy01 { font-size: 1.5rem; margin-top: 1.6em; }

  #shrineTop h3 {
   color: #896200; font-size: 1.8rem; line-height: 1.8; letter-spacing: .05em; margin: 25px 0; }

  #shrineTop h3 strong { font-size: 2.2rem; font-weight: normal; }
  #shrineTop h3 em { font-style: normal; vertical-align: .15em; }
  #shrineTop h3 span { margin: 0 -.2em; }

  @media (max-width: 335px) { #shrineTop .mainCopy01 { padding: 0 1em; }}
  @media (min-width: 336px) { #shrineTop .mainCopy01 { padding: 0 .5em; }}
  @media (min-width: 360px) { #shrineTop h3 { padding: 0 .5em; }}
  @media (min-width: 370px) { #shrineTop .mainCopy01 { padding: 0 1.2em; }}

  @media (min-width: 380px) { #shrineTop h3 { padding: 0 1em; }}
  @media (min-width: 395px) { #shrineTop h3 { padding: 0 1.5em; }}
  @media (min-width: 412px) { #shrineTop h3 { padding: 0 1.8em; }}

  #shrinePackage { margin: 50px auto 0; padding: 0 4%; position: relative; }
  #shrinePackage:before {
   content: ''; position: absolute; top: 118px; left: 50%; background-position: -120px 0;
   width: 50px; height: 50px; margin-left: -25px; display: block; }

  #shrinePackage .fLeft, #shrinePackage .fRight { float: none; }
  #shrinePackage .fRight { margin-top: 70px; }

  #shrinePackage div { margin: 0; border-top: 2px solid #d0b780; border-bottom: 2px solid #d0b780; }

  #shrinePackage p {
   font-size: 2rem; text-align: center; letter-spacing: .05em; text-indent: .05em; margin: 3px 0;
   border-top: 1px solid #d0b780; border-bottom: 1px solid #d0b780; }

  #SPack01 { padding: 28px 0; }
  #SPack01 em { color: #c08c14; font-size: 4rem; font-style: normal; vertical-align: -.15em; margin: 0 .1em; }
  #SPack01 span { font-size: 2.8rem; vertical-align: -.05em; } 
  #SPack01 small { font-size: 1.5rem; margin-left: -.35em; vertical-align: .1em; }

  #SPack02 { padding: 23px 0; }
  #SPack02 small { font-size: 1.3rem; letter-spacing: 0; margin-top: 16px; display: block; }

  @media (max-width: 355px) { #shrinePackage { padding: 0 5px; } #SPack02 small { font-size: 1.2rem; }}
  @media (min-width: 375px) { #shrinePackage { max-width: 350px; padding: 0 6%; } }

  #shrinePack20 h2 { font-size: 2.4rem; line-height: 1.4; letter-spacing: .035em; margin-top: -.1em; }
  #shrinePack20 h2 em { font-size: 2.8rem; font-style: normal; margin: 0 1px 0 4px; vertical-align: -.05em; }
  #shrinePack20 h2 strong { font-size: 3.4rem; display: block; }

  #shrinePack20 h2 small, #shrinePackFlow h3 small, #shrineWeddingPlace h2 em, #shrineWeddingFlow h2 em {
   color: #bba759; font-size: 1.5rem; font-style: normal; letter-spacing: .075em; margin: .2em 0 0; display: block; }

  #SPackContents { margin: 20px auto 0; position: relative; z-index: 1; }

  @media (max-width: 330px) { #SPackContents { width: 310px; height: 1090px; }}
  @media (min-width: 331px) { #SPackContents { width: 320px; height: 1090px; }}
  @media (min-width: 390px) { #SPackContents { width: 330px; }}

  #SPackContents figure {
   position: absolute; width: 150px; height: 150px; -webkit-border-radius: 50%; border-radius: 50%; z-index: 5; }

  #SPC01 { top: 0; left: 0; }
  #SPC02 { top: 0; right: 0; }
  #SPC03 { top: 242px; left: 20px; }
  #SPC04 { top: 242px; right: 20px; }
  #SPC05 { top: 452px; left: 20px; }
  #SPC06 { top: 452px; right: 20px; }
  #SPC07 { top: 662px; left: 0; }
  #SPC08 { top: 662px; right: 0; }
  #SPC09 { top: 872px; left: 0; }
  #SPC10 { top: 872px; right: 0; }

  #SPackContents p {
   position: absolute; background-position: 0 -60px; white-space: nowrap;
   font-size: 1rem; text-align: center; letter-spacing: .05em;
   width: 130px; margin: 0 auto; padding: 12px 6px 11px; z-index: 15; }

  #SPackContents p:after {
   content: ''; position: absolute; bottom: 0; left: 0;
   background-position: 0 -60px; width: 100%; height: 2px; display: block; }

  #SPackContents small { font-size: .8rem; letter-spacing: 0; margin-left: -.35em; }

  #SPackContents #SPCT03, #SPackContents #SPCT04 { width: 150px; margin-left: -75px; }
  #SPCT07 small, #SPCT08 small { margin-top: .35em; display: block; }

  #SPCT01 { left: 4px; top: 158px; line-height: 1.2; }
  #SPCT02 { right: 4px; top: 174px; }
  #SPCT03 { left: 50%; top: 400px; }
  #SPCT04 { left: 50%; top: 610px; }
  #SPCT05 { left: 4px; top: 820px; }
  #SPCT06 { right: 4px; top: 820px; }
  #SPCT07 { left: 4px; top: 1030px; }
  #SPCT08 { right: 4px; top: 1030px; }

  @media (max-width: 340px) {
    #SPackContents p { width: 120px; }
    #SPCT01,#SPCT05,#SPCT07 { left: 9px; }
    #SPCT02, #SPCT06, #SPCT08 { right: 9px; }
    #SPackContents #SPCT03, #SPackContents #SPCT04 { width: 140px; margin-left: -70px; }
  }

  @media (min-width: 600px) {
    #SPackContents { width: 560px; height: 670px; }
    #SPackContents:before, #SPackContents:after {
      content: ''; position: absolute; top: 25px; left: 50%;
      border: 6px solid #f9ecf0; width: 540px; height: 540px; margin-left: -276px; display: block; }
    #SPackContents:after { top: 31px; width: 536px; height: 536px; margin-left: -270px; border: 2px solid #fff; }
    #SPackContents:before, #SPackContents:after { -webkit-border-radius: 50%; border-radius: 50%; }

    #SPC02 { top: 0; right: 50%; margin-right: -75px; } #SPC03 { top: 242px; left: 0; }
    #SPC04 { top: 242px; right: 290px; } #SPC05 { top: 242px; left: 290px; }
    #SPC06 { top: 242px; right: 0; } #SPC07 { top: 452px; left: 0; }
    #SPC08 { top: 452px; right: 50%; margin-right: -75px; } #SPC09 { top: 452px; left: 410px; }
    #SPC10 { top: 0; right: 0; } #SPackContents #SPCT02 { right: 50%; top: 158px; margin-right: -65px; }
    #SPackContents #SPCT03 { left: 130px; top: 400px; margin-left: -75px; }
    #SPCT04 { left: 415px; top: 400px; } #SPCT05 { left: 0; top: 610px; }
    #SPCT06 { right: 0; top: 610px; } #SPackContents #SPCT07 { left: 50%; top: 610px; margin-left: -65px; }
    #SPCT08 { right: 0; top: 158px; }
    #shrinePackFlow { padding-top: 30px; }
  }

  #shrinePackFlow h3 { font-size: 2.5rem; letter-spacing: .05em; margin: 10px 0 0; }
  #shrinePackFlow h3 small, #shrineWeddingPlace h2 em, #shrineWeddingFlow h2 em { margin-top: .65em; }

  @media (max-width: 479px) { #shrinePackFlow h3 .spNB { margin-bottom: .4em; }}

  #shrineFlowDraw {
   background: url(../images/shrine/sp-flow.png) no-repeat 0 0; background-size: 310px auto;
   width: 310px; height: 540px; margin: 25px auto 0; }

  #shrineWeddingPlace, #shrineWeddingFlow { padding-bottom: 40px; }

  #shrineWeddingPlace h2 { font-size: 2.4rem; letter-spacing: 0; }

  #shrinePlaceList { margin: 0 auto; padding: 0 5%; }
  #shrinePlaceList div { width: 47.5%; max-width: 180px; margin-top: 20px; }
  #shrinePlaceList figure { width: 100%; overflow: hidden; }

  #shrinePlaceList p { font-size: 1.4rem; line-height: 1.5; letter-spacing: .06em; margin: 8px 0 0; }
  #shrinePlaceList span { color: #777; display: block; }

  #SWPBT { margin-top: 25px; } #SWPBT a { padding: .7em 2em .575em 1.5em; }

  #shrineWeddingFlow h2 { font-size: 2.5rem; letter-spacing: .05em; }

  #shrineWeddingFlow p {
   font-size: 1.3rem; text-align: center; line-height: 1.8; letter-spacing: .075em; margin: 25px 0 0; padding: 0 1em; }
  #shrineWeddingFlow p span { color: #dd3300; margin-right: .25em; }

  #SWProgram {
   background: #fff; width: 320px; margin: 30px auto 0; padding: 20px 10px; border: 1px solid #ddd; }

  #SWProgram figure {
   background: url(../images/shrine/sp-program.png) no-repeat 0 0; background-size: 320px auto;
   width: 320px; height: 136px; margin: 0 auto; }

  #sp-shrineWeddingPlace {
   background: #e7e0da url(../images/shrine/sp-bottom_im.jpg) no-repeat -5px 4px; background-size: auto 160px;
   width: 100%; height: 160px; padding: 4px 0; }

  @media (max-width: 340px) {
    #shrineWeddingFlow p { font-size: 1.2rem; }
    #shrineWeddingPlace h2 { font-size: 2.2rem; }
    #shrineFlowDraw { background-size: 279px auto; width: 279px; height: 486px; }
    #SWProgram { width: 288px; } #SWProgram figure { background-size: 288px auto; width: 288px; height: 123px; }
  }

  @media (min-width: 370px) { #SWProgram { padding: 20px; }}

  @media (min-width: 380px) {
    #sp-shrineWeddingPlace { background-size: auto 180px; border-bottom: 4px solid #e7e0da; }}

  @media (min-width: 400px) and (max-width: 479px) { #shrinePlaceList { max-width: 390px; padding: 0 5%; }}

  @media (min-width: 480px) {
    #sp-shrineWeddingPlace {
    background-position: center 4px; background-size: auto 150px; height: 150px; border: none; }
    #shrinePlaceList { max-width: 400px; padding: 0 5%; }}

  @media (min-width: 500px) {
    #SWProgram { width: 425px; padding: 30px 25px; }
    #SWProgram figure {
      background: url(../images/shrine/sp-program-land.png) no-repeat 0 0;
      background-size: 425px auto; width: 425px; height: 167px; }}

  @media (min-width: 600px) {
    #SWProgram { width: 100%; padding: 30px; }
    #SWProgram figure { background-size: 500px auto; width: 500px; height: 196px; }}

  @media (min-width: 640px) {
    #shrineFlowDraw {
      background: url(../images/shrine/sp-flow-land.png) no-repeat 0 0; background-size: 580px auto;
      width: 580px; height: 154px; margin: 25px auto 0; }
    #shrinePlaceList { max-width: 680px; padding: 0 3%; }
    #shrinePlaceList div { width: 23%; }
  }
}

/* accordion */
.accordion .card-header {
  padding: 0;
}
.accordion .card-header .btn {
  padding: .75rem 1.25rem;
  font-size: 1.2rem;
  color: #cc4262;
  text-decoration: none;
  border: none;
  outline: none;
}
.accordion .card-header .btn::before {
  content: 'Q.';
}
.accordion .card-header .btn:focus,
.accordion .card-header .btn:hover {
  outline: none;
}

.accordion .card-body .headline {
  font-size: 1.2rem;
  color: #C6AE8B;
}
.accordion .card-body .headline::before {
  content: 'A.';
}

/* category  */
.category .post {
  border-bottom: 1px dotted rgba(0,0,0,.125);
}
.category .post .post-meta .date {
  margin-right: .25rem;
  font-size: .9rem;
}

/*!
 * 04. Sidebar Area
 * ----------------------------------------------------------------------- */

/*!
 * 05. Footer Area
 * ----------------------------------------------------------------------- */
.footer {
  color: #FFF;
}

/* footer-top */
.footer-top {
  padding: 3rem 0;
  color: #FFF;
  background: -webkit-gradient(135deg, #b3a081 35%, #a99271);
  background: linear-gradient(135deg, #b3a081 35%, #a99271);
}
.footer-top p {
  margin-bottom: .1rem;
  font-size: .8rem;
  color: #FFF;
}
.footer-top .branding .site-description {
  margin-bottom: .25rem;
  text-align: center;
  font-size: .8rem;
}
.footer-top .branding .logo {
  display: block;
  max-width: 240px;
}
.footer-top .social-button-nav .nav-item {
  margin-bottom: .25rem;
}
.footer-top .social-button-nav .nav-link {
  padding: 0;
  line-height: 1;
  font-size: 2rem;
  color: #FFF;
}
.footer-top .social-button-nav .nav-link.instagram:hover {
  color: #CF2E92;
}
.footer-top .social-button-nav .nav-link.facebook:hover {
  color: #1877f2;
}
.footer-top .footer-main-nav {
  margin-top: 1.5rem;
}
.footer-top .footer-main-nav .nav-link {
  font-size: .8rem;
  color: #FFF;
}
.footer-top .footer-main-nav .nav-item {
  position: relative;
}
.footer-top .footer-main-nav .nav-item:first-of-type::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: .75rem;
  background-color: rgba(255,255,255,.6);
  transform: translateY(-50%);
}
.footer-top .footer-main-nav .nav-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: .75rem;
  background-color: rgba(255,255,255,.6);
  transform: translateY(-50%);
}
.footer-top .footer-main-nav .nav-link:hover {
  color: rgba(255,255,255,.6);
}
@media (max-width: 991.98px) {
  .footer-top .branding,
  .footer-top .contact-us,
  .footer-top .desktop-button-nav {
    margin-bottom: 1.5rem;
  }
  .footer-top .social-button-nav .nav-item {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}

/* footer-bottom */
.footer-bottom {
  padding: 1rem 0;
  text-align: center;
  background-color: #836d4c;
}
.footer-bottom p.copyright {
  margin: 0;
  padding: 0;
  font-size: .7rem;
  color: #FFF;
}

/* back-to-top */
@media (max-width: 991.98px) {
  .back-to-top {
    display: block;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    color: #C6AE8B;
    background-color: #FFF;
    opacity: 1;
  }
  .back-to-top:hover {
    color: #FFF;
    background-color: #C6AE8B;
  }
}
@media (min-width: 992px) {
  .back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    color: #C6AE8B;
    background-color: rgba(255,255,255,.9);
    border-radius: 3rem;
    opacity: 0;
  }
  .back-to-top:hover {
    color: #FFF;
    background-color: #C6AE8B;
  }
  .back-to-top.fade-in {
    opacity: 1;
  }
}

/*!
 * 02. Original Module Settings
 * ----------------------------------------------------------------------- */

/* icon */
.icon-text {
  display: block;
  text-align: center;
  font-size: .5rem;
}

/* badge */
.badge.white {
  color: #C6AE8B;
  background-color: #FFF;
  vertical-align: bottom;
}
.badge.required {
  color: #FFF;
  background-color: #990000;
}
.badge.news {
  color: #FFF;
  background-color: #C6AE8B;
}


.camellia .badge.white {
  color: #da536e;
}

.badge-full {
  display: block;
  padding: 1.5rem;
  line-height: 1;
  color: #FFF;
  background-color: #C6AE8B;
}
.badge-full.camellia {
  color: #FFF;
  background-color: #da536e;
}
.badge-full.light {
  color: #595757;
  background-color: #f0f0f0;
}


/* boarder & line */
.line-right::after {
  content: "｜";
  color: #c8c8c8;
}

/* text */
.fs15r {
  font-size: 1.5rem !important;
}
.fs20r {
  font-size: 2rem !important;
}
.fs25r {
  font-size: 2.5rem !important;
}
.fs30r {
  font-size: 3rem !important;
}
.fs35r {
  font-size: 3.5rem !important;
}
.fs40r {
  font-size: 4rem !important;
}
.fs45r {
  font-size: 4.5rem !important;
}
.fs50r {
  font-size: 5rem !important;
}
@media (max-width: 991.98px) {
  .fs15r {
    font-size: .75rem !important;
  }
  .fs20r {
    font-size: 1rem !important;
  }
  .fs25r {
    font-size: 1.25rem !important;
  }
  .fs30r {
    font-size: 1.5rem !important;
  }
  .fs35r {
    font-size: 1.75rem !important;
  }
  .fs40r {
    font-size: 2rem !important;
  }
  .fs45r {
    font-size: 2.25rem !important;
  }
  .fs50r {
    font-size: 2.5rem !important;
  }
}

.text-ls1 {
  letter-spacing: 1px;
}
.text-ls2 {
  letter-spacing: 2px;
}
.text-ls3 {
  letter-spacing: 3px;
}

/* button */
.button {
  position: relative;
  padding: .8rem 1.5rem;
  font-weight: 500;
  color: #FFF;
}
.button-wide {
  padding: .8rem 4rem;
}
.button-full {
  display: block !important;
}
.button.normal {
  color: #FFF;
  background-color: #C6AE8B;
}
.button.line {
  color: #FFF;
  background-color: #00B900;
  cursor: pointer;
}

.button:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-right: 5px solid #FFF;
  border-bottom: 5px solid #FFF;
  border-left: 5px solid transparent;
  z-index: 1;
}
.button:hover {
  background-color: #595757;
}

/* card */
.card a,
.card a:hover {
  text-decoration: none !important;
}
.contact-us-card {
  text-align: center;
  background: -webkit-gradient(0deg, #FFFFFF 35%, #f9f7f5);
  background: linear-gradient(0deg, #FFFFFF 35%, #f9f7f5);
}
.contact-us-card p {
  margin: .5rem 0;
}
.contact-us-card .card-title {
  font-size: 1.2rem;
}
.contact-us-card.tel {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 500;
}
.contact-us-card .number {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #a99271;
}

.line-card {
  text-align: center;
  color: #FFF;
  background-color: #00B900;
}
.line-card p {
  margin: .5rem 0;
  color: #FFF;
}
.line-card .icon {
  margin: 0;
  font-size: 3.5rem;
}
.line-card .card-title {
  font-size: 1.2rem;
}

/* box */

.color-box {
  padding: 1.5rem;
  background-color: rgba(198,175,139,.125);
}
.color-box p:last-of-type {
  margin-bottom: 0;
}

.color-box.white {
  background-color: #FFF;
} 

.scroll-box {
  margin-bottom: 1.5rem;
  padding: 2rem;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,.1);
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  font-size: 0.9rem;
}
.scroll-box h2 {
  font-size: 1em;
}
.scroll-box .inner {
  padding: 1rem;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 320px;
  text-align: left;
}

/* banner */
.banner {
  position: relative;
  color: #FFF;
  background-color: #C6AE8B;
  height: 6rem;
}
.banner .text {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

/* table */
.table.case tbody th {
  text-align: center;
}