@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: #5D3B15;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "yu-gothic-pr6n", sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
}

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

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-mvItem {
  position: relative;
  width: 100%;
  height: 85vh;
}

@media only screen and (max-width: 768px) {
.c-mvItem {
  height: 45vh;
}
}
.c-mvItem img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-mvItem:before {
  z-index: 10;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 50%;
  background: url("../images/common/head_frame-bottom.svg") no-repeat bottom left/100% auto;
  content: '';
}

.c-cont {
  padding-bottom: calc(15em + 90px);
  background: url(../images/common/bg_img01.png) no-repeat left -10% top 20em/25% auto, url(../images/common/bg_img02.png) no-repeat right -10% top 86em/25% auto, url(../images/common/bg_img01.png) no-repeat left -10% top 163em/25% auto, url(../images/common/bg_img02.png) no-repeat right -10% top 230em/25% auto, url(../images/common/bg_img01.png) no-repeat left -10% top 297em/25% auto, url(../images/common/bg_img02.png) no-repeat right -10% top 367em/25% auto, url(../images/common/bg_img01.png) no-repeat left -10% top 431em/25% auto, url(../images/common/bg_img02.png) no-repeat right -10% top 507em/25% auto;
}

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

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

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

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

.c-btn-list .c-btn:last-child {
  margin-right: 0;
}

.c-btn-list .c-btn a {
  display: block;
}

.c-btn a {
  display: inline-block;
  position: relative;
  padding: .75em 4.3em .75em 3.3em;
  border: 3px solid #fff;
  border-radius: 10em;
  background: url(../images/common/btn_mtr.png) repeat top left/250px auto, #FEED6B;
  box-shadow: 0.2em 0.35em 0px 0px rgba(0, 0, 0, 0.1);
  color: #5D3B15;
  font-size: 1.8rem;
  font-weight: 600;
}

.c-btn a:before {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  content: "";
}

.c-btn a:hover {
  -webkit-transform: translateY(0.15em);
  transform: translateY(0.15em);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

.c-btn a:active {
  -webkit-transform: translateY(0.35em);
  transform: translateY(0.35em);
}

.c-btn-pdf {
  min-width: 12em;
}

.c-btn-pdf a {
  padding: 1.5em 4.3em 1.5em 2em;
  border-radius: 1em;
}

.c-btn-pdf a:before {
  background: url(../images/common/btn_pdf.svg) no-repeat center/1em auto;
}

.c-btn-arrow a:before {
  background: url(../images/common/btn_arrow.svg) no-repeat center/1em auto;
}

@media only screen and (max-width: 768px) {
  .c-btn-list {
    flex-wrap: wrap;
  }
  .c-btn a {
    font-size: 3.9vw;
  }
}

.c-pageTitle {
  -webkit-transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: kiwi-maru, sans-serif;
  font-size: 7.2rem;
  font-style: normal;
  font-weight: 500;
  text-shadow: 0px 0px 14px rgba(255, 255, 255, 0.91);
}

@media only screen and (max-width: 768px) {
  .c-pageTitle {
    width: 100%;
    font-size: 13vw;
    text-align: center;
  }
}

.c-head-1 {
  margin-bottom: 2.75em;
  font-family: kiwi-maru, sans-serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}

.c-head-1 span {
  display: inline-block;
  padding: 0 1em .75em;
  background: url(../images/common/head-1_line.svg) repeat-x bottom center/2em auto;
}

@media only screen and (max-width: 768px) {
  .c-head-1 {
    font-size: 8vw;
  }
}

.c-head-2 {
  margin-bottom: 1em;
  font-size: 2.2rem;
}

.c-head-2 span {
  display: inline-block;
  padding: 0 0 0em 1.5em;
  background: url(../images/common/head-2_item.svg) no-repeat left top 0.1em/1em auto;
}

.c-head-2.center {
  padding-bottom: 1em;
  text-align: center;
}

.c-head-2.center span {
  padding: 0 0 1.5em 0;
  background-position: bottom center;
}

@media only screen and (max-width: 768px) {
  .c-head-2 {
    font-size: 6.5vw;
  }
}

.c-head-3 {
  margin-bottom: 1em;
  border-radius: .25em;
  background: linear-gradient(#FFF2B2, #FFA126);
  font-size: 1.8rem;
}

.c-head-3 span {
  display: block;
  margin-left: .4em;
  padding: .25em 0 .25em .5em;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .c-head-3 {
    font-size: 5vw;
  }
}

.c-link-underline {
  color: #FFA126;
  text-decoration: underline;
}

.c-link-underline:hover {
  text-decoration: none;
}

.c-box {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5em;
  border-radius: 3.5em;
  background: linear-gradient(120deg, #FFF2B2, #FFA126);
}

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

.c-box_cont {
  padding: 2.5em 2em;
  border-radius: 3.1em;
  background: #fff;
}

.c-box-half {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4em;
}

@media only screen and (max-width: 768px) {
  .c-box_cont {
    padding: 2em 1.25em;
  }
  .c-box-half {
    flex-direction: column;
  }
  .c-box-half section {
    margin-bottom: 4em;
  }
  .c-box-half section:last-child {
    margin-bottom: 0;
  }
}

.c-table {
  width: 100%;
  overflow: hidden;
  border: 2px solid #DEC293;
  border-radius: 3.5em;
  border-collapse: separate;
}

.c-table_head {
  padding: 1.5em 1em;
  background: #FFF2B2;
  color: #5D3B15;
}

.c-table_head:nth-child(n+2) {
  border-left: 2px solid #DEC293;
}

.c-table_body {
  padding: 1em;
  border-top: 2px solid #DEC293;
  background: #fff;
}

.c-table_body:nth-child(n+2) {
  border-left: 2px solid #DEC293;
}

.c-table_body:last-child {
  border-right: none;
}

.c-table tr:last-child .c-table_head {
  border-radius: 0 0 0 3.5em;
}

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

.c-table tr:last-child .c-table_body:first-child {
  border-left: 2px solid #DEC293;
  border-radius: 0 0 0 3.5em;
}

.c-table tr:last-child .c-table_body:last-child {
  border-radius: 0 0 3.5em 0;
}

.c-table tr:nth-child(n+2) .c-table_head {
  border-top: 2px solid #DEC293;
}

.c-table tr:first-child .c-table_body {
  border-top: none;
}

.c-dl {
  display: flex;
  flex-wrap: wrap;
}

.c-dl .dl_head, .c-dl .dl_body {
  padding: 1.25em 1em;
  background: url(../images/common/line.svg) repeat-x left bottom;
}

.c-dl .dl_head:nth-last-child(2), .c-dl .dl_head:last-child, .c-dl .dl_body:nth-last-child(2), .c-dl .dl_body:last-child {
  background: none;
}

.c-dl .dl_head {
  width: 10em;
}

.c-dl .dl_body {
  width: calc(100% - 10em);
}

@media only screen and (max-width: 768px) {
  .c-dl .dl_head {
    width: 8em;
  }
  .c-dl .dl_body {
    width: calc(100% - 8em);
  }
}

.c-dot {
  margin-top: 1em;
}

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

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

.c-dot li:before {
  margin-right: 0.5em;
  margin-left: -1em;
  content: "・";
}

.c-list li {
  margin-bottom: 0.25em;
  padding-left: 1.25em;
  background: url(../images/common/list_icon_flour.svg) no-repeat left top 0.5em/0.9em auto;
}

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

.c-notes {
  margin-bottom: .5em;
  margin-left: 1em;
}

.c-notes:before {
  margin-right: 0.25em;
  margin-left: -1em;
  content: "※";
}

.c-scroll {
  margin-bottom: 2em;
}

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

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

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

/* ----------------------------------------
Layout
ページを構成するヘッダーやメインのコンテンツエリア、
サイドバーやフッターといったプロジェクト共通のコンテナーブロックのスタイルを定義します。
header/main/sidebar/footer...
---------------------------------------- */
#l-header .logo {
  -webkit-transform: translateX(-50%);
  z-index: 1100;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

@media only screen and (min-width: 769px) {
  #l-header .nav {
    -webkit-transform: translateX(-50%) translateY(-100%);
    z-index: 15;
    position: absolute;
    top: 85vh;
    left: 50%;
    width: 100%;
    max-width: 1363px;
    margin-right: auto;
    margin-left: auto;
    padding: 0.5em 2.5em;
    transform: translateX(-50%) translateY(-100%);
    border: #FFF2B2 7px solid;
    border-radius: 1000px;
    background-color: #fff;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1363px) {
  #l-header .nav {
    margin-right: 0px;
    margin-left: 0px;
  }
}

@media only screen and (min-width: 769px) {
  #l-header .nav.nav-home {
    top: 100vh;
  }
  #l-header .nav-inner {
    display: flex;
    align-items: center;
  }
  #l-header .nav-item {
    position: relative;
    min-width: calc(100% / 6);
  }
  #l-header .nav-item:not(:last-of-type) {
    padding-right: 0;
  }
  #l-header .nav-item:not(:last-of-type):before {
    -webkit-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
    width: 5px;
    height: 2em;
    transform: translateY(-50%);
    background: url(../images/common/nav-line.svg) no-repeat;
    content: '';
  }
  #l-header .nav-item.is-current .nav-link {
    background: url("../images/common/link-iscurrent.png") no-repeat center/50% auto;
  }
  #l-header .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5em 0;
    color: #5D3B15;
    font-family: kiwi-maru, sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 0;
  }
  #l-header .nav-icon {
    margin-top: 1em;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  #l-header .nav {
    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, 251, 229, 0.9);
    transition: right 600ms 0s ease;
  }
  #l-header .nav.nav-home {
    top: 0;
  }
  #l-header .nav.is-enable {
    right: 0;
  }
  #l-header .nav-inner {
    width: 100%;
    height: 100%;
    margin: 0;
    padding-left: 0;
    overflow-y: auto;
    border-top: solid 1px #fff;
    list-style: none;
  }
  #l-header .nav-item {
    display: block;
    position: relative;
    width: 100%;
    border-bottom: solid 1px #FFF2B2;
  }
  #l-header .nav-item::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 #FFF2B2;
    border-right: 2px solid #FFF2B2;
    content: "";
  }
  #l-header .nav-link {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 20px;
    color: #5D3B15;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
  }
  #l-header .nav-link:hover {
    background-color: rgba(216, 202, 184, 0.2);
  }
}

