@charset "UTF-8";
/* ----------------------------------------
このCSSは、FLOCSSに従ってCSS設計を行っています。
| FLOCSS | github.com/hiloki/flocss
---------------------------------------- */
/* normalize.css v8.0.0
| MIT License | github.com/necolas/normalize.css
---------------------------------------- */
html {
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 1em 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

body {
  color: #555;
  font-size: 1.4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "メイリオ", sans-serif;
  letter-spacing: 0.05em;
}

@media only screen and (min-width: 769px) {
  /*パソコン*/
  body {
    font-size: 1.5rem;
  }
}

a {
  color: #28acd4;
  text-decoration: none;
  -webkit-transition: all 100ms 0s ease;
  transition: all 100ms 0s ease;
}

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

address {
  font-style: normal;
}

/* ----------------------------------------
animation keyframes
---------------------------------------- */
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  8% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  16% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  24% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  32% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  8% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  16% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  24% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  32% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ----------------------------------------
Layout
ページを構成するヘッダーやメインのコンテンツエリア、
サイドバーやフッターといったプロジェクト共通のコンテナーブロックのスタイルを定義します。
header/main/sidebar/footer...
---------------------------------------- */
.l-head {
  background: linear-gradient(-45deg, #fff17a 25%, #fff 25%, #fff 50%, #fff17a 50%, #fff17a 75%, #fff 75%) repeat-x top/7px 7px;
  overflow: hidden;
}

.l-container {
  overflow: hidden;
}

.l-foot {
  background-color: #e8f5f9;
  font-size: 1.2rem;
  color: #28acd4;
  position: relative;
}

.l-foot::before {
  display: block;
  content: '';
  width: 100%;
  height: 15px;
  background: url(/assets/svg/common/bg_gnav.svg) repeat-x center;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 1;
}

/* ----------------------------------------
Component
再利用できるパターンとして、小さな単位のモジュールを定義します。
grid/button/form/media...
---------------------------------------- */
/* ブロック
---------------------------------------- */
.c-area, .c-area--accent {
  padding-right: 4%;
  padding-left: 4%;
}

.c-area--accent {
  background-color: #ffffee;
}

.c-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.c-section {
  padding-top: 1.5em;
  padding-bottom: 6em;
}

.c-block {
  margin-top: 1em;
  margin-bottom: 1em;
}

@media only screen and (min-width: 481px) {
  .c-block {
    /*タブレット・パソコン*/
    margin-right: 1em;
    margin-left: 1em;
  }
}

.c-box--accent {
  background-color: #e8f5f9;
  padding: 1em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* ----------------------------------------
見出し
---------------------------------------- */
.c-headline, .c-headline--about, .c-headline--curriculum, .c-headline--news, .c-headline--topics, .c-headline--disclosure, .c-headline--recruit {
  width: 100%;
  min-height: 140px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.c-headline::before, .c-headline--about::before, .c-headline--curriculum::before, .c-headline--news::before, .c-headline--topics::before, .c-headline--disclosure::before, .c-headline--recruit::before {
  display: block;
  content: '';
  width: 100%;
  height: 15px;
  background: url(/assets/svg/common/bg_mv.svg) repeat-x center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .c-headline, .c-headline--about, .c-headline--curriculum, .c-headline--news, .c-headline--topics, .c-headline--disclosure, .c-headline--recruit {
    /*タブレット*/
    min-height: 170px;
  }
}

@media only screen and (min-width: 769px) {
  .c-headline, .c-headline--about, .c-headline--curriculum, .c-headline--news, .c-headline--topics, .c-headline--disclosure, .c-headline--recruit {
    /*パソコン*/
    min-height: 200px;
  }
}

.c-headline--about {
  background: url(/assets/img/about/bg_headline.jpg) no-repeat center/cover;
}

.c-headline--curriculum {
  background: url(/assets/img/curriculum/bg_headline.jpg) no-repeat center/cover;
}

.c-headline--news {
  background: url(/assets/img/news/bg_headline.jpg) no-repeat center/cover;
}

.c-headline--topics {
  background: url(/assets/img/topics/bg_headline.jpg) no-repeat center/cover;
}

.c-headline--disclosure {
  background: url(/assets/img/disclosure/bg_headline.jpg) no-repeat center/cover;
}

.c-headline--recruit {
  background: url(/assets/img/recruit/bg_headline.jpg) no-repeat center/cover;
}

.c-headline svg, .c-headline--about svg, .c-headline--curriculum svg, .c-headline--news svg, .c-headline--topics svg, .c-headline--disclosure svg, .c-headline--recruit svg {
  height: 40px;
  fill: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .c-headline svg, .c-headline--about svg, .c-headline--curriculum svg, .c-headline--news svg, .c-headline--topics svg, .c-headline--disclosure svg, .c-headline--recruit svg {
    /*タブレット*/
    height: 50px;
  }
}

@media only screen and (min-width: 769px) {
  .c-headline svg, .c-headline--about svg, .c-headline--curriculum svg, .c-headline--news svg, .c-headline--topics svg, .c-headline--disclosure svg, .c-headline--recruit svg {
    /*パソコン*/
    height: 60px;
  }
}

.c-title {
  height: 101px;
  background: url(/assets/img/top/bg_title@2x.png) no-repeat center/571px auto;
  text-align: center;
  position: relative;
}

.c-title img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media only screen and (max-width: 480px) {
  .c-title img {
    /*スマホ*/
    width: auto;
    height: 60px;
  }
}

.c-subtitle {
  background: url(/assets/img/common/icon_subtitle@2x.png) no-repeat center left 0.7em/48px auto #e8f5f9;
  border-radius: 10px 10px 0 0;
  padding: 12px 15px 12px 80px;
  color: #28acd4;
  font-size: 1.4em;
}

.c-lead {
  display: inline-block;
  background-color: #ffffcc;
  color: #28acd4;
  padding: 0.8em 1em 0.6em 1.2em;
  margin-right: 0.2em;
  position: relative;
}

.c-lead::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  border: solid 1px #28acd4;
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}

.c-em {
  color: #28acd4;
  font-weight: bold;
  font-size: 1.1em;
}

/* ----------------------------------------
グリッド
---------------------------------------- */
.c-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 480px) {
  .c-grid--sp {
    /*スマホ*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 768px) {
  .c-grid--sptb {
    /*スマホ・タブレット*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .c-grid--tb {
    /*タブレット*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 481px) {
  .c-grid--tbpc {
    /*タブレット・パソコン*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 769px) {
  .c-grid--pc {
    /*パソコン*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

/* ----------------------------------------
カラム
---------------------------------------- */
.c-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-column__item, .c-column__item--col2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

@media only screen and (min-width: 481px) {
  .c-column__item--col2 {
    /*タブレット・パソコン*/
    width: 48%;
  }
}

@media only screen and (min-width: 769px) {
  .c-media {
    /*パソコン*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 768px) {
  .c-media__item {
    /*スマホ・タブレット*/
    text-align: center;
  }
}

@media only screen and (min-width: 769px) {
  .c-media__item {
    /*パソコン*/
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .c-media__description {
    /*スマホ・タブレット*/
    margin-top: 1.5em;
  }
}

@media only screen and (min-width: 769px) {
  .c-media__description {
    /*パソコン*/
    width: 47%;
  }
}

/* ----------------------------------------
テーブル
---------------------------------------- */
.c-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.c-table th,
.c-table td {
  padding: 15px 1em;
  border: solid 1px #28acd4;
}

.c-table th {
  color: #28acd4;
  background-color: #f5fafb;
}

.c-table td {
  background-color: rgba(255, 255, 255, 0.8);
}

/* ----------------------------------------
定義リスト
---------------------------------------- */
@media only screen and (min-width: 481px) {
  .c-definition {
    /*タブレット・パソコン*/
    overflow: hidden;
  }
}

.c-definition dt {
  color: #28acd4;
  font-weight: bold;
}

@media only screen and (min-width: 481px) {
  .c-definition dt {
    /*タブレット・パソコン*/
    padding-bottom: 0.7em;
    margin-bottom: 0.7em;
    float: left;
    clear: left;
  }
}

.c-definition dd {
  border-bottom: solid #28acd4 1px;
  padding-bottom: 0.7em;
  margin-bottom: 0.7em;
  margin-left: 0;
}

@media only screen and (min-width: 481px) {
  .c-definition dd {
    /*タブレット・パソコン*/
    padding-left: 12em;
  }
}

/* ----------------------------------------
順番リスト
---------------------------------------- */
.c-order {
  padding-left: 0;
}

.c-order__list, .c-order__list:nth-child(1), .c-order__list:nth-child(2), .c-order__list:nth-child(3), .c-order__list:nth-child(4) {
  min-height: 27px;
  padding-left: 40px;
  list-style: none;
  line-height: 1.4;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.c-order__list:nth-child(1) {
  background: url(/assets/svg/common/icon_num-01.svg) no-repeat top left;
}

.c-order__list:nth-child(2) {
  background: url(/assets/svg/common/icon_num-02.svg) no-repeat top left;
}

.c-order__list:nth-child(3) {
  background: url(/assets/svg/common/icon_num-03.svg) no-repeat top left;
}

.c-order__list:nth-child(4) {
  background: url(/assets/svg/common/icon_num-04.svg) no-repeat top left;
}

/* ----------------------------------------
リスト
---------------------------------------- */
.c-unorder {
  list-style: none;
  padding-left: 0;
}

.c-unorder__list {
  position: relative;
  padding-left: 1.5em;
}

.c-unorder__list::before {
  display: block;
  content: '';
  width: 0.4em;
  height: 0.4em;
  background-color: #28acd4;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0.5em;
}

/* ----------------------------------------
ボタン
---------------------------------------- */
.c-btn {
  display: inline-block;
  background-color: #28acd4;
  color: #fff;
  padding: 10px 2em 10px 1.4em;
  position: relative;
}

.c-btn::before {
  display: block;
  content: '';
  width: 0.3em;
  height: 0.3em;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 1em;
  z-index: 2;
}

.c-btn:hover {
  background-color: #48badd;
}

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

.p-logo {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 285px;
  height: 70px;
  background: url(/assets/img//common/logo_mark@2x.png) no-repeat top left/285px auto;
  padding-top: 22px;
  padding-left: 44px;
  line-height: 0;
  text-align: left;
}

@media only screen and (max-width: 480px) {
  .p-logo {
    /*スマホ*/
    width: 260px;
    height: 70px;
    background-size: 260px auto;
  }
  .p-logo img {
    width: 190px;
  }
}

.p-site-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .p-site-top {
    /*スマホ・タブレット*/
    text-align: center;
    padding-top: 25px;
  }
}

.p-sister-site {
  background: url(/assets/img/common/pic_click@2x.png) no-repeat right center/76px auto;
  padding-top: 1.2em;
  padding-right: 70px;
  font-size: 1.4rem;
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .p-sister-site {
    /*スマホ・タブレット*/
    padding-top: 2em;
    margin-right: 4%;
  }
}

.p-sister-site__fukasaka {
  display: inline-block;
  -webkit-transform: translateY(-1.2em);
  transform: translateY(-1.2em);
}

.p-sister-site__nozomi {
  display: inline-block;
}

.p-site-end {
  padding-top: 3em;
  padding-bottom: 1em;
  text-align: center;
  position: relative;
}

.p-pagetop {
  width: 128px;
  height: 65px;
  background: url(/assets/svg/common/tit_pagetop.svg) no-repeat top center/contain, url(/assets/img/common/pic_pagetop@2x.png) no-repeat bottom center/contain;
  position: absolute;
  top: -90px;
  right: 0;
  z-index: 3;
}

.p-pagetop:hover {
  cursor: pointer;
  -webkit-animation: bounce 2s ease-out infinite;
  animation: bounce 2s ease-out infinite;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@media only screen and (max-width: 768px) {
  .p-pagetop {
    /*スマホ・タブレット*/
    width: 100px;
    height: 50px;
    top: -70px;
  }
}

.p-site-address {
  padding-top: 1em;
  padding-bottom: 1em;
}

.p-site-address__definition {
  display: inline-block;
}

.p-site-address__definition dt {
  min-width: 60px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2px 5px;
  float: left;
  clear: left;
  margin-bottom: 5px;
}

.p-site-address__definition dd {
  text-align: left;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-bottom: 5px;
  margin-left: 80px;
}

.p-copyright {
  background: linear-gradient(-45deg, #e8f5f9 25%, #fff 25%, #fff 50%, #e8f5f9 50%, #e8f5f9 75%, #fff 75%) repeat-x top/7px 7px;
  font-size: 1rem;
  text-align: center;
  padding-top: 2.2em;
  padding-bottom: 0.8em;
}

/* ----------------------------------------
グローバルナビ
---------------------------------------- */
.p-gnav-wrap {
  background-color: #e8f5f9;
  line-height: 1.2;
}

@media only screen and (min-width: 769px) {
  .p-gnav-wrap {
    /*パソコン*/
    margin-top: 15px;
    position: relative;
  }
  .p-gnav-wrap::before {
    display: block;
    content: '';
    width: 100%;
    height: 15px;
    background: url(/assets/svg/common/bg_gnav.svg) repeat-x center;
    position: absolute;
    top: -15px;
    left: 0;
    z-index: 1;
  }
}

@media only screen and (max-width: 768px) {
  .p-gnav {
    /*スマホ・タブレット*/
    width: 100%;
    height: calc(100% - 100px);
    background-color: rgba(232, 245, 249, 0.9);
    padding-top: 50px;
    padding-bottom: 50px;
    position: fixed;
    top: 0;
    left: 100%;
    bottom: 0;
    z-index: 99;
    overflow-y: auto;
    -webkit-transition: all 300ms 0s ease;
    transition: all 300ms 0s ease;
  }
}

@media only screen and (min-width: 769px) {
  .p-gnav {
    /*パソコン*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1020px;
    margin: 0 auto;
    position: relative;
  }
  .p-gnav::after {
    display: block;
    content: '';
    width: 1px;
    height: 8px;
    background-color: #28acd4;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .p-gnav.is--enable {
    /*スマホ・タブレット*/
    left: 0;
  }
}

.p-gnav__list {
  text-align: center;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .p-gnav__list {
    /*スマホ・タブレット*/
    border-bottom: solid 1px #28acd4;
  }
  .p-gnav__list:first-child {
    border-top: solid 1px #28acd4;
  }
}

@media only screen and (min-width: 769px) {
  .p-gnav__list {
    /*パソコン*/
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: center;
    align-self: center;
    position: relative;
  }
  .p-gnav__list::before {
    display: block;
    content: '';
    width: 1px;
    height: 8px;
    background-color: #28acd4;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .p-gnav__list::after {
    display: block;
    content: '';
    width: 0;
    height: 4px;
    background-color: #ffea3c;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 400ms 0s ease;
    transition: all 400ms 0s ease;
  }
  .p-gnav__list:hover::after {
    width: 100%;
  }
}

.p-gnav__list a {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .p-gnav__list a {
    /*スマホ・タブレット*/
    padding-left: 4%;
    text-align: left;
    position: relative;
  }
  .p-gnav__list a::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border-right: solid 2px #28acd4;
    border-bottom: solid 2px #28acd4;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 4%;
    z-index: 2;
  }
}

.p-gnav__list svg {
  height: 26px;
  fill: #28acd4;
}

.p-gnav-btn {
  width: 40px;
  height: 40px;
  background: #27ae60;
  position: absolute;
  top: 0;
  right: 4%;
  z-index: 100;
}

.p-gnav-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  left: 10px;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.p-gnav-btn span:nth-of-type(1) {
  top: 12px;
}

.p-gnav-btn span:nth-of-type(2) {
  top: 19px;
}

.p-gnav-btn span:nth-of-type(3) {
  bottom: 12px;
}

.p-gnav-btn.is--close {
  position: fixed;
}

.p-gnav-btn.is--close span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}

.p-gnav-btn.is--close span:nth-of-type(2) {
  opacity: 0;
}

.p-gnav-btn.is--close span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

/* ----------------------------------------
画像ギャラリー
---------------------------------------- */
.p-slick {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}

.p-slick-container {
  position: relative;
  margin-bottom: 10px;
}

.p-slick-container > img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 400ms 0s ease;
  transition: all 400ms 0s ease;
}

.p-slick-container > img:last-child {
  position: static;
}

.p-slick-container > img.is--show {
  opacity: 1;
}

.p-slick-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.p-slick-thumb__list {
  max-width: 130px;
}

.p-slick-thumb__list.is--current {
  position: relative;
}

.p-slick-thumb__list.is--current::before {
  display: block;
  content: '';
  width: calc(100% - 0.4em);
  height: calc(100% - 0.4em);
  border: solid 0.2em #28acd4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-slick-prev {
  background: url(/assets/svg/top/icon_arrow-left.svg) no-repeat center/cover;
  display: block;
  content: '';
  width: 1.8em;
  height: 1.8em;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  left: 1em;
}

@media only screen and (max-width: 768px) {
  .p-slick-prev {
    /*スマホ・タブレット*/
    left: -0.7em;
  }
}

.p-slick-next {
  background: url(/assets/svg/top/icon_arrow-right.svg) no-repeat center/cover;
  display: block;
  content: '';
  width: 1.8em;
  height: 1.8em;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  right: 1em;
}

@media only screen and (max-width: 768px) {
  .p-slick-next {
    /*スマホ・タブレット*/
    right: -0.7em;
  }
}

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

/* ----------------------------------------
Utility
ComponentとProjectレイヤーのObjectのモディファイアで
解決することが難しい・適切では無い、わずかなスタイルの調整のための便利クラスなどを定義します。
clearfix/display/margin...
---------------------------------------- */
/* float解除
---------------------------------------- */
.u-clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* ----------------------------------------
表示・非表示
---------------------------------------- */
@media only screen and (min-width: 481px) {
  .u-show--sp {
    /*タブレット・パソコン*/
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .u-show--sptb {
    /*パソコン*/
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .u-show--tb {
    /*スマホ*/
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .u-show--tb {
    /*パソコン*/
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .u-show--tbpc {
    /*スマホ*/
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .u-show--pc {
    /*スマホ・タブレット*/
    display: none;
  }
}

/* ----------------------------------------
margin
---------------------------------------- */
.u-mgn-top--0 {
  margin-top: 0px;
}

.u-mgn-right--0 {
  margin-right: 0px;
}

.u-mgn-bottom--0 {
  margin-bottom: 0px;
}

.u-mgn-left--0 {
  margin-left: 0px;
}

.u-mgn-top--10 {
  margin-top: 10px;
}

.u-mgn-right--10 {
  margin-right: 10px;
}

.u-mgn-bottom--10 {
  margin-bottom: 10px;
}

.u-mgn-left--10 {
  margin-left: 10px;
}

.u-mgn-top--20 {
  margin-top: 20px;
}

.u-mgn-right--20 {
  margin-right: 20px;
}

.u-mgn-bottom--20 {
  margin-bottom: 20px;
}

.u-mgn-left--20 {
  margin-left: 20px;
}

.u-mgn-top--30 {
  margin-top: 30px;
}

.u-mgn-right--30 {
  margin-right: 30px;
}

.u-mgn-bottom--30 {
  margin-bottom: 30px;
}

.u-mgn-left--30 {
  margin-left: 30px;
}

.u-mgn-top--40 {
  margin-top: 40px;
}

.u-mgn-right--40 {
  margin-right: 40px;
}

.u-mgn-bottom--40 {
  margin-bottom: 40px;
}

.u-mgn-left--40 {
  margin-left: 40px;
}

.u-mgn-top--50 {
  margin-top: 50px;
}

.u-mgn-right--50 {
  margin-right: 50px;
}

.u-mgn-bottom--50 {
  margin-bottom: 50px;
}

.u-mgn-left--50 {
  margin-left: 50px;
}

.u-mgn-top--60 {
  margin-top: 60px;
}

.u-mgn-right--60 {
  margin-right: 60px;
}

.u-mgn-bottom--60 {
  margin-bottom: 60px;
}

.u-mgn-left--60 {
  margin-left: 60px;
}

.u-mgn-top--70 {
  margin-top: 70px;
}

.u-mgn-right--70 {
  margin-right: 70px;
}

.u-mgn-bottom--70 {
  margin-bottom: 70px;
}

.u-mgn-left--70 {
  margin-left: 70px;
}

.u-mgn-top--80 {
  margin-top: 80px;
}

.u-mgn-right--80 {
  margin-right: 80px;
}

.u-mgn-bottom--80 {
  margin-bottom: 80px;
}

.u-mgn-left--80 {
  margin-left: 80px;
}

.u-mgn-top--90 {
  margin-top: 90px;
}

.u-mgn-right--90 {
  margin-right: 90px;
}

.u-mgn-bottom--90 {
  margin-bottom: 90px;
}

.u-mgn-left--90 {
  margin-left: 90px;
}

.u-mgn-top--100 {
  margin-top: 100px;
}

.u-mgn-right--100 {
  margin-right: 100px;
}

.u-mgn-bottom--100 {
  margin-bottom: 100px;
}

.u-mgn-left--100 {
  margin-left: 100px;
}

/* ----------------------------------------
フォントサイズ
---------------------------------------- */
.u-font--xsmall {
  font-size: 1rem;
}

.u-font--small {
  font-size: 1.2rem;
}

.u-font--middle {
  font-size: 1.4rem;
}

.u-font--default {
  font-size: 1.5rem;
}

.u-font--lage {
  font-size: 1.7rem;
}

.u-font--xlage {
  font-size: 2.2rem;
}

/* ----------------------------------------
整列
---------------------------------------- */
.u-align--right {
  text-align: right;
}

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

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

/* ----------------------------------------
画像
---------------------------------------- */
.u-img--response {
  width: 100%;
  height: auto;
}

/* ----------------------------------------
リンク
---------------------------------------- */
.u-link--hover a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
アイコン
---------------------------------------- */
.u-icon--arrow {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}

.u-icon--arrow::before {
  display: block;
  content: '';
  width: 5.5px;
  height: 5.5px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 5.5px;
  z-index: 2;
}

.u-icon--arrow::after {
  display: block;
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #28acd4;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

.u-icon--pdf {
  display: inline-block;
  min-height: 24px;
  padding-left: 30px;
  background: url(/assets/svg/common/icon_pdf.svg) no-repeat center left/20px auto;
}

/* ----------------------------------------
Single
再利用できない、各ページで限定的に使われる装飾です。
各ページ名のプレフィックスをつけています。
---------------------------------------- */
/* トップページ
---------------------------------------- */
.top-newsfeed {
  background: url(/assets/img/top/pic_vege@2x.png) no-repeat bottom right/122px auto;
}

@media only screen and (max-width: 480px) {
  .top-newsfeed {
    /*スマホ*/
    background-size: 100px auto;
  }
}

.top-rss {
  border-top: solid 1px #28acd4;
  padding-top: 0.7em;
}

.top-map {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}

/* ----------------------------------------
/* 園の概要
---------------------------------------- */
.about-policy {
  background: url(/assets/img/about/pic_kamome@2x.png) no-repeat bottom 10px right/auto 80px;
}

@media only screen and (max-width: 480px) {
  .about-policy {
    /*スマホ*/
    background-size: auto 60px;
  }
}

.about-map {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}

/* ----------------------------------------
ライブラリ
---------------------------------------- */
/* swiper.js
---------------------------------------- */
.swiper-area {
  position: relative;
}

.swiper-area::before {
  display: block;
  content: '';
  width: 100%;
  height: 15px;
  background: url(/assets/svg/common/bg_mv.svg) repeat-x center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
