@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,600,700,800&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 599px) and (max-width: 1024px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1600px;
    -webkit-print-color-adjust: exact;
    transform: scale(0.6);
    -moz-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform-origin: 0 0;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #222;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.5rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 400;
  }
}

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 30px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 1024px) {
  .mb120 {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb120 {
    margin-bottom: 50px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.breadcrumbs {
  display: flex;
}
.breadcrumbs li {
  position: relative;
  color: #838383;
  font-size: 1.4rem;
  font-weight: 500;
}
.breadcrumbs li:not(:last-child) {
  padding-right: 35px;
}
.breadcrumbs li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: 14px;
}
.breadcrumbs li a {
  color: #ff6c8b;
  text-decoration: underline;
}
.breadcrumbs li a:hover {
  text-decoration: none;
}

.file-btn {
  width: 100%;
  padding: 23px 30px 23px 70px;
  border: 1px solid #ccc;
  background-color: #fff;
  line-height: 1.5;
  color: #000;
  display: block;
  background-image: url(../img/common/icon_links.png);
  background-size: 25px auto;
  background-position: 25px 48%;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .file-btn:hover {
    color: #ff6c8b;
    background-color: #f8f9fb;
    border: 1px solid #a6bbe5;
  }
}
@media screen and (max-width: 1024px) {
  .file-btn {
    padding: 20px 30px 20px 64px;
    background-position: 23px 48%;
  }
}
@media screen and (max-width: 599px) {
  .file-btn {
    font-size: 1.4rem;
    padding: 15px 30px 15px 45px;
    background-size: 18px auto;
    background-position: 15px 48%;
  }
}
.file-btn::before {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  transform: rotate(45deg);
}
.file-btn.pdf {
  background-image: url(../img/common/icon_pdf.png);
  background-size: 24px auto;
}
@media screen and (max-width: 599px) {
  .file-btn.pdf {
    background-size: 18px auto;
  }
}
.file-btn.xlsx {
  background-image: url(../img/common/icon_elsx.png);
  background-size: 24px auto;
}
@media screen and (max-width: 599px) {
  .file-btn.xlsx {
    background-size: 18px auto;
  }
}
.file-btn.docx {
  background-image: url(../img/common/icon_word.png);
  background-size: 24px auto;
}
@media screen and (max-width: 599px) {
  .file-btn.docx {
    background-size: 18px auto;
  }
}

.base-btn {
  display: block;
  position: relative;
  border-radius: 100px;
  background-color: #14afdb;
  margin: 0 auto;
  padding: 14px 25px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .base-btn {
    padding: 13px 20px;
  }
}
.base-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .base-btn:hover {
    background-color: #ff6c8b;
    border-color: transparent;
    color: #fff;
  }
  .base-btn:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
.base-btn--blue {
  background-color: #ff6c8b;
}
@media screen and (min-width: 1025px) {
  .base-btn--blue:hover {
    background-color: #14afdb;
  }
}
.base-btn--back::after {
  left: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(225deg);
}
@media screen and (min-width: 1025px) {
  .base-btn--back:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(225deg);
  }
}

.footer-nav-fix {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  display: none;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .footer-nav-fix {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .footer-nav-fix {
    padding: 0 10px;
  }
}
.footer-nav-fix__inner {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
}
.footer-nav-fix__links {
  width: calc(100% - 140px);
  display: flex;
  justify-content: space-around;
  padding: 0 10px;
}
.footer-nav-fix__links > li > a {
  font-size: 1.2rem;
  color: #222;
  font-weight: 500;
  display: block;
  width: 100%;
  height: 100%;
  padding: 43px 3px 9px;
  text-align: center;
  line-height: 1.1;
}
.footer-nav-fix__links > li > a.program {
  background-image: url(../img/common/icon_book.svg);
  background-size: 27px auto;
  background-position: left 50% top 14px;
  background-repeat: no-repeat;
}
.footer-nav-fix__links > li > a.course {
  background-image: url(../img/common/icon_setsumei.svg);
  background-size: 28px auto;
  background-position: left 50% top 15px;
  background-repeat: no-repeat;
}
.footer-nav-fix__links > li > a.access {
  background-image: url(../img/common/icon_map.svg);
  background-size: 18px auto;
  background-position: left 50% top 16px;
  background-repeat: no-repeat;
}
.footer-nav-fix__oc {
  width: 140px;
}
.footer-nav-fix__oc a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #5f429c;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 10px 5px 10px 62px;
  position: relative;
}
.footer-nav-fix__oc a::before, .footer-nav-fix__oc a::after {
  position: absolute;
  content: "";
  width: 39px;
  height: 39px;
  border-radius: 50%;
  left: 16px;
  top: calc(50% - 19px);
}
.footer-nav-fix__oc a::after {
  background-image: url(../img/common/icon_pc.svg);
  background-size: 27px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-nav-fix__oc a::before {
  background-color: #fff;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .pagetop:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .pagetop {
    display: none !important;
  }
}

/*ヘッダー*/
.header-logo {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 325px;
  z-index: 10;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .header-logo:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    max-width: 225px;
  }
}

/*デザイン用*/
.des-contents {
  padding-left: 275px;
  text-align: center;
  padding-bottom: 120px;
}
@media screen and (max-width: 1600px) {
  .des-contents {
    padding-left: 260px;
  }
}

.des-inner {
  padding: 0 40px;
}

.fix_osusume {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.fix_osusume .slider-container {
  width: 400px;
  overflow: hidden;
  position: relative;
  border: 2px solid #333;
}
.fix_osusume .slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 400%;
}
.fix_osusume .slide {
  width: 400px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
}
.fix_osusume .slide:nth-child(1) {
  background: red;
}
.fix_osusume .slide:nth-child(2) {
  background: blue;
}
.fix_osusume .slide:nth-child(3) {
  background: green;
}
.fix_osusume .slide:nth-child(4) {
  background: purple;
}
.fix_osusume .prev, .fix_osusume .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.fix_osusume .prev {
  left: 10px;
}
.fix_osusume .next {
  right: 10px;
}

