@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-size: 10px !important;
}

body {
  background-color: #fff;
  padding-bottom: 15vw;
}

img {
  width: 100%;
  height: 100%;
}

h2 {
  font-size: 8vw;
  font-family: "Shippori Mincho B1", serif;
  color: rgb(36, 70, 131);
  text-align: center;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 770px) {
  h2 {
    font-size: 4.688vw;
  }
}

p {
  font-family: "Shippori Mincho B1";
  color: #264164;
  letter-spacing: 0.14em;
}

h4 {
  font-family: "Shippori Mincho B1", serif;
}

.sp {
  display: block;
}
@media screen and (min-width: 770px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 770px) {
  .pc {
    display: block;
  }
}

.fv {
  background: url(../img/fv__back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.fv__inner {
  width: 92%;
  margin: 0 auto;
  padding: 12.133vw 0 5.067vw 0;
}
.fv__text {
  width: 88.667vw;
  height: 23.467vw;
}
.fv__logo {
  width: 29.2vw;
  height: 13.6vw;
  margin: 80.933vw auto 0 auto;
}
.fv__tokuten {
  width: 92.4vw;
  height: 27.6vw;
  margin: 80.933vw auto 0 auto;
}

.btn {
  display: none;
  position: fixed;
  width: 79.733vw;
  height: 17.067vw;
  bottom: 2.667vw;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
  z-index: 999;
}

.btn--1 {
  display: block;
  width: 79.733vw;
  height: 31.333vw;
  margin: 47px auto 0 auto;
}

.best-chapel {
  width: 92%;
  margin: 14.133vw auto 0 auto;
}
.best-chapel__logo {
  width: 66.133vw;
  height: 20vw;
  margin: 0 auto;
}
.best-chapel__description {
  margin-top: 4.133vw;
}
.best-chapel__description p {
  font-size: 2.933vw;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.cta-offer {
  position: relative;
  width: 92.27%;
  margin: 7.6vw auto 10.667vw auto;
}
.cta-offer__bg {
  background: url(../img/offer_bg.png);
  background-size: cover;
  padding: 6.667vw 0 8.667vw 0;
}
.cta-offer__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5.333vw;
}
.cta-offer__title::before {
  display: block;
  content: "";
  width: 13.867vw;
  height: 0.133vw;
  background: rgb(12, 56, 122);
  margin-right: 2.933vw;
}
.cta-offer__title::after {
  display: block;
  content: "";
  width: 13.867vw;
  height: 0.133vw;
  background: rgb(12, 56, 122);
  margin-left: 2.933vw;
}
.cta-offer__catch {
  font-size: 3.467vw;
  text-align: center;
  margin-top: 4.4vw;
}
.cta-offer__lead {
  font-size: 3.467vw;
  color: #1b1b1b;
  text-align: center;
  margin: 1.733vw 0 3.2vw 0;
}
.cta-offer__lead .cta-offer__lead-big {
  font-size: 4.8vw;
}
.cta-offer__lead .cta-offer__lead-color {
  color: #0c387a;
}
.cta-offer__lead .cta-offer__lead-small {
  font-size: 4vw;
}
.cta-offer__item {
  width: 88.87%;
  margin: 0 auto 4vw auto;
}
.cta-offer__item-title {
  background: #0c387a;
  padding: 1.667vw 0;
  font-size: 2.933vw;
  text-align: center;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  border-radius: 1.333vw 1.333vw 0 0;
}
.cta-offer__item-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.667vw 3.333vw 2.133vw 3.333vw;
  background: #fff;
  box-shadow: 0px 4px 3.28px 0.72px rgba(179, 179, 180, 0.23);
  border-radius: 0 0 1.333vw 1.333vw;
}
.cta-offer__item-text {
  font-size: 3.467vw;
  color: #272627;
  text-align: center;
  margin: 0 0 2.667vw 5.333vw;
}
.cta-offer__item-text span {
  font-size: 4.8vw;
  color: #0c387a;
  font-weight: bold;
}
.cta-offer__item-text--small {
  display: block;
  font-size: 2.667vw !important;
  color: #272627 !important;
  letter-spacing: 0.03em;
  line-height: 1.18;
  margin-top: 2.267vw;
}
.cta-offer__item-textimg {
  width: 44.267vw;
  height: 12.133vw;
}
.cta-offer__item-image {
  width: 28.533vw;
  height: 18.667vw;
  flex-shrink: 0;
}
.cta-offer__item:nth-of-type(2) .cta-offer__item-text {
  font-size: 3.2vw;
}
.cta-offer__item:nth-of-type(3) {
  margin-bottom: 0;
}
.cta-offer__item:nth-of-type(3) .cta-offer__item-text {
  font-size: 2.933vw;
  letter-spacing: 0.03em;
  margin: 0;
}
.cta-offer__item:nth-of-type(3) .cta-offer__item-text span {
  font-size: 3.467vw !important;
}
.cta-offer__note {
  margin-top: 0;
  text-align: center;
  font-size: 2.4vw;
  letter-spacing: 0.03em;
}

.features {
  width: 92%;
  margin: 21.067vw auto 0 auto;
}
.features__title {
  margin: 0 0 6.533vw 0;
  letter-spacing: 0.1em;
}
.features__title span {
  font-size: 18.667vw;
  font-family: "Great Vibes", serif;
}
.features__item {
  margin-bottom: 17.333vw;
}
.features__item-subtitle {
  width: 11.733vw;
  height: 14.533vw;
  margin: 0 auto;
}
.features__item-heading {
  font-size: 5.6vw;
  text-align: center;
  color: #264164;
  margin-top: 4.533vw;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.features__item-image {
  margin-top: 3.733vw;
}
.features__item-description {
  font-size: 4.267vw;
  margin-top: 6.667vw;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}
.features__item-description .small {
  display: block;
  font-size: 2.933vw;
}
.voice__ttl {
  width: 54vw;
  height: 13.733vw;
  margin: 0 0 12.533vw 16vw;
}
.promo {
  padding-bottom: 1.733vw;
}
.promo__bg {
  position: relative;
  background: url(../img/promp-bg@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 9.467vw;
}
.promo__catch {
  font-size: 5.6vw;
  position: absolute;
  writing-mode: vertical-rl;
  line-height: 2.5;
  top: 10%;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
}
.promo__catch span {
  padding-right: 1.333vw;
  border-right: 1px solid #405e66;
}
.promo__text--top {
  font-size: 4.533vw;
  text-align: center;
  padding-top: 107.467vw;
  letter-spacing: 0;
  line-height: 1.4;
}
.promo__text--bottom {
  font-size: 4.533vw;
  text-align: center;
  padding-top: 3.2vw;
  letter-spacing: 0;
  line-height: 1.4;
}
.promo__button {
  display: block;
  width: 79.6vw;
  height: 14.4vw;
  margin: 11.067vw auto 0 auto !important;
}
.promo__note {
  font-size: 3.733vw;
  text-align: center;
  letter-spacing: 0;
  margin-top: 7.733vw;
  line-height: 1.4;
}
.promo__contact {
  margin-top: 4.267vw;
  font-size: 3.733vw;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.42;
}

.gallery {
  width: 92.27%;
  margin: 5.333vw auto 0 auto;
  /* スライダー本体 */
  /* スライダーのトラック要素 */
  /* 個々のスライド */
  /* 画像をスライドいっぱいに表示 */
}
.gallery__title {
  letter-spacing: -0.14em;
}
.gallery__item:nth-of-type(1) .gallery__item-heading {
  width: 48.667vw;
  height: 10.667vw;
  margin: 12vw 0 0 15.467vw;
}
.gallery__item:nth-of-type(2) .gallery__item-heading {
  width: 30.933vw;
  height: 14vw;
  margin: 20.8vw 0 0 24.267vw;
}
.gallery__item:nth-of-type(2) .gallery__item-subtitle {
  line-height: 1;
}
.gallery__item:nth-of-type(3) .gallery__item-heading {
  width: 44.4vw;
  height: 16.133vw;
  margin-top: 21.067vw;
  margin-bottom: 5.2vw;
  margin-left: 19.467vw;
}
.gallery__item:nth-of-type(3) .gallery__item-subtitle {
  line-height: 1.7;
}
.gallery__item:nth-of-type(4) .gallery__item-heading {
  width: 61.067vw;
  height: 13.067vw;
  margin-top: 20.533vw;
  margin-left: 10vw;
}
.gallery__item:nth-of-type(5) .gallery__item-heading {
  width: 25.333vw;
  height: 12.667vw;
  margin-top: 20vw;
}
.gallery__item-heading {
  display: block;
  margin: 0 auto 0 auto;
}
.gallery__item-subtitle {
  font-size: 3.467vw;
  text-align: center;
  margin-top: 3.067vw;
  margin-bottom: 8.667vw;
  letter-spacing: 0.1em;
}
.gallery__item-text {
  text-align: center;
  margin-top: 4vw;
  letter-spacing: 0.05em;
  line-height: 1.55;
  font-size: 3.733vw;
}
.gallery__item-smalltext {
  font-size: 3.733vw;
  margin-top: 6vw;
  text-align: center;
  line-height: 1.5;
}
.gallery__item-images {
  position: relative;
  margin-top: 5.733vw;
}
.gallery__item-image:first-child {
  width: 100%;
}
.gallery__item-image:nth-child(2) {
  position: absolute;
  width: 41.867vw;
  aspect-ratio: 1/1;
  left: 0;
  top: 50.5%;
}
.gallery__item-image:last-child {
  margin: 21.333vw 0 0 auto;
  width: 64.933vw;
  height: 53.333vw;
}
.gallery__item-info {
  text-align: center;
  margin-top: 7.067vw;
  line-height: 1.55;
  font-size: 3.733vw;
}
.gallery__item-info span {
  font-size: 3.733vw;
  letter-spacing: 0.05em;
}
.gallery__item-best-chapel img {
  display: block;
  width: 48.8vw;
  height: 14.8vw;
  margin: 8.667vw auto 0 auto;
}
.gallery__item-best-chapel figcaption {
  font-size: 3.733vw;
  text-align: center;
  color: #244683;
  margin-top: 3.467vw;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-family: "Shippori Mincho B1", serif;
}
.gallery .slider {
  position: relative;
  width: 100%; /* スライダーの横幅 */
  height: 66.667vw;
  margin: 10vw auto 0 auto; /* ページ中央に配置 */
  overflow: hidden; /* はみ出しを隠す */
}
.gallery .slider-wrapper {
  display: flex; /* 横並び */
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease; /* スライドアニメーション */
}
.gallery .slide {
  min-width: 100%; /* 親要素の幅を1枚分の幅とする */
  height: 100%;
}
.gallery .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の縦横比を保ちながら埋める */
  display: block;
}

.postion-right {
  right: 0 !important;
  left: inherit !important;
}

.postion-left {
  margin: 19.6vw auto 0 0 !important;
}

.flow {
  width: 92.27%;
  margin: 14.267vw auto 0 auto;
}
.flow__title {
  margin-bottom: 15.733vw;
}
.flow__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8vw;
}
.flow__item-heading {
  font-size: 4.8vw;
  color: #244683;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.07em;
}
.flow__item-heading span {
  font-size: 6.133vw;
  font-family: "Great Vibes", serif;
}
.flow__item-subtitle {
  font-size: 3.15vw;
  font-family: "Noto Sans JP", serif;
  color: #000;
  margin-top: 2vw;
  letter-spacing: 0.1em;
}
.flow__item-image {
  min-width: 29.867vw;
  aspect-ratio: 1/1;
}
.flow__arrow {
  width: 9.467vw;
  height: 2.667vw;
  margin: 0 auto 20vw auto;
}

.row-reverse {
  flex-direction: row-reverse;
}

.benefits {
  width: 93.3%;
  margin: 0 auto;
  display: block;
}

.access {
  width: 92.27%;
  margin: 20.667vw auto 0 auto;
}
.access__title {
  display: block;
}
.access__map {
  margin-top: 5.2vw;
  width: 100%;
  aspect-ratio: 1/0.563;
  background: #eeeeee;
}
.access__info {
  margin-top: 10.4vw;
}
.access__info p {
  text-align: center;
  font-size: 3.733vw;
  color: #272627;
  line-height: 1.47;
}
.access__info p span {
  font-size: 3.2vw;
}

.offer {
  position: relative;
  width: 92.27%;
  margin: 56vw auto 10.667vw auto;
}
.offer__out-bg {
  position: absolute;
  left: -3.867vw;
  top: -47.467vw;
  width: 100vw;
  height: 67.467vw;
  z-index: -1;
}
.offer__bg {
  background: url(../img/offer_bg.png);
  background-size: cover;
  padding: 6.667vw 0 8.667vw 0;
}
.offer__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5.333vw;
}
.offer__title::before {
  display: block;
  content: "";
  width: 13.867vw;
  height: 0.133vw;
  background: rgb(12, 56, 122);
  margin-right: 2.933vw;
}
.offer__title::after {
  display: block;
  content: "";
  width: 13.867vw;
  height: 0.133vw;
  background: rgb(12, 56, 122);
  margin-left: 2.933vw;
}
.offer__catch {
  font-size: 3.467vw;
  text-align: center;
  margin-top: 5.733vw;
}
.offer__lead {
  font-size: 3.467vw;
  color: #1b1b1b;
  text-align: center;
  margin: 2.667vw 0 4vw 0;
}
.offer__lead .offer__lead-big {
  font-size: 4.8vw;
}
.offer__lead .offer__lead-color {
  color: #0c387a;
}
.offer__lead .offer__lead-small {
  font-size: 4vw;
}
.offer__item {
  width: 88.87%;
  margin: 0 auto 5.333vw auto;
}
.offer__item-title {
  background: #0c387a;
  padding: 1.667vw 0;
  font-size: 2.933vw;
  text-align: center;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  border-radius: 1.333vw 1.333vw 0 0;
}
.offer__item-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.667vw 3.333vw 2.133vw 3.333vw;
  background: #fff;
  box-shadow: 0px 4px 3.28px 0.72px rgba(179, 179, 180, 0.23);
  border-radius: 0 0 1.333vw 1.333vw;
}
.offer__item-text {
  font-size: 3.467vw;
  color: #272627;
  text-align: center;
  margin: 0 0 2.667vw 5.333vw;
}
.offer__item-text span {
  font-size: 4.8vw;
  color: #0c387a;
  font-weight: bold;
}
.offer__item-text--small {
  display: block;
  font-size: 2.667vw !important;
  color: #272627 !important;
  letter-spacing: 0.03em;
  line-height: 1.18;
  margin-top: 2.267vw;
}
.offer__item-textimg {
  width: 44.267vw;
  height: 12.133vw;
}
.offer__item-image {
  width: 28.533vw;
  height: 18.667vw;
  flex-shrink: 0;
}
.offer__item:nth-of-type(2) .offer__item-text {
  font-size: 3.2vw;
}
.offer__item:nth-of-type(3) {
  margin-bottom: 0;
}
.offer__item:nth-of-type(3) .offer__item-text {
  font-size: 2.933vw;
  letter-spacing: 0.03em;
  margin: 0;
}
.offer__item:nth-of-type(3) .offer__item-text span {
  font-size: 3.467vw !important;
}
.offer__note {
  margin-top: 2vw;
  text-align: center;
  font-size: 2.4vw;
  letter-spacing: 0.03em;
}