#l-footer {
  margin-top: -10em;
}

/* ----------------------------------------
Project
プロジェクト固有のパターンであり、いくつかのComponentと、
それに該当しない要素によって構成されるものを定義します。
例えば、記事一覧や、ユーザープロフィール、画像ギャラリーなどコンテンツを構成する要素などが該当します。
articles/ranking/promo...
---------------------------------------- */
.p-hamburger {
  display: flex;
  z-index: 10000;
  position: fixed;
  top: 5px;
  right: 5px;
  flex-flow: column;
  justify-content: space-between;
  width: 50px;
  height: 50px;
  padding: 17px 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background-color: #D1D98F;
  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: #fff;
  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-siteName {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: url("../images/common/site_logo_bg.svg") no-repeat top center/contain;
  line-height: 0;
}

.p-siteName > img {
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 769px) {
  .p-siteName {
    width: 12em;
    height: 6.3em;
    padding: .5em 3em 0;
  }
}

@media only screen and (max-width: 768px) {
  .p-siteName {
    width: 5em;
    height: 2.7em;
    padding: 0em 1em 0;
  }
}

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

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

@media only screen and (max-width: 768px) {
  .p-pagetop {
    right: 10px;
    bottom: 25px;
    width: 60px;
    height: 60px;
  }
}

.p-headline {
  position: relative;
  margin-bottom: 10em;
}

.p-headline:before {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url("../images/common/head_frame-top-left.svg") no-repeat top left/15% auto, url("../images/common/head_frame-top-right.svg") no-repeat top right/15% auto;
  content: '';
}

.p-headline:after {
  z-index: 10;
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 50%;
  content: '';
}

.p-headline .swiper-container .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 90vh;
}