/*--------------------------------------------------------
pagination
----------------------------------------------------------*/
.pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__prev, .pagination__next {
  display: block;
  position: relative;
  color: #444;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .pagination__prev, .pagination__next {
    font-size: 2rem;
    font-weight: 500;
  }
}
.pagination__prev:hover, .pagination__next:hover {
  opacity: 0.7;
}
.pagination__prev {
  margin-right: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    margin-right: 10px;
  }
}
.pagination__next {
  margin-left: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .pagination__next {
    margin-left: 10px;
  }
}
.pagination__num, .pagination__while {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  text-align: center;
}
.pagination__num {
  background-color: #e3e3e3;
  color: #444;
  font-size: 1.6rem;
  line-height: 43px;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .pagination__num {
    font-size: 1.5rem;
    line-height: 40px;
  }
}
.pagination__num:hover, .pagination__num.current {
  background-color: #ff6c8b;
  color: #fff;
}
.pagination__while {
  color: #444;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 43px;
}
@media screen and (max-width: 599px) {
  .pagination__while {
    width: 15px;
    font-size: 1.6rem;
  }
}

#nav-open {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #ff6c8b;
  z-index: 100;
  border-radius: 5px;
}
@media screen and (min-width: 1025px) {
  #nav-open {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    top: 13px;
    right: 12px;
    width: 50px;
    height: 50px;
  }
}
#nav-open.active {
  background-color: rgba(255, 255, 255, 0.3);
}
#nav-open > span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
}
#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
}
#nav-open > span > span::before, #nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
}
#nav-open > span > span::before {
  top: -7px;
}
#nav-open > span > span::after {
  bottom: -7px;
}
#nav-open.active > span > span {
  background-color: transparent;
}
#nav-open.active > span > span::before, #nav-open.active > span > span::after {
  top: 0;
}
#nav-open.active > span > span::before {
  transform: rotate(225deg);
}
#nav-open.active > span > span::after {
  transform: rotate(-225deg);
}

#nav-content {
  overflow: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  background-color: rgba(255, 108, 139, 0.95);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  #nav-content {
    display: none;
  }
}

#nav-input {
  display: none;
}
#nav-input:checked ~ #nav-content {
  pointer-events: auto;
  opacity: 1;
}

