@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;
}

:root {
  --color-accent: #40DC4F;
  --color-bg: #F0FAE6;
  --btn: linear-gradient(90deg, #EFF3C3 0% , #D8F3C3 25%, #D8F3C3 50%, #EFF3C3);
  --color-gray:#DEDEDE;
}

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: #414141;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 2.2;
  text-align: justify;
  text-justify: inter-ideograph;
}

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

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: #86B5D9;
  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-inner {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

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

.c-section {
  margin: 6.6em auto;
}

.c-section:last-child {
  margin-bottom: 0;
}

.c-head1 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.3em;
  margin-left: .5em;
  padding: .25em .5em .25em 0;
  border-bottom: 3px solid #414141;
  font-size: 4.6rem;
}

.c-head1:before, .c-head1:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  border-radius: 50%;
  background: var(--color-accent);
  content: "";
}

.c-head1::before {
  left: -.5em;
  width: 8px;
  height: 8px;
}

.c-head1::after {
  left: -.25em;
  width: 6px;
  height: 6px;
}

.c-head3 {
  display: inline-block;
  margin-bottom: 1.5em;
  padding: .75em;
  background: url(../images/common/brackets-left.svg) no-repeat left center, url(../images/common/brackets-right.svg) no-repeat right center;
  font-size: 2.2rem;
}

@media only screen and (max-width: 768px) {
  .c-head1 {
    margin-left: 1em;
    font-size: 6vw;
  }
  .c-head1::before {
    left: -1em;
    width: 8px;
    height: 8px;
  }
  .c-head1::after {
    left: -.5em;
    width: 6px;
    height: 6px;
  }
  .c-head3 {
    font-size: 4.5vw;
  }
}

.c-table {
  width: 100%;
  border: 1px solid #707070;
}

.c-table tr:first-child th {
  text-align: center;
}

.c-table th, .c-table td {
  padding: .75em;
  border: 1px solid #707070;
  vertical-align: middle;
}

.c-table th {
  background: #DBF3C3;
  font-weight: 600;
}

.c-table th span {
  display: block;
  font-size: 80%;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.c-table td {
  background: #FDFFF2;
}

.c-dl {
  width: 100%;
  max-width: 814px;
  margin-bottom: 1.5em;
}

.c-dl th {
  width: 35%;
  padding: 1em 2em;
  border-bottom: 1px solid var(--color-accent);
}

.c-dl td {
  padding: 1em 2em;
  border-bottom: 1px solid var(--color-gray);
}

@media only screen and (max-width: 768px) {
  .c-dl tr {
    display: flex;
    flex-direction: column;
  }
  .c-dl th {
    width: auto;
  }
  .c-dl td {
    margin-bottom: .5em;
  }
}

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

.c-btn-list .c-btn {
  margin-right: 1em;
  margin-bottom: 1.25em;
}

.c-btn a {
  display: inline-block;
  position: relative;
  min-width: 230px;
  padding: 1.1em calc(1.5em + 1.5em + 1.5em) 1.1em 1.5em;
  border-radius: 5em;
  background: var(--btn);
  background-position: 0% 50%;
  background-size: 200% auto;
  color: #414141;
  font-weight: 600;
  transition: .3s;
}

.c-btn a::after {
  -webkit-transform: translateY(-50%);
  display: flex;
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 1.4em;
  height: 1.4em;
  transform: translateY(-50%);
  border-radius: 1em;
  background: url(../images/common/arrow.svg) no-repeat center, #fff;
  background-size: 10px;
  content: "";
}

.c-btn a:hover {
  background-position: 100% 50%;
}

@media only screen and (max-width: 768px) {
  .c-btn a {
    min-width: 10em;
  }
}

.c-list-dot li {
  margin-left: 1em;
}

.c-list-dot li:before {
  margin-right: 0.25em;
  margin-left: -.75em;
  content: "・";
}

.c-list-kome li {
  margin-left: 1em;
}

.c-list-kome li:before {
  margin-right: 0.25em;
  margin-left: -.75em;
  content: "※";
}

.c-box-border {
  max-width: 730px;
  margin-top: 2.5em;
  margin-right: auto;
  margin-left: auto;
  padding: 1.5em 2.5em;
  border: 1px solid var(--color-accent);
  border-radius: 1em;
}

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

@media only screen and (max-width: 768px) {
  .c-box-border {
    padding: .5em 1.5em;
  }
}

@media only screen and (max-width: 768px) {
  .c-scroll {
    margin-bottom: 1.33333vw;
    overflow: auto;
    white-space: nowrap;
  }
  .c-scroll:before {
    display: block;
    margin: 0px 0 5px;
    font-size: 4vw;
    content: "※横にスクロールします。";
  }
}

/* ----------------------------------------
Layout
ページを構成するヘッダーやメインのコンテンツエリア、
サイドバーやフッターといったプロジェクト共通のコンテナーブロックのスタイルを定義します。
header/main/sidebar/footer...
---------------------------------------- */
@media only screen and (min-width: 769px) {
  #l-header {
    height: 233px;
  }
}

