@charset "utf-8";
/* レイアウトCSS */
html { scroll-behavior: smooth;}
body {
  background: #fff;
  background-size: 48px 48px;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
  color: #333;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}
* {
  box-sizing: border-box;
}
::selection {
    background: #e94710;
    color: #fff;
}
/*Firefox*/
::-moz-selection {
    background: #e94710;
    color: #fff;
}
h3 {
  margin-top: 1em;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
h4 {
  margin-top: 3em;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
rt {
  text-align: center;
  font-size: 0.35em;
  letter-spacing: 0;
}

/* area */
.container {
  position: relative;
  overflow-x: hidden;
}
#header {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;
  background-image: url("../img/bg_washi.png");
	background-position: center top;
	background-size: 300px 300px;
	background-repeat: repeat;
}
.content-area {
  width: 100%;
  padding: 0 0 0 230px;
}
@media screen and (max-width:990px) {
  #header {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .content-area {
    padding: 0;
  }
}

/* heading */
.heading-block {
  display: flex;
  justify-content: center;
}
#menu h2, #access h2 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.2em;
  font-size: 2rem;
  margin: 100px 0;
}

/* visual */
#visual-area {
  position: relative;
}
#visual-area .scrolldown1 {
  top: inherit;
  bottom: 0;
  z-index: 1;
}
#visual-area p {
  margin: 0 auto -50px;
  padding: 0;
}
#visual-area #campaign {
  margin-top: -80px;
  margin-bottom: -2em;
  padding-top: 80px;
}
#visual-area .campaign {
  position: relative;
  display: block;
  top: -52px;
  left: calc(50% - 52px);
  width: auto;
  height: 102px;
  z-index: 2;
}
@media screen and (max-width:420px) {
  #visual-area .campaign {
    margin-bottom: 0;
  }
}

/* header */
.header-area {
  position: relative;
  padding-top: 30%;
}
.header-area h1 .logo {
  display: block;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height: 210px;
}
.header-area .musubi {
  width: 100%;
  height: auto;
}
.header-area .musubi img {
  margin-top: 4em;
  width: 100%;
  height: auto;
}
.header-area .subcopy {
  position: absolute;
  left: calc(50% - 7px);
  bottom: 12%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 14px;
  height: auto;
}
@media screen and (max-width:990px) {
  #header {
    position: absolute;
    z-index: 2;
    background: none;
    color: #fff;
    height: 95vh;
    align-items: center;
  }
  .header-area {
    position: absolute;
    top: 0;
    width: 100px;
    height: auto;
    background-image: url("../img/bg_washi.png");
    background-position: center top;
    background-size: 300px 300px;
    background-repeat: repeat;
  }
  .header-area h1 {
    padding: 10px auto 0;
    width: 100px;
    height: 240px;
  }
  .header-area .musubi {
    margin-top: 0;
    padding: 3em auto;
    width: 100px;
    height: 80px;
  }
  .header-area p {
    display: none;
  }
}
@media screen and (max-width:420px) {
  #header {
    height: 95vh;
  }
  .header-area {
    padding-top: 0;
    padding-bottom: 2em;
  }
  #header h1 {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  #header h1 .logo {
    margin-top: 0;
  }
}

/* g-navi */
#main-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}
#g-nav ul {
  display: flex;
}
#g-nav ul li a {
  display: block;
  padding: 34px 25px;
  position: relative;
  transition: all 0.3s;
}
#g-nav ul li.current a::before, #g-nav ul li a:hover::before {
  content: "";
  position: absolute;/*描画位置*/
  top: 0;
  left: 50%;
  /*線の形状*/
  width: 1px;
  height: 20px;
  background: #e94710;
  animation: gnavipathmove 1.4s ease-in-out infinite;/*線の動き1.4秒かけて動く。ループ*/
  opacity: 0;
  color: #e94710;
}
@media screen and (max-width:990px) {
  #g-nav ul {
    display: block;
    text-align: center;
  }
  #g-nav ul li a {
    padding: 15px;
    color: #fff;
  }
  #g-nav ul li.current a::before, #g-nav ul li a:hover::before {
    animation: none;
    left: 0;
    top: 48%;
    width: 10px;
    height: 1px;
    background: #fff;
    opacity: 1;
  }
}
@keyframes gnavipathmove {/*高さ・位置・透過が変化して線が上から下に動く*/
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 20px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
#main-nav dl {
  background: #e94710;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
  font-weight: 700;
}
#main-nav dl dt {
  font-size: 0.8rem;
}
#main-nav dl a {
  color: #fff;
  font-size: 1.5vw;
}
@media screen and (max-width:990px) {
  #main-nav dl {
    display: none;
    transition: all 0.5s;
    opacity: 0;
    padding: 10px 0;
  }
  #main-nav dl a {
    font-size: 1.2rem;
  }
  #main-nav dl.telactive {
    display: block;
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    left: 20%;
    width: 60%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: UpAnime 1s forwards;
  }
}
@media screen and (max-width:420px) {
  #main-nav dl.telactive {
    width: 90%;
    left: 5%;
  }
}