/*--------------------------------------------------------
_tab
----------------------------------------------------------*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .tab-wrap {
    padding: 0;
  }
}

.tab-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 24.975%;
  padding: 15px;
  border-top: 3px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid transparent;
  color: #000;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  order: -1;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .tab-label {
    padding: 10px 5px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .tab-label {
    border-top: 2px solid transparent;
    padding: 5px 3px;
    font-size: 1.2rem;
  }
}

.tab-content {
  width: 100%;
  display: none;
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .tab-content {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .tab-content {
    margin-top: 15px;
  }
}

.tab-switch:checked + .tab-label {
  border-bottom-color: transparent;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.tab-switch:checked + .tab-label.all {
  border-top-color: #ff6c8b;
}
.tab-switch:checked + .tab-label.info {
  border-top-color: #ffad41;
}
.tab-switch:checked + .tab-label.yobou {
  border-top-color: #67ce7b;
}
.tab-switch:checked + .tab-label.check {
  border-top-color: #ff9c9c;
}

.tab-switch:checked + .tab-label + .tab-content {
  display: block;
}

.tab-switch {
  display: none;
}

.base-table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.base-table thead th {
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #ff6c8b;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .base-table thead th {
    padding: 10px;
    font-size: 14px;
  }
}
.base-table th {
  padding: 18px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3em;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #e5e9f3;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .base-table th {
    padding: 10px;
    font-size: 14px;
  }
}
.base-table td {
  padding: 18px;
  font-size: 15px;
  line-height: 1.3em;
  color: #000;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .base-table td {
    padding: 10px;
    font-size: 14px;
  }
}

.ttl01 {
  margin-bottom: 30px;
  padding: 20px 0 20px 0;
  font-size: 25px;
  line-height: 1.2em;
  color: #444;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  position: relative;
  border-bottom: 5px solid #e2e2e2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .ttl01 {
    margin-bottom: 25px;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .ttl01 {
    margin-bottom: 20px;
    padding: 10px 0 10px 0;
    border-bottom-width: 3px;
    font-size: 18px;
  }
}
.ttl01::before {
  content: "";
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 5px;
  background-color: #ff6c8b;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .ttl01::before {
    bottom: -3px;
    width: 50px;
    height: 3px;
  }
}

.ttl02 {
  margin-bottom: 20px;
  padding: 20px 20px 20px 35px;
  font-size: 19px;
  line-height: 1.2em;
  color: #ff6c8b;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  background-color: #e5e9f3;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .ttl02 {
    margin-bottom: 20px;
    padding: 18px 20px 19px 35px;
    font-size: 17px;
  }
}
@media screen and (max-width: 599px) {
  .ttl02 {
    margin-bottom: 15px;
    padding: 12px 20px 13px;
    font-size: 14px;
  }
}
.ttl02::before {
  content: "";
  top: 0;
  left: 15px;
  width: 4px;
  height: 80%;
  background-color: #ff6c8b;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .ttl02::before {
    left: 10px;
    width: 3px;
  }
}

#wysiwyg {
  /*デフォルトの処理*/
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*youtube*/
  /*区切り線*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 599px) {
  #wysiwyg {
    font-size: 14px;
    line-height: 1.8;
  }
}
#wysiwyg a {
  color: #ff6c8b;
  text-decoration: underline;
}
#wysiwyg a:hover {
  color: #ff6c8b;
  text-decoration: none;
}
#wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
#wysiwyg .box {
  margin-bottom: 40px;
}
#wysiwyg .box:before, #wysiwyg .box:after {
  content: "";
  display: table;
}
#wysiwyg .box:after {
  clear: both;
}
@media screen and (max-width: 599px) {
  #wysiwyg .box {
    margin-bottom: 20px;
  }
}
#wysiwyg .title-line {
  margin-bottom: -5px;
  padding: 20px 0 20px 0;
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 400;
  position: relative;
  border-bottom: 4px solid #e2e2e2;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-line {
    margin-bottom: -15px;
    font-size: 20px;
    padding: 20px 0 15px 0;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line {
    margin-bottom: -5px;
    padding: 10px 0 12px 0;
    border-bottom-width: 2px;
    font-size: 18px;
  }
}
#wysiwyg .title-line::before {
  content: "";
  bottom: -4px;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #ff6c8b;
  position: absolute;
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-line::before {
    bottom: -2px;
    width: 50px;
    height: 2px;
  }
}
#wysiwyg .title-obi {
  margin-bottom: -10px;
  padding: 20px 20px 20px 57px;
  font-size: 19px;
  line-height: 1.2em;
  font-weight: 400;
  background-color: #e7f1f2;
  background-image: url(../img/common/icon_flower.png);
  background-size: 33.5px auto;
  background-repeat: no-repeat;
  background-position: 15px 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-obi {
    padding: 18px 20px 19px 45px;
    font-size: 17px;
    margin-bottom: -20px;
    background-size: 25px auto;
    background-position: 13px 16px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi {
    margin-bottom: -10px;
    padding: 13px 20px 14px 39px;
    font-size: 16px;
    background-size: 22px auto;
    background-position: 11px 11px;
  }
}
#wysiwyg .title-obi02 {
  border-top: 1px dotted #adaeaf;
  border-bottom: 1px dotted #adaeaf;
  padding: 15px 15px 15px 25px;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-obi02 {
    margin-bottom: -15px;
    font-size: 17px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi02 {
    margin-bottom: -5px;
    padding: 14px 0 14px 20px;
    font-size: 15px;
  }
}
#wysiwyg .title-obi02::before {
  content: "";
  top: 18px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid #ff6c8b;
  border-radius: 50%;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-obi02::before {
    top: 17px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-obi02::before {
    width: 13px;
    top: 15px;
    height: 13px;
    border-width: 3px;
  }
}
#wysiwyg .title-icon {
  margin-bottom: -35px;
  padding-left: 1.2em;
  font-size: 17px;
  line-height: 1.2em;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-icon {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon {
    margin-bottom: -5px;
    font-size: 15px;
    padding-left: 1.1em;
  }
}
#wysiwyg .title-icon::before {
  content: "";
  top: 5px;
  left: 0;
  width: 11px;
  height: 11px;
  background-color: #ff6c8b;
  border-radius: 100px;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .title-icon::before {
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .title-icon::before {
    top: 4px;
    left: 0;
    width: 8px;
    height: 8px;
  }
}
#wysiwyg .copy01 {
  margin-bottom: -15px;
  font-size: 20px;
  line-height: 1.5;
  color: #ff6c8b;
  font-weight: bold;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .copy01 {
    margin-bottom: -25px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .copy01 {
    margin-bottom: -5px;
    font-size: 15px;
  }
}
#wysiwyg .copy02 {
  margin-bottom: -15px;
  font-size: 22px;
  line-height: 1.5;
  color: #ff6c8b;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .copy02 {
    margin-bottom: -25px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #wysiwyg .copy02 {
    margin-bottom: -5px;
    font-size: 16px;
  }
}
#wysiwyg .text {
  font-size: 15px;
  line-height: 2em;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  #wysiwyg .text {
    font-size: 14px;
    line-height: 1.8em;
  }
}
#wysiwyg .text--mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: 300;
}
#wysiwyg .img-right {
  margin: 7px 0 30px 30px;
  width: auto;
  max-width: 33%;
  float: right;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}
#wysiwyg .img-left {
  margin: 7px 30px 30px 0;
  width: auto;
  max-width: 33%;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}
#wysiwyg .btn-wrapper {
  text-align: center;
}
#wysiwyg .btn-wrapper a {
  display: inline-block;
  position: relative;
  border-radius: 100px;
  background-color: #14afdb;
  margin: 0 auto;
  padding: 14px 40px 14px 40px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper a {
    padding: 13px 30px;
  }
}
#wysiwyg .btn-wrapper a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  #wysiwyg .btn-wrapper a::after {
    right: 15px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1025px) {
  #wysiwyg .btn-wrapper a:hover {
    background-color: #ff6c8b;
    border-color: transparent;
    color: #fff;
  }
  #wysiwyg .btn-wrapper a:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
#wysiwyg .btn-wrapper--back a::after {
  left: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(225deg);
}
@media screen and (min-width: 1025px) {
  #wysiwyg .btn-wrapper--back a:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(225deg);
  }
}
#wysiwyg .photo-3 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#wysiwyg .photo-3::after {
  content: none;
}
#wysiwyg .photo-3 li {
  margin-left: 20px;
  width: calc((99.9% - 40px) / 3);
  text-align: center;
}
#wysiwyg .photo-3 li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  #wysiwyg .photo-3 li {
    display: block;
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
  }
  #wysiwyg .photo-3 li:first-child {
    margin-top: 0;
  }
}
#wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#wysiwyg .photo-2::after {
  content: none;
}
#wysiwyg .photo-2 li {
  margin-left: 20px;
  width: calc((99.9% - 20px) / 2);
  text-align: center;
}
#wysiwyg .photo-2 li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  #wysiwyg .photo-2 li {
    margin-left: 10px;
    width: calc((100% - 10px) / 2);
  }
}
#wysiwyg .photo-1 {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
#wysiwyg .caption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 599px) {
  #wysiwyg .caption {
    margin-top: 5px;
    font-size: 12px;
  }
}
#wysiwyg .list-wrapper {
  padding: 25px;
  background-color: #fff;
  border: 1px solid #ddd;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper {
    padding: 20px;
  }
}
#wysiwyg .list-wrapper li {
  width: 100%;
  margin-top: 10px;
  padding-left: 1.2em;
  font-size: 15px;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
  letter-spacing: 0.05em;
}
#wysiwyg .list-wrapper li:first-child {
  margin-top: 0;
}
#wysiwyg .list-wrapper li::before {
  content: "";
  top: 7px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: #ff6c8b;
  position: absolute;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper li {
    margin-top: 7px;
    font-size: 14px;
  }
  #wysiwyg .list-wrapper li::before {
    content: "";
    top: 6px;
    left: 0px;
    width: 6px;
    height: 6px;
  }
}
#wysiwyg .list-wrapper02 {
  counter-reset: num;
  padding: 25px;
  background-color: #e7f1f2;
  list-style: none;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 {
    padding: 20px;
  }
}
#wysiwyg .list-wrapper02 li {
  width: 100%;
  position: absolute;
  margin-top: 10px;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.5em;
  text-align: justify;
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 li {
    margin-top: 7px;
    padding-left: 25px;
    font-size: 14px;
  }
}
#wysiwyg .list-wrapper02 li:first-child {
  margin-top: 0;
}
#wysiwyg .list-wrapper02 li::before {
  content: counter(num);
  counter-increment: num;
  top: -2px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #ff6c8b;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 25px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #wysiwyg .list-wrapper02 li::before {
    top: 0;
    left: 0px;
    width: 18px;
    height: 18px;
    font-size: 1.1rem;
    line-height: 18px;
  }
}
#wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
#wysiwyg .table thead th {
  padding: 15px 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #ff6c8b;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table thead th {
    padding: 10px;
    font-size: 13px;
  }
}
#wysiwyg .table th {
  padding: 15px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3em;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #e7f1f2;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table th {
    padding: 10px;
    font-size: 13px;
  }
}
#wysiwyg .table td {
  padding: 15px;
  font-size: 15px;
  line-height: 1.3em;
  color: #000;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  #wysiwyg .table td {
    padding: 10px;
    font-size: 13px;
  }
}
#wysiwyg .youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}
#wysiwyg .youtube-wrapper::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
#wysiwyg .youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
#wysiwyg .line {
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  #wysiwyg .line {
    margin-bottom: -10px;
  }
}
#wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
#wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
#wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
#wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
#wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
  color: #000;
}
#wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #000;
}
#wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
#wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
#wysiwyg ul {
  padding-left: 40px;
  list-style-type: disc;
}
#wysiwyg ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
#wysiwyg blockquote {
  padding-left: 1em;
}
#wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
#wysiwyg hr {
  display: block;
}
#wysiwyg em {
  font-style: italic !important;
}
#wysiwyg strong {
  font-weight: bold !important;
}
#wysiwyg em strong, #wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
/*アニメーション*/
@keyframes zoomIn_copy {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fadein {
  opacity: 0;
  transform: scale(0.8);
  transition: none;
}

.fadein--on {
  animation: zoomIn_copy 0.5s ease 0s alternate forwards;
}

.deley01 {
  animation-delay: 0.1s;
}

.deley02 {
  animation-delay: 0.2s;
}

.deley03 {
  animation-delay: 0.3s;
}

.deley04 {
  animation-delay: 0.4s;
}

.deley05 {
  animation-delay: 0.5s;
}

.top-bg-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/bg.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/*左固定*/
.top-left-photos {
  position: fixed;
  padding-left: 70px;
  left: 0;
  bottom: 80px;
  width: calc((100% - 460px) / 2);
  height: calc(100% - 120px);
  display: flex;
  align-items: flex-end;
}
.top-left-photos img {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 1500px) {
  .top-left-photos {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-left-photos {
    display: none;
  }
}

/*右固定*/
.top-side-fix {
  position: fixed;
  width: calc((100% - 400px) / 2);
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .top-side-fix {
    display: none;
  }
}
.top-side-fix__inner {
  max-width: 240px;
}

/*line*/
.top-side-form {
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #fff;
  padding: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .top-side-form:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.top-side-form > a {
  display: block;
  border-radius: 5px;
  background-color: #5f429c;
  padding: 12px;
  position: relative;
}
.top-side-form > a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 9px);
  right: 10px;
}
.top-side-form > a::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 9px;
  border-width: 4px 6px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #5f429c;
}
.top-side-form__text01 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  padding: 15px 30px 16px 55px;
  position: relative;
}
.top-side-form__text01::before, .top-side-form__text01::after {
  position: absolute;
  content: "";
  width: 47px;
  height: 47px;
  border-radius: 50%;
  left: 0;
  top: calc(50% - 24px);
}
.top-side-form__text01::after {
  background-image: url(../img/common/icon_pc.svg);
  background-size: 27px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.top-side-form__text01::before {
  background-color: #fff;
}

.top-side-links {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 10px 15px;
  margin-bottom: 20px;
}
.top-side-links > ul > li {
  border-bottom: 1px dotted #c2c2c2;
  list-style: none;
}
.top-side-links > ul > li:last-of-type {
  border-bottom: none;
}
.top-side-links > ul > li > a {
  padding: 12px 10px 12px 38px;
  display: block;
  color: #222;
  font-weight: 400;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  .top-side-links > ul > li > a:hover {
    color: #f65a7b;
    transform: translateX(3px);
  }
}
.top-side-links > ul > li > a.program {
  background-image: url(../img/common/icon_book.svg);
  background-size: 27px auto;
  background-position: left 2px top 13px;
}
.top-side-links > ul > li > a.course {
  background-image: url(../img/common/icon_setsumei.svg);
  background-size: 28px auto;
  background-position: left 0 top 14px;
}
.top-side-links > ul > li > a.access {
  background-image: url(../img/common/icon_map.svg);
  background-size: 18px auto;
  background-position: left 8px top 13px;
}

.top-side-bnr {
  border-radius: 8px;
  background-color: #fff;
  padding: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .top-side-bnr:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

.top-contents {
  max-width: 400px;
  background-color: #fff;
  min-height: 100vh;
  margin: 0 auto;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 599px) {
  .top-contents {
    max-width: 100%;
  }
}

/*メイン*/
.top-main {
  margin-bottom: 40px;
  background-color: #ff6c8b;
}
@media screen and (max-width: 599px) {
  .top-main {
    padding-top: 40px;
  }
}

/* ************ スケジュール ************ */
.top-schedule {
  padding: 0 20px;
}

.top-schedule-title {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.top-schedule-title span {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.top-schedule-day {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}
.top-schedule-day > li {
  width: calc((100% - 10px) / 2);
}
.top-schedule-day > li.comingsoon {
  border-radius: 5px;
  text-align: center;
  padding: 16px 5px 16px 10px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.9rem;
  font-weight: 600;
  background-color: #e7d2d7;
  color: #d1b4ba;
}
.top-schedule-day > li > a {
  display: block;
  background-color: #f6ee6f;
  border-radius: 5px;
  text-align: center;
  padding: 16px 5px 16px 10px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.9rem;
  font-weight: 600;
  color: #222;
}
@media screen and (min-width: 1025px) {
  .top-schedule-day > li > a:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.top-schedule-day__week {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  min-width: 40px;
  border-radius: 20px;
  background-color: #494949;
  padding: 4px 3px;
  line-height: 1;
  vertical-align: middle;
  margin-left: 5px;
}
.top-schedule-day__week--sunday {
  background-color: #f15662;
}
.top-schedule-day__week--saturday {
  background-color: #4872e7;
}
.comingsoon .top-schedule-day__week {
  background-color: #d1b4ba;
  color: #eee0e3;
}
.top-schedule-day__year {
  font-size: 1.5rem;
  margin-right: 5px;
}

.top-schedule-title2 {
  text-align: center;
  position: relative;
}
.top-schedule-title2 span {
  position: absolute;
  width: 86px;
  font-size: 2rem;
  padding-bottom: 6px;
  padding: 0 3px 6px;
  left: calc(50% - 43px);
  top: -20px;
}
.top-schedule-title2 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: #ff6c8b;
}

.top-schedule-inner {
  background-color: #fbe7eb;
  border-radius: 5px;
  padding: 0 10px 25px;
  margin-bottom: 50px;
}

.top-schedule-time {
  padding-top: 35px;
  text-align: center;
  max-width: 190px;
  margin: 0 auto;
}
.top-schedule-time > li {
  font-size: 2.4rem;
  font-weight: bold;
  background-image: url(../img/top/icon_clock.png);
  background-repeat: no-repeat;
  background-size: 29px 29px;
  padding: 0 0 0 36px;
  background-position: left 0 top 6px;
}

/* ************ お申し込み ************ */
.top-conversion {
  margin-bottom: 45px;
  background-color: #5f429c;
}
.top-conversion a {
  display: block;
  padding: 19px 35px;
  position: relative;
}
.top-conversion a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 9px);
  right: 35px;
}
.top-conversion a::after {
  content: "";
  position: absolute;
  top: 41px;
  right: 34px;
  border-width: 4px 6px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #5f429c;
}
.top-conversion__text01 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  padding: 15px 35px 16px 62px;
  position: relative;
}
.top-conversion__text01::before, .top-conversion__text01::after {
  position: absolute;
  content: "";
  width: 47px;
  height: 47px;
  border-radius: 50%;
  left: 0;
  top: calc(50% - 24px);
}
.top-conversion__text01::after {
  background-image: url(../img/common/icon_pc.svg);
  background-size: 27px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.top-conversion__text01::before {
  background-color: #fff;
}

/* ************ movie ************ */
.top-movie-title {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  z-index: 1;
  position: relative;
}
.top-movie-title span {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.top-movie {
  margin-top: -24px;
  background-color: #f4f4f4;
  padding: 35px 20px 50px;
}
.top-movie__text01 {
  text-align: center;
  margin-bottom: 15px;
}

.top-movie-slider {
  max-width: 320px;
  margin: 0 auto;
}
.top-movie-slider .prev-arrow {
  width: 40px;
  position: absolute;
  left: -28px;
  top: 50%;
  margin-top: -32px;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-movie-slider .prev-arrow:hover {
    opacity: 0.8;
  }
}
.top-movie-slider .next-arrow {
  width: 40px;
  position: absolute;
  right: -28px;
  top: 50%;
  margin-top: -32px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-movie-slider .next-arrow:hover {
    opacity: 0.8;
  }
}
.top-movie-slider__item {
  position: relative;
}
.top-movie-slider__item::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.top-movie-slider__item iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
}
.top-movie-slider__dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 17px;
}
.top-movie-slider__dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #a7a7a7;
  border-radius: 50%;
  cursor: pointer;
}
.top-movie-slider__dots-wrap li:hover {
  background: rgb(68, 68, 68);
}
.top-movie-slider__dots-wrap li.slick-active {
  background: rgb(68, 68, 68);
}
.top-movie-slider__dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/* ************ timetable ************ */
.top-timetable {
  padding: 55px 20px 10px;
}