#l-main {
  padding-bottom: 21.7em;
  background: url(../images/common/bg_bottom.jpg) no-repeat bottom right/100% auto;
}

@media only screen and (max-width: 768px) {
  #l-main {
    padding-bottom: 10em;
  }
}

#l-footer {
  -o-border-image: linear-gradient(90deg, #D8F3C3, #EFF3C3) 1;
  margin: 0 3vw;
  padding: 3em 0 1em;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #D8F3C3, #EFF3C3) 1;
}

.l-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 2.2em;
}

.l-header-title {
  margin: 0;
  font-size: 3vw;
}

.l-header-title a {
  color: #414141;
}

@media screen and (max-width: 1300px) {
  .l-header-title {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 768px) {
  .l-header_inner {
    padding: 1em;
  }
  .l-header-title {
    font-size: 8vw;
  }
}

.l-pageHead {
  display: flex;
  align-items: stretch;
}

.l-pageHead_title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15vw;
  font-size: 6.5rem;
  text-orientation: upright;
  writing-mode: vertical-rl;
}

.l-pageHead_visual {
  position: relative;
  width: calc(100% - 15vw);
  height: calc(80vh - 233px);
  min-height: 634px;
  overflow: hidden;
}

.l-pageHead_visual img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-pageHead_visual::before {
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(218, 245, 200, 0.23);
  mix-blend-mode: screen;
  content: "";
}

@media only screen and (max-width: 768px) {
  .l-pageHead_title {
    width: 25vw;
    font-size: 10vw;
  }
  .l-pageHead_visual {
    width: calc(100% - 25vw);
    height: calc(80vh - 130px);
    min-height: 450px;
  }
}

/* ----------------------------------------
Project
プロジェクト固有のパターンであり、いくつかのComponentと、
それに該当しない要素によって構成されるものを定義します。
例えば、記事一覧や、ユーザープロフィール、画像ギャラリーなどコンテンツを構成する要素などが該当します。
articles/ranking/promo...
---------------------------------------- */
.p-gnavBtn {
  display: inline-block;
  position: relative;
  padding: 1.2em 1.4em 1.2em 3.2em;
  border-radius: 3em;
  background: #2B4125;
  color: #fff;
}

.p-gnavBtn:before {
  -webkit-transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 1.5em;
  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  background: url(../images/common/icon_mail.svg) no-repeat center;
  background-size: contain;
  content: "";
}

.p-gnavBtn:hover {
  opacity: .8;
}

.p-gnavInner {
  font-size: 1vw;
}

@media screen and (max-width: 1300px) {
  .p-gnavInner {
    font-size: 1.25vw;
  }
}

@media only screen and (min-width: 769px) {
  .p-gnavInner {
    display: flex;
    align-items: center;
  }
  .p-gnavItem {
    margin-right: 3.5em;
  }
  .p-gnavItem.is-current .p-gnavLink {
    color: #64C16D;
  }
  .p-gnavItem.is-current .p-gnavLink:before {
    background-color: #64C16D;
  }
  .p-gnavLink {
    position: relative;
    color: #414141;
    transition: .3s;
  }
  .p-gnavLink:before {
    -webkit-transform: translateY(-50%);
    display: block;
    position: absolute;
    top: 50%;
    left: -1.5em;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    border-radius: 5em;
    background: #414141;
    content: "";
    transition: .3s;
  }
  .p-gnavLink:hover {
    color: #64C16D;
  }
  .p-gnavLink:hover:before {
    background-color: #64C16D;
  }
}

