@charset "UTF-8";
/**
 * ress@5.0.2
 * https://github.com/filipelinhares/ress
 */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/*==================================================
 config
==================================================*/
/* path
==================================================*/
/* breakpoints
==================================================*/
/* base variables
==================================================*/
/* font
==================================================*/
/* colors
==================================================*/
/*==================================================
 mixin
==================================================*/
/* media-query
==================================================*/
/* burger span
==================================================*/
/* arrow
==================================================*/
/*==================================================
 function
==================================================*/
/* font-size
==================================================*/
/*==================================================
 base
==================================================*/
/* reset
==================================================*/
/* base
==================================================*/
body {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 0.875rem;
  line-height: 2;
  background-color: #f6f6f6;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

video {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

.p-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

#p-menu__toggle {
  display: none;
  opacity: 0;
}
#p-menu__toggle:checked ~ .p-menu__overlay {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
#p-menu__toggle:checked ~ .c-btn--menu > span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#p-menu__toggle:checked ~ .c-btn--menu > span::before {
  top: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
#p-menu__toggle:checked ~ .c-btn--menu > span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#p-menu__toggle:checked ~ .p-menubox {
  visibility: visible;
  left: 0;
}
@media screen and (min-width: 768px) {
  #p-menu__toggle:checked ~ .p-menubox {
    margin-top: 0;
    left: auto;
  }
}
@media screen and (min-width: 1000px) {
  #p-menu__toggle:checked ~ .p-menubox {
    margin-left: -500px;
    left: 50%;
  }
}

.p-menubox {
  text-align: left;
  padding-bottom: 120px;
  position: fixed;
  visibility: hidden;
  top: 60px;
  left: 100vw;
  max-width: 1000px;
  width: 100%;
  height: calc(100vh - 60px);
  z-index: 1;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .p-menubox {
    margin-top: -600px;
    margin-right: 5.3333333333%;
    margin-left: 5.3333333333%;
    width: 89.3333333333%;
    height: auto;
    min-height: 600px;
    top: 80px;
    left: auto;
    background-image: url(https://www.grandarc.com/wp-content/themes/grandarc-themes-new/assets/wedding/img/common/bg_menu.jpg);
    background-repeat: no-repeat;
    background-position: top 50px right;
    background-size: 36%;
  }
}
@media screen and (min-width: 1000px) {
  .p-menubox {
    margin-left: -500px;
    background-size: auto;
    left: 50%;
  }
}
.p-menubox__item {
  padding: 0 5.3333333333%;
  border-bottom: 1px solid #b88962;
}
.p-menubox__item .fa-angle-right,
.p-menubox__item .fa-caret-right {
  display: inline-block;
  margin-right: 4px;
  color: #b88962;
}
.p-menubox__item > a {
  display: block;
  padding: 20px 0;
}
.p-menubox__item.has-child {
  padding-bottom: 20px;
}
.p-menubox__item.has-child a {
  padding-bottom: 10px;
}
.p-menubox__item > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin: 0 20px;
}
.p-menubox__item > ul > li {
  font-size: smaller;
}
.p-menubox__item > ul > li > a {
  display: block;
  padding: 10px;
  padding-right: auto;
}
.p-menubox__instagram {
  margin: 20px auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-menu .p-menubox__instagram {
    margin: 0;
    text-align: left;
    position: relative;
    top: -20px;
  }
}

.c-instagram {
  font-size: 2rem;
  line-height: 1;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.c-instagram:hover {
  opacity: 0.7;
}

.swiper-slide > img {
  width: 100%;
  height: auto;
}
.swiper-pagination-bullets {
  margin-top: 10px;
  text-align: center;
}
.swiper-pagination-bullet {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 10px;
  border-radius: 0;
  background-color: #ccc;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 40px;
    height: 6px;
  }
}
.swiper-pagination-bullet-active {
  background-color: #50736a;
}

.modal {
  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%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal__overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}
.modal__content {
  width: 100%;
  padding: 30px 20px;
  max-width: 800px;
  background-color: #fff;
  position: relative;
}
.modal_inner {
  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;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.modal__close-btn {
  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;
  margin: 30px auto 0;
  max-width: 150px;
  height: 40px;
  text-align: center;
  font-size: 0.875rem;
  color: #50736a;
  border: 1px solid #50736a;
  position: relative;
  cursor: pointer;
}
.modal__close-btn .lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #50736a;
  line-height: 1;
  width: 1rem;
  height: 0.1rem;
  background: currentColor;
  border-radius: 0.1rem;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 15px;
}
.modal__close-btn .lineClose::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal .swiper-modal {
  width: 100%;
}
.modal .swiper-slide-inner-img > img {
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 700/466;
}
.modal .swiper-button-prev, .modal .swiper-button-next {
  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;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  background-color: #50736a;
  position: fixed;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.modal .swiper-button-next {
  left: auto;
  right: 0;
}
.modal .dli-chevron-right,
.modal .dli-chevron-left {
  width: 0.95em;
  height: 0.95em;
  line-height: 1;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  color: #fff;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.modal .dli-chevron-left {
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}

@media screen and (min-width: 800px) {
  .modal__content {
    padding: 50px;
    padding-bottom: 30px;
  }
  .modal .swiper-button-prev {
    left: 50%;
    margin-left: -425px;
  }
  .modal .swiper-button-next {
    left: auto;
    right: 50%;
    margin-right: -425px;
  }
}
.l-main {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 80px;
  }
}

.section {
  margin: 100px auto;
  position: relative;
}

.inner {
  margin: 0 5.3333333333%;
}
/*==================================================
 nav
==================================================*/
[class*=fa-] {
  text-indent: 0;
}

.p-nav {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    margin: 0 5.3333333333%;
  }
  .p-nav > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-nav > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-nav > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-nav > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  .p-nav > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}
