@charset "UTF-8";
/**
 * Modern CSS Reset Tweaks
 * ================================================== */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  -webkit-text-size-adjust: 100%;
}

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

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

/* Box sizing normalization */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 *
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0-modified | 20110126
 * License: none (public domain)
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

/**
 * Input Reset
 */
input:required,
input {
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

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

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
 * 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 images easier to work with */
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

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

[disabled] {
  pointer-events: none;
}

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

/**
 * 1. 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.
 * 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;
  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: #313131;
  font-family: "M PLUS 1p", serif;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

body p, body a {
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
}

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

body dl, body ul {
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
  line-height: 1.3;
}

table {
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
  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 {
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
  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 {
  -webkit-transform: rotate(0.05deg);
  width: 100%;
  padding: 5px;
  transform: rotate(0.05deg);
  border: solid 1px #D3CDBD;
  background-color: #fff;
}

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

/* ----------------------------------------
Component
再利用できるパターンとして、小さな単位のモジュールを定義します。
grid/button/form/media...
---------------------------------------- */
@media only screen and (max-width: 768px) {
  .c-visual {
    margin: 0 1em;
  }
}

.c-head1 {
  display: flex;
  align-items: center;
  margin-bottom: 3.125em;
  color: #4682B4;
}

.c-head1 .jp {
  font-size: 3.2rem;
  font-weight: 700;
}

.c-head1 .en {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.c-head1.row {
  flex-direction: column;
}

.c-head1.row .jp {
  margin: .25em auto;
}

.c-head1.side {
  flex-direction: row;
  align-items: baseline;
}

.c-head1.side .jp {
  margin-right: .75em;
}

.c-head2 {
  margin-bottom: 2em;
  color: #4682B4;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

.c-head2 span {
  display: inline-block;
  padding: 0 .5em .5em;
  border-bottom: 3px dashed #43B3E2;
}

@media only screen and (max-width: 768px) {
  .c-head1 .jp {
    font-size: 6vw;
  }
  .c-head1 .en {
    font-size: 3vw;
  }
  .c-head1 .icon {
    width: 4vw;
  }
  .c-head2 {
    font-size: 4.5vw;
  }
}

.c-btn {
  display: flex;
}

.c-btn a {
  display: flex;
  position: relative;
  align-items: center;
  padding: 1.13em 2.4em;
  overflow: hidden;
  border-radius: 5em;
  background-image: linear-gradient(90deg, #75b5ea, skyblue);
  background-position: 0% 0%;
  background-size: 200% 200%;
  color: #fff;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.c-btn a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg.png);
  background-size: cover;
  content: "";
  pointer-events: none;
}

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

.c-btn a .icon {
  display: inline-block;
  margin-right: .25em;
}

.c-btn a .icon img {
  display: block;
}

.c-btn-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-btn-list_item {
  margin-right: 2em;
}

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

@media only screen and (max-width: 768px) {
  .c-btn-list a {
    padding: 1.13em 1.9em;
  }
  .c-btn-list_item {
    margin-right: 1em;
  }
}

@media only screen and (max-width: 768px) {
  .c-btn .icon {
    display: inline-block;
    margin-right: .25em;
  }
  .c-btn .icon img {
    width: 1em;
  }
}

.c-wamnet {
  max-width: 45%;
  padding: 1em 3em;
  border: 1px solid #43B3E2;
  border-radius: 5em;
  background: #fff;
}

.c-wamnet:hover {
  opacity: .6;
}

@media only screen and (max-width: 768px) {
  .c-wamnet {
    padding: 1em 2em;
  }
}

.c-mv {
  margin-bottom: 3.5em;
  text-align: center;
}

.c-pageTit {
  margin-top: 1.875em;
}

.c-pageTit span {
  display: inline-block;
  position: relative;
}

.c-pageTit span:before, .c-pageTit span:after {
  display: block;
  position: absolute;
  top: 0;
  width: 157px;
  height: 46px;
  background-repeat: no-repeat;
  content: "";
}

.c-pageTit span:before {
  left: -157px;
  background: url(../images/common/title_starL.svg);
}

.c-pageTit span:after {
  right: -157px;
  background: url(../images/common/title_starR.svg);
}

@media only screen and (max-width: 768px) {
  .c-pageTit span {
    width: 70%;
  }
}

.c-whip {
  z-index: 1;
  position: relative;
  margin-bottom: 9em;
  padding: 9.5em 0 9em;
  background-color: #ECFBFD;
  background-image: url(../images/common/bg.png);
}

.c-whip:before, .c-whip:after {
  z-index: 5;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  pointer-events: none;
}

.c-whip:before {
  top: 0;
  background-image: url(../images/common/mask_top.svg);
  background-position: left top;
}

.c-whip:after {
  bottom: -1px;
  background-image: url(../images/common/mask_wave_foot.svg);
  background-position: left bottom;
}

@media only screen and (max-width: 768px) {
  .c-whip {
    margin-bottom: 5em;
    padding: 6em 0 5em;
  }
}

.c-wave {
  z-index: 1;
  position: relative;
  margin: 8.5em auto 7em;
  padding: 8.5em 0 9em;
  background-color: #ECFBFD;
  background-image: url(../images/common/bg.png);
}

.c-wave:before, .c-wave:after {
  z-index: -5;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  pointer-events: none;
}

.c-wave:before {
  top: -1px;
  background-image: url(../images/common/mask_wave_top.svg);
  background-position: left top;
}

.c-wave:after {
  bottom: -1px;
  background-image: url(../images/common/mask_wave_foot.svg);
  background-position: left bottom;
}

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

.c-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #DAE6F0;
}

.c-dlHead {
  width: calc(5em + 1em);
  padding: 1em 1em 1em 0;
  border-bottom: 1px solid #DAE6F0;
  color: #43B3E2;
  font-weight: 700;
}

.c-dlBody {
  width: calc(100% - 6em);
  padding: 1em 0;
  border-bottom: 1px solid #DAE6F0;
}

.c-dl.long .c-dlHead {
  width: 13em;
  padding-right: 0;
}

.c-dl.long .c-dlBody {
  width: calc(100% - 13em);
}

.c-dl.medium .c-dlHead {
  width: 8em;
  padding-right: 0;
}

.c-dl.medium .c-dlBody {
  width: calc(100% - 8em);
}

.c-dl.no-border {
  border-top: none;
}

.c-notes {
  margin-left: 1em;
  font-size: 1.4rem;
  line-height: 1.7;
}

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

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

.c-notes-list_item {
  margin-bottom: 0.5em;
  margin-left: 1em;
  font-size: 1.4rem;
  line-height: 1.6;
}

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

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

.c-dot-list_item {
  display: flex;
  align-items: center;
}

.c-dot-list_item:before {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: .5em;
  border-radius: 50%;
  background: #87CEEB;
  content: "";
}

@media only screen and (max-width: 768px) {
  .c-dot-list_item.is-lineBreak:before {
    margin-top: .75em;
    margin-bottom: auto;
  }
}

.c-dot-list.small .c-dot-list_item:before {
  width: 7px;
  height: 7px;
}

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

#l-mask img, #l-mask source {
  width: auto;
}

#l-footer {
  z-index: 1;
  position: relative;
  margin-top: 3em;
  padding: 6em 0 3.125em;
  background-color: #43B3E2;
  background-image: url(../images/common/bg.png);
  color: #fff;
}

#l-footer:before {
  z-index: 5;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/mask_footer.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  pointer-events: none;
}