@media only screen and (max-width: 768px) {
  .p-gnav {
    display: flex;
    z-index: 9999;
    position: fixed;
    top: 0;
    right: -100%;
    flex-flow: column;
    justify-content: center;
    width: 70%;
    height: 100%;
    padding: 50px 0;
    background-color: rgba(255, 255, 255, 0.9);
    transition: right 600ms 0s ease;
  }
  .p-gnavContact {
    margin: 1.5em auto;
    text-align: center;
  }
  .p-gnav.is-enable {
    right: 0;
  }
  .p-gnavInner {
    width: 100%;
    height: 100%;
    margin: 0;
    padding-left: 0;
    overflow-y: auto;
    border-top: solid 1px #fff;
    font-size: 3.5vw;
    list-style: none;
  }
  .p-gnavItem {
    display: block;
    position: relative;
    width: 100%;
    border-bottom: solid 1px #414141;
  }
  .p-gnavItem::after {
    -webkit-transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 15px;
    width: 4px;
    height: 4px;
    transform: rotate(45deg) translateY(-50%);
    border-top: 2px solid #414141;
    border-right: 2px solid #414141;
    content: "";
  }
  .p-gnavLink {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 20px;
    color: #414141;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
  }
}

.p-hamburger {
  display: flex;
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  flex-flow: column;
  justify-content: space-between;
  width: 50px;
  height: 50px;
  padding: 17px 15px;
  background: var(--btn);
  cursor: pointer;
}

.p-hamburger::before, .p-hamburger::after {
  -webkit-transform-origin: 0 0;
  display: block;
  width: 20px;
  height: 3px;
  transform-origin: 0 0;
  border-radius: 3px;
  background: #2B4125;
  content: "";
  transition: all 200ms 0s ease;
}

.p-hamburger.is-close::before, .p-hamburger.is-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
}

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

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

@media only screen and (min-width: 769px) {
  .p-hamburger {
    display: none;
  }
}

.p-footer{
  display: flex;
}

.p-footer__inner__details{
  width: 50%;
}
.p-footer__inner__banner{
  text-align: right;
  width: 50%;
}

