@charset "UTF-8";
/* resset.dev • v5.0.2 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
  color: inherit; /* Correct border color in Firefox. */
}

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

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

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none; /* Add the correct display in IE */
}

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

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

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

/* https://gist.github.com/unruthless/413930 */
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; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

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

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

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

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

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

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

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

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

ul {
  list-style: none;
}

:root {
  --vw: 1vw;
}

@keyframes hamburgerOn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes hamburgerOff {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
#OTOSHIDAMA .sec-in, #OTOSHIDAMA .breadCrumb {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-in, #OTOSHIDAMA .breadCrumb {
    padding-right: calc(2.8301886792 * var(--vw));
    padding-left: calc(2.8301886792 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-in, #OTOSHIDAMA .breadCrumb {
    padding-right: 0;
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .pb-68 {
    padding-bottom: calc(18.1333333333 * var(--vw));
  }
}

#pagetop {
  width: 60px;
  position: fixed;
  right: 160px;
  transition: 0.4s;
  display: block;
  bottom: -80px;
  z-index: 100;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #pagetop {
    width: calc(5.6603773585 * var(--vw));
    right: calc(15.0943396226 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #pagetop {
    width: calc(16 * var(--vw));
    right: calc(8 * var(--vw));
    left: initial;
    margin: initial;
  }
}