#l-footer a, #l-footer span {
  color: #fff;
  transition: .3s;
}

#l-footer a:hover, #l-footer span:hover {
  opacity: .8;
}

@media only screen and (max-width: 768px) {
  #l-footer {
    padding: 3em 0 1.125em;
  }
  #l-footer:before {
    background-image: url(../images/common/mask_footer_sp.png);
  }
}

.l-footer_inner {
  max-width: 1022px;
  margin-right: auto;
  margin-left: auto;
}

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

.l-footerLogo {
  margin-bottom: 1.8125em;
  text-align: center;
}

.l-footer-address, .l-footer-number {
  margin-bottom: 0.714em;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

.l-footer-address .tel, .l-footer-number .tel {
  margin-right: 1em;
}

.l-footerLink {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3em;
  padding-top: 3.84em;
  border-top: 1px solid #fff;
  font-size: 1.3rem;
}

.l-footerLink .link-tit {
  font-weight: 900;
}

.l-footerLink .link-list li {
  margin-bottom: 1em;
  font-weight: 600;
}

.l-footerLink .link-list li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .l-footerLogo img {
    width: 70%;
  }
  .l-footer-address, .l-footer-number {
    font-size: 4vw;
  }
  .l-footerLink {
    flex-direction: column;
    margin-top: 3em;
    font-size: 3.8vw;
  }
  .l-footerLink .link-tit {
    margin-bottom: 1.25em;
    font-weight: 900;
  }
  .l-footerLink .link-list li {
    margin-bottom: .5em;
    font-weight: 600;
  }
  .l-footerLink .link-list li:last-child {
    margin-bottom: .5em;
  }
}

/* ----------------------------------------
Project
プロジェクト固有のパターンであり、いくつかのComponentと、
それに該当しない要素によって構成されるものを定義します。
例えば、記事一覧や、ユーザープロフィール、画像ギャラリーなどコンテンツを構成する要素などが該当します。
articles/ranking/promo...
---------------------------------------- */
.p-headerLogo {
  display: block;
  width: 37.86693%;
  margin: 1em auto 1em;
  font-size: 2em;
  line-height: 1.3;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .p-headerLogo {
    width: 55%;
    margin: .5em auto .75em;
  }
}

.p-gnavLink {
  padding: 0.5em;
  font-weight: 800;
}

.p-gnavLink:hover {
  opacity: .6;
}

.p-gnavLink .jp {
  color: #4682B4;
}

.p-gnavLink .en {
  color: #87CEEB;
}

@media only screen and (max-width: 768px) {
  .p-gnavLink .en {
    margin-top: .75em;
    color: #fff;
    font-size: 3.5vw;
  }
}