.top-timetable-title {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  position: relative;
  margin-bottom: 25px;
}
.top-timetable-title::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 20px;
  width: 40%;
  max-width: 125px;
  height: 138px;
  background-image: url(../img/top/timetable_people.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-timetable-title span {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.top-timetable-list > li {
  position: relative;
}
.top-timetable-list > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 45px;
  width: 1px;
  height: 100%;
  border-left: 2px dotted #bfbfbf;
}
.top-timetable-list > li:last-of-type::before {
  content: none;
}
.top-timetable-list > li > dl {
  display: flex;
}
.top-timetable-list > li > dl > dt {
  width: 90px;
  height: 90px;
  background-color: #ff6c8b;
  border-radius: 400px;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.top-timetable-list > li > dl > dt span {
  font-size: 1.3rem;
  color: #f65a7b;
  display: block;
  background-color: #fff;
  border-radius: 100px;
  margin: 0 auto;
  text-align: center;
  padding: 2px 10px;
  margin-bottom: 5px;
}
.top-timetable-list > li > dl > dd {
  width: calc(100% - 90px);
  padding-left: 15px;
  padding-bottom: 25px;
}
.top-timetable-list__movie {
  position: relative;
}
.top-timetable-list__movie::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.top-timetable-list__movie video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
}
.top-timetable-list__photo {
  position: relative;
}
.top-timetable-list__photo::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.top-timetable-list__photo img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
}
.top-timetable-list__text {
  margin-top: 10px;
  line-height: 1.4;
}

/* ************ 学科別テーマ ************ */
.top-theme {
  margin-bottom: 50px;
}

.top-theme-title img {
  width: 100%;
}

.top-theme-inner {
  padding: 0 20px;
}

.top-theme-lead {
  padding: 30px 30px;
}

.top-theme-title2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}
.top-theme-title2 span {
  padding: 5px 47px 5px 8px;
  background-image: url(../img/top/icon_eye.png);
  background-repeat: no-repeat;
  background-size: 38px auto;
  background-position: right 0 top 3px;
}

.top-theme-coming {
  margin-bottom: 15px;
  background-color: #f4f4f4;
  border-radius: 5px;
  text-align: center;
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #d1d1d1;
  font-weight: 500;
  padding: 20px;
}

.top-theme-btn {
  margin-bottom: 60px;
}
.top-theme-btn a {
  width: 100%;
  max-width: 260px;
  display: block;
  background-color: #333333;
  border-radius: 200px;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  padding: 10px 10px 12px 25px;
  background-image: url(../img/common/icon_pdf_white.png);
  background-repeat: no-repeat;
  background-size: 19px auto;
  background-position: left 17px top 50%;
}
@media screen and (min-width: 1025px) {
  .top-theme-btn a:hover {
    opacity: 0.8;
  }
}

