@charset "UTF-8";
/* Theme Name: portfolio */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
  font-family: "Lato", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

main {
  display: block;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

code, kbd, samp {
  font-size: 1em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table caption, table th {
  text-align: left;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: 1px solid #000;
  border-radius: 0;
  outline: none;
}

button {
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
}
button:disabled {
  cursor: default;
}

input[type=file], input[type=range] {
  border: none;
}
input[type=file], input[type=range], input[type=search], input[type=submit], input[type=text], input[type=button], input[type=email], input[type=number], input[type=password], input[type=reset], input[type=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
}
input:-webkit-autofill {
  background-color: transparent;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  min-height: 2em;
  overflow: auto;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 3px 5px;
}
select::-ms-expand {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 2;
  font-size: 14px;
  position: relative;
}

html, body {
  overflow-x: hidden;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.selectWrap {
  position: relative;
  display: inline-block;
}
.selectWrap select {
  height: 27px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding-right: 15px;
}
.selectWrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  background: #fff;
  height: 100%;
  width: 30px;
}
.selectWrap::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
}

.spview {
  display: none;
  color: #000;
}

@media screen and (max-width: 768px) {
  .pcview {
    display: none;
  }

  .spview {
    display: block;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1000;
}
header .logo {
  padding: 20px;
}
header .logo img {
  display: block;
  height: auto;
  width: 100px;
}
header .headerNav {
  padding: 20px;
  padding-right: 50px;
}
header .headerNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .headerNav ul li {
  position: relative;
}
header .headerNav ul li:not(:first-of-type) {
  margin-left: 30px;
}
header .headerNav ul li a {
  font-size: 14px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
header .headerNav ul li .contact::after {
  display: block;
  content: "";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
}
header .burgerBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  header .headerNav {
    background-color: rgba(255, 255, 255, 0.9);
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    padding-right: 20px;
  }
  header .headerNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: left;
  }
  header .headerNav ul li {
    width: 100%;
  }
  header .headerNav ul li:not(:first-of-type) {
    margin-left: 0;
    margin-top: 30px;
  }
  header .headerNav ul li::before {
    display: none;
  }
  header .headerNav ul li a {
    color: #404040;
    text-shadow: none;
    font-weight: 400;
    font-size: 20px;
  }
  header .headerNav ul li .contact::after {
    font-size: 20px;
  }
  header .headerNav.active {
    opacity: 1;
    visibility: visible;
  }
  header .burgerBtn {
    display: block;
    width: 30px;
    height: 30px;
    z-index: 10000;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  header .burgerBtn span {
    display: block;
    width: 60%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 50%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  header .burgerBtn span:nth-of-type(1) {
    top: 30%;
  }
  header .burgerBtn span:nth-of-type(2) {
    top: 50%;
  }
  header .burgerBtn span:nth-of-type(3) {
    top: 70%;
  }
  header .burgerBtn.active {
    position: fixed;
  }
  header .burgerBtn.active span {
    background-color: #404040;
  }
  header .burgerBtn.active span:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translate(10px, -2px);
            transform: rotate(45deg) translate(10px, -2px);
  }
  header .burgerBtn.active span:nth-of-type(2) {
    width: 0;
  }
  header .burgerBtn.active span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg) translate(10px, 2px);
            transform: rotate(-45deg) translate(10px, 2px);
  }
}
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #E5FAFF;
  padding: 30px 0;
}
footer .logo {
  padding-left: 80px;
}
footer .logo img {
  display: block;
  height: auto;
  width: 100px;
}
footer small {
  color: #404040;
  font-size: 14px;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  footer {
    display: block;
    padding: 20px;
  }
  footer .logo {
    padding-left: 0;
    text-align: left;
    width: 100%;
  }
  footer .logo img {
    width: 140px;
  }
  footer small {
    display: block;
    padding-right: 0;
    margin-top: 40px;
  }
}
html {
  scroll-behavior: smooth;
}