/* present */
#present {
  text-align: center;
}
#present h2 {
  width: 60%;
  height: auto;
  margin: 0.5em auto;
}
#present .timeLimit {
  font-weight: 600;
  text-align: center !important;
}
#present .separate {
  width: 100%;
  height: auto;
  margin: 3em 0;
}
#present h3 {
  margin: 0 auto 1em;
}
#present h3 small {
  display: inline-block;
  margin-left: -0.5em;
  margin-right: -0.5em;
  font-size: 50%;
  letter-spacing: -0.2;
}
#present .movie {
  margin: 2em auto;
  width: 60%;
  aspect-ratio: 16 / 9;
}
#present .movie iframe {
  width: 100%;
  height: 100%;
}
#present .list {
  display: inline-block;
  margin: 2em auto;
  text-align: left;
}
#present .list li::before {
  content: "●";
  color: #e94710;
}
#present .list li {
}
#present .flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 75%;
  margin: 2em auto;
}
#present .flow .step {
  padding: 2em 1em;
  width: 30%;
  text-align: center;
  border: 6px solid #e94710;
  border-radius: 40px;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
#present .flow .step span {
  display: block;
}
#present .flow .step span.num {
  margin-bottom: 1em;
}
#present .flow .arrow {
  width: 5%;
  text-align: center;
}
#present .memo {
  display: inline-block;
  margin: 2em auto;
  text-align: left;
}
#present .memo li::before {
  content: "※";
  color: #e94710;
}
#present .memo li {
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width:990px) {
  #present h2 {
    width: 96%;
    height: auto;
    margin: 0.5em auto;
  }
  #present .flow {
    width: 90%;
  }
}
@media screen and (max-width:420px) {
  #present h3 {
    font-size: 1.8em;
  }
  #present p {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    text-align: left;
  }
  #present .movie {
    margin: 1em auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  #present .movie iframe {
    width: 100%;
    height: 100%;
  }
  #present h4 {
    font-size: 1.4em;
  }
  #present .list {
  margin: 1em;
  }
  #present .list li {
    margin-bottom: 1em;
    margin-left: 1em;
    text-indent: -1em;
    line-height: 1.4em;
  }
  #present .flow .step {
    width: 100%;
  }
  #present .flow .arrow {
    width: 100%;
  }
  #present .flow .arrow img {
    transform: rotate(90deg);
  }
  #present .memo {
    width: 90%;
  }
  #present .memo li {
    line-height: 1.4;
    margin-bottom: 0.5em;
  }
}

/* lead */
#lead {
  position: relative;
  display: flex;
  justify-content: center;
  height: 80vh;
  padding: 25vh 0 0 0;
}
#lead .lead-area {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
#lead .svganimeblock {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#lead .lead-heading {
  width: 30%;
}
#lead h2 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
  padding: 0 0 0 30px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width:1020px) {
  #lead h2 {
    line-height: 1.8;
    padding: 0 0 50px 0;
    display: inline-block;
    text-align: left;
    font-size: 1.5rem;
    letter-spacing: 0.4em;
  }
  #lead .lead-desc p {
    line-height: 2.5;
  }
}
@media screen and (max-width:920px) {
  #lead {
    height: auto;
    padding: 100px 0;
  }
  #lead .lead-heading {
    width: 100%;
    text-align: center;
  }
  #lead .lead-desc {
    width: 100%;
    padding: 0 30px;
    display: block;
    height: auto;
  }
  #lead .lead-desc p {
    width: auto;
    margin: 0 0 30px 0;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
  #lead .btnarrow5 {
    display: block;
    padding: 8px 30px;
    width: 250px;
    margin: 0 auto;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
  #lead .btnarrow5::after {
    top: 152%;
    right: 52%;
  }
}