.top-theme-asunaro {
  border: 2px solid #92c52d;
  border-radius: 10px;
  padding: 40px 16px 20px;
  position: relative;
}
.top-theme-asunaro__title {
  position: absolute;
  top: -20px;
  left: 15px;
  border: 2px solid #92c52d;
  border-radius: 200px;
  background-color: #fff;
  padding: 4px 20px 6px 40px;
  color: #92c52d;
  font-weight: 500;
  background-image: url(../img/top/icon_frag.png);
  background-repeat: no-repeat;
  background-size: 23px auto;
  background-position: left 11px top 6px;
}
.top-theme-asunaro__photo {
  margin-bottom: 14px;
}
.top-theme-asunaro__text {
  text-align: justify;
}

/* ************ VOICE ************ */
.top-voice {
  background-color: #fbe7eb;
  padding: 0 20px 50px;
  position: relative;
}
.top-voice.change {
  background-color: #eaf7d0;
}
.top-voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #fff;
}

.top-voice-title {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  z-index: 1;
  position: relative;
  margin-bottom: 18px;
}
.top-voice-title span {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.top-voice-tab {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 27px;
}
.top-voice-tab__item {
  width: 100%;
  max-width: 150px;
  text-align: center;
  border: 2px solid #ff6c8b;
  background-color: #fff;
  border-radius: 5px;
  color: #f65a7b;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-voice-tab__item:hover {
    opacity: 0.8;
  }
}
.top-voice-tab__item--student.active {
  background-color: #ff6c8b;
  color: #fff;
  position: relative;
}
.top-voice-tab__item--student.active::before {
  content: "";
  margin-left: -4px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  border-width: 10px 8px;
  border-color: transparent;
  border-top-color: #ff6c8b;
  border-style: solid;
}
.top-voice-tab__item--parents {
  border: 2px solid #92c52d;
  color: #92c52d;
}
.top-voice-tab__item--parents.active {
  background-color: #92c52d;
  color: #fff;
  position: relative;
}
.top-voice-tab__item--parents.active::before {
  content: "";
  margin-left: -4px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  border-width: 10px 8px;
  border-color: transparent;
  border-top-color: #92c52d;
  border-style: solid;
}

.top-voice-content__item {
  display: none;
}
.top-voice-content__item.show {
  display: block;
}

.top-voice-list__item {
  margin-bottom: 20px;
  padding-left: 100px;
  background-repeat: no-repeat;
  background-size: 78px auto;
  min-height: 78px;
}
.top-voice-list__item:last-child {
  margin-bottom: 0;
}
.top-voice-list__item > p {
  background-color: #fff;
  border-radius: 10px;
  padding: 18px 18px;
  line-height: 1.4;
  box-shadow: 4px 4px 0 #ff6c8b;
  position: relative;
  text-align: justify;
}
.parents .top-voice-list__item > p {
  box-shadow: 4px 4px 0 #ff6c8b;
}
.top-voice-list__item > p::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -11px;
  width: 11px;
  height: 19px;
  background-image: url(../img/top/icon_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.parents .top-voice-list__item > p {
  box-shadow: 4px 4px 0 #92c52d;
}
.parents .top-voice-list__item > p::before {
  background-image: url(../img/top/icon_arrow2.png);
}
.top-voice-list__item--voice01 {
  background-image: url(../img/top/icon_voice01.png);
}
.top-voice-list__item--voice02 {
  background-image: url(../img/top/icon_voice02.png);
}
.top-voice-list__item--voice03 {
  background-image: url(../img/top/icon_voice03.png);
}
.top-voice-list__item--voice04 {
  background-image: url(../img/top/icon_voice04.png);
}
.top-voice-list__item--voice05 {
  background-image: url(../img/top/icon_voice05.png);
}
.top-voice-list__item--voice06 {
  background-image: url(../img/top/icon_voice06.png);
}
.top-voice-list__item--voice07 {
  background-image: url(../img/top/icon_voice07.png);
}
.top-voice-list__item--voice08 {
  background-image: url(../img/top/icon_voice08.png);
}

/* ************ gallery ************ */
.top-gallery {
  padding: 50px 0;
}
.top-gallery img {
  margin: 0 10px;
  width: 270px;
  border-radius: 5px;
}

/* ************ 診断 ************ */
.top-shindan {
  background-color: #f6ee6f;
  padding: 15px 0 25px;
}
.top-shindan__title {
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-shindan__title:hover {
    opacity: 0.8;
  }
}

.top-shindan-hidden {
  padding: 20px 20px;
  display: none;
}

.top-shindan-block {
  background-color: #fff;
  border: 2px solid #2c3083;
  border-radius: 10px;
  padding: 25px 15px;
  margin-bottom: 30px;
}
.top-shindan-block > ul {
  list-style: none;
}
.top-shindan-block > ul > li {
  margin-bottom: 17px;
  padding-bottom: 19px;
  border-bottom: 2px dotted #686dac;
}
.top-shindan-block > ul > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.top-shindan-box > dt {
  margin-bottom: 13px;
  font-size: 1.6rem;
  color: #2c3083;
  font-weight: 600;
  line-height: 1.2;
  padding: 0 0 0 30px;
  position: relative;
}
.top-shindan-box > dt span {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  margin-right: 10px;
}
.top-shindan-box > dd > ul {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0 30px;
}
.top-shindan-box > dd > ul > li {
  width: calc((100% - 10px) / 2);
}
.top-shindan-box > dd > ul > li input[type=radio] {
  display: none;
}
.top-shindan-box > dd > ul > li label {
  display: block;
  background-color: #d6d6d6;
  border-radius: 3px;
  text-align: center;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  padding: 8px;
  border-radius: 100px;
}
.top-shindan-box > dd > ul > li input[type=radio]:checked + label {
  background-color: #2c3083;
  color: #fff;
}

.top-shindan-btn > a {
  max-width: 190px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 13px;
  background-color: #f96a57;
  color: #fff;
  display: block;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
}
.top-shindan-btn > a::before {
  content: "";
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 20px;
  border-width: 6px 4px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #fff;
}
@media screen and (min-width: 1025px) {
  .top-shindan-btn > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

.top-shindan-result {
  padding-top: 35px;
  display: none;
}
.top-shindan-result__title {
  max-width: 240px;
  margin: 0 auto 20px;
}

.top-shindan-result-item {
  margin-bottom: 15px;
}
.top-shindan-result-item > a {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #fff;
  border: 2px solid #2c3083;
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .top-shindan-result-item > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.top-shindan-result-item__text-box {
  width: calc(100% - 80px);
}
.top-shindan-result-item__text-box > dt {
  padding: 11px 15px 8px;
  color: #2c3083;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.3;
}
.top-shindan-result-item__text-box > dd {
  background-color: #f9f7e0;
  border-bottom-left-radius: 10px;
  color: #2c3083;
  font-size: 1.3rem;
  line-height: 1.2;
  padding: 10px 15px;
  font-weight: 500;
}
.top-shindan-result-item__guide {
  width: 80px;
  background-color: #2c3083;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
}
.top-shindan-result-item__guide span {
  padding-bottom: 23px;
  position: relative;
}
.top-shindan-result-item__guide span::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -9px;
}
.top-shindan-result-item__guide span::after {
  content: "";
  position: absolute;
  border-width: 4px 6px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #2c3083;
  left: 50%;
  bottom: 5px;
  margin-left: -2px;
}

.top-shindan-result-notfound {
  text-align: center;
}

.top-shindan-result-btn {
  margin-top: 30px;
}
.top-shindan-result-btn__link {
  width: 100%;
  margin: 0 auto;
  max-width: 200px;
  border-radius: 200px;
  display: block;
  background-color: #d0d0d0;
  color: #a5a5a5;
  line-height: 1.2;
  padding: 10px 5px 10px 55px;
  font-weight: 500;
  background-image: url(../img/common/icon_pdf_none.png);
  background-repeat: no-repeat;
  background-size: 19px auto;
  background-position: left 25px top 50%;
}
.top-shindan-result-btn__link span {
  font-size: 1.1rem;
  display: block;
}

/*学科*/
.top-department {
  background-color: #f4f4f4;
  padding: 45px 20px;
  position: relative;
}
.top-department::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  background-color: #fff;
}

.top-department-title {
  margin-bottom: 40px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  z-index: 1;
  position: relative;
  margin-bottom: 18px;
}
.top-department-title span {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.top-department-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.top-department-list__item {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
}
.top-department-list__item__link {
  padding: 23px 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.2;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top-department-list__item__link:hover {
    color: #ff6c8b;
    opacity: 0.8;
  }
}
.top-department-list__item__link::before {
  content: "";
  margin-top: -9px;
  width: 18px;
  height: 18px;
  background-color: #ff6c8b;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
}
.top-department-list__item__link::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 9px;
  border-width: 4px 6px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #fff;
}
.top-department-list__item__link.childcare {
  background-color: #ffe1e7;
  color: #ff6c8b;
  border-radius: 5px;
}

.top-department-course {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10px 10px;
}
.top-department-course__item {
  width: 100%;
  margin-bottom: 10px;
}
.top-department-course__item:last-child {
  margin-bottom: 0;
}
.top-department-course__item__link {
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  position: relative;
}
.top-department-course__item__link::before {
  content: "";
  margin-top: -9px;
  width: 18px;
  height: 18px;
  background-color: #ff6c8b;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
}
.top-department-course__item__link::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 9px;
  border-width: 4px 6px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #fff;
}
.top-department-course__item__link.food {
  color: #45b700;
  background-color: #e4f2db;
}
.top-department-course__item__link.food::before {
  background-color: #45b700;
}
.top-department-course__item__link.welfare {
  color: #f47f0c;
  background-color: #f7ebdf;
}
.top-department-course__item__link.welfare::before {
  background-color: #f47f0c;
}
.top-department-course__item__link.multicultural {
  color: #a346ae;
  background-color: #f2e5f4;
}
.top-department-course__item__link.multicultural::before {
  background-color: #a346ae;
}
@media screen and (min-width: 1025px) {
  .top-department-course__item__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}

.top-qa {
  padding: 45px 20px 30px;
}

.top-qa-title {
  margin-bottom: 40px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  z-index: 1;
  position: relative;
  margin-bottom: 18px;
}
.top-qa-title span {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.top-qa-list > li > dl > dt {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 8px 30px 10px 28px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  background-image: url(../img/common/icon_plus.png);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: right 0 top 50%;
  cursor: pointer;
}
.top-qa-list > li > dl > dt::before {
  content: "Q.";
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 2.3rem;
  color: #b9b9b9;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
}
.top-qa-list > li > dl > dt.active {
  background-image: url(../img/common/icon_minus.png);
}
@media screen and (min-width: 1025px) {
  .top-qa-list > li > dl > dt:hover {
    opacity: 0.8;
  }
}
.top-qa-list > li > dl > dd {
  display: none;
  position: relative;
  padding: 0 0 20px 30px;
}
.top-qa-list > li > dl > dd::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.3rem;
  color: #b9b9b9;
  font-family: "Roboto Condensed", sans-serif;
  color: #f65a7b;
  font-weight: 500;
  line-height: 1.2;
}
.top-qa-list > li > dl > dd span {
  padding: 18px;
  border-radius: 5px;
  display: block;
  background-color: #fbe7eb;
  line-height: 1.6;
  text-align: justify;
}

.top-access {
  padding: 45px 20px;
}

