@charset "UTF-8";
/* --

 common.css

-- */
@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);
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*-----------------------------------

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

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

	$base

-----------------------------------*/
/**======================================
	setting
======================================**/
/* --

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

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

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

-----------------------------------*/
@-webkit-keyframes fade {
  100% {
    opacity: 1;
    padding: 0;
  }
}
@keyframes fade {
  100% {
    opacity: 1;
    padding: 0;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@-webkit-keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(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);
		//-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(4px) rotate(0deg);
		transform: translateY(4px) rotate(0deg);
		//-webkit-transform: translateY(8px) rotate(0deg);
		//transform: translateY(8px) 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);
	}
}
*/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  min-width: 100%;
  min-height: 100%;
}

body {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8666666667;
}
body#top {
  background: #FFF0FB;
}
body:not(.calendar) {
  overflow: hidden;
}

.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 */
.contents {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .contents {
    margin: 60px 0 0;
  }
}

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

[id=wrapper] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

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

h4 {
  margin: 0 0 0.5em;
}

p {
  margin: 0;
}

/* layout --------------------------*/
.main {
  margin-bottom: 10rem;
}
.course .main {
  margin-bottom: 0;
}

.inner {
  width: 90%;
  max-width: 108rem;
  margin: auto;
}

.bg-round {
  width: 96%;
  max-width: 120rem;
  margin: auto;
}
.course .about .bg-round {
  width: 90%;
  max-width: 112rem;
}
.course .career .bg-round {
  width: 96%;
  max-width: 112rem;
}
.bg-round__wrap {
  background: #fff;
}
.bg-round__wrap.round-left {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  border-radius: 0 15rem 15rem 0;
}
.course .about .bg-round__wrap.round-left {
  padding-left: calc(30vw - 30%);
}
@media screen and (min-width: 1280px) {
  .course .about .bg-round__wrap.round-left {
    padding-left: calc(50vw - 50%);
  }
}
.bg-round__wrap.round-right {
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  border-radius: 15rem 0 0 15rem;
}
@media screen and (max-width: 640px) {
  .bg-round {
    width: 90%;
  }
  .bg-round__wrap.round-left {
    padding-left: 0;
    border-radius: 0 7.5rem 7.5rem 0;
  }
  .bg-round__wrap.round-right {
    padding-right: 0;
    border-radius: 7.5rem 0 0 7.5rem;
  }
}

/* parts --------------------------*/
.common__title-01 {
  font-family: "Barlow Condensed", "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.common__title-01 b {
  font-weight: 700;
  font-size: 7rem;
  display: block;
  line-height: 1;
  color: #fff;
  -webkit-text-stroke: 2px #27B9B9;
  text-stroke: 2px #27B9B9;
}
.common__title-01 span {
  font-size: 1.7rem;
  font-weight: 500;
  display: block;
}
.common__title-01.pink b {
  -webkit-text-stroke: 2px #E881C9;
  text-stroke: 2px #E881C9;
}
@media screen and (max-width: 640px) {
  .common__title-01 b {
    font-size: 5rem;
  }
  .common__title-01 span {
    font-size: 1.5rem;
  }
}
.common__list li {
  font-size: 1.5rem;
  line-height: 1.6470588235;
  text-indent: -1em;
  margin-left: 1em;
}
.common__list li::before {
  content: "・";
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a img {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
}

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

.btn-01 a {
  display: inline-block;
  min-width: 23.6rem;
  border-radius: 100px;
  background: #27B9B9;
  color: #fff;
  text-align: center;
  padding: 0.6em 2.5em;
  font-weight: 700;
  position: relative;
}
.btn-01 a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  background: url("../images/common/arrow-02.svg") no-repeat 50% 50%/cover;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.btn-01 a:hover {
  background: #E881C9;
}
.btn-01 a:hover::after {
  right: 1.7rem;
}
.btn-01.pink a {
  background: #E881C9;
}
.btn-01.pink a:hover {
  background: #27B9B9;
}
@media screen and (max-width: 640px) {
  .btn-01 a {
    font-size: 1.3rem;
    padding: 0.75em 1em;
    width: 20.5rem;
  }
}

.only-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .only-pc {
    display: none;
  }
  .only-sp {
    display: block;
  }
}

.under-tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .under-tb {
    display: block;
  }
}

.note {
  line-height: 1.6666666667;
  text-indent: -1em;
  margin-left: 1em;
}
.note::before {
  content: "※";
}

/**======================================
	setting
======================================**/
/*-----------------------------------

	$base

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

	$header

-----------------------------------*/
.header {
  position: fixed;
  width: 100%;
  padding: 2rem 2% 2rem 5%;
  z-index: 99999;
  top: 0;
  left: 0;
  background: #fff;
}
#top .header {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
}
#top .header.is-fixed {
  position: fixed;
  background: #fff;
}
.header__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  position: relative;
  z-index: 1;
  max-width: 34.5rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.header__logo h1 {
  margin: 0;
  width: 100%;
}
.header__logo h1 img {
  width: 100%;
  height: auto;
  display: block;
}
.open .header__logo {
  z-index: -1;
}
.header__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  position: relative;
  z-index: 0;
}
.header__utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2.4rem;
}
.header__link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.header__link-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #E881C9;
  border-radius: 100px;
  font-weight: 700;
  color: #fff;
  padding: 0.8em 2em;
}
.header__link-btn a:hover, .header__link-btn a:active {
  background: #27B9B9;
}
.header .searchform {
  border: 1px solid #707070;
  width: 21rem;
  border-radius: 10rem;
  background: #fff;
  overflow: hidden;
}
.header .searchform input {
  border: none;
  outline: none;
  width: 17rem;
  padding-left: 1em;
  background: none;
}
.header .searchform input::-webkit-input-placeholder {
  color: #fff;
  text-indent: -99999999em;
  overflow: hidden;
}
.header .searchform input::-moz-placeholder {
  color: #fff;
  text-indent: -99999999em;
  overflow: hidden;
}
.header .searchform input:-ms-input-placeholder {
  color: #fff;
  text-indent: -99999999em;
  overflow: hidden;
}
.header .searchform input::-ms-input-placeholder {
  color: #fff;
  text-indent: -99999999em;
  overflow: hidden;
}
.header .searchform input::placeholder {
  color: #fff;
  text-indent: -99999999em;
  overflow: hidden;
}
.header .searchform button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4rem;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
  text-indent: -99999999em;
}
.header .searchform button::after {
  content: "";
  width: 1.7rem;
  height: 1.5rem;
  background: url("../images/common/icon-search.svg") no-repeat 0 0;
}
.header .search__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__search {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header__link ul {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
  .header__link-btn a {
    padding: 0.4em 1.5em;
  }
}

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

	$base

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

	$header- tablet

-----------------------------------*/
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 50%;
    max-width: 30rem;
  }
  .open .header__logo {
    z-index: 999;
  }
  .header__search-pc {
    display: none;
  }
  .header-sp {
    display: block;
  }
  .header-sp__search form {
    margin: auto;
  }
  .header-sp__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1.4rem 0 2rem;
  }
  .header-sp__sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  .header__link {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 9999;
  }
  .header__link ul {
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
  }
  .header__link-btn {
    width: 33.3333333333%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__link-btn a {
    border-radius: 0;
    text-align: center;
    width: 100%;
    padding: 1.4rem;
  }
}
/*-----------------------------------

	$base

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

	$header- mobile

-----------------------------------*/
@media screen and (max-width: 640px) {
  .header {
    padding: 1rem;
  }
  #top .header {
    position: relative;
  }
  .header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
    position: relative;
    width: 70%;
    max-width: 24rem;
  }
  .open .header__logo {
    z-index: 999;
  }
  .header__search-pc {
    display: none;
  }
  .header-sp {
    display: block;
  }
  .header-sp__search form {
    margin: auto;
  }
  .header-sp__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1.4rem 0 2rem;
  }
  .header-sp__sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  .header__link-btn a {
    padding: 0.5em 0.25em;
  }
}
/*-----------------------------------

	$base

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

	$nav

-----------------------------------*/
.nav {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.nav__toggle {
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 100%;
  background: #E881C9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-row-gap: 0.7rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.nav__toggle:hover {
  cursor: pointer;
  background: #27B9B9;
}
.nav__toggle span {
  display: block;
  height: 0.2rem;
  width: 1.6rem;
  background: #fff;
  border-radius: 2px;
}
.nav__target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1.5%;
  padding-bottom: 4rem;
}
.nav__target a {
  border: 1px solid #707070;
  border-radius: 1.1rem;
  padding: 0.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.nav__target a:hover {
  color: #E881C9;
  border-color: #E881C9;
}

.drawer {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: -9999;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.drawer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drawer__image {
  width: 25.6222547584%;
  height: 100vh;
  background: url("../images/common/bg-drawer.png") no-repeat top center/cover;
}
.drawer__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: auto;
  height: calc(100vh - 10rem);
  margin-top: 10rem;
  padding: 4rem 2.196193265% 4rem 7.3206442167%;
}

.gnav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0 auto 0 auto 0 auto 0 auto;
  grid-template-columns: auto auto auto auto auto;
  gap: 4rem 0;
}
@media screen and (max-width: 1280px) {
  .gnav {
    grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
  }
}
.gnav > li {
  padding-right: 1rem;
}
.gnav > li > span,
.gnav > li > a {
  font-size: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gnav > li > span::before,
.gnav > li > a::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 2.2rem;
  background: url("../images/common/arrow-01.svg") no-repeat 0 0;
}
.gnav .sub-menu {
  padding-left: 3rem;
}
.gnav .sub-menu li {
  line-height: 1.7857142857;
}
.gnav .sub-menu a {
  font-size: 1.4rem;
  position: relative;
}
.gnav .sub-menu a::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: url("../images/common/icon-link.svg") no-repeat 0 0/cover;
  margin-right: 0.5rem;
}
.gnav .sub-menu a span {
  position: relative;
}
.gnav .sub-menu a span::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #E881C9;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.gnav .sub-menu a span:hover::after {
  width: 100%;
}
.gnav__sns {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gnav__sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1280px) {
  .gnav__sns {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

/* open --------------------------*/
.open {
  height: 100%;
  overflow: hidden;
}
.open body {
  height: 100%;
  overflow: hidden;
}
.open .nav__toggle {
  background: url("../images/common/icon-close.svg") no-repeat 50% 50%/cover;
}
.open .nav__toggle span {
  display: none;
}
.open .nav__toggle:hover {
  opacity: 0.7;
}
.open .drawer {
  visibility: visible;
  opacity: 1;
  z-index: -1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

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

	$base

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

	$nav - tablet

-----------------------------------*/
@media screen and (max-width: 1024px) {
  .nav__toggle {
    width: 4.8rem;
    height: 4.8rem;
    grid-row-gap: 0.5rem;
  }
  .nav__toggle span {
    height: 0.1rem;
    width: 1.4rem;
  }
  .drawer__image {
    display: none;
  }
  .drawer__nav {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 6.5rem;
  }
  .gnav__sns {
    display: none;
  }
}
/*-----------------------------------

	$base

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

	$nav - mobile

-----------------------------------*/
@media screen and (max-width: 640px) {
  .nav__toggle {
    width: 3.6rem;
    height: 3.6rem;
    grid-row-gap: 0.4rem;
  }
  .nav__toggle span {
    height: 0.1rem;
    width: 0.8rem;
  }
  .nav__target {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem 0.8rem;
    padding-bottom: 2.6rem;
  }
  .nav__target a {
    font-size: 1.2rem;
    width: auto;
    padding: 0.6em 1em;
  }
  .drawer__nav {
    padding-top: 0;
    margin-top: 6rem;
  }
  .gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem 0;
  }
  .gnav > li > a::after {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 0.5rem;
    background: url("../images/common/arrow-03.svg") no-repeat 0 0/cover;
    margin-left: 0.7rem;
  }
  .gnav > li > a.show::after {
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }
  .gnav__sns {
    display: none;
  }
}
/*-----------------------------------

	$base

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

	$footer

-----------------------------------*/
.footer {
  padding: 4rem 0 3rem;
  background: #27B9B9;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 2rem;
}
.footer__info {
  padding-top: 2rem;
}
.footer__info li {
  line-height: 1.5;
}
.footer__link {
  padding-top: 1rem;
}
.footer__link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__link li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__link li:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.1em;
  background: #fff;
  margin: 0 1.6rem;
}
.footer__link a {
  font-size: 1.3rem;
  position: relative;
}
.footer__link a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.footer__link a:hover::after {
  width: 100%;
}
.footer__sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.footer .copyright {
  padding-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

#scroll {
  position: fixed;
  width: 6.4rem;
  height: 12rem;
  background: url("../images/common/scroll.svg") no-repeat 0 0/cover;
  right: -1rem;
  bottom: 3.4rem;
}

#pagetop {
  position: fixed;
  right: 2rem;
  bottom: 3.4rem;
  display: none;
  -webkit-animation: 0.5s ease-in-out forwards fadeUp;
          animation: 0.5s ease-in-out forwards fadeUp;
}
#pagetop a {
  display: inline-block;
  text-decoration: none;
  width: 5.4rem;
  height: 5.8rem;
  background: url("../images/common/pagetop.svg") no-repeat 0 0/cover;
}

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

	$base

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

	$footer - tablet

