@charset "UTF-8";
/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
html {
  -webkit-text-size-adjust: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  text-size-adjust: 100%;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled="true"],
[aria-disabled="true"] {
  pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: #000;
  line-height: 0;
  page-break-after: always;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

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

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

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

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

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

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
}

/**
 * Show the overflow in IE and Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

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

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

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

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

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

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

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

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

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

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

/* Misc
   ========================================================================== */
template {
  display: none;
}

/* ----------------------------------------
このCSSは、FLOCSSに従ってCSS設計を行っています。
| FLOCSSについて | https://github.com/hiloki/flocss
---------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  /* 2 */
}

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

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

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

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

/**
 * 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;
}

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /* 1 */
  margin: 0;
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

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

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

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 1 */
  color: inherit;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

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

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

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

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

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

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/* ----------------------------------------
Foundation - base -
プロジェクトにおける基本的なスタイルを定義します。
ページの下地としての全体の背景や、基本的なタイポグラフィなどが該当します。
---------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
}

body {
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt" 1;
  color: #000;
  font-family: futura-pt, zen-old-mincho, sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 2.2;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    font-size: 3.25vw;
  }
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
}

iframe {
  vertical-align: bottom;
}

svg {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

a {
  color: #000;
  text-decoration: none;
  transition: .3s;
}

/* ----------------------------------------
form style
---------------------------------------- */
input,
button,
select,
textarea {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 1.5rem;
  font-weight: normal;
}

textarea {
  width: 100%;
  resize: vertical;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

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

input[type="text"],
input[type="passwprd"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="number"],
textarea {
  width: 100%;
  padding: 5px;
  border: solid 1px #D3CDBD;
  background-color: #fff;
}

select {
  width: 100%;
  padding: 5px;
  border: solid 1px #D3CDBD;
}

/* ----------------------------------------
Component
再利用できるパターンとして、小さな単位のモジュールを定義します。
grid/button/form/media...
---------------------------------------- */
.c-head1 {
  margin-bottom: 1.75em;
  padding-bottom: 1.25em;
  background: url(../images/common/head1.svg) no-repeat center bottom;
  font-family: zen-old-mincho, sans-serif;
  font-size: 5.7rem;
  font-weight: 600;
  text-align: center;
}

.c-head2 {
  margin-bottom: 1.5em;
  padding-bottom: 1.25em;
  background: url(../images/common/head2.svg) no-repeat left bottom;
  font-family: zen-old-mincho, sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
}

.c-head2.center {
  margin-bottom: 2em;
  padding-bottom: .75em;
  background-position: bottom center;
  text-align: center;
}

.c-head3 {
  position: relative;
  margin-bottom: 2em;
  padding-left: 1em;
  font-weight: 600;
}

.c-head3:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: .5em;
  height: 1.8em;
  background: url(../images/common/head3.svg) no-repeat center;
  background-size: contain;
  content: "";
}

.c-head3.center {
  margin-bottom: 1.25em;
  padding-bottom: 1em;
  padding-left: 0;
  text-align: center;
}

.c-head3.center:before {
  -webkit-transform: rotate(-90deg) translateX(-50%);
  top: auto;
  bottom: -.5em;
  left: 50%;
  transform: rotate(-90deg) translateX(-50%);
}

@media only screen and (max-width: 768px) {
  .c-head1 {
    padding-bottom: 1.5em;
    background-size: 5em auto;
    font-size: 6vw;
  }
  .c-head2 {
    padding-bottom: 1.25em;
    background-size: 2.5em;
    font-size: 4.5vw;
  }
  .c-head3 {
    font-size: 4vw;
  }
}

.c-section {
  margin-top: 10em;
}