.active {
  bottom: 20px !important;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  .active {
    bottom: calc(1.8867924528 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  .active {
    bottom: calc(21.3333333333 * var(--vw)) !important;
  }
}

.totop {
  max-width: 1677px;
  width: 100%;
  position: relative;
}

.wrap_sec {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background-image: url("../images/bg_side0.png"), url("../images/bg_side0.png");
  background-position: top;
  background-position: left 34px top, right 34px top;
  background-repeat: repeat-y, repeat-y;
  background-size: 88px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  .wrap_sec {
    background-position: top;
    background-position: left calc(3.2075471698 * var(--vw)) top, right calc(3.2075471698 * var(--vw)) top;
    background-size: calc(8.3018867925 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .wrap_sec {
    width: 100%;
    margin: 0 auto;
    background-position: top;
    background-image: url("../images/bg_side0_sp.png"), url("../images/bg_side0_sp.png");
    background-position: left calc(0.5333333333 * var(--vw)) top, right calc(0.5333333333 * var(--vw)) top;
    background-size: calc(5.3333333333 * var(--vw));
  }
}

.wrap_sec_r {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background-image: url("../images/bg_side0_1.png"), url("../images/bg_side0_1.png");
  background-position: top;
  background-position: left 34px top, right 34px top;
  background-repeat: repeat-y, repeat-y;
  background-size: 88px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  .wrap_sec_r {
    background-position: top;
    background-position: left calc(3.2075471698 * var(--vw)) top, right calc(3.2075471698 * var(--vw)) top;
    background-size: calc(8.3018867925 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .wrap_sec_r {
    width: 100%;
    margin: 0 auto;
    background-position: top;
    background-image: url("../images/bg_side0_1_sp.png"), url("../images/bg_side0_1_sp.png");
    background-position: left calc(0.5333333333 * var(--vw)) top, right calc(0.5333333333 * var(--vw)) top;
    background-size: calc(5.3333333333 * var(--vw));
    padding-bottom: calc(1.3333333333 * var(--vw));
  }
}

.wrap_sec2 {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .wrap_sec2 {
    width: 100%;
    margin: 0 auto;
  }
}

.wrap_sec3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background-image: url("../images/bg_side1.png"), url("../images/bg_side1.png");
  background-position: left 34px top, right 34px top;
  background-repeat: repeat-y, repeat-y;
  background-size: 88px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  .wrap_sec3 {
    background-position: left calc(3.2075471698 * var(--vw)) top, right calc(3.2075471698 * var(--vw)) top;
    background-size: calc(8.3018867925 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .wrap_sec3 {
    width: 100%;
    margin: 0 auto;
    background-image: url("../images/bg_side1_sp.png"), url("../images/bg_side1_sp.png");
    background-position: left calc(0.5333333333 * var(--vw)) top, right calc(0.5333333333 * var(--vw)) top;
    padding: 0 calc(0.5333333333 * var(--vw));
    background-size: calc(5.3333333333 * var(--vw));
  }
}

.wrap_sec3_l {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  max-width: 122px;
  width: 100%;
  margin: 0 auto;
  background-image: url("../images/bg_side1.png");
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 88px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  .wrap_sec3_l {
    background-position: right top;
    background-size: calc(8.3018867925 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .wrap_sec3_l {
    max-width: calc(5.8666666667 * var(--vw));
    width: 100%;
    margin: 0 auto;
    background-image: url("../images/bg_side1_sp.png");
    background-position: right top;
    padding-left: calc(0.5333333333 * var(--vw));
    background-size: calc(5.3333333333 * var(--vw));
  }
}

.wrap_sec3_r {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  height: 100%;
  max-width: 122px;
  width: 100%;
  margin: 0 auto;
  background-image: url("../images/bg_side1.png");
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 88px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  .wrap_sec3_r {
    background-position: left top;
    background-size: calc(8.3018867925 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .wrap_sec3_r {
    max-width: calc(5.8666666667 * var(--vw));
    width: 100%;
    margin: 0 auto;
    background-image: url("../images/bg_side1_sp.png");
    background-position: left top;
    padding-right: calc(0.5333333333 * var(--vw));
    background-size: calc(5.3333333333 * var(--vw));
  }
}

#OTOSHIDAMA {
  position: relative;
}
#OTOSHIDAMA #wrapper {
  width: 100%;
  padding-bottom: 0;
}
#OTOSHIDAMA .otoshidama-contents {
  background: #FBE2E0;
  overflow: hidden;
}
#OTOSHIDAMA .sec {
  position: relative;
}
#OTOSHIDAMA .sec * {
  font-feature-settings: "palt";
}
#OTOSHIDAMA .sec-in {
  position: relative;
}
#OTOSHIDAMA .orn-obj {
  position: absolute;
}
#OTOSHIDAMA .fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#OTOSHIDAMA .fade-in.visible {
  opacity: 1;
}
#OTOSHIDAMA .fade-in-group > * {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#OTOSHIDAMA .fade-in-group > *.visible {
  opacity: 1;
}
#OTOSHIDAMA .notes {
  font-size: 12px;
  line-height: 1.69;
  text-align: center;
  margin-top: 20px;
}
#OTOSHIDAMA .notes::before, #OTOSHIDAMA .notes::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#OTOSHIDAMA .notes::before {
  margin-top: calc((1 - 1.69) * 0.5em);
}
#OTOSHIDAMA .notes::after {
  margin-bottom: calc((1 - 1.69) * 0.5em);
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .notes {
    font-size: calc(1.1320754717 * var(--vw));
    margin-top: calc(1.8867924528 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .notes {
    font-size: calc(3.2 * var(--vw));
    text-align: left;
    width: calc(74.6666666667 * var(--vw)) !important;
    margin: calc(3.2 * var(--vw)) auto 0;
  }
}
#OTOSHIDAMA .notes2 {
  font-size: 12px;
  line-height: 1.69;
  text-align: left;
  margin-top: 34px;
}
#OTOSHIDAMA .notes2::before, #OTOSHIDAMA .notes2::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#OTOSHIDAMA .notes2::before {
  margin-top: calc((1 - 1.69) * 0.5em);
}
#OTOSHIDAMA .notes2::after {
  margin-bottom: calc((1 - 1.69) * 0.5em);
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .notes2 {
    font-size: calc(1.1320754717 * var(--vw));
    margin-top: calc(3.2075471698 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .notes2 {
    font-size: calc(3.2 * var(--vw));
    text-align: left;
    width: calc(74.6666666667 * var(--vw)) !important;
    margin: 0 auto;
    padding: 0 calc(3.2 * var(--vw));
  }
}
#OTOSHIDAMA .notes3 {
  font-size: 12px;
  line-height: 1.69;
  text-align: center;
  margin-top: 20px;
}
#OTOSHIDAMA .notes3::before, #OTOSHIDAMA .notes3::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#OTOSHIDAMA .notes3::before {
  margin-top: calc((1 - 1.69) * 0.5em);
}
#OTOSHIDAMA .notes3::after {
  margin-bottom: calc((1 - 1.69) * 0.5em);
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .notes3 {
    font-size: calc(1.1320754717 * var(--vw));
    margin-top: calc(1.8867924528 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .notes3 {
    font-size: calc(3.2 * var(--vw));
    text-align: left;
    width: calc(74.6666666667 * var(--vw)) !important;
    margin: 0 auto;
    margin-bottom: calc(3.2 * var(--vw));
  }
}
#OTOSHIDAMA .white-box {
  position: relative;
  z-index: 2;
  background: #fff;
  filter: drop-shadow(5px 5px 0 #e6e6e6);
  border-radius: 20px;
  width: 1000px;
  margin: 0 auto;
  padding: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .white-box {
    filter: drop-shadow(calc(0.4716981132 * var(--vw)) calc(0.4716981132 * var(--vw)) 0 #e6e6e6);
    border-radius: calc(1.8867924528 * var(--vw));
    width: calc(94.3396226415 * var(--vw));
    padding: calc(4.7169811321 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .white-box {
    filter: drop-shadow(calc(0.5333333333 * var(--vw)) calc(0.5333333333 * var(--vw)) 0 #e6e6e6);
    border-radius: calc(1.8666666667 * var(--vw));
    width: calc(80 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .btn-box {
  margin: 50px auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .btn-box {
    margin: calc(4.7169811321 * var(--vw)) auto 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .btn-box {
    margin: calc(4.8 * var(--vw)) auto 0;
  }
}
#OTOSHIDAMA .btn-box .btn {
  width: 412px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .btn-box .btn {
    width: calc(38.8679245283 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .btn-box .btn {
    width: calc(54.6666666667 * var(--vw));
  }
}
@media (hover: none) {
  #OTOSHIDAMA .btn-box .btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  #OTOSHIDAMA .btn-box .btn:active {
    opacity: 0.65;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  #OTOSHIDAMA .btn-box .btn:hover {
    opacity: 0.65;
  }
}
#OTOSHIDAMA .kv {
  padding: 182px 0 75px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv {
    padding: calc(17.1698113208 * var(--vw)) 0 calc(7.0754716981 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv {
    padding: calc(12.8 * var(--vw)) 0 calc(5.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .kv .kv-box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 1000px;
  margin: 0 0 0 8px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv .kv-box {
    width: calc(90.5660377358 * var(--vw));
    margin: 0 0 0 calc(0.7547169811 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .kv-box {
    flex-direction: column;
    gap: calc(3.2 * var(--vw));
    width: 100%;
    margin: 0 auto;
  }
}
#OTOSHIDAMA .kv .kv-ttl {
  width: 571px;
  padding: 20px 0 0;
  margin: auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv .kv-ttl {
    width: calc(53.8679245283 * var(--vw));
    padding: calc(1.8867924528 * var(--vw)) 0 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .kv-ttl {
    width: calc(75.68 * var(--vw));
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .kv-ttl img {
    width: 100%;
  }
}
#OTOSHIDAMA .kv .kv-ttl2 img {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv .kv-ttl2 img {
    margin-top: calc(2.8301886792 * var(--vw));
  }
}
#OTOSHIDAMA .kv .kv-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 389.6px;
  height: 442px;
  margin-left: -10px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv .kv-img {
    width: calc(36.7547169811 * var(--vw));
    height: calc(41.6981132075 * var(--vw));
    margin-left: calc(-0.9433962264 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .kv-img {
    width: calc(80 * var(--vw));
    height: calc(86.8 * var(--vw));
    margin: 0 auto;
  }
}
#OTOSHIDAMA .kv .kv-img::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: url(../images/frame_kv_01.svg) no-repeat center center;
  background-size: contain;
  width: 100%;
  height: 100%;
}
#OTOSHIDAMA .kv .kv-img .pic {
  width: 367.8px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv .kv-img .pic {
    width: calc(34.6981132075 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .kv-img .pic {
    width: calc(75.5626666667 * var(--vw));
  }
}
#OTOSHIDAMA .kv .orn-obj-01 {
  top: -120px;
  left: -150px;
  width: 345px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv .orn-obj-01 {
    top: calc(-11.320754717 * var(--vw));
    left: calc(-14.1509433962 * var(--vw));
    width: calc(32.5471698113 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .orn-obj-01 {
    top: calc(-7.7333333333 * var(--vw));
    left: calc(5.3333333333 * var(--vw));
    width: calc(32.2666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .orn-obj-01 img {
    width: 100%;
  }
}
#OTOSHIDAMA .kv .orn-obj-02 {
  top: 625px;
  right: -185px;
  width: 399px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv .orn-obj-02 {
    top: calc(58.9622641509 * var(--vw));
    right: calc(-17.4528301887 * var(--vw));
    width: calc(37.641509434 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .orn-obj-02 {
    top: calc(189.8666666667 * var(--vw));
    right: calc(5.3333333333 * var(--vw));
    width: calc(33.8666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .orn-obj-02 img {
    width: 100%;
  }
}
#OTOSHIDAMA .kv .img {
  width: 615px;
  margin: 30px auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .kv .img {
    width: calc(58.0188679245 * var(--vw));
    margin: calc(2.8301886792 * var(--vw)) auto 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .img {
    width: calc(79.7333333333 * var(--vw));
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .kv .img img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-lead {
  text-align: center;
}
#OTOSHIDAMA .sec-lead .txt {
  font-size: 18px;
  line-height: 1.94;
  letter-spacing: 0.06em;
}
#OTOSHIDAMA .sec-lead .txt::before, #OTOSHIDAMA .sec-lead .txt::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#OTOSHIDAMA .sec-lead .txt::before {
  margin-top: calc((1 - 1.94) * 0.5em);
}
#OTOSHIDAMA .sec-lead .txt::after {
  margin-bottom: calc((1 - 1.94) * 0.5em);
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-lead .txt {
    font-size: calc(1.6981132075 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-lead .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: 1.71;
  }
  #OTOSHIDAMA .sec-lead .txt::before, #OTOSHIDAMA .sec-lead .txt::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  #OTOSHIDAMA .sec-lead .txt::before {
    margin-top: calc((1 - 1.71) * 0.5em);
  }
  #OTOSHIDAMA .sec-lead .txt::after {
    margin-bottom: calc((1 - 1.71) * 0.5em);
  }
}
#OTOSHIDAMA .sec-lead .orn-obj-01 {
  top: calc(-6.6666666667 * var(--vw));
  right: calc(-2.1333333333 * var(--vw));
  width: calc(17.8666666667 * var(--vw));
}
#OTOSHIDAMA .sec-family-photo {
  padding: 65px 0 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-family-photo {
    padding: calc(6.1320754717 * var(--vw)) 0 calc(2.8301886792 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-family-photo {
    padding: calc(4 * var(--vw)) 0;
  }
}
#OTOSHIDAMA .sec-family-photo .sec-ttl {
  width: 632px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-family-photo .sec-ttl {
    width: calc(59.6226415094 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-family-photo .sec-ttl {
    width: calc(83.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-family-photo .img {
  width: 615px;
  margin: 30px auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-family-photo .img {
    width: calc(58.0188679245 * var(--vw));
    margin: calc(2.8301886792 * var(--vw)) auto 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-family-photo .img {
    width: calc(79.7333333333 * var(--vw));
    margin: calc(4 * var(--vw)) auto 0;
  }
}
#OTOSHIDAMA .sec-family-photo .price {
  transform: translateX(-64px);
  width: 330px;
  margin: 25px auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-family-photo .price {
    transform: translateX(calc(-6.0377358491 * var(--vw)));
    width: calc(31.1320754717 * var(--vw));
    margin: calc(2.358490566 * var(--vw)) auto 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-family-photo .price {
    transform: unset;
    width: calc(65.6 * var(--vw));
    margin: calc(5.3333333333 * var(--vw)) auto 0;
  }
}
#OTOSHIDAMA .sec-family-photo .orn-obj-01 {
  top: 120px;
  right: -115px;
  width: 112px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-family-photo .orn-obj-01 {
    top: calc(11.320754717 * var(--vw));
    right: calc(-10.8490566038 * var(--vw));
    width: calc(10.5660377358 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-family-photo .orn-obj-01 {
    top: calc(26.6666666667 * var(--vw));
    right: calc(4.2666666667 * var(--vw));
    width: calc(16 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-family-photo .orn-obj-01 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-family-photo .orn-obj-02 {
  bottom: 25px;
  left: -70px;
  width: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-family-photo .orn-obj-02 {
    bottom: calc(2.358490566 * var(--vw));
    left: calc(-6.6037735849 * var(--vw));
    width: calc(7.5471698113 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-family-photo .orn-obj-02 {
    top: calc(45.8666666667 * var(--vw));
    bottom: unset;
    left: calc(-9.6 * var(--vw));
    width: calc(34.4 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-family-photo .orn-obj-02 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-photo-gallery {
  position: relative;
  padding: 100px 0 210px;
  /*
      &::before,
      &::after {
        content: "";
        position: absolute;
        right: 0;
        left: 0;
        background: url(../img/orn_photo_gallery_slide_01.svg) no-repeat center top / 930px auto;
        height: 100px;
        margin: 0 auto;

        @include media(pc-m) {
          background-size: getvwPc(930) auto;
          height: getvwPc(100);
        }

        @include media(sp) {
          display: none;
        }
      }

      &::before {
        top: 0;
      }

      &::after {
        bottom: 100px;
        background-position: center bottom;

        @include media(pc-m) {
          bottom: getvwPc(100);
        }
      }
  */
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery {
    padding: calc(9.4339622642 * var(--vw)) 0 calc(19.8113207547 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery {
    padding: 0;
  }
}
#OTOSHIDAMA .sec-photo-gallery .sec-ttl {
  margin: 0 auto;
  height: 197px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .sec-ttl {
    height: calc(18.5849056604 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .sec-ttl {
    width: calc(85.0666666667 * var(--vw));
    height: calc(26.4 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .sec-ttl img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-photo-gallery .orn-obj-01 {
  top: -130px;
  right: -145px;
  width: 83px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .orn-obj-01 {
    top: calc(-12.2641509434 * var(--vw));
    right: calc(-13.679245283 * var(--vw));
    width: calc(7.8301886792 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .orn-obj-02 {
  top: -100px;
  left: -465px;
  width: 436px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .orn-obj-02 {
    top: calc(-9.4339622642 * var(--vw));
    left: calc(-43.8679245283 * var(--vw));
    width: calc(41.1320754717 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .orn-obj-03 {
  top: 366px;
  right: -394px;
  width: 388px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .orn-obj-03 {
    top: calc(34.5283018868 * var(--vw));
    right: calc(-37.1698113208 * var(--vw));
    width: calc(36.6037735849 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .orn-obj-04 {
  top: 678px;
  left: -130px;
  width: 57px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .orn-obj-04 {
    top: calc(63.9622641509 * var(--vw));
    left: calc(-12.2641509434 * var(--vw));
    width: calc(5.3773584906 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer {
  position: relative;
  width: 100%;
  margin: 42px auto 0;
  padding: 55px 122px 63px;
  background-color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer {
    margin: calc(3.3962264151 * var(--vw)) auto;
    padding: calc(5.1886792453 * var(--vw)) calc(11.5094339623 * var(--vw)) calc(5.9433962264 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer {
    margin: calc(4 * var(--vw)) 0 0;
    padding: calc(4.8 * var(--vw)) calc(5.3333333333 * var(--vw)) calc(10.1333333333 * var(--vw));
    width: 100%;
  }
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-pagination {
  top: unset;
  bottom: 0;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-pagination {
    bottom: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(-1.8666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-pagination-bullet {
  background: #F3DAB6;
  opacity: 1;
  aspect-ratio: 1;
  width: 10px;
  height: auto;
  margin: 0 2.5px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-pagination-bullet {
    width: calc(0.9433962264 * var(--vw));
    margin: 0 calc(0.2358490566 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-pagination-bullet {
    width: calc(2.6666666667 * var(--vw));
    margin: 0 calc(0.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-pagination-bullet-active {
  background: #C0A438;
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-buttons {
  position: absolute;
  top: 165px;
  right: 0;
  left: 0;
  width: 590px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-buttons {
    top: calc(15.5660377358 * var(--vw));
    width: calc(55.6603773585 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-buttons {
    width: calc(86.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-prev,
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-next {
  background: no-repeat center center/100% auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  aspect-ratio: 1;
  width: 84px;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-prev,
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-next {
    filter: drop-shadow(0 0 calc(0.9433962264 * var(--vw)) rgba(0, 0, 0, 0.3));
    width: calc(7.9245283019 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-prev,
  #OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-next {
    filter: drop-shadow(0 0 calc(0.8 * var(--vw)) rgba(0, 0, 0, 0.3));
    width: calc(6.9333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-prev::after,
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-next::after {
  display: none;
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-prev {
  background-image: url(../img/btn_gallery_01.svg);
  left: 0;
}
#OTOSHIDAMA .sec-photo-gallery .swiper-outer .swiper-button-next {
  background-image: url(../img/btn_gallery_01_right.svg);
  right: 0;
}
#OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-wrapper {
  align-items: stretch;
  max-height: 278px;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-wrapper {
    max-height: calc(26.2264150943 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-wrapper {
    max-height: calc(80.8 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 240px;
  height: auto;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-slide {
    width: calc(22.641509434 * var(--vw));
    padding: 0 calc(0.9433962264 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-slide {
    width: calc(64 * var(--vw));
    padding: 0 calc(2.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-slide.vertical {
  width: 328px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-slide.vertical {
    width: calc(30.9433962264 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery .swiper-gallery .swiper-slide.vertical {
    width: calc(87.4666666667 * var(--vw));
  }
}
#OTOSHIDAMA .bg-pg {
  background-color: #FAEDDB;
  padding: 47px 0 64px !important;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .bg-pg {
    padding: calc(4.4339622642 * var(--vw)) 0 calc(6.0377358491 * var(--vw)) !important;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .bg-pg {
    margin-top: 0 !important;
    padding: calc(4.8 * var(--vw)) 0 calc(4.8 * var(--vw)) !important;
  }
}
#OTOSHIDAMA .sec-photo-gallery2 {
  position: relative;
  padding: 80px 0 42px;
  /*
      &::before,
      &::after {
        content: "";
        position: absolute;
        right: 0;
        left: 0;
        background: url(../img/orn_photo_gallery_slide_01.svg) no-repeat center top / 930px auto;
        height: 100px;
        margin: 0 auto;

        @include media(pc-m) {
          background-size: getvwPc(930) auto;
          height: getvwPc(100);
        }

        @include media(sp) {
          display: none;
        }
      }

      &::before {
        top: 0;
      }

      &::after {
        bottom: 100px;
        background-position: center bottom;

        @include media(pc-m) {
          bottom: getvwPc(100);
        }
      }
  */
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 {
    padding: calc(7.5471698113 * var(--vw)) 0 calc(3.9622641509 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 {
    padding: calc(3.2 * var(--vw)) 0;
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .sec-ttl {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .sec-ttl {
    width: calc(60.2666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .orn-obj-01 {
  top: -130px;
  right: -145px;
  width: 83px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .orn-obj-01 {
    top: calc(-12.2641509434 * var(--vw));
    right: calc(-13.679245283 * var(--vw));
    width: calc(7.8301886792 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .orn-obj-02 {
    top: calc(-14.9333333333 * var(--vw));
    right: calc(5.3333333333 * var(--vw));
    width: calc(33.8666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .orn-obj-02 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .orn-obj-03 {
  top: 366px;
  right: -394px;
  width: 388px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .orn-obj-03 {
    top: calc(34.5283018868 * var(--vw));
    right: calc(-37.1698113208 * var(--vw));
    width: calc(36.6037735849 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .orn-obj-04 {
  top: 678px;
  left: -130px;
  width: 57px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .orn-obj-04 {
    top: calc(63.9622641509 * var(--vw));
    left: calc(-12.2641509434 * var(--vw));
    width: calc(5.3773584906 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer {
  position: relative;
  padding-bottom: 40px;
  width: 640px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer {
    margin: 0 auto;
    padding-bottom: calc(3.7735849057 * var(--vw));
    width: calc(60.3773584906 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer {
    width: 100%;
    padding: 0 calc(5.3333333333 * var(--vw)) calc(10.9333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-pagination {
  top: unset;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-pagination {
    bottom: calc(5.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-pagination-bullet {
  background: #DADADA;
  opacity: 1;
  aspect-ratio: 1;
  width: 10px;
  height: auto;
  margin: 0 2.5px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-pagination-bullet {
    width: calc(0.9433962264 * var(--vw));
    margin: 0 calc(0.2358490566 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-pagination-bullet {
    width: calc(2.6666666667 * var(--vw));
    margin: 0 calc(0.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-pagination-bullet-active {
  background: #C82833;
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-buttons {
  position: absolute;
  top: 165px;
  right: 0;
  left: 0;
  width: 590px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-buttons {
    top: calc(15.5660377358 * var(--vw));
    width: calc(55.6603773585 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-buttons {
    width: calc(86.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-prev,
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-next {
  background: no-repeat center center/100% auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  aspect-ratio: 1;
  width: 84px;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-prev,
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-next {
    filter: drop-shadow(0 0 calc(0.9433962264 * var(--vw)) rgba(0, 0, 0, 0.3));
    width: calc(7.9245283019 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-prev,
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-next {
    filter: drop-shadow(0 0 calc(0.8 * var(--vw)) rgba(0, 0, 0, 0.3));
    width: calc(6.9333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-prev::after,
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-next::after {
  display: none;
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-prev {
  background-image: url(../img/btn_gallery_01.svg);
  left: 0;
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-outer .swiper-button-next {
  background-image: url(../img/btn_gallery_01_right.svg);
  right: 0;
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-gallery .swiper-wrapper {
  align-items: stretch;
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-gallery .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 420px;
  height: auto;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-gallery .swiper-slide {
    width: calc(39.6226415094 * var(--vw));
    padding: 0 calc(0.9433962264 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-gallery .swiper-slide {
    width: calc(88.8 * var(--vw));
    padding: 0 calc(2.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery2 .swiper-gallery .swiper-slide.vertical {
  width: 320px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-gallery .swiper-slide.vertical {
    width: calc(30.1886792453 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery2 .swiper-gallery .swiper-slide.vertical {
    width: calc(68 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 {
  position: relative;
  padding: 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery3 {
    padding: 0 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 {
    padding: 0;
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .sec-ttl {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .sec-ttl {
    width: calc(60.2666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer {
  position: relative;
  padding-bottom: 40px;
  width: 300px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer {
    margin: 0 auto;
    padding-bottom: calc(3.7735849057 * var(--vw));
    width: calc(28.3018867925 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer {
    width: 100%;
    padding: calc(4.5333333333 * var(--vw)) calc(5.3333333333 * var(--vw)) calc(6.9333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-pagination {
  top: unset;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-pagination {
    bottom: calc(5.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-pagination-bullet {
  background: #DADADA;
  opacity: 1;
  aspect-ratio: 1;
  width: 10px;
  height: auto;
  margin: 0 2.5px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-pagination-bullet {
    width: calc(0.9433962264 * var(--vw));
    margin: 0 calc(0.2358490566 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-pagination-bullet {
    width: calc(2.6666666667 * var(--vw));
    margin: 0 calc(0.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-pagination-bullet-active {
  background: #C82833;
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-buttons {
  position: absolute;
  top: 165px;
  right: 0;
  left: 0;
  width: 590px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-buttons {
    top: calc(15.5660377358 * var(--vw));
    width: calc(55.6603773585 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-buttons {
    width: calc(86.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-prev,
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-next {
  background: no-repeat center center/100% auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  aspect-ratio: 1;
  width: 84px;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-prev,
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-next {
    filter: drop-shadow(0 0 calc(0.9433962264 * var(--vw)) rgba(0, 0, 0, 0.3));
    width: calc(7.9245283019 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-prev,
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-next {
    filter: drop-shadow(0 0 calc(0.8 * var(--vw)) rgba(0, 0, 0, 0.3));
    width: calc(6.9333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-prev::after,
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-next::after {
  display: none;
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-prev {
  background-image: url(../img/btn_gallery_01.svg);
  left: 0;
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-outer .swiper-button-next {
  background-image: url(../img/btn_gallery_01_right.svg);
  right: 0;
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery .swiper-wrapper {
  align-items: stretch;
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 420px;
  height: auto;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery .swiper-slide {
    width: calc(39.6226415094 * var(--vw));
    padding: 0 calc(0.9433962264 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery .swiper-slide {
    width: calc(72.5333333333 * var(--vw));
    padding: 0 calc(2.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery .swiper-slide.vertical {
  width: 320px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery .swiper-slide.vertical {
    width: calc(30.1886792453 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery .swiper-slide.vertical {
    width: calc(68 * var(--vw));
  }
}
#OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery3 {
  position: relative;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .swiper-gallery3 {
    padding-bottom: calc(4.8 * var(--vw));
    background-image: url(../images/img_fuku-slide_bg.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-photo-gallery3 .mt-20 {
    margin-top: calc(5.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji {
  padding: 60px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji {
    padding: calc(5.6603773585 * var(--vw)) 0 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji {
    padding: calc(5.3333333333 * var(--vw)) 0 0;
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .sec-ttl {
  width: 614px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .sec-ttl {
    width: calc(57.9245283019 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .sec-ttl {
    width: calc(84 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .sec-ttl img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .txt {
  width: 384px;
  margin: 30px auto;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .txt {
    width: calc(36.2264150943 * var(--vw));
    margin: calc(2.8301886792 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .txt {
    width: calc(72.2666666667 * var(--vw));
    margin: calc(3.2 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .txt img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .txt2 {
  width: 192px;
  margin: 30px auto;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .txt2 {
    width: calc(18.1132075472 * var(--vw));
    margin: calc(2.8301886792 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .txt2 {
    width: calc(42.6666666667 * var(--vw));
    margin: calc(3.2 * var(--vw)) auto;
    margin-bottom: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .txt2 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .img {
  width: 362px;
  margin: 35px auto;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img {
    width: calc(34.1509433962 * var(--vw));
    margin: calc(3.3018867925 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img {
    width: calc(68.8 * var(--vw));
    margin: calc(3.2 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .img_obox_1 {
  width: 180px;
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_1 {
    width: calc(16.9811320755 * var(--vw));
    margin: 0 auto;
    margin-bottom: calc(4.7169811321 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_1 {
    width: calc(34.1333333333 * var(--vw));
    margin: 0 auto;
    margin-bottom: calc(2.9333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_1 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .img_obox_2 {
  width: 1000px;
  margin: 0 auto;
  margin-bottom: 74px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_2 {
    width: calc(94.3396226415 * var(--vw));
    margin: 0 auto;
    margin-bottom: calc(6.9811320755 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_2 {
    width: calc(80 * var(--vw));
    margin: 0 auto;
    margin-bottom: calc(7.4666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_2 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .img_obox_3 {
  width: 192px;
  margin: 128px auto;
  margin-bottom: 66px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_3 {
    width: calc(18.1132075472 * var(--vw));
    margin: calc(12.0754716981 * var(--vw)) auto;
    margin-bottom: calc(6.2264150943 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_3 {
    width: calc(28.8 * var(--vw));
    margin: calc(14.4 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .img_obox_3 img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .notes {
    font-size: calc(2.9333333333 * var(--vw)) !important;
    line-height: 1.45 !important;
    width: calc(74.6666666667 * var(--vw)) !important;
    margin: calc(4.8 * var(--vw)) auto 0;
  }
  #OTOSHIDAMA .sec-otoshidama-kuji .notes::before, #OTOSHIDAMA .sec-otoshidama-kuji .notes::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  #OTOSHIDAMA .sec-otoshidama-kuji .notes::before {
    margin-top: calc((1 - 1.45) * 0.5em);
  }
  #OTOSHIDAMA .sec-otoshidama-kuji .notes::after {
    margin-bottom: calc((1 - 1.45) * 0.5em);
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .orn-obj-01 {
  top: -35px;
  width: 345px;
  left: -130px;
  z-index: 10;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .orn-obj-01 {
    top: calc(-3.3018867925 * var(--vw));
    left: calc(-12.2641509434 * var(--vw));
    width: calc(32.5471698113 * var(--vw));
    z-index: 10;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .orn-obj-01 {
    top: calc(-2.9333333333 * var(--vw));
    left: calc(8.5333333333 * var(--vw));
    z-index: 10;
    width: calc(25.0666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .orn-obj-01 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-otoshidama-kuji .orn-obj-02 {
  width: 399px;
  z-index: 10;
  bottom: -105px;
  right: -168px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .orn-obj-02 {
    width: calc(37.641509434 * var(--vw));
    z-index: 10;
    bottom: calc(-9.9056603774 * var(--vw));
    right: calc(-15.8490566038 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .orn-obj-02 {
    bottom: calc(-10.6666666667 * var(--vw));
    right: calc(5.3333333333 * var(--vw));
    z-index: 10;
    width: calc(33.8666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-otoshidama-kuji .orn-obj-02 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-fukubukuro {
  padding: 60px 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro {
    padding: calc(5.6603773585 * var(--vw)) 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro {
    padding: calc(8.2666666667 * var(--vw)) 0 0;
  }
}
#OTOSHIDAMA .sec-fukubukuro .sec-ttl {
  width: 569px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .sec-ttl {
    width: calc(53.679245283 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .sec-ttl {
    width: calc(74.1333333333 * var(--vw));
    margin-top: calc(7.7333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .sec-ttl img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-fukubukuro .txt {
  font-size: 18px;
  line-height: 1.77;
  letter-spacing: 0.05em;
  text-align: left;
  margin-top: 45px;
}
#OTOSHIDAMA .sec-fukubukuro .txt::before, #OTOSHIDAMA .sec-fukubukuro .txt::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#OTOSHIDAMA .sec-fukubukuro .txt::before {
  margin-top: calc((1 - 1.77) * 0.5em);
}
#OTOSHIDAMA .sec-fukubukuro .txt::after {
  margin-bottom: calc((1 - 1.77) * 0.5em);
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .txt {
    font-size: calc(1.6981132075 * var(--vw));
    margin-top: calc(4.2452830189 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .txt {
    font-size: calc(2.9333333333 * var(--vw));
    line-height: 1.45;
    width: calc(74.6666666667 * var(--vw));
    margin: 0 auto;
  }
  #OTOSHIDAMA .sec-fukubukuro .txt::before, #OTOSHIDAMA .sec-fukubukuro .txt::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  #OTOSHIDAMA .sec-fukubukuro .txt::before {
    margin-top: calc((1 - 1.45) * 0.5em);
  }
  #OTOSHIDAMA .sec-fukubukuro .txt::after {
    margin-bottom: calc((1 - 1.45) * 0.5em);
  }
}
#OTOSHIDAMA .sec-fukubukuro .img {
  width: 431px;
  margin: 50px auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .img {
    width: calc(40.6603773585 * var(--vw));
    margin: calc(4.7169811321 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .img {
    width: calc(61.0666666667 * var(--vw));
    margin: calc(6.1333333333 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .img img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-fukubukuro .img2 {
  width: 254px;
  margin: 50px auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .img2 {
    width: calc(23.9622641509 * var(--vw));
    margin: calc(4.7169811321 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .img2 {
    width: calc(54.1333333333 * var(--vw));
    margin: calc(11.4666666667 * var(--vw)) auto;
    margin-bottom: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .img2 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-fukubukuro .img3 {
  width: 892px;
  margin: 10px auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .img3 {
    width: calc(84.1509433962 * var(--vw));
    margin: calc(0.9433962264 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .img3 {
    width: calc(76 * var(--vw));
    margin: calc(4 * var(--vw)) auto;
    margin-bottom: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .img3 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-fukubukuro .img_obox_3 {
  width: 192px;
  margin: 56px auto 0;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .img_obox_3 {
    width: calc(18.1132075472 * var(--vw));
    margin: calc(5.2830188679 * var(--vw)) auto;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .img_obox_3 {
    width: calc(28.8 * var(--vw));
    margin: calc(4.5333333333 * var(--vw)) auto calc(5.3333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .img_obox_3 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-fukubukuro .orn-obj-01 {
  top: -60px;
  left: -190px;
  width: 273px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .orn-obj-01 {
    top: calc(-5.6603773585 * var(--vw));
    left: calc(-17.9245283019 * var(--vw));
    width: calc(25.7547169811 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .orn-obj-01 {
    left: unset;
    top: calc(-2.6666666667 * var(--vw));
    right: calc(2.6666666667 * var(--vw));
    z-index: 2;
    width: calc(17.6 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .orn-obj-01 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-fukubukuro .orn-obj-02 {
  bottom: 25px;
  right: -150px;
  width: 310px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .orn-obj-02 {
    bottom: calc(2.358490566 * var(--vw));
    right: calc(-14.1509433962 * var(--vw));
    width: calc(29.2452830189 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .orn-obj-02 {
    bottom: unset;
    right: unset;
    top: calc(47.4666666667 * var(--vw));
    left: calc(-3.4666666667 * var(--vw));
    z-index: 2;
    width: calc(17.3333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .orn-obj-02 img {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-fukubukuro .slide-box {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-fukubukuro .slide-box {
    margin-top: calc(2.358490566 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-fukubukuro .slide-box {
    margin-top: calc(5.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-fukubukuro .s-box {
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/img_fuku-slide_bg.svg) no-repeat center center;
  background-size: contain;
}
#OTOSHIDAMA .sec-topics {
  padding: 60px 0 100px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics {
    padding: calc(5.6603773585 * var(--vw)) 0 calc(9.4339622642 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics {
    padding: calc(5.3333333333 * var(--vw)) 0 calc(13.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .sec-ttl {
  width: 860px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .sec-ttl {
    width: calc(81.1320754717 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .sec-ttl {
    width: calc(62.1333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-outer {
  position: relative;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-outer {
    margin-top: calc(4.7169811321 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-outer {
    margin-top: calc(3.7333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-pagination {
  top: unset;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-pagination {
    bottom: calc(-6.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-pagination-bullet {
  background: #DADADA;
  opacity: 1;
  aspect-ratio: 1;
  width: 10px;
  height: auto;
  margin: 0 2.5px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-pagination-bullet {
    width: calc(0.9433962264 * var(--vw));
    margin: 0 calc(0.2358490566 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-pagination-bullet {
    width: calc(2.6666666667 * var(--vw));
    margin: 0 calc(0.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-pagination-bullet-active {
  background: #FF7BA0;
}
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-buttons {
  position: absolute;
  top: 180px;
  right: 0;
  left: 0;
  width: 1030px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-buttons {
    top: calc(16.9811320755 * var(--vw));
    width: calc(97.1698113208 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-buttons {
    width: calc(86.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-prev,
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-next {
  background: no-repeat center center/100% auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  aspect-ratio: 1;
  width: 84px;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-prev,
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-next {
    filter: drop-shadow(0 0 calc(0.9433962264 * var(--vw)) rgba(0, 0, 0, 0.3));
    width: calc(7.9245283019 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-prev,
  #OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-next {
    filter: drop-shadow(0 0 calc(0.8 * var(--vw)) rgba(0, 0, 0, 0.3));
    width: calc(6.9333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-prev::after,
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-next::after {
  display: none;
}
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-prev {
  left: 0;
  right: unset;
  background-image: url(../img/btn_gallery_01.svg);
}
#OTOSHIDAMA .sec-topics .swiper-outer .swiper-button-next {
  right: 0;
  left: unset;
  background-image: url(../img/btn_gallery_01_right.svg);
}
#OTOSHIDAMA .sec-topics .swiper-topics .swiper-slide {
  width: 830px;
  height: auto;
  padding: 0 32px 50px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .swiper-slide {
    width: calc(78.3018867925 * var(--vw));
    padding: 0 calc(3.0188679245 * var(--vw)) calc(4.7169811321 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .swiper-slide {
    width: calc(88.8 * var(--vw));
    padding: 0 calc(2.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .swiper-slide-container {
  background: #fff;
  border: 2px solid #1B5A6F;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  padding: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .swiper-slide-container {
    border-width: calc(0.1886792453 * var(--vw));
    border-radius: calc(1.8867924528 * var(--vw));
    padding: calc(4.5283018868 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .swiper-slide-container {
    display: flex;
    flex-direction: column;
    border-width: calc(0.5333333333 * var(--vw));
    border-radius: calc(1.3333333333 * var(--vw));
    padding: calc(5.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .slide-img {
  position: relative;
  padding-top: 310px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .slide-img {
    padding-top: calc(29.2452830189 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .slide-img {
    padding-top: calc(62.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 660px;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .slide-img img {
    width: calc(65.0666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .copyright {
  font-size: 12px;
  line-height: 1;
  margin: 10px 0 -22px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .copyright {
    font-size: calc(1.1320754717 * var(--vw));
    margin: calc(0.9433962264 * var(--vw)) 0 calc(-2.0754716981 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .copyright {
    font-size: calc(1.7333333333 * var(--vw));
    margin: calc(0.5333333333 * var(--vw)) 0 calc(-2.2666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 768px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns.type02 {
    justify-content: center;
    gap: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns.type02 {
    gap: calc(3.7735849057 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns.type02 .img {
    text-align: right;
    width: auto;
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns.type02 .txt-box {
  width: 290px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns.type02 .txt-box {
    width: calc(27.358490566 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns.type02 .txt-box {
    width: 100%;
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .img {
  position: relative;
  width: 385px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .img {
    width: calc(36.320754717 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .img {
    width: 100%;
    margin: calc(2.6666666667 * var(--vw)) auto 0;
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .img img {
  width: auto;
  height: auto;
}
@media only screen and (min-width: 768px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .img img {
    max-width: 385px;
    max-height: 278px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .img img {
    max-width: calc(36.320754717 * var(--vw));
    max-height: calc(26.2264150943 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .img img {
    aspect-ratio: 385/278;
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box {
  display: flex;
  flex-direction: column;
  width: 245px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box {
    width: calc(23.1132075472 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box {
    width: 100%;
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #6D5627;
  font-family: "FOT-筑紫A丸ゴシック Std", "Noto Sans JP", sans-serif;
  font-size: 35px;
  line-height: 1.11;
  font-weight: 600;
  text-align: center;
  border-top: 2px solid #1B5A6F;
  border-bottom: 2px solid #1B5A6F;
  letter-spacing: 0.05em;
  height: 116px;
  padding: 18px 0 20px;
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .ttl::before, #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .ttl::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .ttl::before {
  margin-top: calc((1 - 1.11) * 0.5em);
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .ttl::after {
  margin-bottom: calc((1 - 1.11) * 0.5em);
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .ttl {
    font-size: calc(3.3018867925 * var(--vw));
    border-top-width: calc(0.1886792453 * var(--vw));
    border-bottom-width: calc(0.1886792453 * var(--vw));
    height: calc(10.9433962264 * var(--vw));
    padding: calc(1.6981132075 * var(--vw)) 0 calc(1.8867924528 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .ttl {
    font-size: calc(5.6 * var(--vw));
    height: calc(11.2 * var(--vw));
    padding: 0;
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .ttl small {
  font-family: inherit;
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .img {
    margin-top: calc(4 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .txt {
  font-size: 18px;
  line-height: 1.61;
  margin-top: 25px;
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .txt::before, #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .txt::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .txt::before {
  margin-top: calc((1 - 1.61) * 0.5em);
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .txt::after {
  margin-bottom: calc((1 - 1.61) * 0.5em);
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .txt {
    font-size: calc(1.6981132075 * var(--vw));
    margin-top: calc(2.358490566 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .txt {
    font-size: calc(2.9333333333 * var(--vw));
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .copyright {
  font-size: 8px;
  line-height: 1.375;
  margin-top: auto;
  margin-bottom: unset;
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .copyright::before, #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .copyright::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .copyright::before {
  margin-top: calc((1 - 1.375) * 0.5em);
}
#OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .copyright::after {
  margin-bottom: calc((1 - 1.375) * 0.5em);
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .copyright {
    font-size: calc(0.7547169811 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .columns .txt-box .copyright {
    font-size: calc(2.1333333333 * var(--vw));
    margin-top: calc(1.3333333333 * var(--vw));
  }
}
#OTOSHIDAMA .sec-topics .swiper-topics .btn-box {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1060px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .btn-box {
    margin-top: calc(2.8301886792 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #OTOSHIDAMA .sec-topics .swiper-topics .btn-box {
    margin-top: auto;
  }
}
#OTOSHIDAMA .sec-topics .orn-obj-01 {
  top: calc(17.0666666667 * var(--vw));
  right: calc(-4.8 * var(--vw));
  width: calc(27.2 * var(--vw));
}
#OTOSHIDAMA .sec-topics .orn-obj-02 {
  top: calc(-73.3333333333 * var(--vw));
  left: calc(-16 * var(--vw));
  width: calc(38.4 * var(--vw));
}

.gallery_01 {
  position: relative;
  margin: 50px 0 0 !important;
  padding: 0 !important;
}
@media only screen and (max-width: 767px) {
  .gallery_01 {
    margin: 40px 0 0 !important;
  }
}
.gallery_01::before {
  display: none !important;
}

@media only screen and (min-width: 768px) and (max-width: 1060px) {
  .gallery2-list {
    z-index: 1;
    /* width: 28% */
    width: 380px;
    overflow: hidden;
    margin: 0 auto;
  }
  .slick-dots {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .gallery2-list__item {
    position: relative;
    margin: 0 11px;
  }
  .plan-free__ttl-seijin {
    font-size: 1.6rem !important;
    padding: 0 30px !important;
  }
  .txt-left {
    text-align: left !important;
    font-size: 1.4rem !important;
  }
  .txt12sp {
    font-size: 1.2rem !important;
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */