@charset "UTF-8";
/* --
 * normalize.......リセットCSS
 * base............ベースになるスタイル

 * header..........ヘッダー
 * contents........コンテンツ
 * footer..........フッター

 ------------------------------------
 アイコンはアイコンフォント「Font Awesome」を使用。

 テキスト使用フォント：Noto Sans Japanese

 ベースカラー：; // 
 アクセントカラー：; // 

 ブレイクポイントは以下の通り。
 ・タブレット：1023px（1024px未満をタブレットと設定）
 ・スマホ：639px（640px未満をタブレットと設定）

-- */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif);
@import url(https://fonts.googleapis.com/css?family=Amatic+SC&display=swap);
@import url("https://fonts.googleapis.com/css?family=Kosugi&display=swap");
@import url(https://fonts.googleapis.com/css?family=Playfair+Display);
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * layout-baseSize.....基本のコンテンツサイズ
 * layout-posMiddle....天地中央配置
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * fade................フェードで順に表示するアニメーション
 * scroll..............スクロールアイコンに関するアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes fade {
  100% {
    opacity: 1;
    padding: 0;
  }
}
@keyframes fade {
  100% {
    opacity: 1;
    padding: 0;
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(33px);
            transform: translateY(33px);
  }
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(33px);
            transform: translateY(33px);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(0deg);
    transform: translateY(8px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-17px) rotate(0deg);
    transform: translateY(-17px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-17px) rotate(0deg);
    transform: translateY(-17px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(15px) rotate(0deg);
    transform: translateY(15px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(15px) rotate(0deg);
    transform: translateY(15px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
}
/*-----------------------------------

	$normalize

	http://necolas.github.io/normalize.css/
	normalize ver 4.1.1 を元に改変

-----------------------------------*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

progress {
  vertical-align: baseline;
}

template,
[hidden] {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

a:active,
a:hover {
  outline-width: 0;
}

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

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

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

mark {
  background-color: #ff0;
  color: #000;
}

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;
  height: auto;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

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

ul, ol, dl, dt, dd, figure {
  padding: 0;
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

optgroup {
  font-weight: bold;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [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 {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

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

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-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

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

/*-----------------------------------

	$base

-----------------------------------*/
html {
  height: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  min-width: 100%;
  min-height: 100%;
}

[id=wrapper] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
body {
  height: 100%;
  color: #555;
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
  letter-spacing: 0.05em;
}
a {
  color: #555;
  text-decoration: none;
}

li {
  list-style: none;
  line-height: 1.4;
}

h4 {
  margin: 0 0 0.5em;
}

p {
  margin: 0;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.text-pink {
  color: #eb6ea5;
}

.text-blue {
  color: #20aee5;
}

.text-green {
  color: #2eb6aa;
}

.text-purple {
  color: #915da3;
}

.text-orange {
  color: #f08437;
}

.text-redorange {
  color: #ec6d65;
}

/*
    clearfix
--------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.contents {
  margin: 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .contents {
    overflow: hidden;
    margin: 60px 0 0;
  }
}

@media screen and (max-width: 1023px) {
  #index .contents {
    margin: 0;
  }
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 1;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -6%;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  content: "\f137";
  color: #000;
  font-size: 30px;
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -5%;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  content: "\f138";
  color: #000;
  font-size: 30px;
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin: 0 2%;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.slider img {
  height: auto;
  width: 100%;
}

/*-----------------------------------

	$module

-----------------------------------*/
.module__inner {
  width: 1060px;
  margin: 0 auto;
}
.module__main {
  margin: 0 0 6em;
}
.module__main figure {
  margin: 0 0 2em;
}
.module__title {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 0 1em;
}
.module__h3title {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0 0 0.5em;
  color: #007557;
}
.module__h4title {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 0 0.5em;
  color: #007557;
}
.module__btn a {
  display: inline-block;
  position: relative;
  padding: 0.8em 2.5em;
  font-size: 15px;
  font-size: 1.5rem;
  display: inline-block;
  color: #fff;
  background: #007557;
  border-radius: 6px;
}
.module__btn a:after {
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  position: absolute;
  display: inline-block;
  color: #fff;
  right: 0.8em;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
}
.module__table {
  font-size: 15px;
  font-size: 1.5rem;
}
.module__table table {
  width: 100%;
  margin: 0 0 10px;
  border-collapse: collapse;
  line-height: 160%;
}
.module__table table td, .module__table table th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8em 1em;
  border: 1px solid #ccc;
  font-weight: normal;
}
.module__table table th {
  background: #eeeafa;
}
.module__table table td {
  background: #fff;
}
.module__table.center td, .module__table.center th {
  text-align: center;
}
.module__bg {
  margin-left: -100%;
  margin-right: -100%;
  padding-left: 100%;
  padding-right: 100%;
  overflow: hidden;
}
.module__bg01 {
  background: url(../images/index/bg_polka_dot.png) no-repeat top center;
  background-size: contain;
}
.module__bg02 {
  background: #fce8ef;
}
.module__bg03 {
  background: #f2fbe6;
}
.module__bg04 {
  background: #eeeafa;
}
.module__bg05 {
  background: #fdf3f3;
}
.module__bg06 {
  background: #f4fafe;
}
.module__box {
  margin: 0 0 3em;
}
.module__box p {
  margin: 0 0 1em;
}
.module__pagelink {
  text-align: center;
  margin: 4em 0 0;
}
.module__pagelink ul {
  border: 1px solid #ccc;
  padding: 1em 0;
}
.module__pagelink li {
  display: inline-block;
  border-right: 1px solid #ccc;
}
.module__pagelink li a {
  display: inline-block;
  padding: 0.2em 1em;
}
.module__pagelink li a:hover {
  color: #eb6ea5;
}
.module__pagelink li:last-child {
  border-right: none;
}
.module__list li {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 0.5em;
  width: 100%;
  float: none;
}
.module__list li a:hover {
  color: #ccc;
}
.module__list li:before {
  content: "・";
  color: #eb6ea5;
}
.module__list.column03 li {
  display: inline-block;
  float: left;
  width: 30%;
}
.module__ol {
  margin: 0 0 1em 2em;
}
.module__ol li {
  margin: 0 0 0.5em;
  list-style: decimal;
}
.module__captionlist li {
  font-size: 13px;
  font-size: 1.3rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1260px) {
  .module__inner {
    width: 96%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  .module__title {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .module__main {
    margin: 0 0 3em;
  }
  .module__scroll {
    overflow: auto;
    white-space: nowrap;
    margin: 0 0 0.5em;
  }
  .module__scroll::-webkit-scrollbar {
    height: 5px;
  }
  .module__scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .module__scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .module__scroll:before {
    content: "※横にスライド";
    display: block;
    margin: 0 0 0.5em;
    text-align: left;
  }
  .module__list.column03 li {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .module__title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
  .module__title span {
    padding: 0 0 0.4em;
  }
  .module__h3title {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .module__h4title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .module__scroll-sp {
    overflow: auto;
    white-space: nowrap;
    margin: 0 0 0.5em;
  }
  .module__scroll-sp::-webkit-scrollbar {
    height: 5px;
  }
  .module__scroll-sp::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .module__scroll-sp::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .module__scroll-sp:before {
    content: "※横にスライド";
    display: block;
    margin: 0 0 0.5em;
    text-align: left;
  }
  .module__pagelink ul {
    padding: 0;
  }
  .module__pagelink li {
    display: block;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .module__pagelink li:last-child {
    border-bottom: none;
  }
  .module__pagelink li a {
    display: block;
    padding: 1em 0;
  }
  .module__list.column03 li {
    width: 100%;
  }
}

.event_banner {
  width: 80%;
  margin: 2em auto 0;
}
@media screen and (max-width: 640px) {
  .event_banner {
    width: 100%;
  }
}

.links {
  color: #de76a4;
  text-decoration: underline;
}
.links:hover {
  text-decoration: none;
}
.links i {
  display: inline;
}

/*-----------------------------------

	$header

-----------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 9999;
  background: #fff;
  width: 100%;
}
.header__inner {
  display: table;
  width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
}
.header__logo {
  width: 340px;
  margin: 0;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 1260px) {
  .header__inner {
    width: 98%;
  }
  .header__logo {
    width: 30%;
  }
}

/*-----------------------------------

	$header - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .header {
    width: 100%;
    height: 60px;
    min-height: 60px;
    padding: 0 2%;
  }
  .header__inner {
    padding: 0;
  }
  .header__logo {
    font-size: 0;
    line-height: 60px;
    width: 220px;
    opacity: 1;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
  }
  #index .header {
    width: 96%;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
  }
  #index .header__inner {
    padding: 0;
    width: 100%;
  }
  #index .header.fixed .header__logo {
    opacity: 0;
  }
}
/*-----------------------------------

	$header- mobile

-----------------------------------*/
/*-----------------------------------

	$globalnav

-----------------------------------*/
.globalnav {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.globalnav .sub_contents {
  float: right;
  text-align: right;
}
.globalnav__sns {
  display: inline-block;
  margin: 0 0.5em;
}
@media screen and (max-width: 1260px) {
  .globalnav__sns {
    margin-bottom: 0.5em;
  }
}
.globalnav__sns li {
  display: inline-block;
}
.globalnav__sns li a {
  display: block;
  border-radius: 50px;
  font-size: 20px;
  padding: 0.2em 0.4em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.globalnav__sns li a:hover {
  border: 1px solid #eb6ea5;
  color: #eb6ea5;
  background: #fcf0f7;
}
.globalnav__toggle {
  display: none;
}
.globalnav__subnav {
  display: inline-block;
  text-align: right;
  margin: 0 0 15px;
}
.globalnav__subnav li {
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
}
.globalnav__subnav li:before {
  content: "/";
  margin: 0 0.5em;
}
.globalnav__subnav li:first-child:before {
  display: none;
}
.globalnav__subnav li.btn01, .globalnav__subnav li.btn02 {
  background: #007557;
  border-radius: 2px;
  text-align: center;
}
.globalnav__subnav li.btn01 span, .globalnav__subnav li.btn02 span {
  width: 125px;
  padding: 0.4em 0;
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  color: #fff;
}
.globalnav__subnav li.btn01:before, .globalnav__subnav li.btn02:before {
  display: none;
}
.globalnav__subnav li.btn01 a:hover, .globalnav__subnav li.btn02 a:hover {
  border: none;
  color: #fff;
}
.globalnav__subnav li.btn01 {
  background: #de76a4;
  margin: 0 0 0 0.5em;
}
.globalnav__subnav li a:hover {
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  border-bottom: 2px solid #007557;
  color: #007557;
}
.globalnav__nav {
  float: right;
  text-align: right;
  position: relative;
  height: 25px;
}
.globalnav__nav > li {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.globalnav__nav > li a {
  display: inline-block;
}
.globalnav__nav > li:after {
  content: "/";
  margin: 0 1.2em 0 1.5em;
  display: inline-block;
}
.globalnav__nav > li:last-child:after {
  display: none;
}
.globalnav__nav > li a:hover,
.globalnav__nav > li span:hover {
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  border-bottom: 2px solid #007557;
  color: #007557;
}
.globalnav__nav > li span {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.globalnav__dropdown {
  display: none;
  position: absolute;
  z-index: 9998;
  left: 0;
  margin: 0 auto;
  top: 2.2em;
  width: 26vh;
  text-align: center;
}
.globalnav__dropdown.last {
  left: inherit;
  right: 0;
}
.globalnav__dropdown > li a {
  display: block;
  padding: 1em 0;
  background: #eb6ea5;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
}
.globalnav__dropdown > li a:after {
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  position: absolute;
  display: inline-block;
  color: #fff;
  right: 0.8em;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
}
.globalnav__dropdown > li a:hover {
  background: #fafafa;
  color: #007557;
  border-bottom: 1px solid #fff;
}
.globalnav__dropdown > li a:hover:after {
  color: #007557;
}

/*-----------------------------------

	$globalnav - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .globalnav {
    width: 50px;
    height: 60px;
    background: url("../images/common/bg_nav.png") no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 2%;
    z-index: 9999;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
  }
  .globalnav.open {
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
  }
  .globalnav__toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 11px;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 9999;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0 0;
  }
  .globalnav__toggle div {
    position: relative;
  }
  .globalnav__toggle span {
    display: block;
    position: relative;
    height: 3px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: 0.3s opacity;
    -o-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .globalnav__toggle .top {
    -webkit-animation: toggle-top 0.5s;
    animation: toggle-top 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .globalnav__toggle .middle {
    -webkit-transition: 0.5s opacity;
    -o-transition: 0.5s opacity;
    transition: 0.5s opacity;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    opacity: 1;
  }
  .globalnav__toggle .bottom {
    -webkit-animation: toggle-bottom 0.5s;
    animation: toggle-bottom 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .globalnav__inner {
    overflow: scroll;
    width: 100%;
    height: 100%;
    background: rgba(250, 220, 233, 0.8);
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 9998;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 4%;
    display: none;
  }
  .open .globalnav__inner {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    display: block;
  }
  .globalnav .sub_contents {
    float: none;
  }
  .globalnav__sns {
    display: block;
    text-align: center;
    margin: 0 0 0.5em;
  }
  .globalnav__sns li {
    margin: 0 0.2em;
  }
  .globalnav__sns li a {
    background: #fff;
  }
  .globalnav__subnav {
    display: block;
    overflow: hidden;
  }
  .globalnav__subnav li {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    float: left;
    width: 32.6%;
    text-align: center;
    background: #fff;
    margin: 0 1% 1% 0;
    border: 1px solid #ccc;
  }
  .globalnav__subnav li:nth-child(3n) {
    margin: 0 0 1%;
  }
  .globalnav__subnav li.btn01 {
    margin: 0 1% 1% 0;
  }
  .globalnav__subnav li:before {
    display: none;
  }
  .globalnav__subnav li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.8em 0;
  }
  .globalnav__subnav li a:after {
    display: inline-block;
    content: "\f105";
    font-family: Fontawesome;
    position: absolute;
    display: inline-block;
    color: #000;
    right: 0.8em;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
  }
  .globalnav__subnav li a:hover {
    border-bottom: none;
    background: #eee;
  }
  .globalnav__subnav li.btn01 span, .globalnav__subnav li.btn02 span {
    width: 100%;
    padding: 0;
  }
  .globalnav__subnav li.btn01:hover span, .globalnav__subnav li.btn02:hover span {
    color: #555;
  }
  .globalnav__subnav li.btn01 a:after, .globalnav__subnav li.btn02 a:after {
    color: #fff;
  }
  .globalnav__subnav li.btn01 a:hover:after, .globalnav__subnav li.btn02 a:hover:after {
    color: #555;
  }
  .globalnav__nav {
    float: none;
    height: auto;
    text-align: left;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  .globalnav__nav > li {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #ccc;
  }
  .globalnav__nav > li:after {
    display: none;
  }
  .globalnav__nav > li > a,
.globalnav__nav > li > span {
    display: block;
    width: 100%;
    padding: 1em 0;
  }
  .globalnav__nav > li > a:after,
.globalnav__nav > li > span:after {
    display: inline-block;
    content: "\f105";
    font-family: Fontawesome;
    content: "\f107";
    position: absolute;
    display: inline-block;
    color: #555;
    right: 0.8em;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
  }
  .globalnav__nav > li > a:hover,
.globalnav__nav > li > span:hover {
    border-bottom: none;
    background: #eee;
  }
  .globalnav__nav > li:last-child {
    margin: 0;
  }
  .globalnav__dropdown {
    position: static;
    width: 100%;
  }
  /*
     .open
  --------------------------*/
  .open .globalnav__toggle .middle {
    opacity: 0;
    -webkit-transition: 0.5s opacity;
    -o-transition: 0.5s opacity;
    transition: 0.5s opacity;
  }
  .open .globalnav__toggle .top {
    -webkit-animation: toggle-top-close 0.5s;
    animation: toggle-top-close 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .open .globalnav__toggle .bottom {
    -webkit-animation: toggle-bottom-close 0.5s;
    animation: toggle-bottom-close 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    bottom: 2px;
  }
}
/*-----------------------------------

	$globalnav - mobile

-----------------------------------*/
@media screen and (max-width: 640px) {
  .globalnav__subnav li {
    width: 48.5%;
  }
  .globalnav__subnav li a {
    padding: 6% 0;
  }
  .globalnav__subnav li:nth-child(3n) {
    margin: 0 1% 1% 0;
  }
  .globalnav__nav > li {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .globalnav__nav > li > a,
.globalnav__nav > li > span {
    padding: 0.8em 0;
  }
}
/*-----------------------------------

	$footer

-----------------------------------*/
.footer {
  border-top: 3px solid #d7def4;
}
.footer__nav {
  padding: 30px 0;
}
.footer__bnr {
  text-align: center;
  font-size: 0;
}
.footer__bnr li {
  display: inline-block;
  max-width: 220px;
  padding: 0 5px;
  margin-bottom: 10px;
}
.footer__contents {
  width: 100%;
  background: #ef9ec1;
  color: #fff;
  padding: 30px 0;
}
.footer__box {
  width: 50%;
  float: left;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}
.footer__box.text {
  text-align: center;
}
.footer__box.text h3 img {
  width: 250px;
}
.footer__box.text h3 span {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  font-weight: 400;
  margin: 15px 0;
}
.footer__box.text p {
  font-size: 14px;
  font-size: 1.4rem;
}
.footer__box.text p strong {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 0 0 0.5em;
}
.footer__box.text .sns li {
  display: inline-block;
  font-size: 40px;
  font-size: 4rem;
  margin: 0 0.2em;
}
.footer__box.text .sns li a {
  color: #fff;
}
.footer__map {
  height: 0;
  overflow: hidden;
  padding-bottom: 45.29%;
  position: relative;
}
.footer__map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.footer__address {
  background: #007557;
  color: #fff;
  padding: 12px 0;
  font-size: 12px;
  font-size: 1.2rem;
}
.footer__how {
  display: inline-block;
}
.footer__how li {
  display: inline-block;
}
.footer__how li a {
  color: #fff;
}
.footer__how li:last-child:before {
  content: "/";
  padding: 0 0.6em;
  display: inline-block;
}
.footer .address {
  display: inline-block;
  float: right;
}

/*-----------------------------------

	$footer - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .footer {
    /*
    &__block {
    	width: 25%;
    	padding: 0 2%;
    }

    &__nav {
       padding: 3% 0;
    }
    */
  }
  .footer__bnr li {
    width: 30%;
    max-width: inherit;
  }
  .footer__contents {
    padding: 2% 0;
  }
  #index .footer {
    padding: 0 0 60px;
  }
}
/*-----------------------------------

	$footer - mobile

-----------------------------------*/
@media screen and (max-width: 640px) {
  .footer__nav {
    padding: 30px 0 20px;
  }
  .footer__contents {
    padding: 2% 0;
  }
  .footer__bnr li {
    width: 47%;
  }
  .footer__box {
    width: 100%;
    float: none;
    margin: 0 0 1em;
  }
  .footer__address {
    padding: 0.6em 0;
  }
  .footer .address {
    float: none;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
/*-----------------------------------

	$mainvisual

-----------------------------------*/
.mainvisual {
  position: relative;
}
.mainvisual__list {
  width: 100%;
}
.mainvisual__list li img {
  width: 100%;
  height: auto;
}
.mainvisual__thumbnail {
  background: #f2a3c5;
  padding: 16px 0;
}
.mainvisual__thumbnail ul {
  width: 90%;
  max-width: 1060px;
  margin: auto;
}
.mainvisual__thumbnail li img {
  width: 100%;
  height: auto;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  border: 3px solid rgba(0, 0, 0, 0);
  opacity: 0.7;
}
.mainvisual__thumbnail li img:hover {
  cursor: pointer;
  opacity: 1;
  border-color: #fff20d;
}
.mainvisual__thumbnail .slick-current img {
  border-color: #fff20d;
  opacity: 1;
}
.mainvisual__thumbnail .slick-slide {
  padding: 0 0.3% 0 0.1%;
}
.mainvisual__thumbnail .slick-track-stop {
  -webkit-transform: unset !important;
      -ms-transform: unset !important;
          transform: unset !important;
}
.mainvisual .slick-next,
.mainvisual .slick-prev {
  width: 28px;
  height: 28px;
}
.mainvisual .slick-next::before,
.mainvisual .slick-prev::before {
  color: #fff;
  font-size: 28px;
}
.mainvisual .slick-next {
  right: -30px;
}
.mainvisual .slick-prev {
  left: -30px;
}
@media screen and (max-width: 1023px) {
  .mainvisual .slick-next,
.mainvisual .slick-prev {
    width: 24px;
    height: 24px;
  }
  .mainvisual .slick-next::before,
.mainvisual .slick-prev::before {
    font-size: 24px;
  }
  .mainvisual .slick-next {
    right: -28px;
  }
  .mainvisual .slick-prev {
    left: -28px;
  }
}
@media screen and (max-width: 640px) {
  .mainvisual__thumbnail {
    background: #f2a3c5;
    padding: 8px 0;
  }
  .mainvisual__thumbnail li img {
    border-width: 2px;
  }
  .mainvisual .slick-next,
.mainvisual .slick-prev {
    width: 14px;
    height: 14px;
  }
  .mainvisual .slick-next::before,
.mainvisual .slick-prev::before {
    font-size: 14px;
  }
  .mainvisual .slick-next {
    right: -16px;
  }
  .mainvisual .slick-prev {
    left: -16px;
  }
}
/*-----------------------------------

	$banner

-----------------------------------*/
.banner {
  padding-top: 60px;
}
.banner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 96%;
  max-width: 1060px;
  margin: 0 auto;
}
.banner__list li {
  width: 49%;
  padding-top: 20px;
}
.banner__list li:first-child, .banner__list li:nth-child(2) {
  padding-top: 0;
}
.banner__list li:nth-child(2n) {
  padding-left: 2%;
}
.banner__list li img {
  width: 100%;
  height: auto;
}
.banner__list.odd {
  max-width: 1280px;
}
.banner__list.odd li {
  width: 32.6666666667%;
  padding-left: 1%;
}
.banner__list.odd li:first-child, .banner__list.odd li:nth-of-type(4n) {
  padding-left: 0 !important;
}
.banner__list.odd li:nth-child(3) {
  padding-top: 0;
}
.banner__list.odd-wide {
  max-width: 1060px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.banner__list.odd-wide li {
  width: 32%;
  padding-left: 0;
}
.banner__list.odd-wide li:first-child, .banner__list.odd-wide li:nth-child(2) {
  width: 49%;
}
@media screen and (max-width: 640px) {
  .banner {
    padding-top: 20px;
  }
  .banner__list li {
    width: 100%;
  }
  .banner__list li:not(:first-child) {
    padding: 2% 0 0 !important;
  }
  .banner__list.odd li {
    width: 100%;
  }
  .banner__list.odd li:not(:first-child) {
    padding: 2% 0 0 !important;
  }
  .banner__list.odd-wide {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .banner__list.odd-wide li {
    width: 100% !important;
  }
  .banner__list.odd-wide li:not(:first-child) {
    padding: 2% 0 0 !important;
  }
}

/*-----------------------------------

	$top

-----------------------------------*/
.top__wrap-01 {
  position: relative;
}
.top__wrap-02 {
  background: #dff0f0;
}
.top__wrap-03 {
  background: #fff;
  position: relative;
  padding-bottom: 200px;
}
.top__wrap-03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #dff0f0 transparent transparent;
  border-width: 0 100vw 160px 0;
}
.top__wrap-03::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 60px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 160px 0 0 100vw;
  z-index: 1;
}
.top__wrap-04 {
  position: relative;
}
.top__wrap-04::before {
  content: "";
  position: absolute;
  display: block;
  top: -220px;
  left: 0;
  width: 100%;
  height: 220px;
  background: url("../images/common/bg_stripe_01.png");
}
@media screen and (max-width: 1023px) {
  .top__wrap-02 {
    padding-bottom: 10px;
  }
  .top__wrap-03 {
    padding-bottom: 160px;
  }
  .top__wrap-03::before {
    border-width: 0 100vw 100px 0;
  }
  .top__wrap-03::after {
    bottom: 60px;
    border-width: 100px 0 0 100vw;
  }
  .top__wrap-04::before {
    top: -160px;
    height: 160px;
  }
}
@media screen and (max-width: 640px) {
  .top__wrap-03 {
    padding-bottom: 140px;
  }
  .top__wrap-03::before {
    border-width: 0 100vw 40px 0;
  }
  .top__wrap-03::after {
    bottom: 60px;
    border-width: 40px 0 0 100vw;
  }
  .top__wrap-04::before {
    top: -100px;
    height: 100px;
  }
}

.floating {
  position: fixed;
  right: 0;
  top: auto;
  margin-top: 5%;
  z-index: 999;
}
.floating a {
  display: table;
  margin-bottom: 5px;
}
.floating a span {
  display: table-cell;
  text-align: center;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: table;
  padding: 1.6em 0.4em;
  position: relative;
  border-radius: 6px 0 0 6px;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  border-right: none;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.floating a:hover {
  opacity: 0.7;
}
.floating-01 span {
  background: #de76a4;
  color: #fff;
}
.floating-02 span {
  background: #fff20d;
  color: #de76a4;
}
.floating-03 span {
  background: #007557;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .floating {
    bottom: 0;
    width: 100%;
    height: 60px;
    margin-top: 0;
    padding: 0.6em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    background: #007557;
  }
  .floating a {
    display: inline-block;
    width: 30%;
    margin: 0 1%;
  }
  .floating a span {
    text-align: center;
    width: 100%;
    min-height: inherit;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    display: inline-block;
    border-radius: 6px;
    padding: 0.5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .floating-03 span {
    background: #fff;
    color: #007557;
  }
}

/*-----------------------------------

	$intro

-----------------------------------*/
.intro {
  padding-top: 50px;
}
.intro__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.intro__text, .intro__movie {
  width: 49%;
}
.intro__text {
  padding-top: 20px;
}
.intro__movie-ttl {
  text-align: center;
}
.intro__movie-ttl h3 {
  position: relative;
  margin: 0 0 0.5em;
  z-index: 1;
}
.intro__movie-ttl h3::before, .intro__movie-ttl h3::after {
  content: "";
  display: block;
  height: 1px;
  width: 100px;
  max-width: 15%;
  background: #00aec4;
  position: absolute;
  top: 50%;
  z-index: -1;
}
.intro__movie-ttl h3::before {
  left: 0;
}
.intro__movie-ttl h3::after {
  right: 0;
}
.intro__movie-ttl h3 img {
  position: relative;
  z-index: 1;
}
.intro__movie-ttl p {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 0.5em;
}
.intro__movie-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.intro__movie-media iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.intro__movie-btn {
  text-align: right;
  padding-top: 0.5em;
}
.intro__movie-btn::after {
  display: inline-block;
  content: "\f138";
  font-family: Fontawesome;
}
@media screen and (max-width: 1023px) {
  .intro__wrap {
    display: block;
  }
  .intro__text, .intro__movie {
    width: 100%;
  }
  .intro__text {
    padding: 0 0 50px;
  }
  .intro__text img {
    width: 90%;
    margin: auto;
    display: block;
  }
  .intro__movie:not(:first-child) {
    margin-top: 5%;
  }
  .intro__movie-ttl h3::before, .intro__movie-ttl h3::after {
    width: 300px;
    max-width: 24%;
  }
}
@media screen and (max-width: 640px) {
  .intro {
    padding-top: 30px;
  }
  .intro__text {
    padding: 0 0 30px;
  }
  .intro__text img {
    width: 100%;
  }
  .intro__movie-ttl h3::before, .intro__movie-ttl h3::after {
    max-width: 15%;
  }
}
@media screen and (max-width: 480px) {
  .intro__movie-ttl h3::before, .intro__movie-ttl h3::after {
    display: none;
  }
}

/*-----------------------------------

	$course

-----------------------------------*/
.course {
  padding-top: 120px;
  position: relative;
  z-index: 99;
}
.course h3 {
  text-align: center;
  margin: 0 0 30px;
}
.course h3 img {
  width: auto;
  max-width: 100%;
}
.course__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 940px;
  margin: auto;
}
.course__list li {
  width: 30%;
  text-align: center;
}
.course__list li a img {
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.course__list li a:hover img {
  opacity: 0.7;
}
.course__list li h4 {
  font-size: 17px;
  font-size: 1.7rem;
  display: inline-block;
  margin: 0;
  padding: 0.2em 1.4em;
  background: #eee;
  color: #fff;
  border-radius: 6px;
  margin: 10px 0 5px;
  font-weight: 300;
}
.course__list li:first-child h4 {
  background: #eb6ea5;
}
.course__list li:first-child span {
  color: #eb6ea5;
}
.course__list li:nth-child(2) {
  margin: 0 5%;
}
.course__list li:nth-child(2) h4 {
  background: #00b9ef;
}
.course__list li:nth-child(2) span {
  color: #00b9ef;
}
.course__list li:nth-child(3) h4 {
  background: #f08437;
}
.course__list li:nth-child(3) span {
  color: #f08437;
}
.course__list li:nth-child(4) {
  padding-top: 20px;
  margin-right: 5%;
}
.course__list li:nth-child(4) h4 {
  background: #2eb6aa;
}
.course__list li:nth-child(4) span {
  color: #2eb6aa;
}
.course__list li:last-child {
  padding-top: 20px;
}
.course__list li:last-child h4 {
  background: #ec6d65;
}
.course__list li:last-child span {
  color: #ec6d65;
}
.course .module__inner {
  position: relative;
}
.course__img-01 {
  position: absolute;
  right: 0;
  bottom: -201px;
}

/*-----------------------------------

	$course - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .course__list {
    width: 100%;
  }
  .course__list li {
    width: 32%;
  }
  .course__list li:nth-child(2) {
    margin: 0 2%;
  }
  .course__list li:nth-child(4) {
    margin-right: 2%;
  }
  .course__img-01 {
    bottom: -161px;
  }
  .course__img-01 img {
    height: 200px;
    width: auto;
  }
}
/*-----------------------------------

	$course - mobile

-----------------------------------*/
@media screen and (max-width: 640px) {
  .course__list {
    width: 100%;
  }
  .course__list li {
    width: 100%;
    text-align: center;
    display: table;
  }
  .course__list li:nth-child(2), .course__list li:nth-child(3), .course__list li:nth-child(4), .course__list li:nth-child(5) {
    margin: 0;
    padding: 10px 0 0;
  }
  .course__list h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .course__list p {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .course__list-img, .course__list-txt {
    display: table-cell;
    vertical-align: middle;
  }
  .course__list-img {
    width: 37%;
    padding-right: 3%;
  }
  .course__list-txt {
    width: 60%;
  }
  .course__img-01 {
    bottom: -141px;
  }
  .course__img-01 img {
    height: 156px;
  }
}
/*-----------------------------------

	$topics

-----------------------------------*/
.topics {
  background: #fff9b7;
  border-top: 10px solid #70bdce;
  padding: 50px 0 60px;
}
.topics__ttl {
  text-align: center;
  margin: 0 0 30px;
}
.topics__ttl img {
  width: auto;
}
.topics__list {
  margin: 0 auto 2em;
  max-width: 1060px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topics__list li {
  width: 250px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.topics__list li:not(:nth-child(4n)) {
  margin-right: 20px;
}
.topics__list li a {
  display: block;
}
.topics__list li figure {
  display: block;
  position: relative;
  z-index: 0;
}
.topics__list li figure span {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 165px;
  position: relative;
}
.topics__list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topics__list li:last-child {
  margin: 0;
}
.topics__list li .detail {
  padding: 0 1em 1em;
  margin: 1em 0 0;
  font-size: 16px;
  font-size: 1.6rem;
}
.topics__list li .detail span {
  display: block;
}
.topics__list li .detail .date {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 0 0.2em;
}
.topics__list li .detail .title {
  line-height: 1.5;
  margin: 0 0 0.5em;
}
.topics__list li .detail .category {
  font-size: 13px;
  font-size: 1.3rem;
  color: #00aec4;
}
.topics__list li .detail .category:before {
  content: "";
  background: url("../images/common/icon_tag.png") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  padding: 0 0.2em 0 0;
}
.topics__btn a {
  display: inline-block;
  position: relative;
  padding: 0.8em 2.5em;
  font-size: 15px;
  font-size: 1.5rem;
  display: inline-block;
  color: #fff;
  background: #00aec4;
  border-radius: 6px;
}
.topics__btn a:after {
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  position: absolute;
  display: inline-block;
  color: #fff;
  right: 0.8em;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
}
@media screen and (max-width: 640px) {
  .topics {
    padding: 30px 0;
  }
  .topics__ttl {
    margin: 0 0 20px;
  }
  .topics__ttl img {
    width: auto;
    height: 36px;
  }
  .topics__list {
    display: block;
    padding: 0 2%;
  }
  .topics__list li {
    width: 100%;
    border-radius: 10px;
  }
  .topics__list li:not(:nth-child(4n)) {
    margin-right: 0px;
  }
  .topics__list li:not(:first-child) {
    margin-top: 20px;
  }
  .topics__list li figure span {
    height: 225px;
  }
}

/*-----------------------------------

	$insta

-----------------------------------*/
.insta {
  background: #fff9b7;
  padding: 0 0 60px;
}
.insta .module__inner {
  padding: 1% 0.5%;
  background: #fff;
}
@media screen and (max-width: 640px) {
  .insta {
    padding: 0 0 30px;
  }
  .insta .module__inner {
    padding: 2% 1% 1%;
  }
  .insta #sbi_images .sbi_item:last-child {
    display: none !important;
  }
}

/*-----------------------------------

	$tiktok

-----------------------------------*/
.tiktok .etf_header {
  padding: 20px 0 0 !important;
}
.tiktok .etf_header .etf_header_inner_wrap .etf_header_content .etf_bio {
  display: none !important;
}
.tiktok .etf_header .etf_header_inner_wrap .etf_header_content .etf_header_meta .etf_likes,
.tiktok .etf_header .etf_header_inner_wrap .etf_header_content .etf_header_meta .etf_followers,
.tiktok .etf_header .etf_header_inner_wrap .etf_header_content .etf_header_meta .etf_videos,
.tiktok .etf_header .etf_header_inner_wrap .etf_header_content .etf_header_meta .etf_following {
  display: none !important;
}
.tiktok .etf-row {
  margin-right: 0;
  margin-left: 0;
}
.tiktok .etf-row > div {
  max-width: none !important;
  padding: 0 !important;
}
.tiktok .etf-row > div .etf-grid-wrapper {
  margin-bottom: 0 !important;
}
.tiktok .e-outer {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-grid-columns: auto !important;
  grid-template-columns: auto !important;
  grid-auto-rows: auto !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.tiktok .e-outer::before {
  padding: 0 !important;
}
.tiktok .etf-col-lg-4 {
  width: 20% !important;
  min-width: none;
}
.tiktok .etf-col-lg-4 .etf-grid-wrapper {
  border: none !important;
}
.tiktok .etf_load_more_btns_wrap {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .tiktok .etf-col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    width: 20% !important;
  }
}
@media screen and (max-width: 992px) {
  .tiktok .etf-col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 20% !important;
  }
}
@media screen and (max-width: 640px) {
  .tiktok .etf-col-lg-4 {
    width: 50% !important;
  }
  .tiktok .etf-col-lg-4:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .tiktok .etf-col-lg-4 {
    width: 100% !important;
  }
  .tiktok .etf-col-lg-4:nth-child(5) {
    display: block;
  }
}

/*-----------------------------------

	$other

-----------------------------------*/
.other {
  background: url("../images/index/bg_line02.png");
  padding: 20px 0;
}
.other__list li {
  max-width: 250px;
  width: 23.5%;
  background: #fff;
  text-align: center;
  float: left;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 20px 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.other__list li:nth-child(4n) {
  margin: 0 0 10px;
}
.other__list li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 縦方向中央揃え（Safari用） */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向中央揃え */ /* 横方向中央揃え（Safari用） */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横方向中央揃え */
}
.other__list li a:hover {
  border: 2px solid #d7def4;
}
@media screen and (max-width: 1260px) {
  .other__list li {
    max-width: none;
    width: 23.5%;
    margin: 0 2% 10px 0;
  }
}
@media screen and (max-width: 1023px) {
  .other__list li a {
    min-height: 4.5em;
  }
}
@media screen and (max-width: 640px) {
  .other {
    padding: 2em 0 1.5em;
  }
  .other__list li {
    width: 49%;
  }
  .other__list li:nth-child(2n) {
    margin: 0 0 10px 0;
  }
  .other__list li a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/*-----------------------------------

    print - 印刷設定

-----------------------------------*/
@media print {
  [id=wrapper] {
    width: 1060px;
    overflow: hidden;
  }
  .header {
    position: static;
  }
}