.c-inner {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1110px) {
  .c-inner {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.c-list-ol-circle {
  list-style-type: none;
  counter-reset: item;
}

.c-list-ol-circle > li {
  position: relative;
  counter-increment: item;
}

.c-list-ol-circle > li:before {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: #FF7093;
  color: #fff;
  font-family: zen-old-mincho, sans-serif;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  content: counter(item);
}

.c-list-ol-circle > li:after {
  display: block;
  position: absolute;
  top: 4px;
  left: -2px;
  width: calc(1.5em + 4px);
  height: calc(1.5em + 4px);
  border: 1px solid #FF7093;
  border-radius: 50%;
  content: "";
}

.c-list-ol-circle > li > ol {
  margin-left: 1.5em;
}

.c-list-ol-square {
  list-style-type: none;
  counter-reset: item;
}

.c-list-ol-square > li {
  position: relative;
  counter-increment: item;
}

.c-list-ol-square > li:before {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 2px;
  background: #F9C5D2;
  color: #000;
  font-family: zen-old-mincho, sans-serif;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  content: counter(item);
}

.c-list-ol-square > li:after {
  display: block;
  position: absolute;
  top: 5px;
  left: -2px;
  width: calc(1.5em + 4px);
  height: calc(1.5em + 4px);
  border: 1px solid #F9C5D2;
  border-radius: 3px;
  content: "";
}

.c-list-ol-square > li > ol {
  margin-left: 1.5em;
}

.c-dl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: zen-old-mincho, sans-serif;
  table-layout: fixed;
}

.c-dl tr {
  border-bottom: 1px solid #000;
}

.c-dl tr:last-child {
  border-bottom: none;
}

.c-dl th {
  width: 6em;
  padding: 1em 0em 1em 2em;
  color: #FF7093;
  font-weight: 600;
}

.c-dl td {
  width: calc(100% - 6em);
  padding: 1em 1.5em 1em .5em;
}

.c-contact {
  position: relative;
  max-width: 530px;
  margin-top: 4.4em;
  margin-right: auto;
  margin-left: auto;
  padding: 3em;
  border-radius: 2.2em;
  background: #FFFEE9;
  font-family: zen-old-mincho, sans-serif;
}

@media screen and (max-width: 530px) {
  .c-contact {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.c-contact:before, .c-contact:after {
  position: absolute;
  content: "";
}

.c-contact:before {
  top: -1em;
  left: calc(-64px / 1.5);
  width: 64px;
  height: 115px;
  background: url(../images/common/deco_momo.svg) no-repeat;
  background-size: contain;
}

.c-contact:after {
  right: calc(-52px / 5);
  bottom: -1em;
  width: 52px;
  height: 79px;
  background: url(../images/common/deco_leaf2.svg) no-repeat;
  background-size: contain;
}

.c-contact .contect-tel {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.c-contact .contect-tel .head {
  margin-right: 0.5em;
  color: #FF7093;
}

.c-contact .contect-tel .body {
  font-size: 3rem;
}

@media only screen and (max-width: 768px) {
  .c-contact {
    padding: 3em 0;
    border-radius: 2.2em;
  }
  .c-contact:before {
    left: calc(-4em / 1.5);
    width: 4em;
  }
  .c-contact:after {
    right: calc(-3em / 5);
    width: 3em;
    background-position: right bottom;
  }
  .c-contact .contect-tel .head {
    margin-right: 0.5em;
    color: #FF7093;
  }
  .c-contact .contect-tel .body {
    font-size: 6.8vw;
  }
}

.c-btn {
  margin-right: 0.5em;
}

.c-btn a {
  display: inline-block;
  min-width: 290px;
  padding: 1em 3em 1em 1em;
  border: 3px #FF7093 double;
  background: #FDF1F3;
  color: #FF7093;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 900;
  line-height: 1.6;
  transition: .3s;
}

.c-btn a:hover {
  opacity: .6;
}

.c-btn.pdf a {
  background-image: url(../images/common/icon_pdf.svg);
  background-position: right 1em center;
  background-repeat: no-repeat;
  background-size: 1em;
}

.c-btn.link a {
  background-image: url(../images/common/icon_link.svg);
  background-position: right 1em center;
  background-repeat: no-repeat;
  background-size: 1em;
}

.c-btn-list {
  display: flex;
}

.c-btn-list.center {
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .c-btn a {
    min-width: auto;
  }
  .c-btn-list {
    display: flex;
  }
  .c-btn-list.center {
    justify-content: center;
  }
}

/* ----------------------------------------
Layout
ページを構成するヘッダーやメインのコンテンツエリア、
サイドバーやフッターといったプロジェクト共通のコンテナーブロックのスタイルを定義します。
header/main/sidebar/footer...
---------------------------------------- */
/* ----------------------------------------
Project
プロジェクト固有のパターンであり、いくつかのComponentと、
それに該当しない要素によって構成されるものを定義します。
例えば、記事一覧や、ユーザープロフィール、画像ギャラリーなどコンテンツを構成する要素などが該当します。
articles/ranking/promo...
---------------------------------------- */
.p-gnav {
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  flex-flow: column;
  justify-content: center;
  width: 14.58333%;
  height: 100%;
  padding: 79px 0 50px;
  border-left: 1px solid #000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  transition: right 600ms 0s ease;
}

@media screen and (max-width: 1524px) {
  .p-gnav {
    width: 25vw;
  }
}

.p-gnav.is-enable {
  right: -100%;
}

.p-gnavInner {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  width: 100%;
  height: 100%;
  margin: 0;
  padding-left: 0;
  overflow-y: auto;
  border-top: 1px solid #000;
  list-style: none;
}

.p-gnavItem {
  display: block;
  position: relative;
  width: 100%;
}

.p-gnavItem.is-current a {
  color: #FF7093;
}

.p-gnavLink {
  display: flex;
  position: relative;
  flex-flow: column;
  padding: 1.75em 1em 1.75em 2em;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}

.p-gnavLink:before {
  position: absolute;
  top: 50%;
  left: 0em;
  width: 1em;
  border-top: 1px solid #000;
  content: "";
}

.p-gnavLink:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FF7093;
}

@media only screen and (max-width: 768px) {
  .p-gnav {
    z-index: 999;
    width: 45vw;
  }
}

.p-hamburger {
  display: flex;
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  flex-flow: column;
  justify-content: space-between;
  width: 80px;
  height: 80px;
  padding: 15px;
  background-color: #000;
  cursor: pointer;
}

.p-hamburger_cont::before, .p-hamburger_cont::after {
  -webkit-transform-origin: 0 0;
  -webkit-transform: translateX(-50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  transform: translateX(-50%);
  transform-origin: 0 0;
  border-radius: 3px;
  background: #fff;
  content: "";
  transition: all 200ms 0s ease;
}

.p-hamburger_cont:before {
  top: 28px;
}

.p-hamburger.is-close .p-hamburger_cont::before, .p-hamburger.is-close .p-hamburger_cont::after {
  -webkit-transform: rotate(0deg);
  -webkit-transform: translateX(-50%);
  display: block;
  left: 50%;
  width: 20px;
  height: 1px;
  transform: rotate(0deg);
  transform: translateX(-50%);
  border-radius: 3px;
  background: #fff;
  content: "";
}

.p-hamburger.is-close .p-hamburger_cont::before {
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  top: 50%;
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
}

.p-hamburger.is-close .p-hamburger_cont::after {
  -webkit-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
}

.p-hamburger span {
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

.p-head-logo {
  display: flex;
  z-index: 999;
  position: absolute;
  align-items: center;
  width: 100%;
  height: 80px;
  margin: 0;
  padding-left: 0.75em;
  border-bottom: 1px solid #000;
}

.p-firstView {
  position: relative;
}

.p-firstView img {
  -o-object-fit: cover;
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.p-firstView_read {
  -webkit-transform: translateX(-50%) translateY(-50%);
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

.p-firstView_title {
  padding: 0em .25em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 2.2;
}

.p-firstView_anniversary {
  padding-top: 2.5em;
  background: url(../images/top/main_momo.svg) no-repeat top 1em center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.4;
}

.p-firstView .scroll {
  position: relative;
  margin-top: 1em;
  padding-top: 3.5em;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.p-firstView .scroll::before {
  -webkit-transform: translateX(-50%);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 3em;
  transform: translateX(-50%);
  border-left: 1px solid #000;
  content: "";
}

@media only screen and (max-width: 768px) {
  .p-firstView_read {
    width: 80%;
  }
  .p-firstView_title {
    font-size: 7vw;
  }
  .p-firstView_anniversary {
    font-size: 3.5vw;
  }
  .p-firstView .scroll {
    font-size: 2.5vw;
  }
}

.p-footer {
  margin-top: 13.7em;
  border-radius: 5.5em 5.5em 0 0;
  background: #F9C5D2;
  font-family: zen-old-mincho, sans-serif;
}

.p-footer_inner {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 5em;
  padding-bottom: 3.4em;
}

@media screen and (max-width: 1110px) {
  .p-footer_inner {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.p-footer .logo {
  display: flex;
  align-items: center;
  margin-bottom: .5em;
  font-size: 2.3rem;
}

.p-footer .logomark {
  display: flex;
  align-items: center;
  margin-right: 0.25em;
  mix-blend-mode: screen;
}

.p-footer .copy {
  margin-top: 1.7em;
  padding-top: 3em;
  border-top: 1px solid #000;
  font-family: futura-pt, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .p-footer {
    border-radius: 3.5em 3.5em 0 0;
  }
  .p-footer_inner {
    padding-top: 3.5em;
    padding-bottom: 1.4em;
  }
  .p-footer .logo {
    font-size: 5vw;
  }
  .p-footer .logomark {
    width: 6vw;
  }
  .p-footer .copy {
    font-size: 3vw;
  }
}

.p-pagetop {
  z-index: 9998;
  position: fixed;
  right: 10px;
  bottom: 10px;
}

.p-pagetop:hover {
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .p-pagetop {
    width: 15vw;
  }
}

/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  z-index: 1;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  z-index: 10;
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 27px 44px;
  cursor: pointer;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 10;
  position: absolute;
  transform: translate3d(0, 0, 0);
  text-align: center;
  transition: .3s opacity;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  position: relative;
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #007aff;
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  -webkit-transform: translate3d(0, -50%, 0);
  top: 50%;
  right: 10px;
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  -webkit-transform: translateY(-50%);
  top: 50%;
  width: 8px;
  transform: translateY(-50%);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s top,.2s -webkit-transform;
  transition: .2s transform,.2s top;
  transition: .2s transform,.2s top,.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  -webkit-transform: translateX(-50%);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s left,.2s -webkit-transform;
  transition: .2s transform,.2s left;
  transition: .2s transform,.2s left,.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s right,.2s -webkit-transform;
  transition: .2s transform,.2s right;
  transition: .2s transform,.2s right,.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform: scale(0);
  -webkit-transform-origin: left top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
  background: #007aff;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  -ms-touch-action: none;
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  z-index: 50;
  position: absolute;
  bottom: 3px;
  left: 1%;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  z-index: 50;
  position: absolute;
  top: 1%;
  right: 3px;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  -o-object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  -webkit-transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  z-index: -1000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
  visibility: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  -webkit-backface-visibility: hidden;
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  -webkit-filter: blur(50px);
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  filter: blur(50px);
  opacity: .6;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  -webkit-backface-visibility: hidden;
  z-index: 1;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  -webkit-backface-visibility: hidden;
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.home .p-firstView img {
  height: 100vh;
}

.home .p-firstView_read {
  -webkit-transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.home .p-firstView_title {
  padding: 0em .25em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 3.2rem;
  font-weight: 300;
}

.home .p-firstView_anniversary {
  padding-top: 2.5em;
  background: url(../images/top/main_momo.svg) no-repeat top 1em center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.4;
}

.home .p-firstView .scroll {
  position: relative;
  margin-top: 1em;
  padding-top: 3.5em;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.home .p-firstView .scroll::before {
  -webkit-transform: translateX(-50%);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 3em;
  transform: translateX(-50%);
  border-left: 1px solid #000;
  content: "";
}

@media only screen and (max-width: 768px) {
  .home .p-firstView_read {
    width: 80%;
  }
  .home .p-firstView_title {
    font-size: 7vw;
  }
  .home .p-firstView_anniversary {
    font-size: 3.5vw;
  }
  .home .p-firstView .scroll {
    font-size: 2.5vw;
  }
}

.home .anniversary {
  padding-bottom: 25em;
  background: url(../images/top/bg_momo.png) no-repeat bottom 2em center/contain;
  font-family: zen-old-mincho, sans-serif;
}

.home .anniversary_icon {
  z-index: 998;
  position: relative;
  margin-top: calc(-119px / 2);
}

.home .anniversary-title {
  margin: .5em auto 1em;
  padding: 1em 0 .75em 0;
  background: url(../images/top/anniversary_en.svg) no-repeat top center/161px auto, url(../images/top/anniversary_ribbon.svg) no-repeat bottom center/139px auto;
  font-size: 4rem;
}

.home .anniversary-text {
  margin-bottom: 3.3em;
  font-weight: 600;
}

.home .anniversary-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1174px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1204px) {
  .home .anniversary-list {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.home .anniversary-list li {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 31.94208%;
  min-height: 175px;
  margin-right: 1.95911%;
  margin-bottom: 1.5em;
  padding: 2em 0em;
  border: 10px solid #E0E2CF;
  border-radius: 1em;
  background: #FFFEF5;
  font-size: 2.2rem;
  line-height: 1.6;
}

@media only screen and (min-width: 769px) {
  .home .anniversary-list li:nth-child(3) {
    margin-right: 0;
  }
  .home .anniversary-list li:nth-child(5) {
    margin-right: 0;
  }
}

.home .anniversary-list li:after {
  display: block;
  position: absolute;
  right: -13px;
  bottom: -13px;
  width: 77px;
  height: 77px;
  background: url(../images/top/anniversary_deco_ribbon.svg) no-repeat center/77px;
  content: "";
}

.home .anniversary-list li small {
  font-size: 70%;
}

.home .anniversary-list li .number {
  display: flex;
  position: absolute;
  top: -16px;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 65px;
  background: url(../images/top/anniversary_tag.svg) no-repeat;
  color: #fff;
  font-size: 4.1rem;
}

.home .anniversary-list li .number span {
  display: block;
  margin-top: -0.35em;
}

.home .anniversary-notes {
  max-width: 980px;
  margin-top: 3.3em;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1010px) {
  .home .anniversary-notes {
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media screen and (max-width: 1280px) {
  .home .anniversary {
    padding-bottom: 18em;
  }
}

@media screen and (max-width: 980px) {
  .home .anniversary-list {
    max-width: 1174px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 980px) and (max-width: 1204px) {
  .home .anniversary-list {
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media screen and (max-width: 980px) {
  .home .anniversary-list li {
    width: 47%;
    margin-right: 0;
    margin-left: 6%;
    padding: 2em 0em;
    font-size: 2.2rem;
  }
  .home .anniversary-list li:nth-child(odd) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .home .anniversary {
    padding-bottom: 9em;
    background-image: url(../images/top/bg_momo_sp.png);
  }
  .home .anniversary-title {
    padding: 1em 0 .5em 0;
    background-size: 3.5em auto;
    font-size: 8vw;
  }
  .home .anniversary-text {
    margin-right: 10px;
    margin-left: 10px;
    text-align: left;
  }
  .home .anniversary-list {
    max-width: 1174px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 768px) and (max-width: 1204px) {
  .home .anniversary-list {
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .home .anniversary-list li {
    width: 90%;
    min-height: 150px;
    margin-right: 0;
    margin-left: 0%;
    font-size: 4.5vw;
  }
  .home .anniversary-list li:nth-child(odd) {
    margin-left: 0;
  }
  .home .anniversary-list li:first-child, .home .anniversary-list li:last-child {
    padding-top: 3em;
  }
  .home .anniversary-list li .number {
    top: -.45em;
    left: 0;
    width: 2.5em;
    height: 2.5em;
    background-size: contain;
    font-size: 8vw;
  }
  .home .anniversary-list li .number span {
    margin-top: -1em;
  }
  .home .anniversary-notes {
    margin-top: 0em;
  }
}

.home .welcome {
  margin-top: calc(-25em / 2);
  margin-right: 2.5vw;
  margin-left: 2.5vw;
  padding: 6.2em 0px 14em 0px;
  border-radius: 4.4em 4.4em 0 0;
  background: #FEF0F3;
}

.home .welcome_inner {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 870px) {
  .home .welcome_inner {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.home .welcome .c-head1 {
  font-size: 4.2rem;
}

@media only screen and (max-width: 768px) {
  .home .welcome .c-head1 {
    font-size: 6vw;
  }
}

.home .welcome_cont {
  position: relative;
  margin-bottom: 4.3em;
  padding: 3em 2em;
  border-radius: 2.2em;
  background: #fff;
}

.home .welcome_cont:last-child {
  margin-bottom: 0;
}

.home .welcome_cont:last-child:before {
  display: block;
  position: absolute;
  bottom: 1em;
  left: calc(-43px / 1.5);
  width: 43px;
  height: 128px;
  background: url(../images/top/deco_leaf2.svg) no-repeat left top/43px auto;
  content: "";
}

.home .welcome_cont:first-child:before {
  display: block;
  position: absolute;
  right: calc(-66px / 1.5);
  bottom: 1em;
  width: 66px;
  height: 196px;
  background: url(../images/top/deco_leaf4.svg) no-repeat left top/66px auto;
  content: "";
}

.home .welcome_cont .number {
  font-size: 3rem;
}

.home .welcome_cont .number small {
  font-size: 1.5rem;
}

@media screen and (max-width: 1280px) {
  .home .welcome {
    margin-top: calc(-18em / 2);
  }
}

@media only screen and (max-width: 768px) {
  .home .welcome {
    margin-top: calc(-9em / 2);
    padding: 3.2em 0px 7em 0px;
    border-radius: 2.5em 2.5em 0 0;
    background: #FEF0F3;
  }
  .home .welcome_cont {
    margin-bottom: 4.3em;
    padding: 3em 1.5em;
  }
  .home .welcome_cont:last-child:before {
    left: calc(-3em / 1.5);
    width: 3em;
    background-size: contain;
  }
  .home .welcome_cont:first-child:before {
    right: calc(-3.5em / 1.5);
    width: 3.5em;
    background-position: bottom center;
    background-size: contain;
  }
  .home .welcome_cont .number {
    font-size: 6vw;
    line-height: 1.6;
  }
  .home .welcome_cont .number small {
    display: block;
    font-size: 60%;
  }
}

.home .top-cont {
  max-width: 1080px;
  margin-top: -7em;
  margin-right: auto;
  margin-left: auto;
  padding-top: 5.5em;
  border-radius: 5.5em 5.5em 0 0;
  background: #fff;
}

@media screen and (max-width: 1080px) {
  .home .top-cont {
    margin-right: 0;
    margin-left: 0;
  }
}

.home .top-cont .top_inner {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 810px) {
  .home .top-cont .top_inner {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.home .top-cont .news {
  margin-bottom: 9em;
}

.home .top-cont .news-list {
  display: flex;
  flex-wrap: wrap;
}

.home .top-cont .news-list_item {
  width: 50%;
  margin-bottom: 2em;
}

.home .top-cont .recruit-detail {
  margin-top: 6em;
}

@media only screen and (max-width: 768px) {
  .home .top-cont {
    margin-top: calc(-7em / 2);
    margin-right: 5vw;
    margin-left: 5vw;
    padding-top: 3.2em;
    border-radius: 2.5em 2.5em 0 0;
  }
  .home .top-cont .news {
    margin-bottom: calc(9em / 2);
  }
  .home .top-cont .news-list_item {
    width: 100%;
    margin-bottom: 3em;
  }
  .home .top-cont .recruit-detail {
    margin-top: calc(6em / 2);
  }
}

/* ----------------------------------------
Utility
ComponentとProjectレイヤーのObjectのモディファイアで
解決することが難しい・適切では無い、わずかなスタイルの調整のための便利クラスなどを定義します。
clearfix/display/margin...
---------------------------------------- */
@media only screen and (min-width: 769px) {
  .u-display-mobile {
    display: none;
  }
}

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

.u-link-disabled {
  text-decoration: none;
  pointer-events: none;
}

.u-images-liquid {
  max-width: 100%;
  height: auto;
}

.u-align-center {
  text-align: center;
}

.u-align-left {
  text-align: left;
}

.u-align-right {
  text-align: right;
}