main {
  position: relative;
}
main .goToTop {
  position: fixed;
  bottom: 100px;
  right: 80px;
  width: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
main .goToTop.show {
  opacity: 1;
  visibility: visible;
}
main .firstView {
  position: relative;
  height: 100%;
}
main .firstView .swipe-wrap .topSwiper .swiper-wrapper {
  width: 100%;
}
main .firstView .swipe-wrap .topSwiper .swiper-wrapper .swiper-slide {
  position: relative;
}
main .firstView .swipe-wrap .topSwiper .swiper-wrapper .swiper-slide .topImg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 790px;
}
main .firstView .swipe-wrap .topSwiper .swiper-wrapper .slide1 .topImg1 {
  background-image: url(img/slide1.jpg);
}
main .firstView .swipe-wrap .topSwiper .swiper-wrapper .slide2 .topImg2 {
  background-image: url(img/slide2.jpg);
}
main .firstView .swipe-wrap .topSwiper .swiper-wrapper .slide3 .topImg3 {
  background-image: url(img/slide3.jpg);
}
main .firstView .swipe-wrap .topSwiper .swiper-wrapper .slide4 .topImg4 {
  background-image: url(img/slide5.jpg);
}
main .firstView .swipe-wrap .topSwiper .swiper-wrapper .slide5 .topImg5 {
  background-image: url(img/slide4.jpg);
}
main .firstView h1 {
  position: absolute;
  top: 50%;
  left: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: left;
  z-index: 100;
}
main .firstView h1 p {
  font-size: 40px;
  line-height: 1.6;
  font-weight: 500;
  white-space: nowrap;
  font-family: "Noto Serif JP", serif;
}
main .profile {
  background-image: url(img/prof_en.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  padding: 80px 20px;
}
main .profile .container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .profile .profileChild {
  width: 48%;
  padding: 30px;
  border-radius: 40px;
  background-color: rgba(21, 37, 42, 0.7);
  text-align: left;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .profile .profileChild.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .profile .profileChild:not(:first-of-type) {
  margin-left: 2%;
}
main .profile .profileChild .mb20 {
  margin-bottom: 20px;
}
main .profile .leftSide p {
  font-family: "Noto Serif JP", serif;
}
main .profile .leftSide p:not(.name) {
  font-size: 20px;
  line-height: 2;
}
main .profile .leftSide .name {
  font-size: 40px;
  margin-bottom: 30px;
}
main .profile .rightSide p:not(.name) {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
main .weddings {
  width: 100%;
}
main .weddings .widdingsList {
  width: 100%;
}
main .weddings .widdingsList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
main .weddings .widdingsList > li:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
main .weddings .widdingsList > li .areaWeddingTitle {
  background-image: url(img/weddings-image.jpg);
}
main .weddings .widdingsList > li .areaPartiesTitle {
  background-image: url(img/parties-image.jpg);
}
main .weddings .widdingsList > li .areaMemorialTitle {
  background-image: url(img/memorial-image.jpg);
}
main .weddings .widdingsList > li .areaGiftTitle {
  background-image: url(img/gift-image.jpg);
}
main .weddings .widdingsList > li .areaTitle {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  width: 50%;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .weddings .widdingsList > li .areaTitle.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .weddings .widdingsList > li .areaTitle h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 50px;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
  font-family: "Noto Serif JP", serif;
}
main .weddings .widdingsList > li .fancyGarally {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5px;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .weddings .widdingsList > li .fancyGarally.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .weddings .widdingsList > li .fancyGarally > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 17%;
}
main .weddings .widdingsList > li .fancyGarally > li a img {
  width: 95px;
  height: 95px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #404040;
}
main .spaciaInc {
  background-color: #59A4B7;
  padding: 100px 20px;
  position: relative;
}
main .spaciaInc .container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
main .spaciaInc .container h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .spaciaInc .container h2.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .spaciaInc .container .spaciaNameWrapper {
  margin-top: 30px;
}
main .spaciaInc .container .spaciaNameWrapper p {
  font-size: 20px;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .spaciaInc .container .spaciaNameWrapper p.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .spaciaInc .container .spaciaFlower {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 330px;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .spaciaInc .container .spaciaFlower.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .spaciaInc .container .spaciaContentWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 100px;
}
main .spaciaInc .container .spaciaContentWrapper .spaciaContentEn p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .spaciaInc .container .spaciaContentWrapper .spaciaContentEn p.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .spaciaInc .container .spaciaContentWrapper .spaciaContentJa p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .spaciaInc .container .spaciaContentWrapper .spaciaContentJa p.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .spaciaInc .container .spaciaContentWrapper .spaciaContent {
  width: 50%;
  font-size: 16px;
}
main .spaciaInc .container .spaciaContentWrapper .spaciaContent .mb30 {
  margin-bottom: 30px;
}
main .editorialAchievements {
  padding: 100px 20px;
  position: relative;
}
main .editorialAchievements .container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
main .editorialAchievements .container h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  color: #404040;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .editorialAchievements .container h2.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .editorialAchievements .container .achievements {
  margin-top: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main .editorialAchievements .container .achievements li {
  width: 25%;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .editorialAchievements .container .achievements li.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .editorialAchievements .container .achievements li:not(:nth-of-type(4n)) {
  margin-bottom: 90px;
}
main .editorialAchievements .container .achievements li img {
  width: 170px;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #404040;
}
main .editorialAchievements .container .achievements li p {
  color: #404040;
  font-size: 14px;
}
main .contact {
  padding: 100px 20px;
  border-top: 1px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  color: #404040;
}
main .contact .contactImage {
  background-image: url(img/contact.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 700px;
  width: 48%;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .contact .contactImage.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .contact .contactWrapper {
  width: 40%;
}
main .contact .contactWrapper h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  color: #404040;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .contact .contactWrapper h2.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .contact .contactWrapper .contactContentWrapper {
  margin-top: 60px;
}
main .contact .contactWrapper .contactContentWrapper .animation {
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .contact .contactWrapper .contactContentWrapper .animation.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .contact .contactWrapper .submitButton {
  margin: 50px 0;
  display: block;
  width: 300px;
  height: 40px;
  background-color: #574D4D;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  border: none;
  outline: none;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .contact .contactWrapper .submitButton.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .contact .contactWrapper .language {
  display: inline-block;
  font-size: 14px;
  color: #404040;
  border-bottom: 1px solid #707070;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 1s;
  transition: 1s;
}
main .contact .contactWrapper .language.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
main .contact .contactWrapper .policy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 101;
}
main .contact .contactWrapper .policy .policyContentWrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  border-top: 1px solid #707070;
  margin-top: 20px;
  opacity: 1;
}
main .contact .contactWrapper .policy .policyContentWrapper h3 {
  font-size: 20px;
  margin-bottom: 60px;
}
main .contact .contactWrapper .policy .policyContentWrapper p {
  font-size: 16px;
  color: #404040;
  line-height: 1.1;
}
main .contact .contactWrapper .policy .policyContentWrapper .mb30 {
  margin-bottom: 30px;
}
main .contact .contactWrapper .policy .policyContentWrapper .mb20 {
  margin-bottom: 20px;
}
main .contact .contactWrapper .policy .policyContentWrapper .CopyrightAndTerms {
  font-size: 20px;
  margin: 50px 0;
}
main .contact .contactWrapper .policy .policyContentWrapper .mailTo {
  border-bottom: 1px solid #404040;
  font-size: 16px;
  display: inline-block;
  cursor: pointer;
}
main .contact .contactWrapper .policy .closeBtn {
  display: block;
  width: 50px;
  height: 50px;
  z-index: 10000;
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
main .contact .contactWrapper .policy .closeBtn span {
  display: block;
  width: 60%;
  height: 3px;
  background-color: #404040;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}
main .contact .contactWrapper .policy .closeBtn span:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(11px, -11px);
          transform: rotate(45deg) translate(11px, -11px);
}
main .contact .contactWrapper .policy .closeBtn span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg) translate(11px, 11px);
          transform: rotate(-45deg) translate(11px, 11px);
}
main .contact .contactWrapper .policyJa.active {
  opacity: 1;
  visibility: visible;
}
main .contact .contactWrapper .policyJa.active main {
  overflow: hidden;
}
main .contact .contactWrapper .policyEn.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1025px) {
  main .weddings .widdingsList li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .weddings .widdingsList li:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .weddings .widdingsList li .areaTitle {
    height: 400px;
    width: 100%;
  }
  main .weddings .widdingsList li .fancyGarally {
    width: 100%;
    padding: 0 20px;
    margin: 20px auto 40px;
    max-width: 800px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main .weddings .widdingsList li .fancyGarally > li {
    width: 20%;
  }
  main .weddings .widdingsList li .fancyGarally > li a img {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 768px) {
  main .goToTop {
    bottom: 20px;
    right: 20px;
  }
  main .firstView .swipe-wrap .topSwiper .swiper-wrapper .swiper-slide .topImg {
    height: 700px;
  }
  main .firstView h1 {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  main .firstView h1 p {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 400;
  }
  main .profile {
    padding: 20px;
  }
  main .profile .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .profile .profileChild {
    width: 100%;
    padding: 20px;
  }
  main .profile .profileChild:not(:first-of-type) {
    margin-left: 0;
    margin-top: 30px;
  }
  main .profile .leftSide p:not(.name) {
    font-size: 20px;
    line-height: 1.7;
  }
  main .profile .leftSide .name {
    font-size: 30px;
  }
  main .profile .rightSide p:not(.name) {
    line-height: 1.7;
  }
  main .weddings .widdingsList li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .weddings .widdingsList li:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .weddings .widdingsList li .areaTitle {
    height: 300px;
    width: 100%;
  }
  main .weddings .widdingsList li .fancyGarally {
    max-width: 600px;
  }
  main .weddings .widdingsList li .fancyGarally > li {
    width: 20%;
  }
  main .weddings .widdingsList li .fancyGarally > li a img {
    width: 100px;
    height: 100px;
  }
  main .spaciaInc {
    padding: 20px 30px 50px;
  }
  main .spaciaInc .container h2 {
    font-size: 40px;
  }
  main .spaciaInc .container .spaciaNameWrapper {
    margin-top: 20px;
  }
  main .spaciaInc .container .spaciaFlower {
    top: 0;
    right: 0;
    width: 130px;
  }
  main .spaciaInc .container .spaciaContentWrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
  main .spaciaInc .container .spaciaContentWrapper .spaciaContentEn {
    margin-bottom: 200px;
  }
  main .spaciaInc .container .spaciaContentWrapper .spaciaContent {
    width: 100%;
  }
  main .editorialAchievements {
    padding: 20px;
    padding-bottom: 50px;
  }
  main .editorialAchievements .container h2 {
    line-height: 1.2;
  }
  main .editorialAchievements .container .achievements li {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .editorialAchievements .container .achievements li:nth-of-type(n+3) {
    margin-top: 10px;
  }
  main .contact {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: none;
  }
  main .contact .contactImage {
    height: 700px;
    width: 100%;
  }
  main .contact .contactWrapper {
    width: 100%;
    padding: 50px;
    padding-bottom: 100px;
  }
  main .contact .contactWrapper .submitButton {
    width: 250px;
  }
  main .contact .contactWrapper .policy .policyContentWrapper {
    border-top: none;
  }
}
@media screen and (max-width: 599px) {
  main .firstView h1 p {
    font-size: 33px;
  }
  main .weddings .widdingsList > li .fancyGarally {
    max-width: 320px;
    padding: 0 10px;
  }
  main .weddings .widdingsList > li .fancyGarally > li a img {
    width: 50px;
    height: 50px;
  }
  main .editorialAchievements .container .achievements {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main .editorialAchievements .container .achievements li {
    width: 45%;
  }
  main .editorialAchievements .container .achievements li:not(:nth-of-type(4n)) {
    margin-bottom: 0;
  }
  main .editorialAchievements .container .achievements li img {
    width: 120px;
    height: 160px;
  }
}