@media only screen and (min-width: 769px) {
  .p-gnav {
    width: 856px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1300px) {
  .p-gnav {
    width: 720px;
  }
}

@media only screen and (min-width: 769px) {
  .p-gnavInner {
    display: flex;
    justify-content: space-between;
  }
  .p-gnavLink {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-gnavLink .jp {
    font-size: 1.5rem;
  }
  .p-gnavLink .en {
    font-size: 1rem;
  }
}

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

.p-hamburger {
  display: flex;
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  flex-flow: column;
  justify-content: space-between;
  width: 50px;
  height: 50px;
  padding: 17px 15px;
  background-color: #43B3E2;
  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-pagetop {
  visibility: hidden;
  z-index: 9999;
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 0;
}

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

.p-pagetop.is-display {
  visibility: visible;
  opacity: 1;
}

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

.p-inner {
  display: block;
  max-width: 1022px;
  margin-right: auto;
  margin-left: auto;
}

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

@media only screen and (min-width: 769px) {
  .p-footer-gnavInner {
    display: flex;
    justify-content: space-between;
    max-width: 676px;
    margin-top: 2.5em;
    margin-right: auto;
    margin-bottom: 3.3em;
    margin-left: auto;
  }
}

@media only screen and (min-width: 769px) and (max-width: 676px) {
  .p-footer-gnavInner {
    margin-right: 0px;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .p-footer-gnavInner {
    margin-top: 2.5em;
    margin-bottom: 0em;
  }
}

.p-copy {
  font-size: 1.3rem;
  text-align: center;
}

.top-mv {
  display: flex;
  z-index: 5;
  position: relative;
  align-items: center;
  justify-content: space-between;
  max-width: 1303px;
  margin-right: auto;
  margin-left: auto;
  background: url(../images/top/mv_starR.svg) no-repeat 100% 0%/25%, url(../images/top/mv_starL.svg) no-repeat 0% 100%/25%;
}

@media screen and (max-width: 1333px) {
  .top-mv {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.top-visual {
  order: 2;
  margin-right: 8em;
}

.top-read {
  margin-left: 8em;
}

@media only screen and (max-width: 768px) {
  .top-mv {
    background: url(../images/top/mv_starR.svg) no-repeat 100% 0%/25%, url(../images/top/mv_starL.svg) no-repeat 0% 100%/25%;
  }
  .top-visual {
    margin-right: 0em;
  }
  .top-read {
    margin-left: 0em;
  }
}

.top-news {
  z-index: 1;
  position: relative;
  margin-top: -14em;
  margin-bottom: 5em;
  padding: 6em 0 10em;
  background-color: #ECFBFD;
  background-image: url(../images/common/bg.png);
  color: #fff;
}

.top-news:before, .top-news:after {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  pointer-events: none;
}

.top-news:before {
  background-image: url(../images/common/mask_top.svg);
  background-position: left top;
}

.top-news:after {
  background-image: url(../images/common/mask_wave_foot.svg);
  background-position: left bottom -1px;
}

.top-teburaCont{
  margin-top: 14em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 3em;
  background-image: linear-gradient(90deg, #75b5ea, skyblue);
  color: #fff;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 4em;
  position: relative;
  z-index: -2;
}

.top-teburaCont:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg.png);
  z-index: -1;
  background-size: cover;
  content: "";
  pointer-events: none;
}

.top-teburaCont .thumb {
  padding-top: 1em;
}

.top-teburaCont .txt {
  margin-right: 3em;
}

.top-teburaCont .txt p {
  margin-bottom: 1em;
  font-size: 1.25em;
}

.top-teburaCont .btn a{
  background-color: #fff;
  border-radius: 10em;
  padding: 0.5em 2em;
  text-align: center;
}

.top-teburaCont a:hover {
  background-position: 50% 0%;
  background-size: 100% auto;
}

@media only screen and (max-width: 1023px) {
  .top-teburaCont{
      flex-direction: column;
      padding: 1.5em;
      margin-bottom: 2vh;
  }
  .top-teburaCont .thumb {
    width: 50%;
  }
  .top-teburaCont .txt {
    margin-right:0;
  }
}

@media only screen and (max-width: 768px) {
  .top-teburaCont{
      flex-direction: column;
      margin-top: 2em;
      padding: 1.5em 1.5em 0 1.5em;
      border-radius: 2em;
  }
}


.top-newsCont {
  display: flex;
  align-items: center;
  min-height: 398px;
  padding: 2em 3.65em;
  background: url(../images/top/bg_news.svg) no-repeat left top/100% 100%;
}

.top-newsTit {
  width: 24.46184%;
  margin-right: 3.65em;
  text-align: center;
}

.top-newsList {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 250px);
  margin-top: 1em;
  margin-bottom: auto;
}

.top-newsHead {
  width: 8em;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #F0F8FF;
}

.top-newsHead time {
  color: #87CEEB;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

.top-newsBody {
  width: calc(100% - 8em);
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #F0F8FF;
}

.top-newsBody a {
  display: block;
  color: #313131;
}

.top-newsBody a:hover {
  opacity: .8;
}

.top-newsBody a small.category {
  margin-right: 0.75em;
  padding: 0.25em;
  border: 1px solid #43B3E2;
  border-radius: 1em;
  color: #43B3E2;
  font-size: 70%;
}

@media screen and (max-width: 960px) {
  .top-newsCont {
    min-height: auto;
    border-radius: 5em;
    background: #fff;
    background-image: none;
  }
}

@media only screen and (max-width: 768px) {
  .top-news {
    margin-top: -6em;
    margin-bottom: 4em;
    padding: 6em 0 5em;
  }
  .top-news:before, .top-news:after {
    width: 100%;
    height: 100%;
  }
  .top-newsCont {
    flex-direction: column;
    margin-top: 2em;
    padding: 1.5em;
    border-radius: 2em;
  }
  .top-newsTit {
    width: auto;
    margin-right: 0em;
    margin-bottom: 1.5em;
  }
  .top-newsList {
    width: 100%;
  }
  .top-newsHead {
    width: 8em;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #F0F8FF;
  }
  .top-newsHead time {
    color: #87CEEB;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
  }
  .top-newsBody {
    width: calc(100% - 8em);
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #F0F8FF;
  }
  .top-newsBody a {
    color: #313131;
  }
}

.top-greeting .thumb {
  position: relative;
  margin-top: 3em;
  text-align: center;
}

.top-greeting .thumb .deco {
  position: absolute;
  right: 1em;
  bottom: -3em;
  width: 15.26419%;
}

.top-info .p-inner {
  display: flex;
  justify-content: space-between;
}

.top-info_item {
  padding: 2.5em 2em;
  background-repeat: no-repeat;
  background-size: 100% auto;
  text-align: center;
}

.top-info_item .tit {
  margin-bottom: 0.75em;
  color: #4682B4;
  font-size: 2rem;
  font-weight: 600;
}

.top-info_guide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 37.182%;
  background-image: url(../images/top/bg_guide.svg);
}

.top-info_guide .c-btn {
  justify-content: center;
}

.top-info_disclosure {
  width: 57.4364%;
  background-image: url(../images/top/bg_disclosure.svg);
}

@media screen and (max-width: 960px) {
  .top-info_item {
    border-radius: 3em;
    background: #F0F8FF;
  }
  .top-info_guide {
    background-image: none;
  }
  .top-info_disclosure {
    background-image: none;
  }
}

@media only screen and (max-width: 768px) {
  .top-info .p-inner {
    flex-direction: column;
  }
  .top-info_item {
    padding: 2.5em 1em;
  }
  .top-info_item .tit {
    font-size: 4vw;
  }
  .top-info_guide, .top-info_disclosure {
    width: 100%;
    margin-bottom: 1.5em;
  }
  .top-info_guide a, .top-info_disclosure a {
    font-size: 3vw;
  }
}

.top-map {
  margin-top: 4em;
}

.top-map iframe {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .top-map {
    margin-top: 2em;
  }
  .top-map iframe {
    height: 25vh;
  }
}

.about-goal .goal-inner {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

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

.about-goal .goal-list {
  display: flex;
  justify-content: space-between;
  margin: 3em auto;
}

.about-goal .goal-list_item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border: 1px dashed #c9e9f6;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px #fff;
  color: #4682B4;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.about-goal .goal-list_item .num {
  color: #43B3E2;
  font-family: "Roboto", sans-serif;
  font-size: 2.6rem;
}

.about-goal .goal-list_item:not(:last-child) .num {
  margin-top: -.75em;
  margin-bottom: .25em;
}

@media only screen and (max-width: 768px) {
  .about-goal .goal-list {
    flex-wrap: wrap;
    justify-content: center;
    margin: 3em auto;
  }
  .about-goal .goal-list_item {
    width: 38vw;
    height: 38vw;
    margin-left: 10vw;
    font-size: 4vw;
  }
  .about-goal .goal-list_item .num {
    font-size: 5vw;
  }
  .about-goal .goal-list_item:nth-child(odd) {
    margin-left: 0;
  }
}

.about-story {
  display: flex;
  align-items: center;
  margin: 3em auto 0em;
}

@media only screen and (min-width: 769px) {
  .about-story {
    padding: 1.5em 2em 1.75em 5em;
    background: url(../images/about/bg_story.svg) no-repeat left top;
    background-size: contain auto;
  }
}

@media only screen and (max-width: 768px) {
  .about-story {
    padding: 2em;
    border-radius: 2em;
    background: #fff;
  }
}

.about-story .story-tit {
  margin-right: 2.5em;
  color: #4682B4;
  font-size: 2rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .about-story .story-tit {
    font-size: 4vw;
  }
}

.about-business .p-inner {
  display: flex;
  justify-content: space-between;
}

.about-business .business {
  display: flex;
  flex-direction: column;
  width: calc(100% - 380px);
  padding-right: 4em;
}

.about-business .thumb {
  width: 37.182%;
}

@media only screen and (max-width: 768px) {
  .about-business {
    margin: 3.875em auto 0;
  }
  .about-business .p-inner {
    flex-direction: column;
  }
  .about-business .business {
    width: 100%;
    margin-bottom: 1em;
    padding-right: 0em;
  }
  .about-business .thumb {
    width: 100%;
  }
}

.about-perry {
  z-index: 5;
  position: relative;
  margin: 7.875em auto;
}

.about-perry .p-inner {
  padding: 4.375em 5em;
  background: #F0F8FF;
}

.about-perry .tit {
  margin-bottom: 1.25em;
  color: #4682B4;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

.about-perry .perry-balloon {
  margin-bottom: 1.25em;
  text-align: center;
}

.about-perry .perry-balloon span {
  display: inline-block;
  position: relative;
  padding: .5em 1em;
  border-radius: 5em;
  background: #fff;
  color: #4682B4;
  font-size: 1.8rem;
  font-weight: 700;
}

.about-perry .perry-balloon span:after {
  -webkit-transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 14px;
  height: calc(tan(60deg) * 14px / 2);
  transform: translateX(-50%);
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

.about-perry .perry-cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-perry .perry-cont .perry-box {
  display: flex;
  justify-content: space-between;
  margin: 1.5em auto;
}

.about-perry .perry-cont .perry-box .thumb {
  width: 290px;
}

.about-perry .perry-cont .perry-box p {
  width: calc(100% - 290px - 54px);
}

.about-perry .perry-cont .perry-box:nth-child(2n) .thumb {
  order: 2;
}

@media only screen and (max-width: 768px) {
  .about-perry {
    margin: 3.875em auto;
  }
  .about-perry .p-inner {
    padding: 2em 1em;
  }
  .about-perry .tit {
    font-size: 5vw;
  }
  .about-perry .perry-balloon span {
    font-size: 3.5vw;
  }
  .about-perry .perry-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .about-perry .perry-cont .perry-box {
    flex-direction: column;
  }
  .about-perry .perry-cont .perry-box .thumb {
    margin: 0 auto .5em;
  }
  .about-perry .perry-cont .perry-box p {
    width: 100%;
  }
  .about-perry .perry-cont .perry-box:nth-child(2n) .thumb {
    order: 1;
  }
  .about-perry .perry-cont .perry-box:nth-child(2n) p {
    order: 2;
  }
}

.about-active {
  margin-top: -20em;
  padding-top: 20em;
  background: url(../images/about/bg_start_top.svg) no-repeat 100% 0em, url(../images/about/bg_star_bottom.svg) no-repeat 0% 90%;
}

.about-active .active-box {
  display: flex;
  justify-content: space-between;
  margin: 5em auto;
}

.about-active .active-box .thumb {
  width: 45%;
}

.about-active .active-box .cont {
  width: 50%;
}

.about-active .active-box .cont .tit {
  margin-bottom: 1em;
  color: #4682B4;
  font-size: 2.4rem;
  font-weight: 700;
}

.about-active .active-box .cont .tit .hashtag {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.about-active .active-box:nth-child(2n) .thumb {
  order: 2;
}

.about-active .active-box:nth-child(2n) .cont .tit {
  color: #43B3E2;
}

.about-active .active-box:last-child {
  z-index: 5;
  position: relative;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .about-active {
    margin-top: -5em;
    padding-top: 5em;
  }
  .about-active .active-box {
    flex-direction: column;
    margin: 2.5em auto;
  }
  .about-active .active-box .thumb {
    width: 100%;
    margin-bottom: 1em;
  }
  .about-active .active-box .cont {
    width: 100%;
  }
  .about-active .active-box .cont .tit {
    margin-bottom: 0.5em;
    font-size: 4.5vw;
  }
  .about-active .active-box .cont .tit .hashtag {
    font-size: 2.5vw;
  }
  .about-active .active-box:nth-child(2n) .thumb {
    order: 1;
  }
  .about-active .active-box:nth-child(2n) .cont {
    order: 2;
  }
}

.about-facility .facility-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about-facility .facility-list_item {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 3em;
}

.about-facility .facility-list_item .thumb {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
}

.about-facility .facility-list_item .thumb img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

.about-facility .facility-list_item .tit {
  margin: 1em auto;
  color: #4682B4;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.about-facility .facility-list_item .txt {
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .about-facility .facility-list_item .txt {
    font-size: 3.25vw;
  }
}

.about-facility .facility-list_item:nth-child(3), .about-facility .facility-list_item:nth-child(5) {
  margin-right: 0;
}

.about-facility .facility-list_item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

@media screen and (max-width: 968px) {
  .about-facility .facility-list_item .thumb {
    width: 250px;
    height: 250px;
  }
}

@media only screen and (max-width: 768px) {
  .about-facility .facility-list_item {
    width: 40%;
    margin-right: 10vw;
    margin-bottom: 3em;
  }
  .about-facility .facility-list_item .thumb {
    width: 100%;
    height: 38vw;
  }
  .about-facility .facility-list_item .tit {
    font-size: 4vw;
  }
  .about-facility .facility-list_item:nth-child(3) {
    margin-right: 10vw;
  }
  .about-facility .facility-list_item:nth-last-child(-n + 2) {
    margin-bottom: 3em;
  }
  .about-facility .facility-list_item:nth-child(2n) {
    margin-right: 0;
  }
  .about-facility .facility-list_item:nth-child(5) {
    margin-right: 0;
    margin-bottom: 0;
  }
}

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

.about-safty .safty-list_item {
  width: 20.35225%;
}

.about-safty .safty-list_item .thumb {
  margin-bottom: 1em;
}

.about-safty .safty-list_item .txt {
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .about-safty .safty-list_item .txt {
    font-size: 3.25vw;
  }
}

.about-safty .safty-list_item:last-child {
  position: relative;
  width: 23.87476%;
}

.about-safty .safty-list_item:last-child:before {
  z-index: 1;
  position: absolute;
  top: -3em;
  right: 0;
  width: 54.09836%;
  height: 132px;
  background: url(../images/about/img_safty05.png) no-repeat;
  background-size: contain;
  content: "";
}

.about-safty .safty-list_item:last-child .txt {
  width: 84.83607%;
}

@media only screen and (max-width: 768px) {
  .about-safty .safty-list {
    flex-wrap: wrap;
  }
  .about-safty .safty-list_item {
    width: 48%;
    margin-bottom: 2em;
  }
  .about-safty .safty-list_item .thumb {
    margin-bottom: 1em;
  }
  .about-safty .safty-list_item .thumb img {
    width: 100%;
  }
  .about-safty .safty-list_item:last-child {
    width: 48%;
  }
  .about-safty .safty-list_item:last-child:before {
    top: -1em;
    right: 0;
    background-position: top right;
  }
  .about-safty .safty-list_item:last-child .txt {
    width: 100%;
  }
}

.information-cont .read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5em;
}

.information-cont .read .txt-area {
  width: 40%;
}

.information-cont .read .txt-area .sub-read {
  margin-bottom: 1.4em;
  color: #4682B4;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.information-cont .read .thumb {
  width: 55.08806%;
}

@media only screen and (max-width: 768px) {
  .information-cont .read {
    flex-direction: column;
  }
  .information-cont .read .txt-area {
    width: 100%;
  }
  .information-cont .read .txt-area .sub-read {
    margin-bottom: 1.4em;
    font-size: 4vw;
  }
  .information-cont .read .thumb {
    width: auto;
    margin-top: 1em;
    margin-left: auto;
  }
}

.information-cont .guide {
  margin-bottom: 3em;
}

.information-cont .guide > p {
  margin: 1em auto;
}

@media only screen and (min-width: 769px) {
  .information-cont .guide {
    height: 508px;
    padding: 2.75em 3.875em;
    background: url(../images/information/bg_01.svg) no-repeat top left;
    background-size: contain auto;
  }
}

@media screen and (max-width: 940px) {
  .information-cont .guide {
    height: auto;
    padding: 5vw 5vw;
    border-radius: 3em;
    background: #fff;
  }
}

.information-cont .flow p {
  margin: 1em auto;
}

.information-cont .flow .c-notes-list {
  margin: 1em auto;
}

@media only screen and (min-width: 769px) {
  .information-cont .flow {
    height: 594px;
    padding: 3em 3.875em;
    background: url(../images/information/bg_02.svg) no-repeat top left;
    background-size: contain auto;
  }
}

@media screen and (max-width: 940px) {
  .information-cont .flow {
    height: auto;
    padding: 5vw 5vw;
    border-radius: 3em;
    background: #fff;
  }
}

.information-price .price-cont {
  margin-bottom: 2.5em;
  padding: 3.125em 7em;
  background: #F0F8FF;
}

.information-price .price-cont:last-child {
  margin-bottom: 0;
}

.information-price .price-cont .sub {
  margin-bottom: 1em;
  text-align: center;
}

.information-price .price-cont .sub span {
  display: inline-block;
  padding: 0.25em 1.5em;
  border-radius: 3em;
  background: #fff;
  font-weight: 500;
}

.information-price .price-cont .dot-tit {
  display: flex;
  align-items: center;
  margin-bottom: .5em;
  font-size: 1.8rem;
  font-weight: 500;
}

.information-price .price-cont .dot-tit:before {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: .75em;
  border-radius: 50%;
  background: #87CEEB;
  content: "";
}

.information-price .price-cont div {
  margin: 3em auto;
}

.information-price .price-cont div:last-child {
  margin-bottom: 0;
}

.information-price .price-cont .c-dl {
  margin: 1.25em auto;
}

@media only screen and (max-width: 768px) {
  .information-price .price-cont {
    padding: 3.125em 5vw;
  }
  .information-price .price-cont .dot-tit {
    font-size: 4vw;
  }
}

.event-schedule .schedule_item {
  display: flex;
  justify-content: center;
  margin-bottom: 5em;
}

.event-schedule .schedule_item:nth-child(2n) {
  margin-bottom: 0;
}

.event-schedule .schedule_item:nth-child(2n) .thumb {
  order: 2;
  margin-right: 0;
  margin-left: 3em;
}

.event-schedule .schedule-list_item {
  display: flex;
  margin-bottom: 1em;
}

.event-schedule .schedule-list_item:last-child {
  margin-bottom: 0;
}

.event-schedule .schedule-list_item .thumb {
  margin-right: 3em;
}

.event-schedule .schedule-list_item .month {
  width: 4em;
  margin-right: 1.5em;
  color: #43B3E2;
  font-weight: 700;
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .event-schedule .schedule_item {
    flex-direction: column;
    margin-bottom: 0;
  }
  .event-schedule .schedule_item .thumb {
    margin-bottom: 1em;
    text-align: center;
  }
  .event-schedule .schedule_item:nth-child(2n) .thumb {
    order: 1;
    margin-right: 0;
    margin-left: 0em;
  }
  .event-schedule .schedule_item:nth-child(2n) .schedule-list {
    order: 2;
  }
}

.event-schedule .season {
  margin: 3em auto 0em;
  padding: 3.75em 5vw 3.25em;
  background: #fff;
}

.event-schedule .season .c-dot-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
}

.event-schedule .season .c-dot-list_item {
  margin-right: 3.5em;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .event-schedule .season {
    padding: 5vw 5vw 0;
  }
  .event-schedule .season .c-dot-list {
    line-height: 1.6;
  }
  .event-schedule .season .c-dot-list_item {
    margin-bottom: 1.5em;
    font-size: 3.8vw;
  }
}

.event-day {
  z-index: 1;
  position: relative;
  margin-bottom: -6em;
  padding: 0 0em 6em;
  background: url(../images/event/bg_star.svg) no-repeat 100% -5em;
}

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

.event-day .day-cont {
  width: 48%;
  overflow: hidden;
  border-width: 4px;
  border-style: solid;
  border-radius: 2em;
  font-weight: 700;
}

.event-day .day-cont .tit {
  padding: 0.25em;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.event-day .day-cont .day-list {
  padding: 1.5em;
}

.event-day .day-cont .day-list_item {
  display: flex;
  margin-bottom: 1.5em;
  font-size: 1.8rem;
  line-height: 1.6;
}

@media only screen and (max-width: 768px) {
  .event-day .day-cont .day-list_item {
    font-size: 3.5vw;
  }
}

.event-day .day-cont .day-list_item.x2 {
  margin-bottom: 3em;
}

.event-day .day-cont .day-list_item.x3 {
  margin-bottom: 4em;
}

.event-day .day-cont .day-list_item.x4 {
  margin-bottom: 5em;
}

.event-day .day-cont .day-list_item.x5 {
  margin-bottom: 6em;
}

.event-day .day-cont .day-list_item:before {
  margin-right: 1em;
  content: "●";
}

.event-day .day-cont .day-list_item .time {
  width: 5em;
  margin-right: 1.5em;
}

.event-day .day-cont:nth-child(1) {
  border-color: #A6DEF1;
  background: #fff url(../images/event/img_day01.png) no-repeat top 48% right 2em/165px;
  color: #43B3E2;
}

.event-day .day-cont:nth-child(1) .tit {
  background: #A6DEF1;
}

.event-day .day-cont:nth-child(2) {
  border-color: #4682B4;
  background: url(../images/event/img_day02.png) no-repeat top 10% right 1em/165px, url(../images/event/img_day03.png) no-repeat top 90% right 1.5em/165px;
  background-color: #fff;
  color: #4682B4;
}

.event-day .day-cont:nth-child(2) .tit {
  background: #4682B4;
}

@media screen and (max-width: 960px) {
  .event-day .day-area {
    flex-direction: column;
  }
  .event-day .day-cont {
    width: 100%;
    margin-bottom: 2em;
  }
  .event-day .day-cont:nth-child(1) {
    background-position: top 55% right 1em;
    background-size: 35%;
  }
  .event-day .day-cont:nth-child(2) {
    background-position: top 12% right .5em , top 90% right 1.5em;
    background-size: 35% , 35%;
  }
}

@media only screen and (max-width: 768px) {
  .event-day .day-cont:nth-child(2) {
    background-position: top 10% right .5em , top 90% right 1.5em;
  }
}

@media only screen and (max-width: 768px) {
  .event-day {
    padding-bottom: 3em;
  }
}

.event-lunch.c-wave {
  margin-bottom: 0;
}

.event-lunch .lunch-sub {
  margin-bottom: 2.2em;
  font-size: 1.8rem;
  text-align: center;
}

.event-lunch .lunch-sub span {
  display: inline-block;
  padding: 0.25em 4em;
  border-radius: 5em;
  background: #fff;
  font-weight: 500;
}

.event-lunch .lunch-cont {
  margin-bottom: 5em;
}

.event-lunch .lunch_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.75em;
}

.event-lunch .lunch_item .thumb {
  width: 45.00978%;
}

.event-lunch .lunch_item .txt {
  width: 50.88063%;
}

.event-lunch .lunch_item .txt .c-btn {
  margin-top: 2em;
}

.event-lunch .lunch_item:nth-child(2n) .txt {
  order: 2;
}

.event-lunch .lunch_item:last-child {
  margin-bottom: 0;
}

.event-lunch .lunch-area {
  padding: 5em 5vw;
  background: #fff;
}

.event-lunch .lunch-area p {
  margin-bottom: calc(40em / 16);
}

@media only screen and (max-width: 768px) {
  .event-lunch .lunch-sub {
    font-size: 3.5vw;
  }
  .event-lunch .lunch-sub span {
    padding: 0.25em 2.5em;
  }
  .event-lunch .lunch_item {
    flex-direction: column;
  }
  .event-lunch .lunch_item .thumb {
    order: 1;
    width: 100%;
    margin-bottom: 1em;
    text-align: center;
  }
  .event-lunch .lunch_item .txt {
    order: 2;
    width: 100%;
  }
  .event-lunch .lunch_item:nth-child(2n) .thumb {
    order: 1;
  }
  .event-lunch .lunch_item:nth-child(2n) .txt {
    order: 2;
  }
  .event-lunch .lunch-area {
    padding: 5vw 3vw;
  }
  .event-lunch .lunch-area .c-head2 {
    font-size: 3vw;
    line-height: 1.6;
  }
}

.event-commitment {
  margin-top: 5em;
  padding-top: 5em;
  overflow: hidden;
  background: url(../images/event/bg_circle.svg) no-repeat center top;
}

.event-commitment .p-inner {
  position: relative;
  padding-bottom: 10em;
}

.event-commitment .sub {
  margin-bottom: 1.4em;
  color: #4682B4;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.event-commitment .txt {
  width: 49.31507%;
  margin: 0 auto;
}

.event-commitment .c-head1 span {
  position: relative;
}

.event-commitment .c-head1 span:after {
  position: absolute;
  top: calc(-137px / 2 / 2);
  right: -94px;
  width: 94px;
  height: 137px;
  background: url(../images/event/img_koneR01.png) no-repeat center;
  background-size: contain;
  content: "";
}

.event-commitment .commitment-balloon {
  margin-bottom: 0.75em;
  text-align: center;
}

.event-commitment .commitment-balloon span {
  display: inline-block;
  position: relative;
  padding: .5em 2.5em;
  border-radius: 5em;
  background: #F8EE85;
  font-size: 1.8rem;
  font-weight: 700;
}

.event-commitment .commitment-balloon span:after {
  -webkit-transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 14px;
  height: calc(tan(60deg) * 14px / 2);
  transform: translateX(-50%);
  background: #F8EE85;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

.event-commitment .commitment-deco {
  position: absolute;
}

.event-commitment .commitment-deco01 {
  top: 30%;
  left: -2em;
}

.event-commitment .commitment-deco02 {
  bottom: 6em;
  left: 0;
}

.event-commitment .commitment-deco04 {
  top: 40%;
  right: 0;
}

.event-commitment .commitment-deco05 {
  right: -3em;
  bottom: 1em;
}

@media screen and (max-width: 960px) {
  .event-commitment .commitment-deco01 {
    left: -5.5em;
  }
  .event-commitment .commitment-deco05 {
    right: -5em;
  }
}

@media only screen and (max-width: 768px) {
  .event-commitment {
    margin-top: 1.5em;
    padding-top: 1.5em;
    background-position: center;
    background-size: contain;
  }
  .event-commitment .p-inner {
    padding: 0em 0 10em;
  }
  .event-commitment .sub {
    margin-bottom: .75em;
    font-size: 3.5vw;
  }
  .event-commitment .txt {
    width: 100%;
  }
  .event-commitment .c-head1 {
    margin-bottom: 1.5em;
  }
  .event-commitment .c-head1 span {
    font-size: 5vw;
  }
  .event-commitment .c-head1 span:after {
    right: calc(-94px / 1.5);
    width: calc(94px / 1.5);
    height: calc(137px / 1.25);
  }
  .event-commitment .commitment-balloon {
    margin-top: 0;
    margin-bottom: 0.75em;
    text-align: center;
  }
  .event-commitment .commitment-balloon span {
    padding: .25em 2.5em .25em;
    font-size: 3.5vw;
  }
  .event-commitment .commitment-deco01 {
    top: unset;
    bottom: 2em;
    left: -1em;
    width: 25.63601%;
  }
  .event-commitment .commitment-deco02 {
    bottom: 0em;
    left: 25.63601%;
    width: 17.02544%;
  }
  .event-commitment .commitment-deco04 {
    top: unset;
    right: 25.63601%;
    bottom: 2.5em;
    width: 17.02544%;
  }
  .event-commitment .commitment-deco05 {
    right: -1.5em;
    bottom: 1em;
    width: 25.63601%;
  }
}

.feature-school .txt-area .school-tit {
  margin-bottom: 1em;
  line-height: 1.3;
}

.feature-school .txt-area .school-tit span {
  display: block;
}

.feature-school .txt-area .school-tit .number {
  color: #87CEEB;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

.feature-school .txt-area .school-tit .jp {
  color: #4682B4;
  font-weight: 700;
}

@media only screen and (min-width: 769px) {
  .feature-school .txt-area .school-tit {
    font-size: 3.2rem;
  }
  .feature-school .txt-area .school-tit .number {
    font-size: 2.6rem;
  }
  .feature-school .txt-area .school-tit.small {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .feature-school .txt-area .school-tit {
    font-size: 5.5vw;
  }
  .feature-school .txt-area .school-tit .number {
    font-size: 4.5vw;
  }
  .feature-school .txt-area .school-tit.small {
    font-size: 4.5vw;
  }
}

.feature-school .school_soccer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6.8em;
}

.feature-school .school_soccer .txt-area {
  width: 50.88063%;
}

.feature-school .school_soccer .txt-area .sub {
  margin-bottom: 1em;
  color: #4682B4;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.feature-school .school_soccer .thumb {
  width: 45.00978%;
  text-align: center;
}

.feature-school .school-else {
  display: flex;
  justify-content: space-between;
}

.feature-school .school-else .school_item {
  display: flex;
  flex-direction: column;
  width: 20.35225%;
}

.feature-school .school-else .school_item .thumb {
  text-align: center;
}

.feature-school .school-else .school_item .txt-area {
  margin-top: -1.25em;
}

.feature-school .school-else .school_item .txt-area .school-tit {
  text-align: center;
}

.feature-school .school-else .school_item .txt-area .txt {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media only screen and (max-width: 768px) {
  .feature-school .school-else .school_item .txt-area .txt {
    font-size: 3.25vw;
  }
}

@media only screen and (max-width: 768px) {
  .feature-school .school_soccer {
    flex-direction: column;
    margin-bottom: 3em;
  }
  .feature-school .school_soccer .txt-area {
    width: 100%;
    margin-bottom: 1em;
  }
  .feature-school .school_soccer .txt-area .sub {
    font-size: 3.8vw;
  }
  .feature-school .school_soccer .txt-area .txt {
    font-size: 3.5vw;
  }
  .feature-school .school_soccer .thumb {
    width: 100%;
  }
  .feature-school .school-else {
    flex-wrap: wrap;
  }
  .feature-school .school-else .school_item {
    width: 48%;
    margin-bottom: 2em;
  }
  .feature-school .school-else .school_item .txt-area {
    margin-top: -1em;
  }
  .feature-school .school-else .school_item:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

.feature-chimney .txt {
  margin-top: 1em;
}

@media only screen and (max-width: 768px) {
  .feature-chimney .c-head2 {
    font-size: 4.3vw;
  }
  .feature-chimney .txt {
    font-size: 3.4vw;
  }
}

.recruit-gist .gist-list {
  margin-top: 4em;
}

.recruit-gist .gist-list_item {
  margin-bottom: 2.7em;
  overflow: hidden;
  border-radius: 2.6em;
  background: #fff;
}

.recruit-gist .gist-list_item .gist-tit {
  padding: .5em 0;
  background-color: #87CEEB;
  background-image: url(../images/common/bg.png);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .recruit-gist .gist-list_item .gist-tit {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .recruit-gist .gist-list_item .gist-tit {
    font-size: 4vw;
  }
}

.recruit-gist .gist-list_item .c-dl {
  max-width: 801px;
  margin-top: 2.7em;
  margin-right: auto;
  margin-bottom: 2.7em;
  margin-left: auto;
}

@media screen and (max-width: 831px) {
  .recruit-gist .gist-list_item .c-dl {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.recruit-gist .gist-list_item:nth-child(2n) .gist-tit {
  background-color: #4682B4;
}

.recruit-gist .gist-list_item:last-child {
  margin-bottom: 0;
}

.recruit-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 587px;
  margin-right: auto;
  margin-bottom: 5em;
  margin-left: auto;
  padding: 2em;
  background: url(../images/recruit/bg_insta.svg) no-repeat center;
  background-size: contain 100%;
  font-size: 1.8rem;
}

@media screen and (max-width: 617px) {
  .recruit-instagram {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.recruit-instagram .txt-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 2.83em;
  color: #4682B4;
  font-weight: 500;
}

.recruit-instagram .txt-area .name {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit-instagram:hover {
  opacity: .8;
}

@media only screen and (max-width: 768px) {
  .recruit-instagram {
    flex-direction: column;
    margin-bottom: 3em;
    border-radius: 2em;
    outline: 2px dashed #43B3E2;
    outline-offset: -.75em;
    background-color: #F0F8FF;
    background-image: none;
    font-size: 4vw;
  }
  .recruit-instagram .txt-area {
    margin: 0 0 1em 0;
  }
}


.tebura-service {
  margin-top: 3em;
  padding-top: 3em;
  overflow: hidden;
  background: url(../images/tebura/bg_circle.svg) no-repeat center top;
}

.tebura-service .p-inner {
  position: relative;
  padding-bottom: 10em;
}

.tebura-service .sub {
  margin-bottom: 1.4em;
  color: #4682B4;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.tebura-service .txt {
  width: 65%;
  margin: 0 auto;
  padding: 0 0 2em 0;
  text-align: center;
}

.tebura-service .c-head1 span {
  position: relative;
}


.tebura-service .service-balloon {
  margin-bottom: 0.75em;
  text-align: center;
}

.tebura-service .service-balloon .action{
  color: #FF0000;
  padding: 0;
}

.tebura-service .thumb {
  text-align: center;
}

.tebura-service .service-balloon span {
  display: inline-block;
  position: relative;
  padding: .5em 2.5em;
  border-radius: 5em;
  background: #F8EE85;
  font-size: 1.8rem;
  font-weight: 700;
}

.tebura-service .service-balloon span:after {
  -webkit-transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 14px;
  height: calc(tan(60deg) * 14px / 2);
  transform: translateX(-50%);
  background: #F8EE85;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}


@media only screen and (max-width: 768px) {
.tebura-service {
    margin-top: 1.5em;
    padding-top: 1.5em;
    background-position: center;
    background-size: contain;
  }
.tebura-service .p-inner {
    padding: 0em 0 10em;
  }
.tebura-service .sub {
    margin-bottom: .75em;
    font-size: 3.5vw;
  }
.tebura-service .txt {
    width: 100%;
  }
.tebura-service .c-head1 {
    margin-bottom: 1.5em;
  }
.tebura-service .c-head1 span {
    font-size: 5vw;
  }
.tebura-service .c-head1 span:after {
    right: calc(-94px / 1.5);
    width: calc(94px / 1.5);
    height: calc(137px / 1.25);
  }
.tebura-service .service-balloon {
    margin-top: 0;
    margin-bottom: 0.75em;
    text-align: center;
  }
.tebura-service .service-balloon span {
    padding: .25em 2.5em .25em;
    font-size: 3.5vw;
  }
}



.tebura-point .txt-area .point-tit {
  margin-bottom: 1em;
  line-height: 1.3;
}

.tebura-point .txt-area .point-tit span {
  display: block;
}

.tebura-point .txt-area .point-tit .jp {
  color: #4682B4;
  font-weight: 700;
}

@media only screen and (min-width: 769px) {
  .tebura-point .txt-area .point-tit {
    font-size: 3.2rem;
  }
  .tebura-point .txt-area .point-tit.small {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .tebura-point .txt-area .point-tit {
    font-size: 5.5vw;
  }
  .tebura-point .txt-area .point-tit.small {
    font-size: 4.5vw;
  }
}


.tebura-point .tebura-else {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3em;
}

.tebura-point .tebura-else .point_item {
  display: flex;
  flex-direction: column;
  width: 20.35225%;
}

.tebura-point .tebura-else .point_item .thumb {
  text-align: center;
}

.tebura-point .tebura-else .point_item .txt-area {
  margin-top: 1.25em;
}

.tebura-point .tebura-else .point_item .txt-area .point-tit {
  text-align: center;
}

.tebura-point .tebura-else .point_item .txt-area .txt {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media only screen and (max-width: 768px) {
  .tebura-point .tebura-else .point_item .txt-area .txt {
    font-size: 3.25vw;
  }
}

@media only screen and (max-width: 768px) {
  .tebura-point .tebura-else {
    flex-wrap: wrap;
  }
  .tebura-point .tebura-else .point_item {
    width: 48%;
    margin-bottom: 2em;
  }
  .tebura-point .tebura-else .point_item .txt-area {
    margin-top: 1em;
  }
  .tebura-point .tebura-else .point_item:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

.tebura-point .btn {
  text-align: center;
}

.tebura-voice .voice-cont {
  margin-bottom: 2.5em;
  padding: 3.125em 7em;
  background: #F0F8FF;
}

.tebura-voice .voice-cont .sub {
  margin-bottom: 1em;
  text-align: left;
}

.tebura-voice .voice-cont .sub span {
  display: inline-block;
  padding: 0.25em 1.5em;
  border-radius: 3em;
  background: #fff;
  font-weight: 400;
}

.tebura-voice .voice-cont div {
  margin: 3em auto;
  justify-content: center;
}


.tebura-voice .actual_voice{
  max-width: 650px;
  margin-bottom: .75em;
}

.tebura-voice .voice-cont .c-dl {
  margin: 1.25em auto;
}

@media only screen and (max-width: 768px) {
  .tebura-voice .voice-cont {
    padding: 3.125em 5vw;
  }
}

.tebura-voice .voice-cont ul{
  margin-bottom: 3em;
}

.tebura-voice .voice-cont li{
  text-indent: -1.2em;
}

@media only screen and (max-width: 768px) {
  .tebura-voice .voice-cont ul{
    padding: 1em;
  }
}

.tebura-voice .voice-cont li::before{
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: .75em;
  border-radius: 50%;
  background: #87CEEB;
  content: "";
}

.freo {
  margin-bottom: 3em;
}

.freo a {
  text-decoration: underline;
}

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

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

.freo #entry .entry h3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.76em;
  padding-bottom: 0.5em;
  padding-left: 2em;
  border-bottom: 2px dashed #4682B4;
  background-image: url("../images/album/icn_tit.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 1.75em;
  color: #4682B4;
  font-size: 2.6rem;
  font-weight: 600;
}

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

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

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

.freo #entry .entry .content ul li:before {
  margin-right: 0.5em;
  color: #6fc5e9;
  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 #43B3E2;
  border-bottom: 2px solid #43B3E2;
}

.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: #43B3E2;
  color: #fff;
  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 {
    padding: 2.5em 1.5em;
    border-radius: 1.5em;
  }
  .freo #entry .entry h3 {
    padding-left: 1.25em;
    background-position: left top .3em;
    background-size: 1em;
    font-size: 4.5vw;
  }
  .freo #entry .entry .content h5 {
    font-size: 4vw;
  }
  .freo #entry .entry .content table {
    width: auto !important;
  }
}

.freo #utility .utility h3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.76em;
  padding-left: 1.75em;
  background-image: url("../images/album/icn_tit.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #4682B4;
  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 #43B3E2;
  border-bottom: 1px solid #43B3E2;
}

.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: #6fc5e9;
  color: #fff;
}

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

.freo #utility .utility .calender td a {
  display: block;
  border-radius: .25em;
  background: #43B3E2;
  color: #fff;
  transition: .3s;
}

.freo #utility .utility .calender td a:hover {
  background: #64c0e7;
}

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

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

.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: ">";
}

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

.freo #utility .utility form input[type="submit"]:hover {
  background: #85ceec;
}

.freo #utility .utility form textarea, .freo #utility .utility form input[type="password"], .freo #utility .utility form input[type="text"], .freo #utility .utility form input[type="word"] {
  margin-bottom: 1em;
  border: #9d977c 1px solid;
  border: none;
  border-radius: 1em;
  background: #F0F8FF;
}

.freo #utility .utility form .search-button {
  text-align: center;
}

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

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

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

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

/* ----------------------------------------
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-link-underline {
  text-decoration: underline;
}

.u-link-underline:hover {
  text-decoration: 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-radius-small {
  border-radius: 1em;
}

.u-radius-medium {
  border-radius: 2.5em;
}

.u-radius-large {
  border-radius: 5em;
}

@media only screen and (max-width: 768px) {
  .u-radius-small {
    border-radius: .78em;
  }
  .u-radius-medium {
    border-radius: 1.75em;
  }
  .u-radius-large {
    border-radius: 3.5em;
  }
}

.u-txt-small {
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .u-txt-small {
    font-size: 3vw;
  }
}