-----------------------------------*/
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 0;
  }
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__sns {
    padding: 2rem 0;
  }
  .footer__sns ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #scroll {
    display: none;
  }
}
/*-----------------------------------

	$base

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

	$footer - mobile

-----------------------------------*/
@media screen and (max-width: 640px) {
  .footer {
    padding-bottom: 0;
  }
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__link ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__link li:not(:first-child)::before {
    display: none;
  }
  .footer__link a {
    font-size: 1.1rem;
    line-height: 1.8181818182;
  }
  .footer__sns {
    padding: 1rem 0;
  }
  .footer .copyright {
    font-size: 1rem;
  }
  #scroll {
    display: none;
  }
  #pagetop {
    right: 0.5rem;
    bottom: 1rem;
  }
}
/*-----------------------------------

	$base

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

	$setting.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: 3.2rem;
  font-weight: 500;
  margin: 0 0 1em;
}
.module__h3title {
  font-size: 2.4rem;
  margin: 0 0 0.5em;
  color: #007557;
}
.module__h4title {
  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: 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%);
  transform: translate(0, -50%);
}
.module__table {
  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: 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__ol.brackets > li {
  list-style-type: none;
  counter-increment: cnt;
  text-indent: -2.5em;
}
.module__ol.brackets > li::before {
  content: "（" counter(cnt) "）";
}
.module__ol.brackets > li ol {
  margin-left: 2em;
}
.module__ol.brackets > li ol li {
  text-indent: 0;
}
.module__captionlist li {
  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: 1024px) {
  .module__title {
    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: 2rem;
    line-height: 1.4;
  }
  .module__title span {
    padding: 0 0 0.4em;
  }
  .module__h3title {
    font-size: 1.8rem;
  }
  .module__h4title {
    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;
}

.list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  margin: 2em auto 0;
}
.list__btn a {
  display: inline-block;
  position: relative;
  padding: 0.8em 2.5em;
  font-size: 1.5rem;
  display: inline-block;
  color: #fff;
  background: #007557;
  border-radius: 6px;
}
.list__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%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 640px) {
  .list__btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 80%;
  }
  .list__btn li {
    width: 100%;
  }
  .list__btn a {
    display: block;
    text-align: center;
  }
}

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

    print - 印刷設定

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