.p-footer__inner__banner .banner_area{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.p-footer__inner__banner .banner_area p{
  margin-left: 10px;
}

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

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

@media only screen and (max-width: 768px) {
  .p-footer{
    display: block;
  }
  .p-footer__inner__details{
    width: 100%;
  }
  .p-footer__inner__banner{
    width: 100%;
    margin-bottom: 10px;
  }
  .p-pagetop {
    width: 95px;
  }
}


.p-footLogo {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  line-height: 1.4;
}

.p-footLogo .corp {
  font-size: 2.2rem;
}

.p-footLogo .corp span {
  display: block;
  font-size: 2.6rem;
}

.p-footAbout a {
  color: #414141;
}

@media only screen and (max-width: 768px) {
  .p-footLogo .logo {
    width: 4em;
  }
  .p-footLogo .corp {
    font-size: 4vw;
  }
  .p-footLogo .corp span {
    font-size: 5vw;
  }
}

.p-copy {
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .p-copy {
    font-size: 2.25vw;
  }
}

/**
 * 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 .swiper-container {
  height: calc(100vh - 233px);
}

.home .swiper-container::before {
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(218, 245, 200, 0.23);
  mix-blend-mode: screen;
  content: "";
}

.home .swiper-container img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .swiper-container .swiper-pagination {
  text-align: right;
}

.home .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 2.25em;
  height: 6px;
  border-radius: 3px;
  background: #8AA18B;
  opacity: 1;
}

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

.home .bg_bottom {
  background: url(../images/common/bg_bottom.jpg) no-repeat right bottom 650px/100% auto;
}

@media only screen and (max-width: 768px) {
  .home .bg_bottom {
    background-position: right bottom 260px;
  }
}

.home .news {
  padding-bottom: 11em;
  background: url(../images/common/bg_top.jpg) no-repeat left top/100% auto;
}

.home .news-head {
  display: flex;
  justify-content: space-between;
  padding: 8.5em .5em 3.4em .5em;
}

.home .news-title {
  font-size: 4.6rem;
}

.home .news-list {
  border-top: 1px solid var(--color-gray);
}

.home .news-list_item {
  border-bottom: 1px solid var(--color-gray);
}

.home .news-list_item a {
  display: flex;
  position: relative;
  padding: 2.25em calc(1.5em + 2.5em + 1em) 2.25em 1.35em;
  color: #414141;
}

.home .news-list_item a:before, .home .news-list_item a:after {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 2.5em;
  height: 2.5em;
  transform: translateY(-50%);
  content: "";
  transition: .3s;
}

.home .news-list_item a:before {
  border-radius: 100%;
  background: #EFF3C3;
}

.home .news-list_item a:after {
  background: url(../images/common/arrow.svg) no-repeat center;
}

.home .news-list_item a time {
  margin-right: 1em;
}

.home .news-list_item a:hover {
  color: var(--color-accent);
}

.home .news-list_item a:hover:before, .home .news-list_item a:hover:after {
  right: 1em;
}

.home .news-list_none {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2.25em;
  border-bottom: 1px solid var(--color-gray);
}

.home .news-list_none small {
  margin-right: 1em;
  color: var(--color-accent);
}

@media only screen and (max-width: 768px) {
  .home .news-list_none {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  .home .news-head {
    padding: 8.5em .5em 2.4em .5em;
  }
  .home .news-title {
    font-size: 8vw;
  }
  .home .news-list_item a {
    padding: 2.25em calc(1.5em + 2em + 1em) 2.25em 1.35em;
  }
  .home .news-list_item a:before, .home .news-list_item a:after {
    width: 2em;
    height: 2em;
  }
  .home .news-list_item a:after {
    background-size: 50%;
  }
}

.home-title {
  margin-bottom: 2em;
  font-size: 4.6rem;
}

.home-title span {
  color: var(--color-accent);
}

@media only screen and (max-width: 768px) {
  .home-title {
    margin-bottom: 1em;
    font-size: 8vw;
  }
}

.home-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-flex .flex_item.img {
  width: 47%;
  overflow: hidden;
  border-radius: 3.5em 0 0 3.5em;
}

.home-flex:nth-child(2n) .flex_item {
  order: 2;
}

.home-flex:nth-child(2n) .flex_item.img {
  order: 1;
  overflow: hidden;
  border-radius: 0 3.5em 3.5em 0;
}

@media only screen and (max-width: 768px) {
  .home-flex {
    flex-direction: column;
  }
  .home-flex .flex_item {
    order: 2;
    margin-right: 5vw;
  }
  .home-flex .flex_item.img {
    order: 1;
    width: 100%;
    margin-right: 0;
    margin-bottom: 3em;
  }
  .home-flex:nth-child(2n) {
    margin-top: 3em;
  }
  .home-flex:nth-child(2n) .flex_item {
    margin-right: 0;
    margin-left: 5vw;
  }
  .home-flex:nth-child(2n) .flex_item.img {
    margin-left: 0;
  }
}

.home .about {
  margin-left: 5vw;
}

.home .about .sub-title {
  margin-bottom: 2em;
  font-size: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .home .about .sub-title {
    margin-bottom: 1em;
    font-size: 5.5vw;
  }
}

.home .greeting {
  margin-right: 5vw;
  margin-bottom: 11em;
}

.home .greeting .signature {
  margin-top: 2em;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .home .greeting .signature {
    font-size: 3.8vw;
  }
}

.home .access_inner {
  display: flex;
  flex-direction: column;
  margin: 0 3vw;
}

.home .access-text {
  display: flex;
  margin-bottom: 3.3em;
}

.home .access_cont {
  width: calc(100% - 22.7em + 3vw);
  margin-left: auto;
}

.home .access-list {
  margin-top: 1.5em;
}

.home .access-list_item {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5em;
}

.home .access-list .head {
  display: flex;
  justify-content: center;
  width: 12em;
  margin-right: 1em;
  border-radius: .5em;
  background: #68A26E;
  color: #fff;
}

.home .access-list .head + p {
  width: calc(100% - 12em);
}

.home .access .map {
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #F8FFD3);
}

.home .access .map_inner {
  max-width: 1920px;
  margin-right: auto;
  margin-right: 3vw !important;
  margin-left: auto;
  margin-left: 3vw !important;
}

@media screen and (max-width: 1920px) {
  .home .access .map_inner {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.home .access iframe {
  height: 650px;
  border-radius: 1em;
}

@media only screen and (max-width: 768px) {
  .home .access-text {
    flex-direction: column;
  }
  .home .access_cont {
    width: 100%;
    margin-left: 0;
  }
  .home .access-list_item {
    flex-direction: column;
  }
  .home .access-list .head + p {
    width: 100%;
    margin-bottom: 1em;
  }
  .home .access iframe {
    height: 260px;
  }
}

.about #event {
  margin-top: 14em;
}

.about .event-list_item .img-list {
  display: flex;
  justify-content: space-between;
  margin: 2.2em auto;
}

.about .event-list_item .img-list_item {
  width: 48%;
}

.about .event-list_item .img-list_item img {
  overflow: hidden;
  border-radius: 1em;
}

.about .event-month {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
}

.about .event-month_item {
  width: 31%;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .about .event-month_item {
    width: 100%;
    margin-bottom: 1em;
  }
}

.about .event-month_item .month {
  display: inline-block;
  min-width: 100px;
  padding: .4em .75em;
  border-radius: .5em .5em 0 0;
  background: linear-gradient(0deg, #D8F3C3, #EFF3C3);
  color: #3E9C47;
}

.about .event-month_item .month span {
  font-size: 3rem;
}

.about .event-month_item .event-cont {
  padding: 1em;
  border: 1px solid #40DC4F;
  border-radius: 0 1em 1em 1em;
  background: #fff;
}

.about .event-month_item .event-cont_item .event-title {
  display: inline-block;
  margin-bottom: 0.75em;
  padding: 0.25em .5em;
  border-radius: .5em;
  background: #DBF3C3;
  font-weight: 600;
  line-height: 1.6;
}

.about .event-month_item .event-cont_item ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
  margin-left: 1em;
}

.about .event-month_item .event-cont_item ul > li {
  position: relative;
  margin-right: 1em;
  margin-bottom: 1em;
  padding-left: .75em;
  line-height: 1.6;
}

.about .event-month_item .event-cont_item ul > li:before {
  display: block;
  position: absolute;
  top: .65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, #D8F3C3, #EFF3C3);
  content: "";
}

.about .event-month.everyday {
  flex-direction: column;
  margin-top: 2.2em;
}

.contact .mail {
  display: block;
  width: 100%;
  height: 1em;
  margin-top: 0.35em;
  background: url(../images/contact/mail.svg) no-repeat left bottom;
  background-size: contain;
}

.service .time-line, .service_short .time-line {
  width: 80%;
}

.service .time-line_box, .service_short .time-line_box {
  position: relative;
}

.service .time-line_box .photo-list_item, .service_short .time-line_box .photo-list_item {
  position: absolute;
  right: 0;
  width: 25%;
  border: 11px solid #fff;
  box-shadow: 0px 3px 6px 0px rgba(128, 128, 128, 0.29);
}

.service .time-line_box .photo-list_item:nth-child(1), .service_short .time-line_box .photo-list_item:nth-child(1) {
  -webkit-transform: rotate(-3deg);
  top: 18%;
  transform: rotate(-3deg);
}

.service .time-line_box .photo-list_item:nth-child(2), .service_short .time-line_box .photo-list_item:nth-child(2) {
  -webkit-transform: rotate(6deg);
  top: 40%;
  transform: rotate(6deg);
}

.service .time-line_box .photo-list_item:nth-child(3), .service_short .time-line_box .photo-list_item:nth-child(3) {
  -webkit-transform: rotate(-3deg);
  bottom: 10%;
  transform: rotate(-3deg);
}

.service .time-line_box .photo-list_item:nth-child(4), .service_short .time-line_box .photo-list_item:nth-child(4) {
  -webkit-transform: rotate(6deg);
  z-index: 1;
  bottom: 0;
  transform: rotate(6deg);
}

.service .time-line_cont, .service_short .time-line_cont {
  display: flex;
  margin-bottom: 0.75em;
}

.service .time-line_cont:last-child, .service_short .time-line_cont:last-child {
  margin-bottom: 0;
}

.service .time-line-label, .service_short .time-line-label {
  min-width: 7em;
}

.service .time-line-label span, .service_short .time-line-label span {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 5em;
  background: #fff;
  line-height: 1;
  text-align: center;
}

.service .time-line_item, .service_short .time-line_item {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding: 2em;
  background: #F0FAE6;
}

.service .time-line_item.align-top, .service_short .time-line_item.align-top {
  align-items: baseline;
}

.service .time-line_item:nth-child(2n), .service_short .time-line_item:nth-child(2n) {
  background: #fff;
}

.service .time-line_item:nth-child(2n) .time-line-label span, .service_short .time-line_item:nth-child(2n) .time-line-label span {
  background: #DBF3C3;
}

.service .time-line_item:not(:first-child):after, .service_short .time-line_item:not(:first-child):after {
  z-index: 0;
  position: absolute;
  top: -5em;
  left: calc(4em + .5em + 2em + 9px);
  width: 0;
  height: 100%;
  border-left: 3px solid var(--color-accent);
  content: '';
}

.service .time-line_head, .service_short .time-line_head {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 1em;
}

.service .time-line_head .time, .service_short .time-line_head .time {
  -webkit-transform: translateY(-0.05em);
  min-width: 4em;
  padding-right: .5em;
  transform: translateY(-0.05em);
  text-align: right;
}

.service .time-line_head .clock, .service_short .time-line_head .clock {
  position: relative;
  width: 38px;
  height: 38px;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  background-color: #fff;
}

.service .time-line_head .clock::before, .service .time-line_head .clock::after, .service_short .time-line_head .clock::before, .service_short .time-line_head .clock::after {
  -webkit-transform: translate(-50%, -100%);
  -webkit-transform-origin: 50% calc(100% - 1.5px);
  display: block;
  position: absolute;
  top: calc(50% + 1.5px);
  left: 50%;
  width: 3px;
  transform: translate(-50%, -100%);
  transform-origin: 50% calc(100% - 1.5px);
  border-radius: 1.5px;
  background-color: var(--color-accent);
  content: '';
}

.service .time-line_head .clock::after, .service_short .time-line_head .clock::after {
  height: .7em;
}

.service .time-line_head .clock::before, .service_short .time-line_head .clock::before {
  height: .5em;
}

.service .time-line_head .clock[date-hour="6"]:before, .service_short .time-line_head .clock[date-hour="6"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(-180deg);
  transform: translate(-50%, -100%) rotate(-180deg);
}

.service .time-line_head .clock[date-hour="7"]:before, .service_short .time-line_head .clock[date-hour="7"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(-150deg);
  transform: translate(-50%, -100%) rotate(-150deg);
}

.service .time-line_head .clock[date-hour="8"]:before, .service_short .time-line_head .clock[date-hour="8"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(-120deg);
  transform: translate(-50%, -100%) rotate(-120deg);
}

.service .time-line_head .clock[date-hour="9"]:before, .service_short .time-line_head .clock[date-hour="9"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(-90deg);
  transform: translate(-50%, -100%) rotate(-90deg);
}

.service .time-line_head .clock[date-hour="10"]:before, .service_short .time-line_head .clock[date-hour="10"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(-60deg);
  transform: translate(-50%, -100%) rotate(-60deg);
}

.service .time-line_head .clock[date-hour="11"]:before, .service_short .time-line_head .clock[date-hour="11"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(-30deg);
  transform: translate(-50%, -100%) rotate(-30deg);
}

.service .time-line_head .clock[date-hour="12"]:before, .service_short .time-line_head .clock[date-hour="12"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(0deg);
  transform: translate(-50%, -100%) rotate(0deg);
}

.service .time-line_head .clock[date-hour="13"]:before, .service_short .time-line_head .clock[date-hour="13"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(30deg);
  transform: translate(-50%, -100%) rotate(30deg);
}

.service .time-line_head .clock[date-hour="14"]:before, .service_short .time-line_head .clock[date-hour="14"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(60deg);
  transform: translate(-50%, -100%) rotate(60deg);
}

.service .time-line_head .clock[date-hour="15"]:before, .service_short .time-line_head .clock[date-hour="15"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(90deg);
  transform: translate(-50%, -100%) rotate(90deg);
}

.service .time-line_head .clock[date-hour="16"]:before, .service_short .time-line_head .clock[date-hour="16"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(120deg);
  transform: translate(-50%, -100%) rotate(120deg);
}

.service .time-line_head .clock[date-hour="17"]:before, .service_short .time-line_head .clock[date-hour="17"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(150deg);
  transform: translate(-50%, -100%) rotate(150deg);
}

.service .time-line_head .clock[date-hour="18"]:before, .service_short .time-line_head .clock[date-hour="18"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(180deg);
  transform: translate(-50%, -100%) rotate(180deg);
}

.service .time-line_head .clock[date-hour="19"]:before, .service_short .time-line_head .clock[date-hour="19"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(210deg);
  transform: translate(-50%, -100%) rotate(210deg);
}

.service .time-line_head .clock[date-hour="20"]:before, .service_short .time-line_head .clock[date-hour="20"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(240deg);
  transform: translate(-50%, -100%) rotate(240deg);
}

.service .time-line_head .clock[date-hour="21"]:before, .service_short .time-line_head .clock[date-hour="21"]:before {
  -webkit-transform: translate(-50%, -100%) rotate(270deg);
  transform: translate(-50%, -100%) rotate(270deg);
}

.service .time-line_head .clock[data-minute="15"]:after, .service_short .time-line_head .clock[data-minute="15"]:after {
  -webkit-transform: translate(-50%, -100%) rotate(90deg);
  transform: translate(-50%, -100%) rotate(90deg);
}

.service .time-line_head .clock[data-minute="30"]:after, .service_short .time-line_head .clock[data-minute="30"]:after {
  -webkit-transform: translate(-50%, -100%) rotate(180deg);
  transform: translate(-50%, -100%) rotate(180deg);
}

.service .time-line_head .clock[data-minute="45"]:after, .service_short .time-line_head .clock[data-minute="45"]:after {
  -webkit-transform: translate(-50%, -100%) rotate(270deg);
  transform: translate(-50%, -100%) rotate(270deg);
}

@media only screen and (max-width: 768px) {
  .service .time-line, .service_short .time-line {
    width: 100%;
  }
  .service .time-line_box, .service_short .time-line_box {
    position: relative;
  }
  .service .time-line_box .photo-list_item, .service_short .time-line_box .photo-list_item {
    border: 1.5vw solid #fff;
  }
  .service .time-line_box .photo-list_item:nth-child(4), .service_short .time-line_box .photo-list_item:nth-child(4) {
    bottom: 5%;
  }
  .service .time-line_cont, .service_short .time-line_cont {
    flex-direction: column;
  }
  .service .time-line_item, .service_short .time-line_item {
    padding: 1em;
  }
  .service .time-line_item:not(:first-child):after, .service_short .time-line_item:not(:first-child):after {
    top: -9em;
    left: calc(2em + 0em + 2em + 1.85em);
  }
  .service .time-line_head .clock, .service_short .time-line_head .clock {
    width: 1.75em;
    height: 1.75em;
    border: 0.5vw solid var(--color-accent);
  }
  .service .time-line_head .clock::before, .service .time-line_head .clock::after, .service_short .time-line_head .clock::before, .service_short .time-line_head .clock::after {
    -webkit-transform: translate(-50%, -100%);
    -webkit-transform-origin: 50% calc(100% - .5vw);
    top: calc(50% + .5vw);
    width: .5vw;
    transform: translate(-50%, -100%);
    transform-origin: 50% calc(100% - .5vw);
    border-radius: 1em;
  }
  .service .time-line_head .clock::after, .service_short .time-line_head .clock::after {
    height: .7em;
  }
  .service .time-line_head .clock::before, .service_short .time-line_head .clock::before {
    height: .5em;
  }
}

.service .service-table, .service_short .service-table {
  margin-bottom: 3em;
}

.service .service-table .c-list-dot, .service_short .service-table .c-list-dot {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 10em;
}

.blog a {
  color: #64C16D;
  text-decoration: underline;
}

.blog a:hover {
  text-decoration: none;
}

.blog #entry .entry {
  margin-bottom: 3.75em;
  padding: 3.5em;
  border-radius: 3em;
  background: #fff;
}

.blog #entry .entry h3 {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 0.76em;
  padding-left: 1.5em;
  background-size: contain;
  font-size: 4.6rem;
  font-weight: 400;
}

.blog #entry .entry h3:before, .blog #entry .entry h3:after {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  width: .52em;
  height: .52em;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(0deg, #D8F3C3, #EFF3C3);
  content: "";
}

.blog #entry .entry h3:after {
  left: .75em;
  width: .34em;
  height: .34em;
}

.blog #entry .entry h3:before {
  left: 0;
}

.blog #entry .entry .content h4 {
  display: inline-block;
  border-bottom: #40DC4F double 3px;
}

.blog #entry .entry .content h5 {
  margin-bottom: 0.25em;
  font-size: 2.4rem;
  font-weight: 700;
}

.blog #entry .entry .content h5:before {
  margin-right: 0.25em;
  color: #40DC4F;
  content: "●";
}

.blog #entry .entry .content ul li {
  margin-left: 0;
  list-style: none;
}

.blog #entry .entry .content ul li:before {
  margin-right: 0.5em;
  color: #40DC4F;
  font-weight: 600;
  content: "-";
}

.blog #entry .entry .content table {
  box-sizing: border-box;
  overflow: hidden;
  border: none;
  border-radius: 1em;
  border-collapse: separate;
  background: #FDFFF2;
}

@media only screen and (min-width: 769px) {
  .blog #entry .entry .content table {
    width: auto !important;
    min-width: 700px;
  }
}

.blog #entry .entry .content table td, .blog #entry .entry .content table th {
  padding: 1em;
}

.blog #entry .entry .content table td {
  border: none;
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
}

.blog #entry .entry .content table td:last-child {
  border-right: none;
}

.blog #entry .entry .content table th {
  border: none;
  border-bottom: 2px solid #FDFFF2;
  background: #DBF3C3;
  font-weight: 600;
}

.blog #entry .entry .content table tr:last-child td, .blog #entry .entry .content table tr:last-child th {
  border-bottom: none;
}

@media only screen and (max-width: 768px) {
  .blog #entry .entry {
    padding: 2.5em 1.5em;
    border-radius: 1.5em;
  }
  .blog #entry .entry h3 {
    padding-left: 1.25em;
    background-position: left top .3em;
    background-size: 1em;
    font-size: 4.5vw;
  }
  .blog #entry .entry .content h5 {
    font-size: 4vw;
  }
  .blog #entry .entry .content table {
    width: auto !important;
  }
}

.blog #utility .utility h3 {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 0.76em;
  padding-left: 1em;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 2.6rem;
  font-weight: 600;
}

.blog #utility .utility h3:before, .blog #utility .utility h3:after {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: .52em;
  height: .52em;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(0deg, #D8F3C3, #EFF3C3);
  content: "";
}

.blog #utility .utility .calender {
  overflow: hidden;
  border-radius: 1em;
}

.blog #utility .utility .calender th, .blog #utility .utility .calender td {
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

.blog #utility .utility .calender th:last-child, .blog #utility .utility .calender td:last-child {
  border-right: none;
}

.blog #utility .utility .calender tr:last-child th, .blog #utility .utility .calender tr:last-child td {
  border-bottom: none;
}

.blog #utility .utility .calender th {
  background: #DBF3C3;
}

.blog #utility .utility .calender td {
  background: #FDFFF2;
}

.blog #utility .utility .calender td a {
  display: block;
  border-radius: .25em;
  background: #DBF3C3;
  color: #414141;
  text-decoration: none;
  transition: .3s;
}

.blog #utility .utility .calender td a:hover {
  background: #b5e683;
}

.blog #utility .utility .calender .sunday {
  color: #CF2F55;
}

.blog #utility .utility .calender .satday {
  color: #0F7EBC;
}

.blog #utility .utility .calenderNav {
  margin-top: 1em;
}

.blog #utility .utility .calenderNav li:first-child a:before {
  content: "<";
}

.blog #utility .utility .calenderNav li:last-child a:after {
  content: ">";
}

@media only screen and (max-width: 768px) {
  .blog #utility .utility h3 {
    padding-left: 1.25em;
    background-position: left top .3em;
    background-size: 1em;
    font-size: 4.5vw;
  }
}

.blog #freo-container form input[type="submit"] {
  padding: .5em 2em;
  border-radius: 2.5em;
  background: #D8F3C3;
  color: #414141;
  font-weight: 600;
  opacity: 1;
  transition: .3s;
}

.blog #freo-container form input[type="submit"]:hover {
  background: #afe683;
}

.blog #freo-container form textarea, .blog #freo-container form input[type="password"], .blog #freo-container form input[type="text"], .blog #freo-container form input[type="word"] {
  border: #818181 1px solid;
  border-radius: .35em;
}

.blog #freo-content-wrap.login {
  max-width: 450px;
  padding: 2em;
  border: #D8F3C3 2px solid;
  background: #fff;
}

.blog #freo-content-wrap.login p {
  margin-bottom: 1em;
}

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

.u-font-small {
  font-size: 70%;
}

.u-font-medium {
  font-size: 80%;
}

.u-mt-2em {
  margin-top: 2em;
}

.u-mb-2em {
  margin-bottom: 2em;
}