.p-headline .swiper-container .swiper-wrapper .swiper-slide img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .p-headline {
    margin-bottom: 3.5em;
  }
  .p-headline .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 55vh;
  }
  .p-headline .swiper-container .swiper-wrapper .swiper-slide img {
    -o-object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-footer_mask img {
  width: 100vw;
}

.p-footer_cont {
  padding-top: 8em;
  background: #FFF2B2;
  font-weight: 400;
  text-align: center;
}

.p-footer_cont a {
  color: #5D3B15;
}

.p-footer_inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

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

.p-footer .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  font-family: kiwi-maru, sans-serif;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 600;
  font-weight: 500;
}

.p-footer .footer-nav {
  margin: 4em auto;
}

.p-footer .footer-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-footer .footer-nav .nav-item:after {
  content: "|";
}

.p-footer .footer-nav .nav-item:last-child:after {
  content: "";
}

.p-footer .footer-nav .nav-link {
  padding: 0 1em;
}

.p-footer .footer-nav .nav-link:hover {
  opacity: .6;
}

@media only screen and (max-width: 768px) {
  .p-footer .logo {
    font-size: 5vw;
  }
  .p-footer .footer-nav {
    margin: 4em auto;
  }
  .p-footer .footer-nav .nav-inner {
    flex-wrap: wrap;
  }
}

.p-copy {
  border-bottom: #E2A242 5px solid;
  background: url(../images/common/footer_line.png) repeat-x left center/181px auto;
  font-size: 1.5rem;
}

.p-copy span {
  display: inline-block;
  padding: 2em;
  background: #FFF2B2;
}

.p-copy span:before {
  content: "\00a9";
}

@media only screen and (max-width: 768px) {
  .p-copy {
    border-width: 1vw;
    background-size: 80px auto;
    font-size: 3.25vw;
  }
  .p-copy span {
    padding: 1em;
  }
}

.home .p-headline:after {
  z-index: 10;
  position: absolute;
  bottom: -2em;
  background: url("../images/common/head_frame-bottom-left.svg") no-repeat bottom left/30% auto, url("../images/common/head_frame-bottom-right.svg") no-repeat bottom right/30% auto;
}

