@charset "UTF-8";
html {
  line-height: 1;
}

body {
  font-family: "Sawarabi Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
  color: #9c9ca1;
  letter-spacing: 0.1em;
  font-size: 18px;
  background-color: #f5efea;
}

h1 {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 38px;
  font-family: "Merriweather", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "meiryo", sans-serif;
  letter-spacing: 0.05em;
}

h1 span {
  font-size: 22px;
  font-family: "Sawarabi Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", sans-serif;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  h1 span {
    font-size: 16px;
  }
}

a {
  display: inline-block;
  text-decoration: none;
}

img {
  vertical-align: top;
}

.header {
  background-color: #FFEDEB;
  position: fixed;
  top: 0;
  z-index: 5000;
  width: 100%;
  height: 80px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header a {
  color: #c57d86;
  line-height: 80px;
}

@media (max-width: 768px) {
  .header a {
    line-height: 60px;
  }
}

.header__navigation {
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .header__navigation {
    justify-content: center;
  }
}

.header__logo a {
  font-size: 16px;
}

.header__logo span {
  font-family: "Merriweather", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "meiryo", sans-serif;
  letter-spacing: 0.05em;
  display: block;
  margin-left: 0.5em;
}

@media (max-width: 768px) {
  .header__logo span {
    font-size: 24px;
  }
}

.header__menu a {
  margin-left: 1em;
  font-size: 14px;
}

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

#global-nav {
  background: #c57d86;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

#global-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0;
  transition: color .6s ease;
}

#global-nav a:hover {
  color: #9c9ca1;
}

#global-nav ul {
  list-style: none;
  font-size: 20px;
}

#global-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform .6s ease, opacity .2s ease;
  font-weight: 300;
}

#global-nav ul li:nth-child(2) {
  transition-delay: .15s;
}

#global-nav ul li:nth-child(3) {
  transition-delay: .3s;
}

#global-nav ul li:nth-child(4) {
  transition-delay: .45s;
}

.open {
  overflow: hidden;
}

.open #global-nav {
  visibility: visible;
  opacity: 1;
}

.open #global-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity .9s ease;
}

#nav-toggle {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 8000;
}

@media (min-width: 1025px) {
  #nav-toggle {
    display: none;
  }
}

#nav-toggle > div {
  position: relative;
  width: 30px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #c57d86;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 10px;
}

#nav-toggle span:nth-child(3) {
  top: 19px;
}

.open #nav-toggle span {
  background: #ffffff;
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  top: 11px;
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.footer {
  margin-top: 120px;
  background-color: #c57d86;
  color: #ffffff;
  padding: 80px;
  position: relative;
}

.footer p {
  font-size: 14px;
  position: absolute;
  right: 0;
  font-family: "Merriweather", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "meiryo", sans-serif;
}

.l-wrapper {
  position: relative;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}

.m-wrapper {
  position: relative;
  width: 100%;
  max-width: 994px;
  margin: 0 auto;
}

.s-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .s-wrapper {
    padding: 0 20px;
  }
}

.more-read {
  font-size: 9px;
  text-align: right;
  margin-right: 1em;
}

.mainvisual {
  padding-top: 60px;
  background-color: #c57d86;
  width: 80%;
  margin: auto;
  margin-top: 120px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .mainvisual {
    width: 100%;
    margin-top: 100px;
    padding-top: 40px;
  }
}

.mainvisual__concept {
  width: 100%;
  justify-content: center;
  padding: 80px 0;
  display: flex;
}

@media (max-width: 1024px) {
  .mainvisual__concept {
    flex-direction: column-reverse;
    padding: 40px 0;
  }
}

.mainvisual__concept-text {
  width: 50%;
  padding: 40px 0;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #ffffff;
  color: #9c9ca1;
}

@media (max-width: 1024px) {
  .mainvisual__concept-text {
    width: 100%;
    padding: 40px 20px 60px;
  }
}

.mainvisual__concept-text h2 {
  margin-top: 20px;
  font-size: 28px;
}

@media (max-width: 768px) {
  .mainvisual__concept-text h2 {
    font-size: 18px;
  }
}

.mainvisual__concept-text h2 span {
  color: #a3cca3;
}

.mainvisual__concept-text p {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.5;
}

.mainvisual__concept-text p span {
  font-size: 24px;
  color: #c57d86;
}

@media (max-width: 768px) {
  .mainvisual__concept-text p {
    font-size: 16px;
  }
  .mainvisual__concept-text p span {
    font-size: 18px;
  }
}

.mainvisual__concept-image {
  width: 40%;
}

@media (max-width: 1024px) {
  .mainvisual__concept-image {
    width: 100%;
  }
}

.mainvisual__concept-image img {
  width: 100%;
  object-fit: cover;
}

