@charset "UTF-8";
/*=========================
sanitize
=========================*/
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 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: 1em; /* 2 */
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * 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: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/*foundation/global内の_index.scss*/
/*=========================
variables
=========================*/
/** メディアクエリ **/
/*foundation/global内の_index.scss*/
/*=========================
mixin
=========================*/
/** メディアクエリ **/
/** グラデーション **/
/* ---------------------------------------
	Wordpress 上書き用CSS
-----------------------------------------*/
.wp-block-image img {
  height: 100%;
}

#photo .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100% !important;
}
@media (min-width: 48em) {
  #photo .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) / 2) !important;
  }
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination li {
  list-style: none;
}
.pagination li .active {
  color: #0a0a0a;
  text-decoration: underline;
}
.pagination a, .pagination span {
  color: #707070;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4rem;
  height: 4rem;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  font-weight: bold;
}
.pagination span.current {
  color: #0a0a0a;
}
.pagination a:hover {
  color: #0a0a0a;
  text-decoration: underline;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 60rem;
  margin: 7rem auto 0 auto;
}
@media (min-width: 48em) {
  .wp-pagenavi {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 10.6rem auto 0 auto;
  }
}
.wp-pagenavi a {
  color: #0a0a0a;
  text-decoration: none;
  margin: 0 1rem;
}
.wp-pagenavi .pages {
  font-weight: 600;
}
.wp-pagenavi .page, .wp-pagenavi .current {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #0a0a0a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-pagenavi .page:hover {
  background: #0a0a0a;
  color: #fff;
}
.wp-pagenavi .current {
  background: #0a0a0a;
  color: #fff;
  margin: 0 1rem;
}
.wp-pagenavi .pages, .wp-pagenavi .prev, .wp-pagenavi .previouspostslink, .wp-pagenavi .page, .wp-pagenavi .current, .wp-pagenavi .nextpostslink {
  display: none;
}
@media (min-width: 48em) {
  .wp-pagenavi .pages, .wp-pagenavi .prev, .wp-pagenavi .previouspostslink, .wp-pagenavi .page, .wp-pagenavi .current, .wp-pagenavi .nextpostslink {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover {
  color: #8f1a1a;
}
@media (min-width: 48em) {
  .wp-pagenavi .previouspostslink::after, .wp-pagenavi .previouspostslink::before, .wp-pagenavi .nextpostslink::after, .wp-pagenavi .nextpostslink::before {
    display: none;
  }
}
.wp-pagenavi .previouspostslink::after {
  margin-left: 1rem;
  content: "前へ";
}
.wp-pagenavi .nextpostslink::before {
  margin-right: 1rem;
  content: "次へ";
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border: none;
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none;
}

/*===========================
animation ハンバーガーメニュー
============================*/
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(1rem) rotate(20deg);
            transform: translateY(1rem) rotate(20deg);
  }
  50% {
    -webkit-transform: translateY(1rem) rotate(0);
            transform: translateY(1rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(1rem) rotate(20deg);
            transform: translateY(1rem) rotate(20deg);
  }
  50% {
    -webkit-transform: translateY(1rem) rotate(0);
            transform: translateY(1rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
/*=========================
base
=========================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main {
  min-height: 100vh;
}

/* =======================================
　フォント
======================================= */
/*------- 共通フォント -------*/
html {
  color: #0a0a0a;
  font-size: 62.5%;
  /*主要ブラウザのデフォルトサイズ16pxに対する62.5% => 10px;*/
  text-align: justify;
}

body,
p,
table,
td,
th,
input,
textarea,
dt,
dd,
ul,
em,
span,
div {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
  color: #0a0a0a;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-size: 1.5rem;
}

b,
strong,
.bold {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop,
.selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

body {
  background: #f0f0f0;
}

section {
  margin: 6rem auto 8rem auto;
}
@media (min-width: 48em) {
  section {
    margin: 8rem auto 12rem auto;
  }
}

/*---------文字--------*/
p {
  line-height: 1.8;
  margin-bottom: 1em;
}

/*-------見出し--------*/
h1 span, h2 span {
  display: block;
}

h1 {
  margin-top: 6rem;
  margin-bottom: 4rem;
  font-size: 2.8rem;
  text-align: center;
}
@media (min-width: 48em) {
  h1 {
    font-size: 3.7rem;
  }
}
h1 span {
  font-size: 1.4rem;
}

h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media (min-width: 48em) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  color: #0a0a0a;
  font-weight: 400;
  margin-bottom: 0.5em;
  font-size: 1.5rem;
}
@media (min-width: 48em) {
  h3 {
    font-size: 1.8rem;
  }
}

/*object/component内の_index.scss*/
/* ---------------------------------------
	layout
-----------------------------------------*/
@media (min-width: 48em) {
  #mp-warpper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.mp-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 0;
  padding-top: 12rem;
}
@media (min-width: 48em) {
  .mp-column {
    padding-top: 0;
  }
}

.w-content {
  width: 100%;
}
@media (min-width: 48em) {
  .w-content {
    width: calc(100% - 23rem);
    padding: 0;
  }
}
@media (min-width: 77.5em) {
  .w-content {
    width: calc(100% - 33rem);
  }
}

.w-content-inr {
  max-width: 100rem;
  margin: 0 auto;
  width: 93%;
}
@media (min-width: 48em) {
  .w-content-inr {
    width: 91%;
  }
}
@media (min-width: 77.5em) {
  .w-content-inr {
    padding: 0;
  }
}
.w-content-inr--flex-basis {
  -webkit-flex-basis: calc(100% - 22.9rem);
      -ms-flex-preferred-size: calc(100% - 22.9rem);
          flex-basis: calc(100% - 22.9rem);
}

.narrow {
  max-width: 78rem;
}

article {
  margin: 8rem auto 12rem auto;
}

/* ---------------------------------------
	header
-----------------------------------------*/
.c-header {
  width: 100%;
  height: 100vh;
  min-height: 76rem;
  mix-blend-mode: multiply;
  z-index: 996;
  background: #fff;
  width: 23rem;
  position: absolute;
  right: -200rem;
  position: fixed;
}
.c-header.active {
  right: 0;
}
.c-header:has(.nav.active) {
  mix-blend-mode: normal;
}
@media (min-width: 48em) {
  .c-header {
    mix-blend-mode: normal;
    right: 0;
  }
}
@media (min-width: 77.5em) {
  .c-header {
    width: 33rem;
  }
}
.c-header__ttl {
  position: fixed;
  z-index: 800;
  top: 1rem;
  left: 2rem;
  margin: 0;
}
@media (min-width: 48em) {
  .c-header__ttl {
    top: initial;
    bottom: 3rem;
    position: absolute;
    left: 3rem;
  }
}
.c-header__ttl a {
  display: block;
  width: 7rem;
}
@media (min-width: 48em) {
  .c-header__ttl a {
    width: 12rem;
  }
}
.c-header__ttl a:hover {
  opacity: 0.7;
}
.c-header__ttl a img {
  width: 100%;
}
.c-header__btn {
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 999;
}
@media (min-width: 48em) {
  .c-header__btn {
    display: none;
  }
}

/* ---------------------------------------
	footer
-----------------------------------------*/
@media (min-width: 48em) {
  .c-footer .bg-gizagiza {
    padding: 10rem 0 6rem 0;
  }
}
.c-footer__sns-wrap {
  max-width: 36.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 2rem;
}
@media (min-width: 48em) {
  .c-footer__sns-wrap {
    padding: 0;
  }
}
.c-footer__sns-wrap li {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  list-style: none;
  margin-bottom: 1em;
}
.c-footer__sns-wrap li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #0a0a0a;
}
.c-footer__sns-wrap li a::before {
  display: block;
  content: "";
  background: url(../images/common/i-insta.svg) no-repeat;
  height: 2rem;
  width: 2rem;
  background-size: contain;
  margin-right: 0.5em;
}
.c-footer__sns-wrap li a:hover {
  color: #8f1a1a;
}
.c-footer__sns-wrap li a:hover::before {
  background: url(../images/common/i-insta-hover.svg) no-repeat;
  background-size: contain;
}
.c-footer__sns-wrap li.facebook a::before {
  background: url(../images/common/i-facebook.svg) no-repeat;
  background-size: contain;
}
.c-footer__sns-wrap li.facebook a:hover::before {
  background: url(../images/common/i-facebook-hover.svg) no-repeat;
  background-size: contain;
}
.c-footer__copyright {
  background: #707070;
}
@media (min-width: 48em) {
  .c-footer__copyright {
    width: calc(100% + 23rem);
  }
}
@media (min-width: 77.5em) {
  .c-footer__copyright {
    width: calc(100% + 33rem);
  }
}
.c-footer__copyright p {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: 0.5em 0;
  margin-bottom: 0 !important;
}

/* ---------------------------------------
	bg
-----------------------------------------*/
.bg-gizagiza {
  background: #e6e5e3;
  background-image: url(../images/common/bg-gizagiza.svg);
  background-repeat: repeat-y;
  background-size: auto;
  padding: 6rem 0 8rem 0;
}
@media (min-width: 48em) {
  .bg-gizagiza {
    width: calc(100% + 23rem);
    padding: 8rem 0 12rem 0;
    background-size: contain;
  }
}
@media (min-width: 77.5em) {
  .bg-gizagiza {
    width: calc(100% + 33rem);
  }
}

/* ---------------------------------------
	Global Navigation
-----------------------------------------*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 2rem;
  top: 2.5rem;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 5rem;
  height: 2px;
  left: 6px;
  background: #707070;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 1rem;
}
.hamburger span:nth-child(2) {
  top: 2.5rem;
}
.hamburger span:nth-child(3) {
  top: 4rem;
}
.hamburger.active span {
  /* ナビ開いてる時のボタン */
}
.hamburger.active span:nth-child(1) {
  top: 2.5rem;
  left: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 2.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav {
  position: fixed;
  width: 100%;
  max-width: 23rem;
  right: -23rem;
  padding-top: 6rem;
  padding-left: 3rem;
  height: 100vh;
  z-index: 110;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.nav.active {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-transform: translateX(-23rem);
          transform: translateX(-23rem);
}
@media (min-width: 48em) {
  .nav {
    right: initial;
    padding-left: 3rem;
    background: transparent;
  }
}
@media (min-width: 77.5em) {
  .nav {
    width: 100%;
    max-width: 30rem;
  }
}

#gloval-menu {
  font-size: 1.8rem;
}
#gloval-menu li {
  margin-bottom: 2em;
}
#gloval-menu li.i-window::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../images/common/i-window.svg) no-repeat center;
  background-size: contain;
  vertical-align: sub;
}
#gloval-menu li a {
  text-decoration: none;
  color: #0a0a0a;
}