@media screen and (min-width: 1000px) {
  .p-nav {
    margin: 0 auto;
    max-width: 1000px;
  }
}
.p-nav__item {
  padding: 0 5.3333333333%;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .p-nav__item {
    padding: 0;
    border: 0;
  }
  .p-nav__item:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
  }
  .p-nav__item:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
  }
  .p-nav__item:nth-child(3) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
  }
  .p-nav__item:nth-child(5) {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .p-nav__item:nth-child(7) {
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
    grid-column: 5/6;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.p-nav__item .fa-angle-right,
.p-nav__item .fa-caret-right {
  display: inline-block;
  margin-right: 4px;
  color: #575752;
}
.p-nav__item > a {
  display: inline-block;
  padding: 20px;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-nav__item > a {
    padding: 0;
    text-indent: -0.85em;
    padding-left: 0.85em;
  }
  .p-nav__item > a ::-webkit-full-page-media, .p-nav__item > a :future, :root .p-nav__item > a {
    text-indent: 0;
    margin-left: 0;
  }
}
.p-nav__item.has-child {
  padding-bottom: 20px;
}
.p-nav__item.has-child > a {
  padding-bottom: 10px;
}
.p-nav__item > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin: 0 5px;
}
@media screen and (min-width: 768px) {
  .p-nav__item > ul {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__item > ul > li {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .p-nav__item > ul > li {
    margin-top: 0;
  }
}
.p-nav__item > ul > li > a {
  display: inline-block;
  margin-left: 10px;
  padding: 10px;
  padding-left: 0;
  font-size: 87.5%;
}
@media screen and (min-width: 768px) {
  .p-nav__item > ul > li > a {
    text-indent: -0.75em;
    padding-left: 0.75em;
  }
  .p-nav__item > ul > li > a ::-webkit-full-page-media, .p-nav__item > ul > li > a :future, :root .p-nav__item > ul > li > a {
    text-indent: 0;
  }
}
.p-nav a {
  text-decoration: none;
  color: inherit;
}
.p-nav a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .p-nav--menu {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto 60px 60px;
    grid-template-rows: auto 60px 60px;
    margin: 0;
    margin-top: 50px;
    padding-bottom: 20px;
    width: 70%;
    border-bottom: 1px solid #b88962;
  }
  .p-nav--menu > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-nav--menu > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-nav--menu > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-nav--menu > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .p-nav--menu > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .p-nav--menu > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .p-nav--menu > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-nav--menu > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .p-nav--menu > *:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 1000px) {
  .p-nav--menu {
    margin: 0;
    margin-top: 50px;
    width: 57%;
  }
}
.p-nav--menu .p-nav__item {
  border-bottom-color: #b88962;
}
@media screen and (min-width: 768px) {
  .p-nav--menu .p-nav__item:nth-child(2), .p-nav--menu .p-nav__item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
  .p-nav--menu .p-nav__item:nth-child(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  .p-nav--menu .p-nav__item:nth-child(5) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  .p-nav--menu .p-nav__item:nth-child(6) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  .p-nav--menu .p-nav__item:nth-child(7) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .p-nav--menu .p-nav__item:nth-child(8) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .p-nav--menu .p-nav__item:nth-child(9) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
.p-nav--menu .fa-angle-right,
.p-nav--menu .fa-caret-right {
  color: #b88962;
}

/*==================================================
 header
==================================================*/
/* l-wrap
==================================================*/
.l-wrap {
  max-width: 1440px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

/* l-header
==================================================*/
.l-header {
  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;
  padding: 0 0 0 20px;
  width: 100%;
  height: 60px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
  overflow: hidden;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-header {
    margin: 0 auto;
    max-width: 1440px;
    height: 80px;
  }
}
.l-header a {
  text-decoration: none;
  color: inherit;
}
.l-header__sitename {
  display: none;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-header__sitename {
    display: block;
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.l-header__logo {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 140px;
  }
}
.l-header__logo a > img {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.l-header__logo a > img:hover {
  opacity: 0.7;
}
.l-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1000px) {
  .l-header__link {
    width: 100%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__link-container {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header__link-item {
  background-color: #f6f6f6;
  border-left: 1px solid #fff;
}
@media screen and (min-width: 1000px) {
  .l-header__link-item {
    background-color: transparent;
    border-left: 0;
  }
}
.l-header__link-item a {
  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-flow: column;
          flex-flow: column;
  width: 80px;
  height: 100%;
  text-align: center;
  font-size: 0.625rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l-header__link-item a {
    width: 100px;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__link-item a {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: 0.875rem;
    color: #575752;
  }
  .l-header__link-item a:hover {
    text-decoration: underline;
  }
}
.l-header__link-item a > span {
  display: inline-block;
}
@media screen and (min-width: 1000px) {
  .l-header__link-item a > span {
    display: inline;
  }
}
.l-header__link-item .fa-phone,
.l-header__link-item .fa-calendar-alt {
  display: block;
  margin: 6px auto 4px;
  font-size: 140%;
  color: #50736a;
}
@media screen and (min-width: 1000px) {
  .l-header__link-item .fa-phone,
  .l-header__link-item .fa-calendar-alt {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__link-item .fa-calendar-alt {
    margin-right: 8px;
  }
}

/*==================================================
 footer
==================================================*/
/* l-footer
==================================================*/
.l-footer {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #fff;
}
.l-footer__inner {
  padding: 24px 0 0;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    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;
    padding: 14px 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-footer__inner {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    max-width: 1000px;
  }
}
.l-footer__btn {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}

/* copyright
==================================================*/
.c-copyright {
  padding: 24px 5.3333333333%;
  text-align: center;
  font-size: 0.75rem;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .c-copyright {
    padding: 0;
  }
}

.p-footer-nav {
  border-top: 1px solid #ccc;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer-nav {
    padding-top: 40px;
  }
}
.p-footer-nav__inner {
  margin: 0;
}

.c-address {
  padding: 40px 5.3333333333%;
  text-align: center;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #f6f6f6;
}
.c-address__logo {
  display: block;
  margin: 0 auto;
  width: 170px;
}
.c-address__text {
  display: block;
  margin-top: 20px;
  font-size: 0.75rem;
}

/*==================================================
 button
==================================================*/
/* c-btn
==================================================*/
.c-btn {
  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;
  margin: 0 auto;
  border: 1px solid #50736a;
  background-color: #fff;
  color: #50736a;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  width: 300px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: 80px;
    font-size: 1.25rem;
  }
}
.c-btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.c-btn__inner {
  line-height: 1;
}
.c-btn__text {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  -webkit-text-stroke: 0.3px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-btn__text {
    font-size: 1.25rem;
    -webkit-text-stroke: 0;
  }
}
.c-btn--menu {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 60px;
  height: 60px;
  background: #50736a;
  cursor: pointer;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-btn--menu {
    width: 80px;
    height: 80px;
  }
  .c-btn--menu:hover {
    opacity: 0.7;
  }
  .c-btn--menu:visited {
    opacity: 1;
  }
}
.c-btn--menu span {
  display: inline-block;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 1px;
  background: #fff;
}
.c-btn--menu span::before, .c-btn--menu span::after {
  display: inline-block;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 1px;
  background: #fff;
  content: "";
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
.c-btn--menu span::before {
  top: -8px;
}
.c-btn--menu span::after {
  top: 8px;
}
.c-btn--menu.is-open > span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btn--menu.is-open > span::before {
  top: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.c-btn--menu.is-open > span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-btn--pagetop {
  margin: 0 20px 20px auto;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  font-size: 1.625rem;
  background-color: #575752;
  color: #fff;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: fixed;
  bottom: 0;
  right: 0;
}
.c-btn--pagetop:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1440px) {
  .c-btn--pagetop {
    right: 50%;
    margin-right: -700px;
  }
}
.c-btn--top .c-btn__text {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
}
.c-btn--icon-back::before {
  margin-left: 1em;
  content: "←";
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
}
.c-btn--icon-arrow::after {
  margin-left: 1em;
  content: "→";
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
}
.c-btn--icon-fixed {
  padding: 0 36px;
  position: relative;
}
.c-btn--icon-fixed::after {
  margin: 0;
  position: absolute;
  right: 15px;
}
.c-btn--black {
  border: 0;
  background-color: #000;
  color: #fff;
}
.c-btn--green {
  border: 0;
  background-color: #50736a;
  color: #fff;
}
.c-btn--gold {
  border: 0;
  background-color: #b88962;
  color: #fff;
}
.c-btn--border {
  border: 2px solid #fff;
  position: relative;
}
.c-btn--border::before {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  content: "";
  border: 1px solid #fff;
  position: absolute;
  top: 4px;
  left: 4px;
}
.c-btn--parent {
  margin: 0 auto;
  width: 280px;
}
.c-btn--parent .c-btn__text {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-btn--parent {
    margin: 0;
    height: 50px;
  }
}
.c-btn--movie-full {
  width: 300px;
  height: 120px;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 0.3px;
}
@media screen and (min-width: 768px) {
  .c-btn--movie-full {
    width: 300px;
    height: 120px;
    -webkit-text-stroke: 0;
  }
}
.c-btn--movie-full .c-btn__more {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-block;
  border-bottom: 1px solid #f6f6f6;
  font-size: 0.75rem;
  letter-spacing: normal;
}
.c-btn--movie-full .c-btn__more::after {
  display: inline-block;
  content: "→";
  margin-left: 10px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
}
.c-btn--tel, .c-btn--contact, .c-btn--fair {
  height: 100px;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-btn--tel, .c-btn--contact, .c-btn--fair {
    width: auto;
    height: 150px;
    font-size: 1.5rem;
  }
}
.c-btn--tel .c-btn_inner, .c-btn--contact .c-btn_inner, .c-btn--fair .c-btn_inner {
  line-height: 1;
}
.c-btn--tel .c-btn__text, .c-btn--contact .c-btn__text, .c-btn--fair .c-btn__text {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__item .c-btn--tel, .p-contact__item .c-btn--contact, .p-contact__item .c-btn--fair {
    width: 300px;
    height: 110px;
  }
}
@media screen and (min-width: 768px) {
  .c-btn--tel {
    pointer-events: none;
  }
}
.c-btn--tel .c-btn__tel {
  display: block;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.25rem;
  -webkit-text-stroke: 0.3px;
}
@media screen and (min-width: 768px) {
  .c-btn--tel .c-btn__tel {
    -webkit-text-stroke: 0;
  }
}
.c-btn--tel .c-btn__tel > span {
  display: inline-block;
  margin-left: 5px;
  font-size: 1.875rem;
}
.c-btn--contact .c-btn__text > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-btn--dress {
    width: 400px;
    height: 80px;
    background-color: #fff;
    position: relative;
  }
}
.c-btn--icon-plus {
  position: relative;
}
.c-btn--icon-plus::before, .c-btn--icon-plus::after {
  content: "";
  border-top: 1px solid #50736a;
  width: 12px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-left: -6px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.c-btn--icon-plus::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-btn--icon-plus.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-btn--chef, .c-btn--chef-black {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  border-color: #000;
  background-color: #fff;
  color: #000;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-btn--chef, .c-btn--chef-black {
    height: 50px;
  }
  .c-btn--chef .c-btn__text, .c-btn--chef-black .c-btn__text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1000px) {
  .c-btn--chef, .c-btn--chef-black {
    margin: 0;
    width: 200px;
    height: 50px;
  }
}
.c-btn--chef::before, .c-btn--chef::after, .c-btn--chef-black::before, .c-btn--chef-black::after {
  content: "";
  border-top: 2px solid #000;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  margin-left: -8px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.c-btn--chef::after, .c-btn--chef-black::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-btn--chef.is-open::after, .c-btn--chef-black.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-btn--chef-black {
  border-color: #fff;
  background-color: #000;
  color: #fff;
}
.c-btn--chef-black::before, .c-btn--chef-black::after {
  border-top-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-btn--info {
    height: 60px;
  }
  .c-btn--info .c-btn__text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .c-btn--info.c-btn--gold {
    width: 100%;
    height: 80px;
  }
  .c-btn--info.c-btn--gold .c-btn__text {
    font-size: 1.25rem;
  }
}
.c-btn--submit {
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .c-btn--submit {
    width: 100%;
    max-width: 440px;
  }
}
@media screen and (min-width: 768px) {
  .c-btn--back {
    width: 100%;
    max-width: 440px;
  }
}

.c-link-more {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  -webkit-text-stroke: 0.3px;
  font-size: 0.875rem;
  border-bottom: 1px solid #a7b9b4;
  color: #50736a;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
@media screen and (min-width: 768px) {
  .c-link-more {
    -webkit-text-stroke: 0;
  }
}
.c-link-more:hover {
  text-decoration: none;
  opacity: 0.7;
}
.c-link-more::after {
  display: inline-block;
  content: "→";
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-left: 10px;
  font-weight: bold;
}

.c-title {
  font-weight: normal;
  line-height: 1.4;
  color: #50736a;
}
.c-title__main {
  display: block;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 2.125rem;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-title__main {
    -webkit-text-stroke: 0;
  }
}
.p-home-concept .c-title__main {
  margin: 0 auto;
  width: 300px;
}
@media screen and (min-width: 768px) {
  .p-home-concept .c-title__main {
    width: auto;
    max-width: 480px;
  }
}
.p-concept-wedding .c-title__main {
  margin: 0 auto;
  width: 220px;
}
@media screen and (min-width: 768px) {
  .p-concept-wedding .c-title__main {
    width: 430px;
  }
}
.c-title__sub {
  display: block;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.125rem;
}
.c-title__sub--home {
  margin-top: 16px;
  font-size: 1.25rem;
}
.c-title--page {
  text-align: center;
}
.c-title--page .c-title__main {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .c-title--page .c-title__main {
    font-size: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .c-title--page .c-title__sub {
    font-size: 1.25rem;
  }
}
.c-title--plan {
  text-align: center;
}
.c-title--plan .c-title__main {
  font-size: 2rem;
  letter-spacing: normal;
}
.c-title--plan .c-title__sub {
  margin-top: 10px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
  letter-spacing: normal;
  color: #000;
}
.c-title--sp-contents .c-title__sub {
  margin-top: 10px;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.25rem;
  line-height: 1.8;
}
.c-title--sp-contents .c-title__sub > span {
  display: inline-block;
}
.p-contentbox--cuisine .c-title .c-title__main, .p-contentbox--cuisine-right .c-title .c-title__main {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contentbox--cuisine .c-title .c-title__main, .p-contentbox--cuisine-right .c-title .c-title__main {
    font-size: 1.625rem;
    font-size: clamp(1.375rem, 2.8vw, 1.625rem);
  }
}
.p-contentbox--cuisine .c-title .c-title__main > span, .p-contentbox--cuisine-right .c-title .c-title__main > span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-contentbox--cuisine .c-title .c-title__main > span, .p-contentbox--cuisine-right .c-title .c-title__main > span {
    display: inline;
  }
}
@media screen and (min-width: 1000px) {
  .p-contentbox--cuisine .c-title .c-title__main > span, .p-contentbox--cuisine-right .c-title .c-title__main > span {
    display: inline-block;
  }
}
.p-contentbox--cuisine .c-title .c-title__sub, .p-contentbox--cuisine-right .c-title .c-title__sub {
  font-size: 1.375rem;
}
.p-contentbox--cuisine-left .c-title .c-title__main {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contentbox--cuisine-left .c-title .c-title__main {
    font-size: 1.625rem;
    font-size: clamp(1.375rem, 2.8vw, 1.625rem);
  }
}
.p-contentbox--cuisine-left .c-title .c-title__main > span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-contentbox--cuisine-left .c-title .c-title__main > span {
    display: inline;
  }
}
@media screen and (min-width: 1000px) {
  .p-contentbox--cuisine-left .c-title .c-title__main > span {
    display: inline-block;
  }
}
.p-contentbox--cuisine-left .c-title .c-title__sub {
  margin-top: 10px;
  font-size: 0.875rem;
}

.c-icon--newWindow {
  margin-left: 1em;
}
.c-icon--newWindow .fa-square:first-of-type {
  top: 0.2em;
}
.c-icon--newWindow .fa-square:last-of-type {
  background-color: #fff;
  top: -0.2em;
  right: -0.4em;
}

.c-card {
  display: block;
  margin: 30px 5.3333333333%;
  background-color: #fff;
  position: relative;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.c-card:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .c-card {
    -ms-flex-preferred-size: 310px;
        flex-basis: 310px;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-card:nth-child(1) {
    top: -50px;
  }
}
@media screen and (min-width: 768px) {
  .c-card:nth-child(3) {
    top: 50px;
  }
}
.c-card__img > img {
  width: 100%;
  height: auto;
}
.c-card__inner {
  padding: 24px 16px;
}
.c-card__title {
  line-height: 1.4;
}
.c-card__main-title {
  display: block;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 0.3px;
  color: #b88962;
}
@media screen and (min-width: 768px) {
  .c-card__main-title {
    font-size: 1.75rem;
    -webkit-text-stroke: 0;
  }
}
.c-card__sub-title {
  display: block;
  margin-top: 10px;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  color: #575752;
}
@media screen and (min-width: 768px) {
  .c-card__sub-title {
    font-size: 1rem;
  }
}
.c-card__content {
  margin-top: 16px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.c-card__more {
  margin-top: 24px;
  text-align: right;
}
.c-card.c-card--cuisine {
  margin-top: -20px;
  padding: 24px 20px;
  border: 1px solid #b88962;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #000), to(#575752));
  background-image: linear-gradient(to right, #000 30%, #575752 100%);
  color: #fff;
}
.c-card.c-card--cuisine:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-card.c-card--cuisine {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 1000px;
        flex-basis: 1000px;
    padding: 60px 50px 80px;
  }
}
.c-card.c-card--cuisine .c-card__img {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
.c-card.c-card--cuisine .c-card__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-card.c-card--cuisine .c-card__inner {
    padding-top: 0;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .c-card.c-card--cuisine .c-card__inner {
    padding-top: 32px;
  }
}
.c-card.c-card--cuisine .c-card__main-title {
  margin-top: 12px;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.15rem;
}
.c-card.c-card--cuisine .c-card__sub-title {
  margin-top: 0;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #b88962;
}
.c-card.c-card--cuisine .c-card__more {
  margin-top: 0;
  position: relative;
  bottom: -46px;
}
@media screen and (min-width: 768px) {
  .c-card.c-card--cuisine .c-card__more {
    margin-left: -150px;
    position: absolute;
    left: 50%;
    bottom: -40px;
  }
}
.c-card.c-card--cuisine .c-card__more .c-btn {
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .c-card.c-card--cuisine .c-card__more .c-btn {
    width: 300px;
  }
}

.c-plan {
  display: block;
  margin: 20px auto;
  padding: 0 0 60px;
  background-color: #f6f6f6;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: relative;
}
.c-plan:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .c-plan {
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
    margin-right: 0;
    margin-left: 0;
  }
}
.c-plan__img > img {
  width: 100%;
  height: auto;
}
.c-plan__content {
  padding: 20px 12px 0;
  font-size: 0.875rem;
}
.c-plan__more {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.c-note {
  text-indent: -1em;
  padding-left: 1em;
}
.p-contentbox--home-sp-contents .c-note {
  margin-top: 10px;
  font-size: 0.75rem;
  line-height: 2;
  color: #575752;
}

.c-key-visual--first {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-key-visual--first {
    margin-top: 80px;
  }
}

.c-link {
  text-decoration: underline;
  color: #50736a;
}
.c-link:hover {
  text-decoration: none;
}

/*==================================================
 site link
==================================================*/
.p-site-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
  line-height: 1;
}
.p-site-link-container {
  margin: 26px auto;
  max-width: 340px;
}
@media screen and (min-width: 768px) {
  .p-site-link-container {
    margin: 14px 0;
    padding-bottom: 20px;
    max-width: none;
  }
}
.p-site-link__item {
  margin: 12px 16px;
  margin-right: 0;
  padding-left: 16px;
  border-left: 1px solid #b1b1ae;
}
.p-site-link__item:first-child, .p-site-link__item:nth-child(3) {
  margin-left: 16%;
  padding-left: 0;
  border-left: 0;
}
@media screen and (min-width: 768px) {
  .p-site-link__item:first-child, .p-site-link__item:nth-child(3) {
    margin-left: 0;
  }
}
.p-site-link__item:nth-child(2) {
  margin-right: 16%;
}
@media screen and (min-width: 768px) {
  .p-site-link__item:nth-child(2) {
    margin-right: 0;
  }
}
.p-site-link__item:nth-child(3) {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-site-link__item:nth-child(3) {
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid #b1b1ae;
  }
}
.p-site-link__item:last-child {
  margin-right: 0;
}
.p-site-link a {
  text-decoration: none;
  color: inherit;
}
.p-site-link a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-menubox .p-site-link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.p-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin: 16px 2.6666666667%;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    font-size: 0.875rem;
  }
}
.p-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.p-breadcrumb__list:last-child .p-breadcrumb__link {
  color: #000;
}
.p-breadcrumb__link {
  color: #50736a;
}
.p-breadcrumb .fa-angle-right {
  font-size: 65%;
}

@media screen and (min-width: 768px) {
  .p-anchor__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 50px;
  }
}
.p-anchor__item {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-anchor__item {
    -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
    margin-top: 0;
  }
}
.p-anchor .c-btn {
  text-align: center;
  height: 64px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-anchor .c-btn {
    width: 100%;
  }
}
.p-anchor .c-btn__text {
  line-height: 1.3;
}
.p-anchor .c-btn__text > span {
  display: block;
  font-size: 0.625rem;
}
.p-anchor .c-btn .fa-angle-down {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-anchor--cuisine .p-anchor__list, .p-anchor--reception .p-anchor__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-right: 5.3333333333%;
    margin-left: 5.3333333333%;
  }
}
@media screen and (min-width: 1000px) {
  .p-anchor--cuisine .p-anchor__list, .p-anchor--reception .p-anchor__list {
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .p-anchor--cuisine .p-anchor__item, .p-anchor--reception .p-anchor__item {
    -ms-flex-preferred-size: 47.5%;
        flex-basis: 47.5%;
  }
}
.p-anchor--cuisine .c-btn__text {
  -webkit-text-stroke: 0.3px;
}
@media screen and (min-width: 768px) {
  .p-anchor--cuisine .c-btn__text {
    -webkit-text-stroke: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-anchor--prix .p-anchor__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1.33%;
    margin-right: 5.3333333333%;
    margin-left: 5.3333333333%;
  }
}
@media screen and (min-width: 1000px) {
  .p-anchor--prix .p-anchor__list {
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;
  }
}
.p-anchor--prix .p-anchor__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-anchor--prix .p-anchor__item {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
  }
}
@media screen and (min-width: 768px) {
  .p-anchor--prix .c-btn__text {
    font-size: 1rem;
  }
}

.p-page-header__summary {
  margin: 30px 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-page-header__summary {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
    font-size: 1.125rem;
  }
}
.p-page-header__summary--privacy {
  text-align: center;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.125rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .p-page-header__summary--privacy {
    font-size: 1.375rem;
  }
}
.p-page-header__summary--privacy span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-page-header__summary--privacy span {
    display: inline-block;
    margin-left: 1em;
  }
}

.p-contentbox {
  margin: 0 2.6666666667%;
  padding: 40px 30px 50px;
  background-color: #fff;
  position: relative;
  top: -10px;
}
@media screen and (min-width: 768px) {
  .p-contentbox {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.p-contentbox__img {
  margin-top: 30px;
}
.p-contentbox__img > img {
  width: 100%;
  height: auto;
}
.p-contentbox__text {
  margin-top: 30px;
}
.p-contentbox__link {
  margin-top: 30px;
}
.p-contentbox__more {
  position: relative;
  top: 3rem;
}
.p-contentbox--border {
  border-top: 5px solid #50736a;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
.p-contentbox--short-border {
  margin: 0;
}
.p-contentbox--short-border::before {
  content: "";
  margin-left: -150px;
  width: 300px;
  border-top: 3px solid #50736a;
  position: absolute;
  top: 0;
  left: 50%;
}
.p-contentbox--line {
  margin-right: 5.3333333333%;
  margin-left: 0;
}
.p-contentbox--line::before {
  content: "";
  border-top: 1px solid #50736a;
  width: 20px;
  position: absolute;
  top: 3.9rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-contentbox--line::before {
    width: 40px;
  }
}
.p-contentbox--line .p-contentbox__text {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-contentbox--home-concept {
  padding: 60px 20px 20px;
}
@media screen and (min-width: 768px) {
  .p-contentbox--home-concept {
    margin: 0 auto;
    padding: 80px 50px 0;
    width: 41.667%;
    position: absolute;
    top: 200px;
    right: 0;
  }
}
.p-contentbox--home-concept .p-contentbox__text {
  text-align: center;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-contentbox--home-ceremony, .p-contentbox--home-reception, .p-contentbox--home-cuisine, .p-contentbox--home-sp-contents {
    width: 37.847%;
    position: absolute;
    top: -5px;
    left: 0;
  }
}
.p-contentbox--home-cuisine, .p-contentbox--home-sp-contents {
  top: auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-contentbox--home-cuisine, .p-contentbox--home-sp-contents {
    width: 545px;
    position: relative;
    top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .p-contentbox--home-cuisine, .p-contentbox--home-sp-contents {
    position: absolute;
    top: -5px;
  }
}
.p-contentbox--home-plan .c-title__sub {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-contentbox--concept {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    top: -30px;
  }
}
@media screen and (min-width: 1000px) {
  .p-contentbox--concept {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-contentbox--concept .p-contentbox__img {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
    margin-top: 0;
    margin-left: 50px;
  }
}
.p-contentbox--concept .p-contentbox__text {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-contentbox--concept .c-btn {
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .p-contentbox--concept .c-btn {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-contentbox--concept-reverse .p-contentbox__img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    margin-left: 0;
    margin-right: 50px;
  }
}
.p-contentbox--ceremony, .p-contentbox--reception {
  margin: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-contentbox--ceremony, .p-contentbox--reception {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-contentbox--ceremony .c-title, .p-contentbox--reception .c-title {
  text-align: center;
}
.p-contentbox--ceremony .p-contentbox__summary, .p-contentbox--reception .p-contentbox__summary {
  padding: 20px 5.3333333333%;
  text-align: center;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contentbox--ceremony .p-contentbox__summary, .p-contentbox--reception .p-contentbox__summary {
    font-size: 1rem;
  }
}
.p-contentbox--ceremony .p-contentbox__img, .p-contentbox--reception .p-contentbox__img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contentbox--ceremony .p-contentbox__img::after, .p-contentbox--reception .p-contentbox__img::after {
    content: "";
    width: 100%;
    height: 20em;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.p-contentbox--ceremony .p-contentbox__content, .p-contentbox--reception .p-contentbox__content {
  padding: 20px 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-contentbox--ceremony .p-contentbox__content, .p-contentbox--reception .p-contentbox__content {
    width: 100%;
    text-align: center;
    font-size: 1.125rem;
    color: #fff;
    position: absolute;
    bottom: 20px;
  }
}
.p-contentbox--reception-room {
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: 20px;
  border-top-width: 2px;
}
@media screen and (min-width: 1000px) {
  .p-contentbox--reception-room {
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .p-contentbox--reception-room .p-contentbox__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse nowrap;
            flex-flow: row-reverse nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-contentbox--reception-room .p-contentbox__img {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-contentbox--reception-room .p-contentbox__cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-contentbox--reception-room .p-contentbox__summary {
  margin-top: 16px;
}
.p-contentbox--cuisine {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-contentbox--cuisine {
    margin: 0;
    width: 41.667%;
    position: absolute;
    right: 0;
    top: 160px;
  }
}
.p-contentbox--cuisine .p-contentbox__summary {
  margin-top: 30px;
  font-size: 0.8125rem;
}
.p-contentbox--cuisine-right, .p-contentbox--cuisine-left {
  margin-right: 0;
  margin-left: 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-contentbox--cuisine-right, .p-contentbox--cuisine-left {
    width: 48.61%;
    position: absolute;
    right: 0;
    top: -70px;
  }
}
.p-contentbox--cuisine-right .p-contentbox__summary, .p-contentbox--cuisine-left .p-contentbox__summary {
  margin-top: 30px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-contentbox--cuisine-left {
  margin-right: 5.3333333333%;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-contentbox--cuisine-left {
    right: auto;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-contentbox--cuisine-no-summary {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .p-card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: min(50px, 3%);
    margin: 16% 5.3333333333%;
  }
}
@media screen and (min-width: 1000px) {
  .p-card-container {
    margin: -10% auto 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-card-container {
    margin-top: -20%;
  }
}
@media screen and (min-width: 768px) {
  .p-home-cuisine .p-card-container {
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .p-home-cuisine .p-card-container {
    margin-top: -8%;
  }
}
@media screen and (min-width: 768px) {
  .p-card-container--ceremony, .p-card-container--reception {
    margin: 40px 5.3333333333%;
    position: relative;
    z-index: 3;
  }
}
@media screen and (min-width: 1000px) {
  .p-card-container--ceremony, .p-card-container--reception {
    margin: 40px auto;
  }
}
@media screen and (min-width: 768px) {
  .p-card-container--ceremony .c-card:nth-child(1), .p-card-container--ceremony .c-card:nth-child(3), .p-card-container--reception .c-card:nth-child(1), .p-card-container--reception .c-card:nth-child(3) {
    top: auto;
  }
}

.p-plan-container {
  margin: 40px auto 0;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .p-plan-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: min(50px, 3%);
  }
}

.p-contact {
  margin-top: 80px;
  padding: 40px 5.3333333333%;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-bottom: 80px;
  }
}
.p-contact::before {
  content: "";
  width: 300px;
  border-top: 3px solid #50736a;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -150px;
}
.p-contact__title {
  text-align: center;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    -webkit-text-stroke: 0;
  }
}
.p-contact__summary {
  text-align: center;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-contact__summary > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-contact__summary > span {
    display: inline-block;
  }
}
.p-contact__list {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-contact__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
  }
}
.p-contact__item {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-contact__item {
    margin-top: 0;
  }
}
.p-contact .btn {
  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;
  width: 295px;
  height: 110px;
  text-align: center;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.25rem;
  background-color: #b88962;
  color: #fff;
  position: relative;
}
.p-contact .btn--iconArrow::after {
  content: "→";
  position: absolute;
  right: 16px;
}

.p-home-main-visual {
  padding-bottom: 30px;
  text-align: center;
  background-color: #f6f6f6;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home-main-visual {
    padding-bottom: 0;
  }
}
.p-home-main-visual__inner {
  aspect-ratio: 1440/612;
  background-image: url(https://www.grandarc.com/wp-content/themes/grandarc-themes-new/assets/wedding/img//home/pic_mv.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.p-home-main-visual__btn {
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .p-home-main-visual__btn {
    margin: auto;
    position: absolute;
    bottom: 40px;
    left: 40px;
  }
}
.p-home-news {
  padding: 30px 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-home-news {
    padding: 16px 0;
  }
}
@media screen and (min-width: 1000px) {
  .p-home-news {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}
@media screen and (min-width: 768px) {
  .p-home-news__inner {
    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;
    gap: 16px;
  }
}
.p-home-news__title {
  display: inline-block;
  padding: 0 1em;
  font-size: 1rem;
  border: 1px solid #b88962;
  color: #b88962;
}
@media screen and (min-width: 768px) {
  .p-home-news__list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-home-news__item {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-home-news__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-top: 0;
  }
}
.p-home-news__item a {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home-news__item a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.p-home-news__date, .p-home-news__content {
  display: block;
}
.p-home-news__date {
  font-weight: bold;
  color: #b88962;
}
@media screen and (min-width: 768px) {
  .p-home-news__text {
    white-space: nowrap;
  }
}
.p-home-news__more {
  display: block;
  margin-top: 16px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-home-news__more {
    margin-top: 0;
    margin-left: auto;
  }
}
.p-home-news + section {
  margin-top: 0;
}
.p-home-concept {
  min-height: min(805px, 94vw);
}
@media screen and (min-width: 768px) {
  .p-home-concept__img {
    padding-right: 25%;
  }
}
.p-home-concept .c-btn-more {
  width: auto;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .p-home-ceremony {
    margin: 100px auto 150px;
  }
}
@media screen and (min-width: 768px) {
  .p-home-reception {
    margin: 100px auto;
  }
}
.p-home-cuisine {
  margin-bottom: 150px;
}
.p-home-cuisine__img {
  position: relative;
  top: -10px;
  z-index: 0;
}
@media screen and (min-width: 1000px) {
  .p-home-cuisine__img {
    top: auto;
  }
}
.p-home-plan {
  margin-bottom: 0;
  padding-bottom: 40px;
  background-color: #fff;
}
.p-home-plan__more {
  margin-top: 40px;
}

.p-other {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-other {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.p-mapping,
.p-qanda,
.p-fair {
  padding: 30px 5.3333333333% 40px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .p-mapping,
  .p-qanda,
  .p-fair {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.p-mapping__title,
.p-qanda__title,
.p-fair__title {
  line-height: 1.4;
  color: #fff;
}
.p-mapping__main-title,
.p-qanda__main-title,
.p-fair__main-title {
  display: block;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.08em;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-mapping__main-title,
  .p-qanda__main-title,
  .p-fair__main-title {
    -webkit-text-stroke: 0;
  }
}
.p-mapping__main-title > span,
.p-qanda__main-title > span,
.p-fair__main-title > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-mapping__main-title > span,
  .p-qanda__main-title > span,
  .p-fair__main-title > span {
    display: inline-block;
    margin-left: 0.5em;
  }
}
.p-mapping__sub-title,
.p-qanda__sub-title,
.p-fair__sub-title {
  display: block;
  margin-top: 12px;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  letter-spacing: normal;
}
.p-mapping__more,
.p-qanda__more,
.p-fair__more {
  margin-top: 40px;
}

.p-mapping {
  background-image: url(https://www.grandarc.com/wp-content/themes/grandarc-themes-new/assets/wedding/img/home/bg_projection_mapping.jpg);
}
@media screen and (min-width: 768px) {
  .p-mapping {
    min-height: 400px;
  }
}
.p-mapping__list {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-mapping__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-mapping__list {
    margin-top: 0;
    position: absolute;
    bottom: 40px;
  }
}
.p-mapping__item {
  margin-top: 10px;
}

.p-qanda {
  background-image: url(https://www.grandarc.com/wp-content/themes/grandarc-themes-new/assets/wedding/img/home/bg_qanda.jpg);
}
@media screen and (min-width: 768px) {
  .p-qanda__more {
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -150px;
  }
}

.p-fair {
  background-image: url(https://www.grandarc.com/wp-content/themes/grandarc-themes-new/assets/wedding/img/home/bg_bridal_fair.jpg);
}
@media screen and (min-width: 768px) {
  .p-fair {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    text-align: center;
    padding: 100px 0;
  }
}

@media screen and (min-width: 1000px) {
  .p-sp-contents {
    min-height: 560px;
  }
}
.p-sp-contents__img {
  position: relative;
  top: -10px;
  z-index: 0;
}
@media screen and (min-width: 1000px) {
  .p-sp-contents__img {
    top: auto;
  }
}
.p-sp-contents__img > p {
  margin-top: -5rem;
  text-align: center;
  text-shadow: 0 0 10px #000;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .p-sp-contents__img > p {
    margin-top: 0;
    position: absolute;
    top: 400px;
    width: 100%;
    color: #fff;
  }
}
.p-sp-contents__img span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-sp-contents__img span {
    display: inline-block;
  }
}
.p-sp-contents__text p {
  margin-top: 30px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-sp-contents__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
    margin-top: 20px;
    margin-left: 5.3333333333%;
    margin-right: 5.3333333333%;
  }
}
@media screen and (min-width: 1000px) {
  .p-sp-contents__list {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: absolute;
    top: 440px;
  }
}
.p-sp-contents__item {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-sp-contents__item {
    margin: 0;
    -ms-flex-preferred-size: 475px;
        flex-basis: 475px;
  }
}
.p-sp-contents__item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1000px) {
  .p-sp-contents__item .c-btn--tel .c-btn__text {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-sp-contents__item .c-btn--tel .c-btn__tel {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1000px) {
  .p-sp-contents__item .c-btn--contact .c-btn__text {
    font-size: 1.5rem;
  }
}

.p-instagram {
  margin-bottom: 60px;
}
@media screen and (min-width: 1000px) {
  .p-instagram {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-instagram__inner {
  margin-left: 5.3333333333%;
  margin-right: 5.3333333333%;
}
@media screen and (min-width: 1000px) {
  .p-instagram__inner {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-instagram__title {
  text-align: center;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
}
.p-instagram__title .fa-instagram {
  font-size: 38px;
}
@media screen and (min-width: 768px) {
  .p-instagram__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
.p-instagram__main-title {
  display: block;
  margin-top: 10px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__main-title {
    margin: 0;
  }
}
.p-instagram__sub-title {
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-instagram__sub-title {
    margin: 0;
  }
}
.p-instagram__list {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  max-width: 1000px;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-instagram__list {
    gap: 50px;
  }
}
.p-instagram__item img {
  width: 100%;
  height: auto;
}
.p-instagram__more {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-instagram__more {
    margin-top: 50px;
  }
}

.p-access-section {
  margin: 40px 5.3333333333%;
  padding: 40px 0 0;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 1000px) {
  .p-access-section {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-access-section__title {
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #50736a;
}
.p-access-section__subtitle {
  margin-top: 20px;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1rem;
  font-weight: 800;
}
.p-map + .p-access-section {
  padding-top: 0;
  border-top: 0;
}

.p-access__list {
  list-style-type: disc;
  margin-left: 40px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-access__item {
  margin: 10px auto;
}
.p-access__item em,
.p-access__item strong {
  font-family: "Bodoni Moda", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
}
.p-access__item em {
  font-style: normal;
  color: #50736a;
}
.p-access-info {
  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;
  gap: 10px;
  margin: 0 5.3333333333%;
  padding: 40px 0;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
}
@media screen and (min-width: 768px) {
  .p-access-info {
    gap: 50px;
  }
}
.p-access-logo {
  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;
}
.p-access-logo .c-logo {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .p-access-logo .c-logo {
    width: 200px;
  }
}
.p-access-text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-access-text {
    text-align: left;
    font-size: 1.125rem;
  }
}
.p-access-text > strong {
  display: block;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-access-text > strong {
    font-size: 1.375rem;
  }
}
.p-access-text > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-access-text > span {
    display: inline-block;
    margin-left: 1em;
  }
}

.p-map {
  margin-top: 40px;
  background-color: #fff;
}

.p-ceremony-section,
.p-reception-section {
  margin: 60px auto;
  margin-top: 0px;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-ceremony-section,
  .p-reception-section {
    margin-top: -20px;
    padding-top: 80px;
  }
}
.p-ceremony-section .summary,
.p-reception-section .summary {
  margin-top: 40px;
  text-align: center;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 0.8125rem;
}
.p-ceremony-section .content,
.p-reception-section .content {
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-ceremony-section .content,
  .p-reception-section .content {
    margin: -100px 10.6666666667% 0;
    font-size: 1.125rem;
    color: #fff;
  }
}

.c-gallery {
  padding: 40px 5.3333333333%;
  background-color: #f6f6f6;
}
.c-gallery__title {
  text-align: center;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.625rem;
  -webkit-text-stroke: 0.3px;
  color: #575752;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-gallery__title {
    -webkit-text-stroke: 0;
  }
}
.c-gallery__title::before, .c-gallery__title::after {
  content: "";
  display: inline-block;
  border-top: 1px solid #575752;
  width: 20px;
  position: relative;
  top: -0.4em;
}
.c-gallery__title::before {
  right: 10px;
}
.c-gallery__title::after {
  left: 10px;
}
.c-gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 10px;
  margin: 30px auto 0;
  width: 318px;
}
@media screen and (min-width: 768px) {
  .c-gallery__inner {
    width: 482px;
  }
}
@media screen and (min-width: 1000px) {
  .c-gallery__inner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
  }
}
.c-gallery__img {
  text-align: center;
  background-color: #dee8e5;
  aspect-ratio: 700/466;
  -ms-flex-preferred-size: 154px;
      flex-basis: 154px;
}
.c-gallery__img > a {
  cursor: pointer;
}
.c-gallery__img img {
  margin: 0 auto;
  max-height: 103px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.c-gallery__img img:hover {
  opacity: 0.7;
}
.p-contentbox .c-gallery {
  margin: 50px 0 0;
  padding: 0;
  background: transparent;
}

.p-ceremony-reception {
  padding-top: 40px;
  background-image: url(https://www.grandarc.com/wp-content/themes/grandarc-themes-new/assets/wedding/img/ceremony/bg_reception.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-ceremony-reception {
    background-size: cover;
    aspect-ratio: 1440/715;
  }
}
.p-ceremony-reception::before {
  content: "";
  width: 100%;
  height: 8em;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-ceremony-reception::before {
    height: 18em;
  }
}
.p-ceremony-reception__title {
  text-align: center;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 2rem;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-ceremony-reception__title {
    -webkit-text-stroke: 0;
  }
}

.p-concept-wedding {
  padding: 40px 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-concept-wedding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-concept-wedding__text {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-concept-wedding__text {
    text-align: center;
  }
}
.p-concept-hospitality {
  padding: 30px 0;
  background-color: #fff;
}
.p-concept-hospitality__title {
  margin: 0 5.3333333333%;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 2rem;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.1em;
  color: #50736a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-concept-hospitality__title {
    -webkit-text-stroke: 0;
  }
}
.p-concept-hospitality__text {
  margin: 0 5.3333333333% 30px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-concept-hospitality__text {
    text-align: center;
  }
}

.p-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-progress__item {
  -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
  padding: 13px;
  text-align: center;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 0.9375rem;
  border-left: 1px solid #fff;
  background-color: #bbb;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-progress__item {
    font-size: 1.25rem;
  }
}
.p-progress__item:first-of-type {
  border-left: 0;
}
.p-progress .is-active {
  background-color: #000;
  color: #fff;
}

.p-form-container {
  margin: 40px 5.3333333333%;
  max-width: 1000px;
}
@media screen and (min-width: 1000px) {
  .p-form-container {
    margin: 40px auto;
  }
}

.p-contact-form__inner {
  background-color: #fff;
}
.p-contact-form .p-contact-form__inner--confirm td {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-contact-form__privacy {
  margin: 30px 20px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-contact-form__privacy {
    margin-right: 14%;
    margin-left: 14%;
  }
}
.p-contact-form__nav {
  margin: 40px auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__nav {
    margin-top: 60px;
    margin-bottom: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    gap: 30px;
  }
}
.p-contact-form__title {
  margin: 40px auto;
  text-align: center;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .p-contact-form__title {
    margin-top: 60px;
    margin-bottom: 60px;
    font-size: 1.625rem;
  }
}
.p-contact-form__text {
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 0.8125rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-contact-form__text {
    text-align: center;
    font-size: 1rem;
  }
}
.p-contact-form__text p + p {
  margin: 1em auto;
}
@media screen and (min-width: 768px) {
  .p-contact-form__text p + p {
    margin-top: 2em;
  }
}
.p-contact-form table {
  width: 100%;
  font-size: 0.8125rem;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-contact-form table {
    font-size: 1rem;
  }
}
.p-contact-form tr:first-of-type th,
.p-contact-form tr:first-of-type td {
  border-top: 0;
}
.p-contact-form th,
.p-contact-form td {
  display: block;
  padding: 20px;
  width: 100%;
  text-align: left;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-contact-form th,
  .p-contact-form td {
    display: table-cell;
    vertical-align: middle;
    width: auto;
    border-top: 1px solid #ddd;
  }
}
.p-contact-form th {
  padding-top: 30px;
  font-size: 0.875rem;
  font-weight: 800;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .p-contact-form th {
    padding-top: 20px;
    width: 33.333%;
    font-size: 1rem;
    font-weight: normal;
  }
}
.p-contact-form th .ttl_wrap {
  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;
}
.p-contact-form td {
  padding-top: 10px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-contact-form td {
    padding-top: 20px;
    padding-bottom: 20px;
    border-left: 1px solid #ddd;
  }
}
.p-contact-form .required {
  display: inline-block;
  padding: 0.25em 0.85em;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: normal;
  border: 1px solid #93192b;
  color: #93192b;
}
@media screen and (min-width: 768px) {
  .p-contact-form .required {
    font-size: 1rem;
  }
}
.p-contact-form input[type=radio] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #575752;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.p-contact-form input[type=radio]:checked::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #575752;
  border-radius: 50%;
}
.p-contact-form input[type=text],
.p-contact-form textarea {
  width: 100%;
  height: 44px;
  padding: 0.25em 0.5em;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f6f6f6;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.p-contact-form textarea {
  height: 10em;
}
.p-contact-form .select-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact-form .select-wrap {
    width: 240px;
  }
}
.p-contact-form .select-wrap::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #575752;
  border-right: 2px solid #575752;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: -5px;
}
.p-contact-form select {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f6f6f6;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f6f6f6), to(#fff));
  background-image: linear-gradient(0deg, #f6f6f6 50%, #fff 100%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  color: inherit;
}
.p-contact-form input[type=submit] {
  cursor: pointer;
}
.p-contact-form .btn--back,
.p-contact-form .btn--submit {
  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-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 294px;
  height: 60px;
  background-color: #50736a;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-contact-form .btn--back,
  .p-contact-form .btn--submit {
    max-width: none;
    width: 440px;
    height: 80px;
  }
}
.p-contact-form .btn--back + .p-contact-form .btn--back,
.p-contact-form .btn--back + .p-contact-form .btn--submit,
.p-contact-form .btn--submit + .p-contact-form .btn--back,
.p-contact-form .btn--submit + .p-contact-form .btn--submit {
  margin: 10px auto;
}
@media screen and (min-width: 768px) {
  .p-contact-form .btn--back + .p-contact-form .btn--back,
  .p-contact-form .btn--back + .p-contact-form .btn--submit,
  .p-contact-form .btn--submit + .p-contact-form .btn--back,
  .p-contact-form .btn--submit + .p-contact-form .btn--submit {
    margin: 0;
  }
}
.p-contact-form .btn--back {
  background-color: #000;
  color: #fff;
}

.contactItem__placeholder {
  margin-top: 10px;
  color: #575752;
}
.contactItem__error {
  margin-top: 16px;
  color: #93192b;
}
.contactItem__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: inherit;
  line-height: 1;
  width: auto;
}
.contactItem__label + .contactItem__label {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contactItem__label + .contactItem__label {
    margin-top: 16px;
  }
}
.contactItem__label > span {
  display: inline-block;
  margin-left: 10px;
  cursor: pointer;
}

.c-txt-bodoni {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  -webkit-text-stroke: 0.3px;
}
@media screen and (min-width: 768px) {
  .c-txt-bodoni {
    -webkit-text-stroke: 0;
  }
}

.p-cuisine-section {
  position: relative;
  margin: 80px auto;
}
@media screen and (min-width: 768px) {
  .p-cuisine-section {
    margin: 200px auto;
  }
}
.p-page-header + .p-cuisine-section {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-cuisine__img--left {
    padding-right: 44%;
  }
}
@media screen and (min-width: 768px) {
  .p-cuisine__img--right {
    padding-left: 44%;
  }
}
.p-cuisine__img--right img {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-cuisine__img--main {
    padding-right: 25%;
  }
}
.p-cuisine-imgbox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 10px auto;
  grid-template-rows: auto auto;
  gap: 10px;
  margin: 20px 5.3333333333%;
}
.p-cuisine-imgbox > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-cuisine-imgbox > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-cuisine-imgbox > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-cuisine-imgbox > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media screen and (min-width: 768px) {
  .p-cuisine-imgbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 4vw 0 0;
  }
}
@media screen and (min-width: 1000px) {
  .p-cuisine-imgbox {
    margin-top: -8vw;
  }
}
.p-cuisine-imgbox__item:first-of-type {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media screen and (min-width: 768px) {
  .p-cuisine-imgbox--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-fullorder {
  padding: 40px 5.3333333333%;
  font-size: 0.8125rem;
  background-color: #dedede;
}
@media screen and (min-width: 768px) {
  .p-fullorder {
    font-size: 1rem;
  }
}
.p-fullorder__title {
  text-align: center;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 2rem;
  line-height: 1.5;
  -webkit-text-stroke: 0.3px;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .p-fullorder__title {
    -webkit-text-stroke: 0;
  }
}
.p-fullorder-item {
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .p-fullorder-item {
    -ms-flex-preferred-size: 475px;
        flex-basis: 475px;
  }
}
@media screen and (min-width: 768px) {
  .p-fullorder-item__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.p-fullorder-item__title {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.875rem;
  -webkit-text-stroke: 0.3px;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .p-fullorder-item__title {
    -webkit-text-stroke: 0;
  }
}
.p-fullorder-item__text {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-fullorder-contact {
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
  }
}
.p-fullorder-contact__lead {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-fullorder-contact__lead {
    margin-top: 30px;
  }
}
.p-fullorder-contact-link {
  margin-top: 30px;
  padding: 20px;
  background-color: #eee;
}
@media screen and (min-width: 768px) {
  .p-fullorder-contact-link {
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-fullorder-contact-link__title {
  text-align: center;
}
.p-fullorder-contact-link__list {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-fullorder-contact-link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}
.p-fullorder-contact-link__item {
  margin-top: 10px;
}
.p-fullorder-contact-link .c-btn {
  width: 300px;
  height: 80px;
}

.p-course {
  margin: 80px auto;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.8125rem;
}
.p-course__title {
  text-align: center;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 2rem;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.05em;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .p-course__title {
    -webkit-text-stroke: 0;
  }
}
.p-course__text {
  margin: 10px 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-course__text {
    text-align: center;
    font-size: 1rem;
  }
}
.p-course__price {
  margin: 40px auto;
  text-align: center;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.625rem;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.05em;
  color: #b88962;
}
@media screen and (min-width: 768px) {
  .p-course__price {
    -webkit-text-stroke: 0;
  }
}
.p-course__price span {
  font-size: 65%;
}

.p-course-slider {
  margin: 30px auto;
  height: 300px;
  background-color: #000;
}

.p-chef {
  padding-top: 50px;
  background-color: #fff;
  position: relative;
}
.p-chef::before {
  content: "";
  margin-left: -150px;
  width: 300px;
  border-top: 3px solid #50736a;
  position: absolute;
  top: 0;
  left: 50%;
}
.p-chef__title {
  text-align: center;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.8;
  color: #50736a;
}
.p-chef__sub-title {
  font-size: 1.25rem;
}

.p-chefbox {
  margin-top: 40px;
  font-size: 0.8125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-chefbox {
    margin-top: 0;
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .p-chefbox__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
  }
}
.p-chefbox__bg {
  z-index: 1;
  position: relative;
}
.p-chefbox__inner {
  position: relative;
  z-index: 2;
  margin-top: -38vw;
}
@media screen and (min-width: 768px) {
  .p-chefbox__inner {
    margin-top: -17.5vw;
  }
}
@media screen and (min-width: 1000px) {
  .p-chefbox__inner {
    margin-top: -35%;
  }
}
.p-chefbox__outline {
  padding: 30px 5.3333333333%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), color-stop(30%, rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgb(255, 255, 255) 30%);
}
@media screen and (min-width: 1000px) {
  .p-chefbox__outline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
.p-chefbox--black .p-chefbox__outline {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(30%, rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgb(0, 0, 0) 30%);
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .p-chefbox__outline__cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-chefbox__image {
  margin: 0 auto;
  width: 200px;
}
@media screen and (min-width: 1000px) {
  .p-chefbox__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    margin: 0;
  }
}
.p-chefbox__copy {
  margin-top: 20px;
  font-size: 0.875rem;
}
@media screen and (min-width: 1000px) {
  .p-chefbox__copy {
    margin-top: 0;
  }
}
.p-chefbox__name {
  margin: 20px auto;
  text-align: center;
  font-family: "Yu Mincho Demibold", "Noto Serif JP", "YuMincho Demibold", serif;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 1000px) {
  .p-chefbox__name {
    margin: 10px 0 20px;
    text-align: left;
  }
}
.p-chefbox__name span {
  display: inline-block;
  margin-right: 1em;
  font-size: 70%;
}
.p-chefbox__detail {
  display: none;
  padding: 30px 5.3333333333%;
  border-top: 1px solid #575752;
  background-color: #fff;
}
.p-chefbox--black .p-chefbox__detail {
  background-color: #000;
  color: #fff;
}
.p-chefbox__profile {
  margin-top: 20px;
}
.p-chefbox__profile-title {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.125rem;
}
.p-chefbox__profile-content {
  margin-top: 10px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-chefbox + .p-chefbox {
  margin-top: 0;
}

.p-dress__text {
  margin: 20px 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-dress__text {
    margin-top: -9.5em;
    text-align: center;
    font-size: 1.125rem;
    color: #fff;
  }
}
.p-dress__btn {
  margin: 30px auto;
}

.p-info__list {
  margin: 40px 10.6666666667%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-info__list {
    margin: 80px auto 120px;
    padding: 20px 0;
    font-size: 1rem;
    max-width: 700px;
  }
}
.p-info__item {
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .p-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: auto;
        -ms-flex-align: auto;
            align-items: auto;
    margin: 20px auto;
  }
}
.p-info__date {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-weight: 600;
  -webkit-text-stroke: 0.3px;
  color: #9e6944;
}
@media screen and (min-width: 768px) {
  .p-info__date {
    -ms-flex-preferred-size: 10em;
        flex-basis: 10em;
    -webkit-text-stroke: 0;
  }
}
.p-info__content {
  display: block;
  margin: 0 auto;
  text-indent: -1em;
  padding-left: 1em;
  -webkit-text-stroke: 0.1px;
}
@media screen and (min-width: 768px) {
  .p-info__content {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-info__content .fa-angle-right {
  margin-right: 0.4em;
}

.p-info-detail {
  margin: 40px 10.6666666667%;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  max-width: 700px;
}
@media screen and (min-width: 768px) {
  .p-info-detail {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-info-detail__text {
  margin: 20px auto;
  font-size: 0.8125rem;
  line-height: 1.8;
}
.p-info-detail__date {
  margin: 0 auto 10px;
  font-size: 0.8125rem;
  color: #9e6944;
  -webkit-text-stroke: 0.3px;
}
@media screen and (min-width: 768px) {
  .p-info-detail__date {
    font-size: 1rem;
    -webkit-text-stroke: 0;
  }
}
.p-info-detail__title {
  font-size: 1rem;
  font-weight: 600;
  -webkit-text-stroke: 0.3px;
}
@media screen and (min-width: 768px) {
  .p-info-detail__title {
    font-size: 1.375rem;
    -webkit-text-stroke: 0;
  }
}
.p-info-detail__image {
  margin-top: 20px;
}
.p-info-detail__image + .infoDetail__text {
  margin-top: 40px;
}
.p-info-detail__list {
  list-style-type: disc;
  font-size: 0.875rem;
  margin: 20px 0 20px 1.25em;
}
.p-info-detail__item {
  margin-top: 10px;
}
.p-info-detail__message {
  margin: 40px auto;
  text-align: center;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-info-detail__message {
    font-size: 1.25rem;
  }
}
.p-info-detail__message > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-info-detail__message > span {
    display: inline-block;
  }
}

.p-info-detail-section {
  margin: 40px auto;
  padding: 40px 0 0;
  border-top: 1px solid #ccc;
}
.p-info-detail-section__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #50736a;
}
.p-info-detail-section__sub {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 800;
  color: #9e6944;
}

.p-planbox {
  margin: 40px 2.6666666667%;
  padding: 30px;
  font-size: 0.8125rem;
  border-top: 5px solid #50736a;
  background-color: #fff;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .p-planbox {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .p-planbox {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
  }
}

.p-plan__title {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  -webkit-text-stroke: 0.3px;
  line-height: 1.6;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .p-plan__title {
    font-size: 1.5rem;
    -webkit-text-stroke: 0;
    font-weight: 800;
  }
}
.p-plan__more .c-btn {
  width: auto;
  height: 60px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-plan__more .c-btn {
    width: 300px;
  }
}
.p-plan__more .c-btn__text {
  font-size: 1rem;
}
.p-plan__outline {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-plan__outline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}
.p-plan__outline-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-plan__img {
  margin-top: 30px;
  position: relative;
}
.p-plan__img > img {
  width: 100%;
  height: auto;
}
.p-plan__icon {
  width: 72px;
  position: absolute;
  top: -1px;
  left: -1px;
}

.p-plan-outline-col {
  flex-grow: 1;
}

@media screen and (min-width: 768px) {
  .p-plan__img {
    max-width: 370px;
  }
}
.p-plan-pricebox {
  margin-top: 20px;
}
.p-plan-pricebox__title {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-plan-pricebox__price {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.875rem;
  font-weight: 600;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.1em;
  color: #9e6944;
}
@media screen and (min-width: 768px) {
  .p-plan-pricebox__price {
    -webkit-text-stroke: 0;
  }
}
.p-plan-pricebox__price > span {
  display: inline-block;
  margin-left: 0.25em;
  font-size: 65%;
}
.p-plan-pricebox__summary {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-plan-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 30px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.75rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-plan-tags {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 5px;
    margin-top: 20px;
    font-size: 0.8125rem;
  }
}
.p-plan-tags li {
  -ms-flex-preferred-size: 142px;
      flex-basis: 142px;
  padding: 0.5em 0;
  text-align: center;
  background-color: #ababa8;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-plan-tags li {
    -ms-flex-preferred-size: 110px;
        flex-basis: 110px;
  }
}
.p-plan-tags li.is-active {
  background-color: #b88962;
}
.p-plan-content {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-plan-content {
    padding: 0 20px;
  }
}
.p-plan-content__summary {
  margin-top: 20px;
}
.p-plan-link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-plan-link {
    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;
    gap: 4%;
    margin-right: 10px;
    margin-top: 10px;
  }
}
.p-plan-link__item {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-plan-link__item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-plan-link .c-btn {
    width: auto;
    height: 40px;
    font-size: 0.875rem;
  }
}
.p-plan-link .c-btn__text {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-plan-link .c-btn__text {
    font-size: 0.875rem;
  }
}
.p-plan-link .fa-phone,
.p-plan-link .fa-calendar-alt {
  margin-right: 5px;
}
.p-plan-benefit {
  margin: 40px auto;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.p-plan-benefit__title {
  font-size: 1rem;
  font-weight: 800;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .p-plan-benefit__title {
    margin-top: 40px;
    font-size: 1.375rem;
  }
}
.p-plan-benefit__list {
  margin-top: 10px;
  margin-left: 1.5em;
  list-style-type: disc;
}
.p-plan-benefit__list > li {
  margin-top: 5px;
}
.p-plan-benefit-item {
  margin-top: 20px;
  padding: 40px 0;
  border-top: 1px solid #ddd;
}
.p-plan-benefit-item__title {
  font-weight: 800;
  color: #9e6944;
}
@media screen and (min-width: 768px) {
  .p-plan-benefit-item__title {
    font-size: 1rem;
  }
}
.p-plan-benefit-item__content {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-plan-benefit__title + .p-plan-benefit-item {
  border-top: 0;
  padding-top: 0;
}
.p-plan-benefit__border {
  margin: 20px auto;
  padding: 20px;
  border: 2px solid #50736a;
  color: #50736a;
}
.p-plan-benefit .discount {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-weight: bold;
  -webkit-text-stroke: 0.3px;
  color: #50736a;
}
@media screen and (min-width: 768px) {
  .p-plan-benefit .discount {
    -webkit-text-stroke: 0;
  }
}
.p-plan-benefit .c-note {
  margin: 10px auto;
  padding-left: 1em;
  text-indent: -1em;
}
.p-plan-benefit .c-note--em {
  color: #50736a;
}
.p-plan-contact {
  padding: 20px;
  background-color: #eee;
}
@media screen and (min-width: 768px) {
  .p-plan-contact {
    margin: 0 8%;
    padding: 40px;
  }
}
.p-plan-contact__title {
  text-align: center;
  line-height: 1.5;
}
.p-plan-contact__link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-plan-contact__link {
    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;
    gap: 30px;
  }
}
.p-plan-contact__item {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-plan-contact__item {
    margin-top: 0;
  }
}
.p-plan-contact .c-btn {
  width: auto;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .p-plan-contact .c-btn {
    width: 300px;
  }
}
.p-plan-contact .c-btn__text {
  font-size: 1rem;
}
.p-plan-contact .c-btn__tel {
  font-size: 1rem;
}
.p-plan-contact .c-btn__tel > span {
  font-size: 1.5rem;
}
.p-plan-contact .c-btn--iconArrow::after {
  font-weight: normal;
}

.p-privacy-section {
  margin: 40px 5.3333333333%;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 0.875rem;
}
@media screen and (min-width: 1000px) {
  .p-privacy-section {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-privacy-section__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: #9e6944;
}
.p-privacy-section__content > p {
  margin: 20px auto;
}

.p-privacy__list {
  list-style-type: decimal;
  margin-left: 1em;
  counter-reset: cnt;
}
.p-privacy__item {
  margin-top: 20px;
}
.p-privacy__item .p-privacy__item {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  margin-left: 1em;
}
.p-privacy__item .p-privacy__item::before {
  content: "(" counter(cnt) ")";
  display: inline-block;
  text-align: right;
  position: absolute;
  left: -1.75em;
}
.p-privacy__contact {
  display: block;
}

.p-privacy-note__item {
  margin: 20px auto;
  padding-left: 1em;
  text-indent: -1em;
}

.p-qanda-section {
  margin: 40px 2.6666666667%;
  padding: 20px;
  padding-bottom: 0;
  max-width: 1000px;
  border-top: 5px solid #50736a;
  background-color: #fff;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-qanda-section {
    padding: 30px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .p-qanda-section {
    margin-right: auto;
    margin-left: auto;
  }
}
.p-qanda-section.is-open .c-btn-toggle-plus::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-qanda-section.is-open .p-answer {
  padding-bottom: 20px;
}

.p-qanda__toggle {
  display: none;
}

.c-btn-toggle-plus {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}
.c-btn-toggle-plus.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-btn-toggle-plus::before, .c-btn-toggle-plus::after {
  content: "";
  border-top: 2px solid #50736a;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.c-btn-toggle-plus::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-question,
.p-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.p-question__title,
.p-answer__title {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 20px;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.25rem;
  line-height: 1;
  -webkit-text-stroke: 0.3px;
}
@media screen and (min-width: 768px) {
  .p-question__title,
  .p-answer__title {
    font-size: 1.625rem;
    -webkit-text-stroke: 0;
  }
}
.p-question__content,
.p-answer__content {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-question__content,
  .p-answer__content {
    font-size: 1.125rem;
  }
}

.p-question {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-question {
    padding-bottom: 30px;
  }
}
.p-question__title {
  color: #50736a;
}
.p-question__content {
  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;
  gap: 10px;
  width: 100%;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  font-weight: 800;
  cursor: pointer;
}
.p-question__content:hover {
  opacity: 0.7;
}
.p-question__toggle {
  margin-left: auto;
}

.p-answer {
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .p-answer {
    padding-top: 30px;
  }
}
.p-answer__title {
  color: #b88962;
}

.p-step {
  margin: 40px 0 0 20px;
  padding: 50px 0 50px 20px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  border-left: 1px solid #ccc;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-step {
    font-size: 0.875rem;
    border-left-width: 2px;
    margin: 0 20px 0 11%;
    padding: 0 0 60px 16%;
  }
}
.p-step--online {
  margin-top: 20px;
}
.p-step--add {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-step--add {
    margin-top: 30px;
    padding-bottom: 70px;
  }
}
.p-step:last-of-type {
  border-left: 0;
}
.p-step__title {
  padding: 10px 20px;
  width: 200px;
  -webkit-text-stroke: 0.3px;
  line-height: 1.5;
  background-color: #b88962;
  color: #fff;
  position: absolute;
  top: -40px;
  left: -20px;
  border-right: 1px solid #b88962;
}
.p-step__title ::-webkit-full-page-media, .p-step__title :future, :root .p-step__title {
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .p-step__title {
    width: 180px;
    font-size: 1rem;
    -webkit-text-stroke: 0;
    top: -10px;
    left: -12%;
    border-right: 0;
  }
}
.p-step__title::after {
  content: "";
  border-width: 34px 20px;
  border-style: solid;
  border-color: transparent transparent transparent #b88962;
  position: absolute;
  top: 0;
  right: -40px;
}
@media screen and (min-width: 768px) {
  .p-step__title::after {
    border-width: 38px 20px;
  }
}
.p-step__title--oneline {
  top: -20px;
}
.p-step__title--oneline::after {
  border-width: 24px 20px;
}
@media screen and (min-width: 768px) {
  .p-step__title--oneline::after {
    border-width: 27px 20px;
  }
}
.p-step__title > span {
  display: block;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-step__title > span {
    font-size: 1.375rem;
  }
}
.p-step__content-title {
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #50736a;
}
.p-step__list {
  list-style-type: disc;
  margin-top: 10px;
  margin-left: 1.5em;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-step__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-step__item {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-step__item {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    padding-right: 2em;
  }
}
.p-step__add {
  padding: 10px;
  border: 2px solid #ccc;
  background-color: #fff;
  position: absolute;
  top: -40px;
  left: -20px;
}
@media screen and (min-width: 768px) {
  .p-step__add {
    padding: 20px;
    width: 110%;
    text-align: center;
    left: -12%;
  }
}
p + .p-step {
  margin-top: 60px;
}
.p-step .c-note {
  margin-top: 20px;
  margin-left: 1em;
  text-indent: -1em;
}

.p-reception-ceremony {
  padding-top: 40px;
  background-image: url(https://www.grandarc.com/wp-content/themes/grandarc-themes-new/assets/wedding/img/reception/bg_ceremony.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-reception-ceremony {
    background-size: cover;
    aspect-ratio: 1440/715;
  }
}
.p-reception-ceremony::before {
  content: "";
  width: 100%;
  height: 8em;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-reception-ceremony::before {
    height: 18em;
  }
}
.p-reception__title {
  text-align: center;
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 2rem;
  -webkit-text-stroke: 0.3px;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  z-index: 2;
  inset: mq(md);
  inset--webkit-text-stroke: 0;
}

.p-room-title {
  color: #50736a;
  position: relative;
}
.p-room-title__main {
  font-family: "Bodoni Moda", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.875rem;
  -webkit-text-stroke: 0.3px;
}
@media screen and (min-width: 768px) {
  .p-room-title__main {
    -webkit-text-stroke: 0;
  }
}
.p-room-title__sub {
  display: inline-block;
  margin-left: 1em;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 1.375rem;
  font-weight: 600;
}
.c-title + .p-room-title {
  padding: 50px 0 0;
  text-align: center;
}
.c-title + .p-room-title::after {
  content: "";
  width: 50px;
  border-top: 2px solid #50736a;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
  margin-top: 10px;
}
.p-room__list {
  margin-top: 10px;
  list-style: none outside;
}
.p-room__item {
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho Demibold",  "MS PMincho", serif;
  font-size: 0.8125rem;
}
.p-room__item::before {
  content: "◆";
  display: inline-block;
  margin-right: 0.5em;
  color: #575752;
}

.u-no-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-no-sp {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .u-no-pc {
    display: none;
  }
}

.u-max-w500 {
  max-width: 500px;
}

.u-max-w800 {
  max-width: 800px;
}

.u-max-w1080 {
  max-width: 1080px;
}

.c-btn.c-btn--black .btn__inner {
  width: 100%;
  height: 100%;
}

.c-btn.c-btn--black .btn__inner:hover {
  cursor: pointer;
}

.btn_back.c-btn--black {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}