.top-access-title {
  margin-bottom: 25px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  z-index: 1;
  position: relative;
}
.top-access-title span {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.top-access-bus {
  margin-bottom: 45px;
  border-radius: 10px;
  border: 2px solid #ff6c8b;
  position: relative;
}
.top-access-bus__fix {
  position: absolute;
  top: -18px;
  left: 15px;
  font-size: 1.5rem;
  color: #f65a7b;
  background-color: #fff;
  border: 2px solid #ff6c8b;
  display: inline-block;
  border-radius: 100px;
  line-height: 1.4;
  font-weight: 600;
  padding: 4px 15px 5px 50px;
  background-image: url(../img/top/icon_bus.png);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left 10px top 8px;
}
.top-access-bus__title {
  background-color: #fbe7eb;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  text-align: center;
  color: #f65a7b;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 22px 10px 15px;
}
.top-access-bus__photo {
  padding: 23px 10px 12px;
  text-align: center;
}
.top-access-bus__photo img {
  max-width: 260px;
  border-radius: 5px;
}
.top-access-bus__text {
  text-align: center;
  padding-bottom: 10px;
}
.top-access-bus__btn {
  background-color: #ff6c8b;
  padding: 12px;
}
.top-access-bus__btn > a {
  width: 100%;
  max-width: 260px;
  display: block;
  background-color: #333333;
  border-radius: 200px;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  padding: 10px 10px 12px 25px;
  background-image: url(../img/common/icon_pdf_white.png);
  background-repeat: no-repeat;
  background-size: 19px auto;
  background-position: left 17px top 50%;
}
@media screen and (min-width: 1025px) {
  .top-access-bus__btn > a:hover {
    opacity: 0.8;
  }
}

.top-access-campus-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 23px;
}
.top-access-campus-title span {
  position: relative;
  padding-bottom: 5px;
}
.top-access-campus-title span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #5998e6;
  border-radius: 10px;
}
.top-access-campus-title.saga span::before {
  background-color: #7f438d;
}
.top-access-campus-title.ogi span::before {
  background-color: #f0aa13;
}

.top-access-campus-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.top-access-campus-box__photo {
  width: 40%;
}
@media screen and (max-width: 599px) {
  .top-access-campus-box__photo {
    width: 32%;
  }
}
.top-access-campus-box__photo img {
  border-radius: 3px;
}
.top-access-campus-box__detail {
  width: 56%;
  padding-left: 19px;
}
@media screen and (max-width: 599px) {
  .top-access-campus-box__detail {
    width: 68%;
    padding-left: 10px;
  }
}
.top-access-campus-box__detail > ul {
  list-style: none;
}
.top-access-campus-box__detail > ul > li {
  margin-bottom: 4px;
  line-height: 1.3;
  position: relative;
  padding-left: 1em;
}
.top-access-campus-box__detail > ul > li span {
  font-size: 1.4rem;
}
.top-access-campus-box__detail > ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #5998e6;
}
.saga .top-access-campus-box__detail > ul > li::before {
  color: #7f438d;
}
.ogi .top-access-campus-box__detail > ul > li::before {
  color: #f0aa13;
}
.top-access-campus-box__detail__address {
  line-height: 1.3;
}
.top-access-campus-box__detail__map {
  margin-top: 20px;
}
.top-access-campus-box__detail__map > a {
  display: block;
  background-color: #f3f3f3;
  max-width: 210px;
  text-align: center;
  color: #222;
  border-radius: 100px;
  padding: 10px 10px 12px 30px;
  font-size: 1.5rem;
  background-image: url(../img/top/icon_map.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: left 17px top 13px;
}
@media screen and (max-width: 599px) {
  .top-access-campus-box__detail__map > a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .top-access-campus-box__detail__map > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.top-access-campus-box__detail__map.saga > a {
  background-image: url(../img/top/icon_map2.png);
}
.top-access-campus-box__detail__map.ogi {
  margin-bottom: 0;
}
.top-access-campus-box__detail__map.ogi > a {
  background-image: url(../img/top/icon_map3.png);
}

.top-access-campus-address {
  line-height: 1.5;
  margin-bottom: 10px;
}

.top-bottom {
  padding: 50px 20px 20px;
}

.top-contact {
  margin-bottom: 20px;
}

.top-contact-item {
  background-color: #faf5d7;
  border-radius: 5px;
  padding: 25px;
}
.top-contact-item__text {
  text-align: center;
  color: #fa2929;
  line-height: 1.5;
  margin-bottom: 12px;
}
.top-contact-item__tel > a {
  background-color: #fff;
  display: block;
  max-width: 240px;
  margin: 0 auto;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  color: #fa2929;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
  padding: 10px 20px 10px 30px;
  border-radius: 100px;
  background-image: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: left 20px top 50%;
}

.top-outside-links {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.top-outside-links > li {
  width: calc((100% - 16px) / 2);
}
.top-outside-links > li > a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  color: #222;
  background-image: url(../img/common/icon_target.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: right 10px top 50%;
}
@media screen and (min-width: 1025px) {
  .top-outside-links > li > a:hover {
    transform: translateY(2px);
  }
}

.top-bottom-bnr {
  margin-bottom: 50px;
}
.top-bottom-bnr > a {
  max-width: 232px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .top-bottom-bnr > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

.top-copyright {
  text-align: center;
  font-size: 1.1rem;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-copyright {
    padding-bottom: 80px;
  }
}

.top-theme-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.top-theme-item__photo {
  position: relative;
  margin-bottom: 20px;
}
.top-theme-item__photo img {
  border-radius: 4px;
}
.top-theme-item__course {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.5rem;
  color: #fff;
  background-color: #f9a646;
  width: 100%;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  padding: 7px 5px 9px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: 1;
}
.top-theme-item__course--food {
  background-color: #45b700;
}
.top-theme-item__course--welfare {
  background-color: #fb9939;
}
.top-theme-item__course--multicultural {
  background-color: #a346ae;
}
.top-theme-item__course--childcare {
  background-color: #ff6c8b;
}
.top-theme-item__list__item {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
.top-theme-item__list__item:last-child {
  margin-bottom: 0;
}
.top-theme-item__list__item .top-theme-data {
  width: 49px;
  margin-right: 24px;
}
.top-theme-item__list__item .top-theme-data__text {
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: -1px;
}
.top-theme-item__list__item .top-theme-data__week {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  width: 100%;
  border-radius: 20px;
  background-color: #494949;
  padding: 3px 3px 4px;
  line-height: 1;
  text-align: center;
}
.top-theme-item__list__item .top-theme-data__week--sunday {
  background-color: #f15662;
}
.top-theme-item__list__item .top-theme-data__week--saturday {
  background-color: #4872e7;
}
.comingsoon .top-theme-item__list__item .top-theme-data__week {
  background-color: #d1b4ba;
  color: #eee0e3;
}
.top-theme-item__list__item .top-theme-text {
  width: calc(100% - 73px);
  padding: 2px 0 2px 24px;
  font-size: 1.4rem;
  line-height: 1.5;
  border-left: 2px dotted #bfbfbf;
}/*# sourceMappingURL=style.css.map */