/* =======================================
　hover-animation
======================================= */
.underline a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.underline a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #707070;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.underline a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*ホバーすると線の色が伸びるアニメーション*/
.line-wrap {
  position: relative;
}
.line-wrap .line1 {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 95%;
  border-bottom: solid 2px #0a0a0a;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.line-wrap .line2 {
  left: 5%;
  right: 0;
  border-bottom: solid 2px #ccc;
}

a:hover .line1,
.column:hover .line1 {
  right: 0;
}

/* ---------------------------------------
	post投稿表示用のクラス
-----------------------------------------*/
.categorys ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 48em;
  margin: 0 auto;
}
@media (min-width: 48em) {
  .categorys ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.categorys ul li {
  list-style: none;
  margin: 0 0.2em;
}
.categorys ul li a {
  text-decoration: none;
  background: #e7dabc;
  padding: 0.5em 1em;
  color: #0a0a0a;
  border-radius: 5px;
  display: block;
  margin-bottom: 1em;
}
.categorys ul li a:hover {
  background: #707070;
  color: #fff;
}

.tags {
  margin-top: 1rem;
}
.tags a {
  display: inline-block;
  font-size: 1.2rem;
  border-radius: 7px;
  color: #0a0a0a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-right: 1em;
  letter-spacing: 0.1em;
}
.tags a::before {
  content: "#";
}
.tags a:hover {
  color: #8f1a1a;
}

/* ---------------------------------------
	gallery-item
-----------------------------------------*/
.gallery-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.gallery-item {
  width: 50%;
  padding: 0 1vw;
  margin-bottom: 3rem;
}
@media (min-width: 77.5em) {
  .gallery-item {
    width: 33.3333333333%;
    padding: 0 1vw;
  }
}
.gallery-item__link {
  text-decoration: none;
}
.gallery-item__link:hover .gallery-item__img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.gallery-item__img-wrap {
  overflow: hidden;
  margin-bottom: 1rem;
}
.gallery-item__img {
  padding-top: 66%;
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.gallery-round .gallery-item__link .gallery-item__img {
  padding-top: 100%;
  border-radius: 100%;
}
.gallery-round .gallery-item__link:hover .gallery-item__img {
  border-radius: 0;
  -webkit-transform: initial;
          transform: initial;
}

.mp-photo .gallery-item__link .gallery-item__img, .gallery-photo .gallery-item__link .gallery-item__img {
  padding-top: 80%;
}

/* ---------------------------------------
	slider
-----------------------------------------*/
.slider__outer {
  position: relative;
  margin: 0 auto;
  max-width: 100rem;
  /*prev矢印設定*/
}
.slider__outer .common-slider {
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 48em) {
  .slider__outer .common-slider {
    margin-bottom: 3rem;
  }
}
.slider__outer .common-slider .slick-slide a {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.slider__outer .common-slider .slick-slide a .image {
  overflow: hidden;
  margin-bottom: 1rem;
}
.slider__outer .common-slider .slick-slide a .image .img {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  background-size: cover;
  background-position: center;
  padding-top: 66%;
}
.slider__outer .common-slider .slick-slide a:hover .img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.slider__outer a {
  text-decoration: none;
}
.slider__outer p {
  overflow-wrap: break-word;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.slider__outer h3 {
  margin-bottom: 3rem;
}
.slider__outer button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slider__outer .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  width: 3rem;
  height: 3rem;
  content: "";
  display: block;
  cursor: pointer;
}
@media (min-width: 48em) {
  .slider__outer .slide-arrow {
    width: 4rem;
    height: 4rem;
  }
}
.slider__outer .slide-arrow:hover {
  opacity: 0.8;
}
.slider__outer .prev-arrow {
  bottom: -5rem;
  left: 0rem;
  top: initial;
  background: url(../images/common/arrowR.svg) no-repeat;
  background-size: contain;
  z-index: 100;
}
@media (min-width: 48em) {
  .slider__outer .prev-arrow {
    left: -3rem;
    top: 50%;
  }
}
.slider__outer .next-arrow {
  bottom: -5rem;
  left: 4rem;
  top: initial;
  background: url(../images/common/arrowL.svg) no-repeat;
  background-size: contain;
  z-index: 100;
}
@media (min-width: 48em) {
  .slider__outer .next-arrow {
    right: -3rem;
    left: initial;
    top: 50%;
  }
}
.slider__outer .slick-dots {
  bottom: -4.5rem;
  right: 4rem;
  z-index: 99;
}
@media (min-width: 48em) {
  .slider__outer .slick-dots {
    bottom: -1rem;
    right: initial;
  }
}

/* ---------------------------------------
	button_form
-----------------------------------------*/
.btn-more-wrap {
  z-index: 100;
  position: absolute;
  right: 5%;
}
@media (min-width: 48em) {
  .btn-more-wrap {
    position: initial;
  }
}

.btn-more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-decoration: none;
  color: #0a0a0a;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
@media (min-width: 48em) {
  .btn-more {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.btn-more::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/common/btn-more.svg) no-repeat center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  margin-left: 1rem;
}
.btn-more:hover {
  color: #8f1a1a;
}
.btn-more:hover::after {
  background: url(../images/common/btn-more-hover.svg) no-repeat center;
}

.btn_shikaku_wrap {
  padding: 0 2.92826vw;
}
.btn_shikaku_wrap a.btn_shikaku {
  display: block;
  border: 1px solid #0a0a0a;
  text-align: center;
  text-decoration: none;
  color: #0a0a0a;
  padding: 3rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn_shikaku_wrap a.btn_shikaku:hover {
  background: #0a0a0a;
  color: #fff;
}

.round-button {
  border: 1px solid #0a0a0a;
  background: rgba(255, 255, 255, 0.836);
  color: #0a0a0a;
  border-radius: 100px;
  border-radius: 10rem;
  display: inline-block;
  margin: auto;
  padding: 1.5rem 3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0.3em;
}
@media (min-width: 48em) {
  .round-button {
    font-size: inherit;
    padding: 1.5rem 4rem;
  }
}
.round-button:hover {
  letter-spacing: 0.2em;
  background: #0a0a0a;
  color: #fff;
}

/* ---------------------------------------
	Table
-----------------------------------------*/
/* ---------------------------------------
	breadcrumbs
-----------------------------------------*/
.mp-pankuzu {
  margin-top: 2rem;
}
@media (min-width: 48em) {
  .mp-pankuzu {
    margin-left: 1rem;
  }
}
.mp-pankuzu a,
.mp-pankuzu span {
  text-decoration: none;
  color: #707070;
  font-size: 1.2rem;
}
@media (min-width: 48em) {
  .mp-pankuzu a,
  .mp-pankuzu span {
    font-size: 1.4rem;
  }
}
.mp-pankuzu a:hover,
.mp-pankuzu span:hover {
  color: #0a0a0a;
}
.mp-pankuzu span {
  color: #0a0a0a;
}

/* ---------------------------------------
	contact
-----------------------------------------*/
.form-flex {
  margin-bottom: 1.5em;
}
@media (min-width: 77.5em) {
  .form-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.form-flex label {
  margin-bottom: 0.3em;
}
@media (min-width: 77.5em) {
  .form-flex label {
    -webkit-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
            flex-basis: 30%;
  }
}
.form-flex input, .form-flex textarea {
  width: 100%;
  padding: 0.3em 0.5em;
  border-radius: 0.3em;
  border: none;
  margin-top: 0.3em;
}
@media (min-width: 77.5em) {
  .form-flex input, .form-flex textarea {
    -webkit-flex-basis: 70%;
        -ms-flex-preferred-size: 70%;
            flex-basis: 70%;
  }
}

.confirmation-wrap {
  margin-top: 3em;
  text-align: right;
}

.confirmation {
  width: 100%;
  padding: 3rem;
  border: 1px solid #0a0a0a;
  border-radius: 0.3em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.confirmation:hover {
  background: #0a0a0a;
  color: #fff;
}
@media (min-width: 77.5em) {
  .confirmation {
    width: 70%;
  }
}
.confirmation.back {
  margin-top: 1em;
}

/* =======================================
 search
======================================= */
.p-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 54.6rem;
  padding-right: 2rem;
}
.p-search__box {
  width: 100%;
  display: inline-block;
  position: relative;
}
@media (min-width: 77.5em) {
  .p-search__box {
    width: 40rem;
  }
}
.p-search__input {
  display: block;
  padding: 0.8rem;
  font-size: 1.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-search__input--search {
  border-radius: 1rem 0 0 1rem;
  padding-left: 0.5rem;
  outline: 0; /*クリック時の青い枠線消す*/
  width: 100%;
  border: 1px solid #707070;
  border-right: 0;
}
.p-search__input--submit {
  border-radius: 0 1rem 1rem 0;
  color: #707070;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #707070;
  border-left: 0;
}
.p-search__input--submit:hover {
  color: #fff;
  background: rgba(157, 134, 112, 0.6901960784);
}

.search-no-results .gallery-items {
  display: block;
}

.splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  color: #fff;
  /*Loading画像中央配置*/
  /*fadeUp　をするアイコンの動き*/
}
.splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*Loading　アイコンの大きさ設定*/
}
.splash__logo img {
  width: 20rem;
}
.splash__fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* =======================================
class.scssここから
======================================= */
.m0-auto {
  margin: 0 auto;
}

.displayB {
  display: block;
}

.displayF {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.textalignC {
  text-align: center;
}

/*幅関係*/
.maxW80 {
  max-width: 80rem;
  margin: 0 auto;
}

.maxW60 {
  max-width: 60rem;
  margin: 0 auto;
}

.width90 {
  width: 90%;
}

p.date {
  font-size: 1.2rem;
  color: #707070;
}

/*テキスト関係*/
.txt-r {
  color: #df4444;
}

.txt-b {
  color: #0a0a0a;
}

.txt-g {
  color: #707070;
}

.read {
  margin-bottom: 3rem;
}
@media (min-width: 48em) {
  .read {
    text-align: center;
  }
}
.read .br {
  display: none;
}
@media (min-width: 48em) {
  .read .br {
    display: block;
  }
}

.lh-2 {
  line-height: 2;
}

.textalignC {
  text-align: center;
}

.textalignL {
  text-align: left;
}

.textalignR {
  text-align: right;
}

.f-bold {
  font-weight: bold;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.mb4 {
  margin-bottom: 4rem;
}

.mb5 {
  margin-bottom: 5rem;
}

.mb6 {
  margin-bottom: 6rem;
}

.mb7 {
  margin-bottom: 7rem;
}

.mb8 {
  margin-bottom: 8rem;
}

.mb9 {
  margin-bottom: 9rem;
}

.mb10 {
  margin-bottom: 10rem;
}

.mb11 {
  margin-bottom: 11rem;
}

.mb12 {
  margin-bottom: 12rem;
}

.mb13 {
  margin-bottom: 13rem;
}

.mb14 {
  margin-bottom: 14rem;
}

.mb15 {
  margin-bottom: 15rem;
}

.mb16 {
  margin-bottom: 16rem;
}

.mb17 {
  margin-bottom: 17rem;
}

.mb18 {
  margin-bottom: 18rem;
}

.mb19 {
  margin-bottom: 19rem;
}

.mb20 {
  margin-bottom: 20rem;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.mt3 {
  margin-top: 3rem;
}

.mt4 {
  margin-top: 4rem;
}

.mt5 {
  margin-top: 5rem;
}

.mt6 {
  margin-top: 6rem;
}

.mt7 {
  margin-top: 7rem;
}

.mt8 {
  margin-top: 8rem;
}

.mt9 {
  margin-top: 9rem;
}

.mt10 {
  margin-top: 10rem;
}

.mt11 {
  margin-top: 11rem;
}

.mt12 {
  margin-top: 12rem;
}

.mt13 {
  margin-top: 13rem;
}

.mt14 {
  margin-top: 14rem;
}

.mt15 {
  margin-top: 15rem;
}

.mt16 {
  margin-top: 16rem;
}

.mt17 {
  margin-top: 17rem;
}

.mt18 {
  margin-top: 18rem;
}

.mt19 {
  margin-top: 19rem;
}

.mt20 {
  margin-top: 20rem;
}

.pt1 {
  padding-top: 1rem;
}

.pt2 {
  padding-top: 2rem;
}

.pt3 {
  padding-top: 3rem;
}

.pt4 {
  padding-top: 4rem;
}

.pt5 {
  padding-top: 5rem;
}

.pt6 {
  padding-top: 6rem;
}

.pt7 {
  padding-top: 7rem;
}

.pt8 {
  padding-top: 8rem;
}

.pt9 {
  padding-top: 9rem;
}

.pt10 {
  padding-top: 10rem;
}

.pt11 {
  padding-top: 11rem;
}

.pt12 {
  padding-top: 12rem;
}

.pt13 {
  padding-top: 13rem;
}

.pt14 {
  padding-top: 14rem;
}

.pt15 {
  padding-top: 15rem;
}

.pt16 {
  padding-top: 16rem;
}

.pt17 {
  padding-top: 17rem;
}

.pt18 {
  padding-top: 18rem;
}

.pt19 {
  padding-top: 19rem;
}

.pt20 {
  padding-top: 20rem;
}/*# sourceMappingURL=common.css.map */