.content-offer {
  width: 92.267%;
  margin: 8vw auto 0 auto;
}

@media screen and (min-width: 770px) {
  .fv {
    background: url(../img/fv__back--pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .fv__inner {
    width: 84.375vw;
    margin: 0 auto;
    padding: 4.063vw 0 5.781vw 0;
  }
  .fv__text {
    width: 61.563vw;
    height: 17.109vw;
  }
  .fv__logo {
    width: 14.844vw;
    height: 6.953vw;
    margin: 27.734vw auto 0 auto;
  }
  .fv__tokuten {
    width: 48.984vw;
    height: 13.75vw;
    margin: 45.469vw auto 0 auto;
  }
  .btn--1 {
    display: block;
    width: 47.578vw;
    height: 18.672vw;
    margin: 5vw auto 0 auto;
  }
  .btn {
    display: none;
    position: fixed;
    width: 47.5vw;
    height: 10.156vw;
    bottom: 1.563vw;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
    z-index: 999;
  }
  .cta-offer {
    width: 53.906vw;
    margin: 5.859vw auto 13.281vw auto;
  }
  .cta-offer__bg {
    background: url(../img/offer_bg.png);
    background-size: cover;
    width: 73.594vw;
    margin: 0 auto;
    padding: 5.156vw 0 6.641vw 0;
  }
  .cta-offer__title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4.141vw;
  }
  .cta-offer__title::before {
    display: block;
    content: "";
    width: 10.938vw;
    height: 0.078vw;
    background: rgb(12, 56, 122);
    margin-right: 2.5vw;
  }
  .cta-offer__title::after {
    display: block;
    content: "";
    width: 10.938vw;
    height: 0.078vw;
    background: rgb(12, 56, 122);
    margin-left: 2.5vw;
  }
  .cta-offer__catch {
    font-size: 2.734vw;
    text-align: center;
    margin-top: 3.516vw;
  }
  .cta-offer__lead {
    font-size: 2.734vw;
    color: #1b1b1b;
    text-align: center;
    margin: 1.172vw 0 2.5vw 0px;
  }
  .cta-offer__lead .cta-offer__lead-big {
    font-size: 3.75vw;
  }
  .cta-offer__lead .cta-offer__lead-color {
    color: #0c387a;
  }
  .cta-offer__lead .cta-offer__lead-small {
    font-size: 3.125vw;
  }
  .cta-offer__item {
    width: 64.844vw;
    margin: 0 auto 2.969vw auto;
  }
  .cta-offer__item-title {
    background: #0c387a;
    padding: 1.406vw 0;
    font-size: 2.344vw;
    text-align: center;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    border-radius: 1.333vw 1.333vw 0 0;
  }
  .cta-offer__item-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.188vw 2.5vw 1.875vw 2.5vw;
    background: #fff;
    box-shadow: 0px 4px 3.28px 0.72px rgba(179, 179, 180, 0.23);
    border-radius: 0 0 1.333vw 1.333vw;
  }
  .cta-offer__item-text {
    font-size: 2.734vw;
    color: #272627;
    text-align: center;
    padding-left: 4.688vw;
    margin: 0;
  }
  .cta-offer__item-text span {
    font-size: 3.75vw;
    color: #0c387a;
    font-weight: bold;
  }
  .cta-offer__item-text--small {
    display: block;
    font-size: 2.109vw !important;
    color: #272627 !important;
    letter-spacing: 0.03em;
    line-height: 1.18;
    margin-top: 2.267vw;
  }
  .cta-offer__item-textimg {
    width: 34.844vw;
    height: 9.531vw;
  }
  .cta-offer__item-image {
    width: 22.422vw;
    height: 14.453vw;
    flex-shrink: 0;
  }
  .cta-offer__item:nth-of-type(2) .cta-offer__item-text {
    font-size: 2.5vw;
  }
  .cta-offer__item:nth-of-type(3) {
    margin-bottom: 0;
  }
  .cta-offer__item:nth-of-type(3) .cta-offer__item-text {
    font-size: 2.344vw;
    letter-spacing: 0.03em;
    padding-left: 0;
  }
  .cta-offer__item:nth-of-type(3) .cta-offer__item-text span {
    font-size: 2.734vw !important;
  }
  .cta-offer__note {
    margin-top: 0.156vw;
    text-align: center;
    font-size: 1.719vw;
    letter-spacing: 0.03em;
  }
  .best-chapel {
    width: 84.375vw;
    margin: 8.047vw auto 0 auto;
  }
  .best-chapel__logo {
    width: 38.75vw;
    height: 11.719vw;
    margin: 0 auto;
  }
  .best-chapel__description {
    margin-top: 3.906vw;
  }
  .best-chapel__description p {
    font-size: 2.031vw;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.55;
  }
  .features {
    width: 84.375vw;
    margin: 14.453vw auto 0 auto;
  }
  .features__title {
    margin: 0 0 4.141vw 0;
    letter-spacing: 0.1em;
    font-size: 4.688vw;
  }
  .features__title span {
    font-size: 10.938vw;
    font-family: "Great Vibes", serif;
  }
  .features__item {
    margin-bottom: 8.594vw;
  }
  .features__item-subtitle {
    width: 6.875vw;
    height: 8.594vw;
    margin: 0 auto;
  }
  .features__item-heading {
    font-size: 3.281vw;
    text-align: center;
    color: #264164;
    margin-top: 2.109vw;
    letter-spacing: 0.1em;
  }
  .features__item-image {
    margin-top: 3.125vw;
  }
  .features__item-description {
    font-size: 2.031vw;
    margin-top: 5.313vw;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.5;
  }
  .features__item-description .small {
    font-size: 1.563vw;
  }
  .voice__inner {
    width: 84.375vw;
    margin: 0 auto 17.578vw auto;
  }
  .voice__ttl {
    width: 31.641vw;
    height: 8.047vw;
    margin: 0 0 8.984vw 22.656vw;
  }
  .promo {
    padding-top: 1.016vw;
    padding-bottom: 2.109vw;
  }
  .promo__bg {
    position: relative;
    background: url(../img/promp-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 7.813vw;
  }
  .promo__catch {
    font-size: 3.906vw;
    position: absolute;
    writing-mode: vertical-rl;
    line-height: 2.5;
    top: 11.5%;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
  }
  .promo__catch span {
    padding-right: 0.547vw;
    border-right: 1px solid #405e66;
  }
  .promo__text--top {
    font-size: 3.281vw;
    text-align: center;
    padding-top: 83.438vw;
    letter-spacing: 0;
  }
  .promo__text--bottom {
    font-size: 3.281vw;
    text-align: center;
    padding-top: 3.594vw;
    letter-spacing: 0;
  }
  .promo__button {
    display: block;
    width: 48.594vw;
    height: 8.828vw;
    margin: 6.797vw auto 0 auto !important;
  }
  .promo__note {
    font-size: 2.031vw;
    text-align: center;
    letter-spacing: 0;
    margin-top: 4.453vw;
    line-height: 1.4;
  }
  .promo__contact {
    margin-top: 2.656vw;
    font-size: 2.031vw;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .gallery {
    width: 84.375vw;
    margin: 0 auto;
    /* スライダー本体 */
    /* スライダーのトラック要素 */
    /* 個々のスライド */
    /* 画像をスライドいっぱいに表示 */
  }
  .gallery__title {
    letter-spacing: -0.05em;
  }
  .gallery__item:nth-of-type(1) .gallery__item-heading {
    width: 27.813vw;
    height: 6.25vw;
    margin-top: 13.672vw;
    margin-right: 7.266vw;
    margin-left: auto;
  }
  .gallery__item:nth-of-type(1) .gallery__item-text {
    display: flex;
    justify-content: flex-end;
    text-align: center;
    margin-top: 3.281vw;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-size: 1.875vw;
  }
  .gallery__item:nth-of-type(2) .gallery__item-heading {
    width: 19.688vw;
    height: 8.203vw;
    margin: 17.813vw 0 0 2.188vw;
  }
  .gallery__item:nth-of-type(2) .gallery__item-images {
    width: 100%;
    position: absolute;
    top: 0;
    margin-top: initial;
  }
  .gallery__item:nth-of-type(2) .gallery__item-image:first-child {
    position: absolute;
    width: 44.688vw;
    height: 32.344vw;
    top: -3.281vw;
    right: -0.312vw;
  }
  .gallery__item:nth-of-type(2) .gallery__item-image:nth-child(2) {
    position: absolute;
    width: 25vw;
    aspect-ratio: 1/1;
    left: 34.063vw !important;
    top: 31.797vw;
    z-index: 2;
  }
  .gallery__item:nth-of-type(2) .gallery__item-image:last-child {
    position: absolute;
    margin: inherit;
    width: 38.047vw;
    height: 31.25vw;
    top: 36.328vw;
  }
  .gallery__item:nth-of-type(3) .gallery__item-heading {
    width: 25.313vw;
    height: 8.438vw;
    margin-top: 14.219vw;
    margin-bottom: 0;
    margin-right: 7.344vw;
    margin-left: auto;
  }
  .gallery__item:nth-of-type(3) .gallery__item-subtitle {
    display: flex;
    justify-content: flex-end;
    font-size: 1.875vw;
    text-align: center;
    margin-top: 2.891vw;
    margin-bottom: 0;
    letter-spacing: 0em;
    line-height: 1.85;
    margin-right: 0;
    margin-left: 0;
  }
  .gallery__item:nth-of-type(3) .gallery__item-text {
    display: flex;
    justify-content: center;
    font-size: 1.875vw;
    text-align: center;
    margin-top: 39.609vw;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .gallery__item:nth-of-type(3) .gallery__item-info {
    font-size: 1.875vw;
    text-align: center;
    margin-top: 4.5%;
    line-height: 1.8;
  }
  .gallery__item:nth-of-type(3) .gallery__item-images {
    width: 100%;
    position: absolute;
    top: 0;
    margin-top: initial;
  }
  .gallery__item:nth-of-type(3) .gallery__item-image:first-child {
    position: absolute;
    width: 44.688vw;
    height: 32.344vw;
    top: 2.5vw;
    left: 0;
  }
  .gallery__item:nth-of-type(3) .gallery__item-image:nth-child(2) {
    position: absolute;
    width: 27.422vw;
    aspect-ratio: 1/1;
    left: 23.672vw !important;
    top: 37.266vw;
    z-index: 2;
  }
  .gallery__item:nth-of-type(3) .gallery__item-image:last-child {
    position: absolute;
    margin: inherit;
    width: 38.047vw;
    height: 31.25vw;
    top: 42.031vw;
    left: auto;
    right: 0;
  }
  .gallery__item:nth-of-type(4) .gallery__item-heading {
    width: 33.281vw;
    height: 8.672vw;
    margin-top: 16.484vw;
    margin-left: 0;
  }
  .gallery__item:nth-of-type(4) .gallery__item-subtitle {
    display: flex;
    justify-content: flex-end;
    font-size: 1.875vw;
    text-align: center;
    margin-top: 2.891vw;
    margin-bottom: 0;
    letter-spacing: 0em;
    line-height: 1.85;
    margin-right: 0;
    margin-left: 0;
  }
  .gallery__item:nth-of-type(4) .gallery__item-text {
    display: flex;
    justify-content: flex-start;
    font-size: 1.875vw;
    text-align: center;
    margin-top: 3.203vw;
    margin-left: 6.797vw;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .gallery__item:nth-of-type(4) .gallery__item-text:nth-of-type(2) {
    display: flex;
    justify-content: center;
    font-size: 1.875vw;
    text-align: center;
    margin-top: 47.891vw;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .gallery__item:nth-of-type(4) .gallery__item-info {
    font-size: 1.875vw;
    text-align: center;
    margin-top: 4.5%;
    line-height: 1.8;
  }
  .gallery__item:nth-of-type(4) .gallery__item-images {
    width: 100%;
    position: absolute;
    top: 0;
    margin-top: initial;
  }
  .gallery__item:nth-of-type(4) .gallery__item-image:first-child {
    position: absolute;
    width: 44.688vw;
    height: 32.344vw;
    top: -2.734vw;
    right: 0;
  }
  .gallery__item:nth-of-type(4) .gallery__item-image:nth-child(2) {
    position: absolute;
    width: 25vw;
    aspect-ratio: 1/1;
    left: 34.219vw !important;
    top: 32.344vw;
    z-index: 2;
  }
  .gallery__item:nth-of-type(4) .gallery__item-image:last-child {
    position: absolute;
    margin: inherit;
    width: 38.047vw;
    height: 31.25vw;
    top: 36.875vw;
    left: 0;
    right: auto;
  }
  .gallery__item:nth-of-type(5) .gallery__item-heading {
    width: 14.844vw;
    height: 7.422vw;
    margin-top: 13.906vw;
  }
  .gallery__item {
    position: relative;
  }
  .gallery__item-heading {
    display: block;
    margin: 0 auto;
  }
  .gallery__item-subtitle {
    font-size: 1.875vw;
    text-align: left;
    margin-top: 2.891vw;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    line-height: 1.7;
    margin-left: 9.766vw;
  }
  .gallery__item-text {
    display: inline-block;
    font-size: 1.875vw;
    text-align: center;
    margin-top: 0.234vw;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .gallery__item .left-auto {
    margin-left: auto;
  }
  .gallery__item-smalltext {
    font-size: 1.875vw;
    margin-top: 3.984vw;
    text-align: center;
    line-height: 1.5;
    letter-spacing: -0.05em;
  }
  .gallery__item-images {
    position: relative;
    margin-top: 5.733vw;
  }
  .gallery__item-image:first-child {
    position: absolute;
    width: 44.688vw;
    height: 32.344vw;
    top: -123%;
  }
  .gallery__item-image:nth-child(2) {
    position: absolute;
    width: 27.422vw;
    aspect-ratio: 1/1;
    left: 27.9%;
    top: -13.5%;
  }
  .gallery__item-image:last-child {
    margin: 15vw 0 0 auto;
    width: 38.516vw;
    height: 31.641vw;
  }
  .gallery__item-info {
    font-size: 1.875vw;
    text-align: center;
    margin-top: 54%;
    line-height: 1.8;
  }
  .gallery__item-info span {
    font-size: 1.875vw;
    letter-spacing: 0.05em;
  }
  .gallery__item-info-pc {
    margin-top: 4%;
  }
  .gallery__item-best-chapel img {
    display: block;
    width: 28.594vw;
    height: 8.672vw;
    margin: 4.453vw auto 0 auto;
  }
  .gallery__item-best-chapel figcaption {
    font-size: 2.031vw;
    text-align: center;
    color: #244683;
    margin-top: 1.719vw;
    letter-spacing: 0.06em;
    line-height: 1.5;
    font-family: "Shippori Mincho B1", serif;
  }
  .gallery .slider {
    position: relative;
    width: 44.688vw; /* スライダーの横幅 */
    height: 32.266vw;
    margin: 5.938vw auto 0 auto; /* ページ中央に配置 */
    overflow: hidden; /* はみ出しを隠す */
    padding-bottom: 0;
  }
  .gallery .slider-wrapper {
    display: flex; /* 横並び */
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease; /* スライドアニメーション */
  }
  .gallery .slide {
    min-width: 100%; /* 親要素の幅を1枚分の幅とする */
    height: 100%;
  }
  .gallery .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像の縦横比を保ちながら埋める */
    display: block;
  }
  .postion-right {
    right: inherit !important;
    left: inherit !important;
  }
  .postion-left {
    margin: inherit !important;
  }
  .flow {
    width: 84.375vw;
    margin: 15.313vw auto 0 auto;
  }
  .flow__title {
    margin-bottom: 7.031vw;
  }
  .flow__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: inherit;
    margin-bottom: 2.734vw;
    padding: 0 2.734vw;
  }
  .flow__item-heading {
    font-size: 2.813vw;
    color: #244683;
    margin-top: 2.734vw;
    font-family: "Shippori Mincho B1", serif;
    letter-spacing: 0.1em;
  }
  .flow__item-heading span {
    font-size: 3.594vw;
    font-family: "Great Vibes", serif;
  }
  .flow__item-subtitle {
    font-size: 1.875vw;
    font-family: "Noto Sans JP", serif;
    color: #000;
    margin-top: 1.328vw;
    letter-spacing: 0.1em;
  }
  .flow__item-image {
    width: 17.578vw;
    flex-shrink: 0;
    aspect-ratio: 1/1;
  }
  .flow__item:nth-of-type(3) .flow__item-content, .flow__item:nth-of-type(5) .flow__item-content {
    padding-left: 3.125vw;
  }
  .flow__arrow {
    width: 5.547vw;
    height: 1.563vw;
    margin: 0 auto 7.578vw auto;
  }
  .row-reverse {
    flex-direction: row-reverse;
  }
  .benefits {
    width: 75.703vw;
    margin: 13.281vw auto 0 auto;
    display: block;
  }
  .access {
    width: 84.375vw;
    margin: 12.031vw auto 0 auto;
  }
  .access__title {
    display: block;
    letter-spacing: 0;
  }
  .access__map {
    margin-top: 4.688vw;
    width: 100%;
    aspect-ratio: 1/0.563;
    background: #eeeeee;
  }
  .access__info {
    margin-top: 2.188vw;
  }
  .access__info p {
    text-align: center;
    font-size: 2.031vw;
    color: #272627;
    line-height: 1.47;
  }
  .access__info p span {
    display: block;
    margin-top: 3.281vw;
    font-size: 1.875vw;
    line-height: 1.6;
  }
  .offer {
    position: relative;
    width: 84.375vw;
    margin: 55.078vw auto 13.281vw auto;
  }
  .offer__out-bg {
    position: absolute;
    left: -3.867vw;
    top: -40.547vw;
    width: 84.375vw;
    height: 56.328vw;
    z-index: -1;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
  }
  .offer__bg {
    background: url(../img/offer_bg.png);
    background-size: cover;
    width: 73.594vw;
    margin: 0 auto;
    padding: 5.156vw 0 6.641vw 0;
  }
  .offer__title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4.141vw;
  }
  .offer__title::before {
    display: block;
    content: "";
    width: 10.938vw;
    height: 0.078vw;
    background: rgb(12, 56, 122);
    margin-right: 2.5vw;
  }
  .offer__title::after {
    display: block;
    content: "";
    width: 10.938vw;
    height: 0.078vw;
    background: rgb(12, 56, 122);
    margin-left: 2.5vw;
  }
  .offer__catch {
    font-size: 2.734vw;
    text-align: center;
    margin-top: 3.516vw;
  }
  .offer__lead {
    font-size: 2.734vw;
    color: #1b1b1b;
    text-align: center;
    margin: 1.172vw 0 2.5vw 0px;
  }
  .offer__lead .offer__lead-big {
    font-size: 3.75vw;
  }
  .offer__lead .offer__lead-color {
    color: #0c387a;
  }
  .offer__lead .offer__lead-small {
    font-size: 3.125vw;
  }
  .offer__item {
    width: 64.844vw;
    margin: 0 auto 2.969vw auto;
  }
  .offer__item-title {
    background: #0c387a;
    padding: 1.406vw 0;
    font-size: 2.344vw;
    text-align: center;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    border-radius: 1.333vw 1.333vw 0 0;
  }
  .offer__item-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.188vw 2.5vw 1.875vw 2.5vw;
    background: #fff;
    box-shadow: 0px 4px 3.28px 0.72px rgba(179, 179, 180, 0.23);
    border-radius: 0 0 1.333vw 1.333vw;
  }
  .offer__item-text {
    font-size: 2.734vw;
    color: #272627;
    text-align: center;
    padding-left: 4.688vw;
  }
  .offer__item-text span {
    font-size: 3.75vw;
    color: #0c387a;
    font-weight: bold;
  }
  .offer__item-text--small {
    display: block;
    font-size: 2.109vw !important;
    color: #272627 !important;
    letter-spacing: 0.03em;
    line-height: 1.18;
    margin-top: 2.267vw;
  }
  .offer__item-textimg {
    width: 34.844vw;
    height: 9.531vw;
  }
  .offer__item-image {
    width: 22.422vw;
    height: 14.453vw;
    flex-shrink: 0;
  }
  .offer__item:nth-of-type(2) .offer__item-text {
    font-size: 2.5vw;
  }
  .offer__item:nth-of-type(3) {
    margin-bottom: 0;
  }
  .offer__item:nth-of-type(3) .offer__item-text {
    font-size: 2.344vw;
    letter-spacing: 0.03em;
    padding-left: 0;
  }
  .offer__item:nth-of-type(3) .offer__item-text span {
    font-size: 2.734vw !important;
  }
  .offer__note {
    margin-top: 0.156vw;
    text-align: center;
    font-size: 1.719vw;
    letter-spacing: 0.03em;
  }
}
.content-offer {
  width: 72.656%;
  margin: 5.625vw auto 0 auto;
}

.banner__inner {
  width: 92vw;
  margin: 0 auto;
  padding: 1.467vw 0;
}
.banner__logo {
  width: 24.267vw;
  height: 7.333vw;
  margin: 0 auto;
}
.banner__text {
  font-size: 4.533vw;
  color: #264164;
  white-space: nowrap;
  margin-top: 2.133vw;
}

@media screen and (min-width: 770px) {
  .banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84.375vw;
    padding: 1.406vw 0;
  }
  .banner__logo {
    width: 16.641vw;
    height: 5vw;
    margin: 0 2.344vw 0 0;
  }
  .banner__text {
    font-size: 2.656vw;
    margin-top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