/* styleShow */
.styleShow {
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 0 230px;
}
._parallax {
  margin: 0;
}
._parallax_text {
  background: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
}
._parallax_text:first-child {
  margin-top: 40vh;
}
._parallax_text:last-child {
  /*margin-bottom: -40vh;*/
}
._parallax_img01 {
  background: url(../img/bg_01.jpg) no-repeat center #fff;
  background-size: 100%;
  background-position: center center;
  height: 40vh;
  margin: 0;
  position: sticky;
  top: 0;
}
._parallax_img02 {
  background: url(../img/bg_02.jpg) no-repeat center #fff;
  background-size: 100%;
  background-position: center center;
  height: 40vh;
  margin: 0;
  position: sticky;
  top: 0;
}
._parallax_img03 {
  background: url(../img/bg_03.jpg) no-repeat center #fff;
  background-size: 100%;
  background-position: center center;
  height: 40vh;
  margin: 0;
  position: sticky;
  top: 0;
}
._parallax_img img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:420px) {
  .styleShow {
    padding: 0;
  }
  ._parallax_text:first-child {
  margin-top: 30vh;
}
  ._parallax_img01, ._parallax_img02, ._parallax_img03 {
    height: 40vh;
    background-size: 120%;
  }
}

/* bridal */
.bridal {
  position: relative;
  padding: 5em 0 100px 0;
  background-color:  #fff;
  overflow: hidden;
}
.fook {
  order: 1;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
}
.bridal .jinjya-bg {
  /*position: relative;*/
  background: url(../img/bg_01.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  width: 100%;
  height: 40vh;
  position: -webkit-sticky;
  position: sticky;
}
.bridal .hiroen-bg {
  position: relative;
  background: url(../img/bg_02.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  width: 100%;
  height: 40vh;
}
.bridal .jinzen-bg {
  position: relative;
  background: url(../img/bg_03.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  width: 100%;
  height: 40vh;
}
.bridal .heading-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
.bridal h2 {
  order: 3;
  width: 12%;
  text-align: center;
}
.bridal h2 img {
  /*margin-top: 3em;*/
  width: 50px;
  height: auto;
}
.bridal .style-copy {
  order: 2;
  width: 44%;
  padding-left: 3em;
  padding-right: 5em;
  line-height: 2;
}
.bridal .style-spec {
  order: 4;
  width: 44%;
  margin-left: auto;
  margin-right: auto;
}
.bridal .style-spec dl {
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
.bridal .style-spec dt {
  background-color: #f07e53;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.bridal .style-spec dd {
  margin-top:0.5em;
}
.bridal .style-spec ul {
  display: flex;
  flex-wrap: wrap;
}
.bridal .style-spec li {
  width: 50%;
}
.bridal .style-spec li::before {
  content: "・";
}
.bridal .photo-jinjya {
  margin-top: 2em;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
.bridal .photo-jinjya .jinjya-01 {
  margin-top: 3em;
  width: 620px;
  height: auto;
}
.bridal .photo-jinjya .jinjya-02 {
  margin-top: 6em;
  margin-left: 20%;
  width: 350px;
  height: auto;
}
.bridal .photo-hiroen {
  margin-top: 2em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
.bridal .photo-hiroen .hiroen-01 {
  margin-top: 3em;
  width: 600px;
  height: auto;
}
.bridal .photo-hiroen .hiroen-02 {
  margin-top: 6em;
  margin-right: 0;
  width: 500px;
  height: auto;
}
.bridal .photo-jinzen {
  margin-top: 2em;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
.bridal .photo-jinzen .jinzen-01 {
  margin-top: 3em;
  width: 50%;
  height: auto;
}
.bridal .photo-jinzen .jinzen-02 {
  margin-top: 6em;
  margin-left: auto;
  margin-right: auto;
  width: 420px;
  height: auto;
}
.bridal  .bridal-jinzen {
  align-items: flex-start;
}
.bridal  .bridal-jinzen .jinzen-lead {
  margin-top: 6em;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
@media screen and (max-width:990px) {
  .bridal .style-spec dl {
    width: 80%;
  }
  .bridal .style-copy {
    padding-left: 2em;
    padding-right: 1.5em;
  }
}
@media screen and (max-width:420px) {
  .bridal {
    margin-top: 3em;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .bridal .jinjya-bg, .bridal .hiroen-bg, .bridal .jinzen-bg {
    background-size: 160% auto;
    background-position: center top;
    position: -webkit-sticky;
    position: sticky;
  }
  .bridal .heading-block {
    flex-direction: column;
  }
  .bridal h2 {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .bridal h2 img {
    margin-top: -2em;
    width: 50px;
    height: auto;
  }
  .bridal .style-copy {
    order: 2;
    width: 100%;
    padding: 2em 1em;
  }
  .bridal .style-spec {
    order: 3;
    width: 100%;
    height: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  .bridal .style-spec dl {
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
  }
  .bridal .style-spec li {
    width: 100%;
  }
  .bridal  .bridal-jinzen .jinzen-lead {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .bridal .photo-jinjya, .bridal .photo-hiroen, .bridal .photo-jinzen {
    flex-direction: column;
  }
  .bridal .photo-jinjya .jinjya-01,
  .bridal .photo-jinjya .jinjya-02,
  .bridal .photo-hiroen .hiroen-01,
  .bridal .photo-hiroen .hiroen-02,
  .bridal .photo-jinzen .jinzen-01,
  .bridal .photo-jinzen .jinzen-02 {
    width: 100%;
    height: auto;
    margin: 0;
  }
}

/* add */
.add {
  padding-top: 5em;
  padding-bottom: 3em;
  background-image: url("../img/bg_washi_ylw.png");
	background-position: left top;
	background-size: 300px 300px;
	background-repeat: repeat;
}
.add h2 {
  margin: 1em auto 0.5em;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
.add h2 span {
  display: inline-block;
  white-space: nowrap;
}
.add .image-photo {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.add .image-photo img {
  border-radius: 40px;
}
.add .add-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 1% auto 3em;
  width: 80%;
  text-align: center;
}
.add .add-item .item {
  width: 32%;
}
.add .add-item .item h3 {
  margin-top: -24px;
}
.add .add-item .item h3 img {
  width: 64px;
  height: auto;
}
.add .add-item .item .photo {
  border-radius: 40px;
}
@media screen and (max-width:420px) {
  .add h2 {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .add .image-photo {
    width: 90%;
  }
  .add .image-photo img {
    border-radius: 10px;
  }
  .add .add-item {
    width: 90%;
  }
  .add .add-item .item {
    width: 100%;
    padding-bottom: 2em;
  }
.add .add-item .item .photo {
  border-radius: 10px;
  }
}

/* footer */
#footer {
  padding: 5em 20px 1em;
}
#footer .footer-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#footer .footer-logo img {
  margin: 0;
  width: 98px;
  height: auto;
}
#footer .info {
  font-size: 0.9em;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
#footer .info li {
  line-height: 1.4em;
}
#footer .info dt, #footer .info dd {
  display: inline-block;
}
#footer .info span {
  display: inline-block;
  white-space: nowrap;
}
#footer .info .phoneNum {
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-family: 'Shippori Mincho', serif;
}
#footer .info .phoneNum span {
  font-size: 2.5em;
}
#footer small {
  display: block;
  margin-right: 0;
  text-align: right;
}
#footer #page-top span {
  position: relative;
  top: -10px;
}
#footer #page-top span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  background: #fff;
  width: 1px;
  height: 30px;
}
#footer #page-top span::after {
  content: '';
  position: absolute;
  left: 6px;
  top: -7px;
  background: #fff;
  width: 1px;
  height: 20px;
  transform: rotate(-45deg);
}
@media screen and (min-width:769px) {
  #footer #page-top a:hover span::before, #footer #page-top a:hover span::after {
    background: #fff;
  }
}
@media screen and (max-width:768px) {
  #footer .footer-info {
    width: 100%;
    text-align: center;
  }
  #footer .footer-logo {
    margin: 0;
  }
  #footer small {
    margin: 2em auto;
    text-align: center;
  }
}
@media screen and (max-width:420px) {
  #footer .info li {
    margin-bottom: 1em;
  }
}

/* アニメーションディレイ*/
.delay-time02 {  
	animation-delay: 0.2s;
}
.delay-time03 {  
	animation-delay: 0.3s;
}
.delay-time04 {  
	animation-delay: 0.4s;
}
.delay-time05 {  
	animation-delay: 0.5s;
}
.delay-time06 {  
	animation-delay: 0.6s;
}
.delay-time07 {  
	animation-delay: 0.7s;
}
.delay-time08 {  
	animation-delay: 0.8s;
}
.delay-time09 {  
	animation-delay: 0.9s;
}
.delay-time10 {  
	animation-delay: 1s;
}
.delay-time11 {  
	animation-delay: 1.1s;
}
.delay-time12 {  
	animation-delay: 1.2s;
}
.delay-time13 {  
	animation-delay: 1.3s;
}
.delay-time15 {  
	animation-delay: 1.5s;
}