.merit {
  padding: 80px 0;
  background-color: #FFEDEB;
  width: 80%;
  margin: auto;
  margin-top: 80px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .merit {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .merit {
    width: 100%;
    padding: 40px 0;
    margin-top: 40px;
  }
}

.merit h2 {
  text-align: center;
  font-size: 30px;
  color: #c57d86;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .merit h2 {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .merit h2 {
    font-size: 22px;
  }
}

.merit__box {
  padding-top: 20px;
}

.merit__box h3 {
  margin-top: 80px;
  font-size: 28px;
  text-align: center;
  color: #c57d86;
}

@media (max-width: 768px) {
  .merit__box h3 {
    font-size: 18px;
    margin-top: 40px;
  }
}

.merit__box span {
  color: #a3cca3;
}

.merit__box-content {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .merit__box-content {
    margin-top: 40px;
    flex-direction: column-reverse;
  }
}

.merit__box-content p {
  font-size: 18px;
  margin-left: 40px;
  width: 50%;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .merit__box-content p {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    padding: 0 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }
}

.merit__box-content-reverse {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .merit__box-content-reverse {
    margin-top: 40px;
    flex-direction: column;
  }
}

.merit__box-content-reverse p {
  font-size: 18px;
  width: 50%;
  line-height: 1.8;
  margin-right: 40px;
}

@media (max-width: 768px) {
  .merit__box-content-reverse p {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
    padding: 0 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }
}

.merit__box-image {
  width: 40%;
}

@media (max-width: 768px) {
  .merit__box-image {
    width: 100%;
  }
}

.merit__box-image img {
  width: 100%;
}

.merit__box-image-reverse {
  width: 40%;
}

@media (max-width: 768px) {
  .merit__box-image-reverse {
    width: 100%;
  }
}

.merit__box-image-reverse img {
  width: 100%;
}

.plan {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .plan {
    padding: 40px 0;
  }
}

.plan h2 {
  text-align: center;
  font-size: 28px;
  color: #c57d86;
}

@media (max-width: 1024px) {
  .plan h2 {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .plan h2 {
    font-size: 22px;
  }
}

.plan__scroll {
  overflow-x: scroll;
}

.plan__list {
  display: flex;
  justify-content: space-between;
  margin: auto;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .plan__list {
    width: 980px;
    padding: 0 50px;
    margin-top: 40px;
  }
}

.plan__list-item {
  text-align: center;
  color: #9c9ca1;
  width: 30%;
  background-color: #ffffff;
  padding-bottom: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.plan__list-item:hover {
  transform: scale(0.97);
}

.plan__list-item h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #c57d86;
}

.plan__list-text {
  font-size: 16px;
  padding: 1em;
  line-height: 1.5;
}

.plan__list-text span {
  font-size: 14px;
}

.plan__list-image {
  width: 100%;
}

.plan__list-image img {
  width: 100%;
}

.bridal {
  background-color: #FFEDEB;
  width: 80%;
  margin: auto;
  margin-top: 80px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .bridal {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .bridal {
    margin-top: 40px;
    padding: 40px 0;
  }
}

.bridal h2 {
  text-align: center;
  font-size: 28px;
  color: #c57d86;
}

@media (max-width: 1024px) {
  .bridal h2 {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .bridal h2 {
    font-size: 22px;
  }
}

.bridal__concept {
  display: flex;
  margin-top: 80px;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

@media (max-width: 768px) {
  .bridal__concept {
    margin-top: 40px;
    background-image: url("../images/bridal.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.bridal__concept-image {
  width: 40%;
}

@media (max-width: 768px) {
  .bridal__concept-image {
    display: none;
  }
}

.bridal__concept-image img {
  width: 100%;
}

.bridal__concept-text {
  width: 55%;
  color: #9c9ca1;
  padding-right: 2em;
}

@media (max-width: 768px) {
  .bridal__concept-text {
    background-color: rgba(255, 255, 255, 0.85);
    width: 90%;
    margin: 40px auto;
    padding: 40px;
  }
}

.bridal__concept-text h3 {
  font-size: 22px;
  text-align: center;
  line-height: 1.5;
  color: #c57d86;
}

.bridal__concept-text h3 span {
  font-family: "Merriweather", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "meiryo", sans-serif;
}

@media (max-width: 768px) {
  .bridal__concept-text h3 {
    font-size: 18px;
  }
}

.bridal__concept-text p {
  margin-top: 40px;
  line-height: 1.5;
}

.bridal__concept-text p span {
  color: #a3cca3;
}

@media (max-width: 768px) {
  .bridal__concept-text p {
    font-size: 16px;
    margin-top: 20px;
  }
}

.bridal__concept-text-box {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .bridal__concept-text-box {
    margin-top: 20px;
  }
}

.bridal__link {
  margin: auto;
  margin-top: 80px;
  text-align: center;
  background-color: #c57d86;
  padding: 1em;
  width: 260px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}

.bridal__link a {
  color: #ffffff;
}

@media (max-width: 768px) {
  .bridal__link {
    margin-top: 40px;
  }
  .bridal__link a {
    font-size: 14px;
  }
}