/**
 * 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;
  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-btn {
  z-index: 999;
  position: absolute;
  right: 10em;
  bottom: 10em;
}

.home .swiper-btn a {
  display: block;
}

@media screen and (max-width: 1290px) {
  .home .swiper-btn {
    right: 15px;
    bottom: 5em;
  }
}

@media only screen and (max-width: 768px) {
  .home .swiper-btn {
    right: 1em;
    bottom: -1em;
    width: 25vw;
  }
}

.home-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75em;
  font-family: kiwi-maru, sans-serif;
  font-size: 6.2rem;
  font-style: normal;
  font-weight: 500;
}

.home-tit .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25em;
  mix-blend-mode: multiply;
}

.home-tit .tit-deco {
  display: flex;
  align-items: center;
  margin-top: 0.5em;
  margin-left: 14px;
}

.home-tit .tit-deco span {
  width: 9px;
  height: 9px;
  margin-right: 14px;
  border-radius: 18px;
  background: #A49380;
}

.home-tit .tit-deco span:nth-child(2) {
  margin-top: -5px;
}

@media only screen and (max-width: 768px) {
  .home-tit {
    font-size: 5.5vw;
  }
  .home-tit .icon {
    width: 2em;
  }
  .home-tit .tit-deco span {
    width: 5px;
    height: 5px;
  }
}

.home .news_cont {
  padding: 7em 5em 2.5em;
  border-radius: 2em;
  background: url(../images/top/news_left.svg) no-repeat top left/5em auto, url(../images/top/news_right.svg) no-repeat top right/5em auto, url(../images/top/news_deco.png) no-repeat top left/45% auto, #FFF2B2;
}

.home .news_cont .c-btn {
  max-width: 767px;
  text-align: right;
}

.home .news-list {
  display: flex;
  flex-direction: column;
  max-width: 767px;
  margin: 0 auto 3em;
}

.home .news-list_item {
  background: url(../images/common/line.png) repeat-x bottom left/20px auto;
}

.home .news-list_item a {
  display: flex;
  align-items: center;
  padding: 1.75em 2em;
  color: #5D3B15;
  font-weight: 600;
}

.home .news-list_item a:hover {
  background: rgba(255, 255, 255, 0.5);
}

.home .news-list_item a div {
  display: flex;
  margin-right: 1em;
}

.home .news-list_item a time {
  justify-content: flex-start;
}

.home .news-list_item a .category {
  width: 6.5em;
  margin: 0 0em 0 .5em;
  padding: .75em 1em;
  border-radius: 3em;
  background: #fff;
  color: #FFA126;
  line-height: 1.2;
  text-align: center;
}

.home .news-list_item:last-child {
  background: none;
}

@media only screen and (max-width: 768px) {
  .home .news_cont {
    padding: 2em 1em 3em;
    border-radius: 3.75em;
    background: url(../images/top/news_deco.png) no-repeat top left/45% auto, #FFF2B2;
  }
}

@media only screen and (max-width: 768px) and (max-width: 768px) {
  .home .news_cont {
    border-radius: 2.5em;
  }
}

@media only screen and (max-width: 768px) {
  .home .news-list {
    margin: 0 auto 3em;
  }
  .home .news-list_item a {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1em 1.25em;
  }
  .home .news-list_item a div {
    margin-bottom: 0.5em;
  }
  .home .news-list_item a .category {
    margin: 0 1em 0 1em;
  }
}

.home .access {
  margin: 7em auto;
}

@media only screen and (max-width: 768px) {
  .home .access {
    margin: 3.5em auto;
  }
}

.home .access .home-tit {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  flex-direction: row;
  writing-mode: vertical-rl;
}

.home .access .home-tit .tit-deco {
  flex-direction: column;
}

.home .access_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1212px;
  margin-right: auto;
  margin-left: auto;
}

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

.home .access .map_cont {
  display: flex;
}

.home .access .map_cont .map {
  position: relative;
  margin-left: 2em;
}

@media only screen and (min-width: 1020px) {
  .home .access .map_cont .map {
    min-height: 680px;
  }
}

.home .access .map_cont .map:before, .home .access .map_cont .map:after {
  display: block;
  position: absolute;
  content: "";
}

.home .access .map_cont .map:before {
  width: 100%;
  height: 100%;
  background: url(../images/top/thumb_right.svg) no-repeat right top/100px auto, url(../images/top/thumb_left.svg) no-repeat left bottom/100px auto;
  pointer-events: none;
}

.home .access .map_cont .map:after {
  bottom: 3em;
  left: -3em;
  width: 89px;
  height: 80px;
  background: url(../images/top/access_map_deco.png) no-repeat center/contain;
  content: "";
}

.home .access .map_cont .map iframe {
  height: 100%;
  overflow: hidden;
  border-radius: 3.75em;
}

@media only screen and (max-width: 768px) {
  .home .access .map_cont .map iframe {
    border-radius: 2.5em;
  }
}

.home .access .map_cont:nth-child(2) {
  flex-direction: column;
}

.home .access_cont .img {
  position: relative;
  margin-bottom: 3em;
}

.home .access_cont .img:before {
  display: block;
  position: absolute;
  right: -1em;
  bottom: -1em;
  width: 29.32692%;
  height: 164px;
  background: url(../images/top/access_img_deco.png) no-repeat center top/cover;
  content: "";
}

.home .access-recommend {
  margin-bottom: 1.5em;
}

.home .access-recommend p {
  position: relative;
  padding: 1.25em 1em;
  border-radius: 1em;
  background: #FFF2B2;
}

.home .access-recommend p:before {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
}

@media only screen and (min-width: 1020px) {
  .home .access-recommend p:before {
    top: 50%;
    left: -13px;
    margin-top: -10px;
    border-top: 13px solid transparent;
    border-right: 20px solid #FFF2B2;
    border-bottom: 13px solid transparent;
    border-left: 0;
  }
}

.home .access-recommend p:after {
  display: block;
  position: absolute;
  top: -1em;
  right: -1.5em;
  width: 12.5%;
  height: 70px;
  background: url(../images/top/access_recommend_deco.png) no-repeat center top/contain;
  content: "";
}

.home .access-else {
  margin: 1em auto;
  text-align: center;
}

.home .access-else span {
  display: inline-block;
  position: relative;
  padding: 0 2em;
}

.home .access-else span:before, .home .access-else span:after {
  display: inline-block;
  position: absolute;
  width: 1em;
  height: 1em;
}

.home .access-else span:before {
  left: 0;
  content: "＼";
}

.home .access-else span:after {
  right: 0;
  content: "／";
}

@media only screen and (max-width: 768px) {
  .home .access-else {
    font-size: 3.8vw;
  }
  .home .access-else span {
    padding: 0 1.25em;
  }
}

.home .access .list li {
  padding: .75em 1em 1em 1.75em;
  background: url(../images/top/list_icon.svg) no-repeat left center/1.15em auto, url(../images/common/line.svg) repeat-x left bottom/20px auto;
}

@media only screen and (max-width: 768px) {
  .home .access .list {
    width: 120%;
    font-size: 3.8vw;
  }
}

@media screen and (max-width: 1020px) {
  .home .access .home-tit {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    flex-direction: column;
    writing-mode: horizontal-tb;
  }
  .home .access .home-tit .tit-deco {
    flex-direction: row;
  }
  .home .access_inner {
    flex-direction: column;
  }
  .home .access .map_cont {
    flex-direction: column;
  }
  .home .access .map_cont .map {
    margin-left: 0em;
  }
  .home .access .map_cont .map iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
  }
  .home .access .map_cont .map:before {
    background-size: 4em;
  }
  .home .access .map_cont .map:after {
    bottom: -1em;
    background-size: 4em;
  }
  .home .access_cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 2em;
  }
  .home .access_cont .img {
    width: 25%;
  }
  .home .access_cont .img + div {
    width: 70%;
  }
  .home .access_cont .img:before {
    background: url(../images/top/access_img_deco.png) no-repeat center bottom/contain;
  }
  .home .access-recommend {
    margin-bottom: 1.5em;
  }
  .home .access-recommend p {
    text-align: center;
  }
  .home .access-recommend p:before {
    top: -20px;
    left: 50%;
    margin-left: -7.5px;
    border-top: 0;
    border-right: 13px solid transparent;
    border-bottom: 20px solid #FFF2B2;
    border-left: 13px solid transparent;
  }
}

.home .tour {
  margin: 7em auto;
}

@media only screen and (max-width: 768px) {
  .home .tour {
    margin: 3.5em auto;
  }
}

.home .tour_cont {
  background: url(../images/top/tour_deco_left.png) no-repeat left center/80px auto, url(../images/top/tour_deco_right.png) no-repeat right center/65px auto;
  line-height: 2;
}

.home .tour_cont .tel {
  margin: 2em auto;
}

.home .tour_cont .tel a {
  color: #FFA126;
  font-size: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .home .tour_cont {
    background-size: 4em auto , 3.5em auto;
  }
  .home .tour_cont .tel {
    margin: 2em auto;
  }
  .home .tour_cont .tel a {
    font-size: 6vw;
  }
}

.home .contact_wrap {
  padding: 7em 0;
  background: url(../images/top/contact_bg.png) no-repeat left top 13em/26em auto, #FFF2B2;
}

@media only screen and (max-width: 768px) {
  .home .contact_wrap {
    padding: 3.5em 0;
  }
}

.home .contact_inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

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

.home .contact .mailform {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home .contact .mailform .mfp {
  margin: 1.5em 0;
}

.home .contact .mailform .mfp-tit {
  width: 10em;
  line-height: 1.25;
}

.home .contact .mailform .mfp-cont {
  width: calc(100% - 13em);
}

.home .contact .mailform .mfp-wide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.home .contact .mailform .mfp-select {
  display: flex;
}

.home .contact .mailform .mfp-select select {
  width: 6em;
  margin-right: 1em;
}

.home .contact .mailform .mfp-select select:nth-child(1) {
  width: 8em;
}

.home .contact .mailform .mfp .short {
  width: 10em;
  margin-right: 0.5em;
}

.home .contact .mailform input[type=text], .home .contact .mailform input[type=date], .home .contact .mailform input[type=email], .home .contact .mailform textarea, .home .contact .mailform select {
  width: 80%;
  padding: .75em 1em;
}

.home .contact .mailform select {
  padding: 1.25em 1em 1.25em;
  border: none;
  border-radius: .85em;
  background: #fff;
}

.home .contact .mailform input.radio {
  display: none;
}

.home .contact .mailform input + label, .home .contact .mailform input + input + label {
  box-sizing: border-box;
  display: inline-block;
  min-width: 7.2em;
  margin-bottom: 1em;
  padding: .75em 1.5em;
  border-radius: 10em;
  background-color: #A49380;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: .3s;
}

.home .contact .mailform input:checked + label, .home .contact .mailform input:checked + input + label {
  background-color: #F9D55A;
  color: #5D3B15;
}

.home .contact .mfp_buttons button {
  font-size: 1.8rem;
}

.home .contact_mask > img {
  width: 100vw;
}

.home .contact_mask.bottom {
  position: relative;
}

.home .contact_mask.bottom img {
  vertical-align: top;
}

.home .contact_mask.bottom .deco {
  position: absolute;
  right: 2em;
  bottom: 3em;
}

@media only screen and (max-width: 768px) {
  .home .contact_wrap {
    background-size: 30% auto;
  }
  .home .contact .mailform .mfp {
    margin: 0;
  }
  .home .contact .mailform .mfp-tit {
    width: 100%;
    margin-bottom: 1em;
  }
  .home .contact .mailform .mfp-cont {
    width: 100%;
    margin-bottom: 2em;
  }
  .home .contact .mailform .mfp-wide {
    flex-direction: column;
    width: 100%;
  }
  .home .contact .mailform .mfp-radio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home .contact .mailform input + label, .home .contact .mailform input + input + label {
    width: 45%;
    margin-right: 1em;
    margin-bottom: 1em;
    font-size: 4vw;
  }
  .home .contact .mfp_buttons button {
    font-size: 4vw;
  }
  .home .contact_mask.bottom {
    position: relative;
    margin-top: -5px;
  }
  .home .contact_mask.bottom .deco {
    bottom: 0;
    width: 12%;
  }
}

.home .disclosure {
  margin: 7em auto 0;
}

@media only screen and (max-width: 768px) {
  .home .disclosure {
    margin: 3.5em auto 0;
  }
}

.home .disclosure-thumb {
  position: relative;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

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

.home .disclosure-thumb img {
  border-radius: 3.75em;
}

@media only screen and (max-width: 768px) {
  .home .disclosure-thumb img {
    border-radius: 2.5em;
  }
}

.home .disclosure-thumb:before, .home .disclosure-thumb:after {
  display: block;
  position: absolute;
  content: "";
}

.home .disclosure-thumb:before {
  width: 100%;
  height: 100%;
  background: url(../images/top/thumb_right.svg) no-repeat right top/100px auto, url(../images/top/thumb_left.svg) no-repeat left bottom/100px auto;
  pointer-events: none;
}

.home .disclosure-thumb:after {
  -webkit-transform: translate(-50%, 0%);
  bottom: 0em;
  left: 50%;
  width: 18.7em;
  height: 5.5em;
  transform: translate(-50%, 0%);
  background: url(../images/top/disclosure_thumb_bottom.svg) no-repeat center bottom/contain;
  content: "";
}

.home .disclosure-txt {
  max-width: 1100px;
  margin-top: -0.5em;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 3em;
  background: url(../images/top/disclosure_deco.png) no-repeat right bottom/9em auto;
}

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

@media only screen and (max-width: 768px) {
  .home .disclosure-thumb:before {
    background-size: 7.57576% auto, 7.57576% auto;
  }
  .home .disclosure-thumb:after {
    height: 5.5em;
    background-size: 34.09091% auto;
  }
  .home .disclosure-txt {
    background-size: 20%;
  }
}

.about_section {
  margin-bottom: 10.625em;
}

.about_section:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .about_section {
    margin-bottom: 6.25em;
  }
}

.about .story {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 720px) {
  .about .story {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.about .color-list {
  display: flex;
  justify-content: center;
  margin-bottom: 2.2em;
}

.about .color-list_item {
  margin-right: 2.72727%;
}

.about .color-list_item:last-child {
  margin-right: 0;
}

.about .color-list_item img {
  margin-bottom: 1em;
  border-radius: 1.7em;
}

.about .color-list.top .color-list_item {
  margin-right: 5.45455%;
}

.about .color-list.top .color-list_item:last-child {
  margin-right: 0;
}

.about .color-list.top img {
  border-radius: 3.75em;
}

@media only screen and (max-width: 768px) {
  .about .color-list.top img {
    border-radius: 2.5em;
  }
}

.about .color-list.bottom {
  margin-bottom: 0;
}

.about .color-list.bottom .color-list_item:nth-child(2n) {
  margin-top: 1.7em;
}

@media only screen and (max-width: 768px) {
  .about .color-list.bottom .color-list_item:nth-child(2n) {
    margin-top: 1em;
  }
}

.about .color-img {
  display: flex;
}

.about .color-img img {
  display: inline-block;
  min-width: 0;
  margin-right: 3.125%;
}

.about .color-img img:last-child {
  margin-right: 0;
}

.about .goal p {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 4.4em;
  margin-left: auto;
}

@media screen and (max-width: 980px) {
  .about .goal p {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.about .goal_img {
  display: flex;
  justify-content: space-between;
}

.about .goal_img .img:first-child {
  width: 52.36364%;
  background: url(../images/about/goal_deco01.svg) no-repeat center bottom 5em/22em auto;
}

.about .goal_img .img:nth-child(2) {
  width: 43.81818%;
  padding-top: 10em;
  background: url(../images/about/goal_deco02.svg) no-repeat left 2em top 2em/7em auto;
}

.about .goal_img .img img {
  border-radius: 3.75em;
}

@media only screen and (max-width: 768px) {
  .about .goal_img .img img {
    border-radius: 2.5em;
  }
}

@media only screen and (max-width: 768px) {
  .about .goal p {
    max-width: 980px;
    margin-right: auto;
    margin-bottom: 4.4em;
    margin-left: auto;
  }
}

@media only screen and (max-width: 768px) and (max-width: 980px) {
  .about .goal p {
    margin-right: 0px;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .about .goal_img {
    display: flex;
    justify-content: space-between;
  }
  .about .goal_img .img:first-child {
    background-position: left bottom 15%;
    background-size: contain;
  }
  .about .goal_img .img:nth-child(2) {
    padding-top: 5em;
    background-size: 3em auto;
  }
  .about .goal_img .img img {
    border-radius: 3.75em;
  }
}

@media only screen and (max-width: 768px) and (max-width: 768px) {
  .about .goal_img .img img {
    border-radius: 2.5em;
  }
}

.about .childcare-hour .c-box {
  margin-bottom: 2.8em;
}

.about .childcare-hour .c-box:last-child {
  margin-bottom: 0;
}

.about .childcare-hour .pm, .about .childcare-hour .am {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  float: left;
  border-radius: 1em;
  color: #FFF2B2;
}

.about .childcare-hour .pm {
  background: #8AA2E3;
}

.about .childcare-hour .am {
  background: #E2A15F;
}

.about .childcare-hour .note {
  max-width: 640px;
  margin-top: -2em;
  margin-right: auto;
  margin-bottom: 2.8em;
  margin-left: auto;
  text-align: right;
}

@media screen and (max-width: 640px) {
  .about .childcare-hour .note {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.about .childcare-hour .note .c-dot {
  max-width: 290px;
  margin-right: auto;
  margin-right: 0;
  margin-left: auto;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: left;
}

@media screen and (max-width: 290px) {
  .about .childcare-hour .note .c-dot {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.about .childcare-hour .c-box-half section:nth-child(2) {
  width: 40%;
}

@media only screen and (max-width: 768px) {
  .about .childcare-hour .note .c-dot {
    width: 65%;
    font-size: 3.25vw;
  }
  .about .childcare-hour .c-box-half section:nth-child(2) {
    width: 100%;
  }
}

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

.about .map_item {
  margin-right: .75em;
}

.about .map_item:last-child {
  margin-right: 0;
}

.about .class {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 640px) {
  .about .class {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.lb-loader, .lightbox {
  line-height: 0;
  text-align: center;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  display: none;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .8;
}

.lightbox {
  z-index: 10000;
  position: absolute;
  left: 0;
  width: 100%;
  outline: 0;
  font-weight: 400;
}

.lightbox .lb-image {
  display: block;
  max-width: inherit;
  height: auto;
  max-height: none;
  border: 4px solid #fff;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #fff;
}

.lb-loader, .lb-nav {
  position: absolute;
  left: 0;
}

.lb-outerContainer:after {
  display: table;
  clear: both;
  content: "";
}

.lb-loader {
  top: 43%;
  width: 100%;
  height: 25%;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  z-index: 10;
  top: 0;
  width: 100%;
  height: 100%;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: 0;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}

.lb-next, .lb-prev {
  display: block;
  height: 100%;
  cursor: pointer;
}

.lb-nav a.lb-prev {
  left: 0;
  width: 34%;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  opacity: 0;
  transition: opacity .6s;
}

.lb-nav a.lb-prev:hover {
  opacity: 1;
}

.lb-nav a.lb-next {
  right: 0;
  width: 64%;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  opacity: 0;
  transition: opacity .6s;
}

.lb-nav a.lb-next:hover {
  opacity: 1;
}

.lb-dataContainer {
  width: 100%;
  margin: 0 auto;
  padding-top: 5px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.lb-dataContainer:after {
  display: table;
  clear: both;
  content: "";
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  line-height: 1.1em;
  text-align: left;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  padding-bottom: 1em;
  clear: left;
  color: #999;
  font-size: 12px;
}

.lb-data .lb-close {
  display: block;
  width: 30px;
  height: 30px;
  float: right;
  outline: 0;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  opacity: .7;
  transition: opacity .2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}

.day-flow {
  max-width: 1100px;
  margin-right: auto;
  margin-bottom: 10.625em;
  margin-left: auto;
}

@media screen and (max-width: 1130px) {
  .day-flow {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.day .c-table a {
  color: #5D3B15;
}

.day .c-table td {
  padding: 2em;
  vertical-align: middle;
}

.day .c-table .else {
  width: 28.36364%;
  background: #FFDEB2;
}

.day .c-table tr .c-table_head:first-child {
  width: 18.81818%;
}

.day .c-table tr .c-table_head:last-child {
  width: 24.54545%;
}

.day .c-table tr .c-table_body {
  text-align: center;
}

.day .c-table tr .c-table_body p {
  display: inline-block;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .day-flow {
    margin: 0 15px 6.25em;
  }
}

.day .event-flow {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1130px) {
  .day .event-flow {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.day .event-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.day .event-cont_item {
  width: 30%;
  margin-bottom: 3em;
}

.day .event-cont_item:nth-child(5n + 1) .txt {
  background: url(../images/day/flag_green_left.png) no-repeat left top -1em/5.5em auto, url(../images/day/flag_green_right.png) no-repeat right top -1em/5.5em auto;
}

.day .event-cont_item:nth-child(5n + 2) .txt {
  background: url(../images/day/flag_pink_left.png) no-repeat left top -1em/5.5em auto, url(../images/day/flag_pink_right.png) no-repeat right top -1em/5.5em auto;
}

.day .event-cont_item:nth-child(5n + 3) .txt {
  background: url(../images/day/flag_purple_left.png) no-repeat left top -1em/5.5em auto, url(../images/day/flag_purple_right.png) no-repeat right top -1em/5.5em auto;
}

.day .event-cont_item:nth-child(5n + 4) .txt {
  background: url(../images/day/flag_sky_left.png) no-repeat left top -1em/5.5em auto, url(../images/day/flag_sky_right.png) no-repeat right top -1em/5.5em auto;
}

.day .event-cont_item:nth-child(5n) .txt {
  background: url(../images/day/flag_yellow_left.png) no-repeat left top -1em/5.5em auto, url(../images/day/flag_yellow_right.png) no-repeat right top -1em/5.5em auto;
}

@media only screen and (min-width: 769px) {
  .day .event-cont_item:nth-child(3n-1) {
    margin-top: 3em;
  }
}

.day .event-cont_item .thumb img {
  border-radius: 2em;
}

.day .event-cont_item .txt {
  display: flex;
}

.day .event-cont_item .txt .month {
  margin-right: 10%;
  font-family: kiwi-maru, sans-serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 500;
}

.day .event-cont_item .txt .month span {
  font-size: 2.1rem;
}

.day .event-list {
  margin-top: 1em;
}

.day .event-list li a {
  color: #5D3B15;
  text-decoration: underline;
}

.day .event-list li a:hover {
  text-decoration: none;
}

@media screen and (max-width: 870px) {
  .day .event-cont_item {
    width: 48%;
    margin-bottom: 2em;
  }
  .day .event-cont_item:nth-child(2n) {
    margin-top: 2em;
  }
  .day .event-cont_item .txt .month {
    margin-right: .5em;
    font-size: 5.5vw;
  }
  .day .event-cont_item .txt .month span {
    font-size: 3.5vw;
  }
  .day .event-list li {
    font-size: 3.2vw;
  }
}

.news_section {
  margin-bottom: 10.625em;
}

.news_section:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .news_section {
    margin-bottom: 6.25em;
  }
}

.news .local {
  margin-bottom: 4.4em;
}

.news .local-news {
  max-width: 465px;
  margin-right: auto;
  margin-bottom: 4em;
  margin-left: auto;
  padding: 2.5em;
  border-radius: 1em;
  background: #FFFFD6;
}

@media screen and (max-width: 465px) {
  .news .local-news {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.news .local-news.no-date {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .news .local-news.no-date {
    font-size: 3.8vw;
  }
}

.news .local-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news .local-list_item {
  width: 48%;
}

.news .local-list_item section {
  margin-bottom: 1.2em;
}

.news .local-list_item.wide {
  width: 100%;
}

.news .local-list_item.wide .local-list_cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news .local-list_item.wide .local-list_cont section {
  width: 48%;
}

@media only screen and (max-width: 768px) {
  .news .local-list {
    flex-direction: column;
  }
  .news .local-list_item {
    width: 100%;
    margin-bottom: 2.5em;
  }
  .news .local-list_item section {
    margin-bottom: 1.75em;
  }
  .news .local-list_item.wide .local-list_cont {
    flex-direction: column;
  }
  .news .local-list_item.wide .local-list_cont section {
    width: 100%;
  }
}

.news .childcare .guide {
  margin-bottom: 3.6em;
}

.news .childcare .balloon {
  margin: 3.3em auto 2em;
}

.news .childcare .balloon span {
  position: relative;
  padding: 0.75em 1.75em;
  border-radius: 2em;
  background: #FFF2B2;
}

.news .childcare .balloon span:before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 14px solid #FFF2B2;
  border-right: 12px solid transparent;
  border-bottom: 0;
  border-left: 12px solid transparent;
  border-style: solid;
  content: "";
}

.news .childcare-about {
  margin: 3.72em auto 0;
}

.news .childcare-about_cont {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  padding: 4.4em 0 3em;
  border-radius: 1em;
  background: #FFFFD6;
  line-height: 2.25;
}

@media screen and (max-width: 880px) {
  .news .childcare-about_cont {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.news .childcare-about_cont .tel a {
  margin-left: 0.25em;
  color: #FFA126;
  font-size: 3.2rem;
}

.news .childcare .c-box-half section {
  width: 47%;
}

@media only screen and (max-width: 768px) {
  .news .childcare .guide {
    margin-bottom: 3em;
  }
  .news .childcare-about_cont {
    padding: 2em 1em 1em;
  }
  .news .childcare-about_cont .tel a {
    font-size: 6.5vw;
  }
  .news .childcare .c-box-half section {
    width: 100%;
  }
}

.news-area .news-inner {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

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

.news-area .news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.news-area .news_item {
  width: 30.30303%;
  margin-right: 4.54545%;
  margin-bottom: 4.4em;
}

@media only screen and (min-width: 769px) {
  .news-area .news_item:nth-child(3n) {
    margin-right: 0;
  }
}

.news-area .news-cont {
  display: none;
}

.news-area .news-cont .read-more {
  margin-top: 1em;
  text-align: right;
}

.news-area .news-cont:first-child {
  display: block;
}

.news-area .news-tit {
  margin-bottom: 1.05em;
  padding: 0 0 .4em 0;
  border-bottom: 2px dashed #DEC293;
  font-size: 2rem;
}

.news-area .news-txt {
  height: 5em;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .news-area .news-list {
    flex-direction: column;
  }
  .news-area .news_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4.4em;
  }
  .news-area .news-tit {
    font-size: 5vw;
  }
}

.news .download-tit {
  font-family: kiwi-maru, sans-serif;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 500;
}

.news .download-tit:after {
  display: block;
  margin-top: -1.5em;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: right;
  content: "※クリックで開きます。";
}

@media only screen and (max-width: 768px) {
  .news .download-tit:after {
    font-size: 3.3vw;
  }
}

.news .download-tit span {
  display: inline-block;
  margin-bottom: 1.4em;
}

.news .download-tit span:before {
  -webkit-transform: rotate(180deg);
  display: inline-block;
  width: 1.5em;
  height: 1em;
  transform: rotate(180deg);
  background: url(../images/news/icon_download.svg) no-repeat right 0.25em top 0.1em/16px auto;
  content: "";
  transition: .6s;
}

.news .download-tit.is-open span:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-position: right .5em top .35em;
}

.news .download-tit:hover {
  cursor: pointer;
}

.news .download-cont {
  -webkit-animation-name: fadeOut;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  display: none;
  animation-name: fadeOut;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transition: .5s;
}

.news .download-cont.is-open {
  -webkit-animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  display: block;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
  .news .download-tit {
    font-size: 6vw;
  }
}

.recruit_section {
  margin-bottom: 10.625em;
}

.recruit_section:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .recruit_section {
    margin-bottom: 6.25em;
  }
}

.recruit .message-cont {
  display: flex;
  justify-content: space-between;
  background: url(../images/recruit/message_deco.svg) no-repeat right bottom/3em auto;
}

.recruit .message-cont .thumb {
  width: 43.63636%;
}

.recruit .message-cont .thumb img {
  border-radius: 3.75em;
}

@media only screen and (max-width: 768px) {
  .recruit .message-cont .thumb img {
    border-radius: 2.5em;
  }
}

.recruit .message-cont .txt {
  width: 53.09091%;
}

.recruit .message-cont .txt p {
  margin-bottom: 1.5em;
}

.recruit .message-cont .txt p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .recruit .message-cont {
    flex-direction: column;
  }
  .recruit .message-cont .thumb {
    width: 100%;
    margin-bottom: 1em;
    text-align: center;
  }
  .recruit .message-cont .txt {
    width: 100%;
  }
}

.recruit .points {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 800px) {
  .recruit .points {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.recruit .points_item {
  width: 45.25%;
}

.recruit .points_item:first-child .thumb {
  text-align: right;
}

.recruit .points_item:last-child {
  margin-top: 3em;
}

.recruit .points_item:last-child .deco {
  right: 0em;
}

.recruit .points_item .thumb {
  position: relative;
}

.recruit .points_item .thumb > img {
  border-radius: 3.75em;
}

@media only screen and (max-width: 768px) {
  .recruit .points_item .thumb > img {
    border-radius: 2.5em;
  }
}

.recruit .points_item .thumb .deco {
  position: absolute;
  top: -2em;
  width: 80px;
}

.recruit .points_item .txt {
  text-align: center;
}

.recruit .points_item .txt p {
  display: inline-block;
  padding: .75em 3em 1em;
  background: url(../images/recruit/point_tit_deco_left.svg) no-repeat left top/2.5em auto, url(../images/recruit/point_tit_deco_right.svg) no-repeat right top/2.5em auto;
}

@media only screen and (max-width: 768px) {
  .recruit .points_item {
    width: 48%;
  }
  .recruit .points_item:last-child {
    margin-top: 2em;
  }
  .recruit .points_item .thumb .deco {
    position: absolute;
    top: -1em;
    width: 3em;
  }
  .recruit .points_item .txt p {
    padding: .5em 1.25em 1em;
    background-size: 1.5em auto;
  }
}

.recruit .interview {
  display: flex;
  justify-content: space-between;
}

.recruit .interview .thumb {
  width: 24.54545%;
}

.recruit .interview .thumb .initial {
  padding: .25em 1em .5em .5em;
  background: url(../images/recruit/interview_name.svg) no-repeat left bottom/10em auto;
}

.recruit .interview .thumb .initial span {
  font-size: 2rem;
}

.recruit .interview .thumb .initial span span {
  font-size: 1.5rem;
}

.recruit .interview .qr {
  width: 74.54545%;
}

.recruit .interview .qr .question, .recruit .interview .qr .answer {
  display: flex;
  align-items: baseline;
}

.recruit .interview .qr .question-q, .recruit .interview .qr .question-a, .recruit .interview .qr .answer-q, .recruit .interview .qr .answer-a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  margin-right: .5em;
  border-radius: 50%;
  font-size: 2.4rem;
}

.recruit .interview .qr .question-q:before, .recruit .interview .qr .question-a:before, .recruit .interview .qr .answer-q:before, .recruit .interview .qr .answer-a:before {
  translate: rotate(120deg);
  position: absolute;
  right: 0px;
  bottom: 5px;
  width: 0;
  height: 0;
  border-width: 0px 6px 12px 6px;
  border-style: solid;
  content: "";
}

.recruit .interview .qr .question-txt, .recruit .interview .qr .answer-txt {
  width: calc(100% - 4em);
}

.recruit .interview .qr .question-q {
  margin-bottom: .5em;
  background: #FFF2B2;
  color: #FFA126;
}

.recruit .interview .qr .question-q:before {
  border-color: transparent transparent #FFF2B2 transparent;
}

.recruit .interview .qr .answer {
  margin-bottom: 1.25em;
}

.recruit .interview .qr .answer-a {
  margin-bottom: 1em;
  background: #FFA126;
  color: #FFF2B2;
}

.recruit .interview .qr .answer-a:before {
  border-color: transparent transparent #FFA126 transparent;
}

@media only screen and (max-width: 768px) {
  .recruit .interview .thumb .initial {
    background-size: contain;
  }
  .recruit .interview .thumb .initial span {
    font-size: 3.8vw;
  }
  .recruit .interview .thumb .initial span span {
    font-size: 3.2vw;
  }
  .recruit .interview .qr .question-q, .recruit .interview .qr .question-a, .recruit .interview .qr .answer-q, .recruit .interview .qr .answer-a {
    font-size: 5vw;
  }
}

.recruit .recruitment {
  margin-bottom: 6.1em;
}

.recruit .recruitment .c-table {
  margin-top: 3.3em;
}

.recruit .contact .tel {
  margin: 1.5em auto 1em;
  font-size: 3.2rem;
}

.recruit .contact .tel a {
  color: #5D3B15;
}

@media only screen and (max-width: 768px) {
  .recruit .contact .tel {
    font-size: 5.5vw;
  }
}

.freo a {
  color: #FFA126;
}

.freo #entry .entry {
  margin-bottom: 3.75em;
  padding-bottom: 3.75em;
  border-bottom: dashed 2px #DEC293;
}

.freo #entry .entry:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.freo #entry .entry h3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.76em;
  padding-left: 1.75em;
  background-image: url("../images/common/head-2_item.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 4.2rem;
  font-weight: 600;
}

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

.freo #entry .entry .content h5:before {
  margin-right: 0.25em;
  color: #F7CED4;
  content: "●";
}

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

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

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

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

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

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

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

.freo #entry .entry .content table th {
  border: none;
  border-bottom: 2px solid #fff;
  background: #FFF2B2;
  font-weight: 600;
}

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

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

.freo #utility {
  margin-top: 8em;
}

.freo #utility .utility h3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.76em;
  padding-left: 1.5em;
  background-image: url("../images/common/head-2_item.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 2.6rem;
  font-weight: 600;
}

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

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

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

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

.freo #utility .utility .calender th {
  background: #FFF2B2;
}

.freo #utility .utility .calender td {
  background: #fff;
}

.freo #utility .utility .calender a {
  color: #FFA126;
  text-decoration: underline;
}

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

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

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

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

/* ----------------------------------------
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-camera {
  margin-bottom: .65em;
  padding-left: 1.5em;
  background: url(../images/common/icon_camera.svg) no-repeat left top 0.1em/1em auto;
  line-height: 1;
}

.u-is-none {
  display: none;
}

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