@charset "UTF-8";
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
dl,
form,
fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  font-style: normal;
}

body {
  font-size: 10px;
}

* html body {
  font-size: 62.5%;
}

* + html body {
  font-size: 62.5%;
}

body > iframe {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

caption,
th {
  font-weight: normal;
  text-align: left;
}

th,
td {
  padding: 0px;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

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

header,
footer,
article,
section,
aside,
nav,
figure,
figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  min-width: 1260px;
}

@media screen and (max-width: 768px) {
  html,
  body {
    min-width: 100%;
  }
}
body {
  font-family: "notosansjp", sans-serif;
  font-size: 16px;
}

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

a,
a:before,
a:after {
  -moz-transition: background-color 0.15s linear, background-image 0.15s linear;
  -webkit-transition: background-color 0.15s linear, background-image 0.15s linear;
  transition: background-color 0.15s linear, background-image 0.15s linear;
}

a > * {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

a:hover > * {
  text-decoration: none;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
}

* html #container {
  height: 100%;
}

body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
  }
}
.content-inner {
  width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content-inner {
    width: 100%;
    padding: 0 4%;
  }
}
.sec-title {
  text-align: center;
  color: #000;
  font-size: 38px;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 23px;
  }
}
/* page top btn */
.right-nav {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .right-nav {
    text-align: right;
  }
}
.right-nav a {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  display: block;
}

.right-nav a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .right-nav img {
    width: 70%;
  }
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 400;
  src: url(../font/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 500;
  src: url(../font/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 600;
  src: url(../font/NotoSansJP-Bold.ttf) format("truetype");
}
@font-face {
  font-family: 'adventpro';
  font-weight: 600;
  src: url(../font/AdventPro-Bold.ttf) format("truetype");
}
@font-face {
  font-family: 'notoserifjp';
  font-weight: 600;
  src: url(../font/NotoSerifJP-Bold.otf) format("opentype");
}
@media screen and (min-width: 769px) {
  .sp__only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }

  .pc__only {
    display: none;
  }
}
.serif {
  font-family: 'notoserifjp', 'serif';
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

pre {
  white-space: pre-wrap;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  vertical-align: middle;
  max-width: 100%;
}

img,
svg,
video,
canvas {
  height: auto;
}

audio {
  width: 100%;
}

svg {
  overflow: hidden;
}

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

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

span {
  font-weight: inherit;
}

.sky {
  color: #1EAAE3;
}

.light {
  color: #888;
}

.pink {
  color: #FF6B90;
}

main {
  position: relative;
  background: #fff;
  color: #000;
  font-weight: 500;
  overflow-x: hidden;
}

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

@media screen and (max-width: 768px) {
  .inner {
    max-width: 100%;
    width: 100%;
    padding: 0 14px;
  }
}
.group__bg {
  position: relative;
  background: url(../img/group_bg.webp) no-repeat center/cover;
  padding-top: 31px;
  padding-bottom: 95px;
  margin-top: 44px;
}

@media screen and (max-width: 768px) {
  .group__bg {
    padding-top: 0;
    padding-bottom: 50px;
    margin-top: 41px;
  }
  .group__bg::after {
    border-width: 100px 750px 0px 0px;
  }
}
#header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 60px;
  background: #000;
}
#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  width: 1200px;
  margin: 0 auto;
}
#header .logo {
  padding-top: 10px;
}
#header .nav-list {
  display: flex;
  padding-top: 10px;
}
#header .nav-item {
  padding: 0 20px;
}
#header .nav-item:first-child {
  padding-left: 0;
}
#header .nav-item:last-child {
  padding-right: 0;
}
#header .nav-item a {
  transition: opacity 0.15s linear;
  color: #FFF;
  font-size: 1rem;
  font-weight: bold;
}

.logo_frame {
  display: none;
}

@media screen and (max-width: 768px) {
  #header {
    display: none;
  }

  .logo_frame {
    display: block;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 50px;
    background: #000;
    top: 0;
  }

  .header__logo {
    display: block;
    width: fit-content;
    padding-top: 10px;
  }
  .header__logo img {
    display: block;
    height: 29px;
  }

  /*メニューボタン*/
  #sp_menu_btn {
    position: fixed;
    display: block;
    z-index: 1001;
    right: 0;
    top: 0;
  }

  .menu-trigger {
    position: relative;
    width: 40px;
    height: 26px;
    margin-top: 12px;
    margin-right: 12px;
  }

  .menu-trigger,
  .menu-trigger span {
    display: block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFF;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-315deg);
    transform: translateY(11px) rotate(-315deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(315deg);
    transform: translateY(-11px) rotate(315deg);
  }

  /*隠しナビメニュー*/
  #sp_hide_area #sp_menu {
    display: none;
  }

  #sp_hide_area.open #sp_menu {
    display: block;
    width: 80%;
    position: fixed;
    top: 49px;
    left: 0;
    z-index: 99;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
  }

  #sp_menu ul li {
    padding: 15px 0;
  }

  #sp_menu ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    text-decoration: none;
  }

  .right-nav {
    display: none;
  }
}
/*-------------------------
  main-visual
--------------------------*/
.main-visual-title {
  width: 100%;
}
.main-visual-title img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .main-visual {
    background-size: cover;
  }
  .main-visual-wrapper {
    width: 100%;
    height: auto;
  }
}
.cta {
  position: relative;
  background: #1eaae3;
  padding: 52px 0 68px;
}
.cta.is__fixed .inner {
  height: 98px;
}
.cta__button {
  display: block;
  width: 620px;
  margin: 0 auto;
}
.cta__button.is__fixed {
  z-index: 1000;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 34px 0 41px;
  }
  .cta__button {
    width: 348px;
  }
  .cta__button.is__fixed {
    bottom: 10px;
  }
}
/*-------------------------
  about
--------------------------*/
#about {
  background: #1eaae3;
  padding: 68px 0 50px;
}
@media screen and (min-width: 769px) {
  #about {
    margin-top: -68px;
  }
}
#about .sec-title {
  margin-bottom: 30px;
  text-align: center;
}
#about .sec-sentence {
  margin-bottom: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}
#about .sec-sentence .deco {
  color: #FFF100;
}
#about .sec-sentence em {
  display: inline-block;
  padding: 0 0.1em;
  font-size: 20px;
  font-weight: bold;
}
#about .movie {
  margin: 32px auto;
  text-align: center;
}
#about .movie iframe {
  width: 800px;
  height: 450px;
}
#about .about-img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
#about .about-sentence {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}
#about .about-sentence em {
  color: #fff100;
  font-weight: inherit;
}

@media screen and (max-width: 768px) {
  #about {
    padding: 41px 0 30px;
    margin-top: -41px;
  }
  #about .sec-title {
    padding-bottom: 0;
    border: none;
    margin-bottom: 30px;
    font-size: 20px;
  }
  #about .sec-sentence {
    font-size: 16px;
    text-align: left;
    margin-bottom: 20px;
  }
  #about .sec-sentence em {
    font-size: 24px;
  }
  #about .movie {
    padding: 0 4%;
  }
  #about .movie iframe {
    width: 100%;
    height: calc(90vw / 16 * 9);
  }
  #about .about-img {
    margin-bottom: 20px;
  }
  #about .about-sentence {
    font-size: 16px;
    text-align: left;
    line-height: calc(28/16);
  }
}
/*-------------------------
  feature
--------------------------*/
#feature {
  padding: 50px 0 0;
}
#feature .feature-title {
  font-size: 36px;
  color: #8EC31F;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
#feature .feature-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 1045px;
  margin: 0 auto 50px;
}
#feature .feature-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 250px;
  height: 250px;
  border: 3px solid #8EC31F;
  border-radius: 50%;
  padding-top: 30px;
}
#feature .feature-list li:last-of-type {
  gap: 5px;
}
#feature .feature-list li .item__number {
  width: 102px;
  background: #0081CC;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
#feature .feature-list li .item__upper {
  font-size: 16px;
  color: #8EC31F;
  font-weight: bold;
  text-align: center;
}
#feature .feature-list li .item__lower {
  font-size: 14px;
  text-align: center;
}
#feature .supplement-list .list__item {
  padding: 40px 0;
}
#feature .supplement-list .list__item:first-of-type {
  background: rgba(137, 139, 139, 0.1);
}
#feature .supplement-list .list__item:first-of-type .item__list::after {
  position: absolute;
  content: "";
  width: 283px;
  height: 212px;
  background: url(../img/feature_img01.webp) no-repeat center/contain;
  right: -200px;
  bottom: -26px;
}
#feature .supplement-list .list__item:nth-of-type(2) {
  background: rgba(142, 195, 31, 0.1);
}
#feature .supplement-list .list__item:nth-of-type(2) .item__list::after {
  position: absolute;
  content: "";
  width: 110px;
  height: 237px;
  background: url(../img/feature_img02.webp) no-repeat center/contain;
  top: -71px;
  left: -180px;
}
#feature .supplement-list .list__item:nth-of-type(2) .item__ttl {
  color: #8EC31F;
}
#feature .supplement-list .list__item:nth-of-type(2) .item__list li .deco {
  background: linear-gradient(transparent 60%, #FFF100 60%);
  color: #000;
}
#feature .supplement-list .list__item:nth-of-type(2) .item__list li::after {
  background: url(../img/feature_icon02.png) no-repeat center/contain;
}
#feature .supplement-list .list__item .item__ttl {
  font-size: 36px;
  color: #1EAAE3;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
#feature .supplement-list .list__item .item__list {
  position: relative;
  width: 650px;
  margin: 0 auto;
}
#feature .supplement-list .list__item .item__list li {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: calc(28/16);
  margin-bottom: 11px;
}
#feature .supplement-list .list__item .item__list li .deco {
  color: #1EAAE3;
  font-weight: inherit;
}
#feature .supplement-list .list__item .item__list li::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/feature_icon01.png) no-repeat center/contain;
  top: 0;
  left: -2em;
}
#feature .supplement-list li.img-long {
  width: 100%;
  max-width: 1200px;
}
#feature .supplement-list li.img-middle {
  margin-bottom: 0;
}
#feature .supplement-list li.img-middle img {
  width: 100%;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  #feature {
    padding: 30px 0 0;
  }
  #feature .feature-title {
    font-size: 20px;
    margin-bottom: 22px;
  }
  #feature .feature-list {
    flex-direction: column;
    gap: 23px;
    width: 100%;
    align-items: center;
    margin-bottom: 43px;
  }
  #feature .feature-list li {
    margin: 0;
  }
  #feature .feature-list li .item__number {
    height: 31px;
  }
  #feature .supplement-list .list__item {
    padding: 36px 0 46px;
  }
  #feature .supplement-list .list__item:first-of-type .item__list::after {
    width: 123px;
    height: 92px;
    right: 0;
    bottom: -50px;
  }
  #feature .supplement-list .list__item:nth-of-type(2) {
    padding: 30px 0;
  }
  #feature .supplement-list .list__item:nth-of-type(2) .item__list::after {
    display: none;
  }
  #feature .supplement-list .list__item .item__ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #feature .supplement-list .list__item .item__list {
    width: 100%;
  }
  #feature .supplement-list .list__item .item__list li {
    font-size: 15px;
    padding-left: 57px;
    line-height: calc(22/15);
  }
  #feature .supplement-list .list__item .item__list li::after {
    width: 25px;
    height: 25px;
    left: 1.5em;
  }
  #feature .supplement-list .list__item .item__list li:last-of-type {
    margin: 0;
  }
}
/*-------------------------
  tool
--------------------------*/
#tool {
  padding: 50px 0 60px;
  background: #014099;
}
#tool .tool-title {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
#tool .tool-list-text {
  padding-left: 20px;
  margin-bottom: 32px;
}
#tool .tool-list-text li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #tool .tool-list-text li:nth-last-of-type(3) {
    display: inline;
    margin-right: 0;
  }
}
#tool .tool-list-text li::before {
  content: "●";
  position: absolute;
  left: -1.2em;
  top: 0;
  color: #fff;
  font-size: 16px;
}
#tool .tool-list-img {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 153px;
}
#tool .tool-list-img li img {
  width: 280px;
}
#tool .tool__container {
  position: relative;
  width: 812px;
}
#tool .tool__container .container__item {
  display: flex;
  align-items: center;
}
#tool .tool__container .container__item:first-of-type {
  margin-bottom: 10px;
}
#tool .tool__container .container__txt {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  margin-left: 18px;
}
#tool .tool__container .container__absolute {
  position: absolute;
  width: 261px;
  height: 114px;
  top: -13px;
  right: 0;
}
#tool .tool__container .container__absolute img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  #tool {
    padding: 30px 0;
  }
  #tool .tool-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #tool .tool-list-text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 14px;
  }
  #tool .tool-list-text li {
    display: list-item;
    margin-right: 0;
  }
  #tool .tool-list-text li::before {
    font-size: 14px;
  }
  #tool .tool-list-img {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 78px;
  }
  #tool .tool-list-img li {
    width: 168px;
  }
  #tool .tool__container {
    width: 100%;
  }
  #tool .tool__container .container__item img {
    display: block;
    width: 60px;
  }
  #tool .tool__container .container__txt {
    font-size: 14px;
  }
  #tool .tool__container .container__txt .small {
    font-size: 10px;
  }
  #tool .tool__container .container__absolute {
    width: 130px;
    height: 57px;
    top: -57px;
    right: 0;
  }
}
#voice .voice__bg {
  background: rgba(168, 204, 255, 0.3);
  padding: 50px 0;
}
#voice .voice__ttl {
  font-size: 36px;
  color: #004098;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
#voice .voice__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1059px;
  margin: 0 auto;
}
#voice .voice__item {
  display: flex;
  margin-bottom: 37px;
}
#voice .voice__item:last-of-type, #voice .voice__item:nth-last-of-type(2) {
  margin-bottom: 0;
}
#voice .voice__item .item__container {
  position: relative;
  z-index: 1;
}
#voice .voice__item .item__container .name {
  font-size: 14px;
  color: #004098;
  text-align: center;
}
#voice .voice__item .item__txt {
  position: relative;
  width: 420px;
  background: #fff;
  font-size: 14px;
  line-height: calc(22/14);
  padding: 16px 22px 12px 47px;
  left: -23px;
}
#voice .voice__item .item__txt .deco {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #voice .voice__bg {
    padding: 30px 0 20px;
  }
  #voice .voice__ttl {
    font-size: 20px;
  }
  #voice .voice__list {
    display: block;
    width: 100%;
  }
  #voice .voice__item {
    display: block;
    position: relative;
  }
  #voice .voice__item:nth-last-of-type(2) {
    margin-bottom: 37px;
  }
  #voice .voice__item .item__container {
    display: flex;
    align-items: flex-end;
    position: absolute;
    top: -16px;
    left: 0;
  }
  #voice .voice__item .item__container img {
    width: 60px;
  }
  #voice .voice__item .item__container .name {
    font-size: 15px;
    margin-left: 13px;
    margin-bottom: 9px;
  }
  #voice .voice__item .item__txt {
    width: 330px;
    font-size: 13px;
    line-height: calc(22/13);
    padding: 47px 5px 15px;
    margin: 0 auto;
    left: auto;
  }
}
/*-------------------------
  lecture
--------------------------*/
@media screen and (min-width: 769px) {
  #lecture {
    padding: 100px 0 70px;
    margin-top: -50px;
  }
}
#lecture .content-inner {
  overflow-x: hidden;
}
#lecture .sec-title {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 40px;
}
#lecture .lecture-block {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin: 0 auto 42px;
}
#lecture .lecture-info {
  width: 100%;
  max-width: 863px;
  margin-left: 38px;
}
#lecture .lecture-info p {
  font-size: 16px;
}
#lecture .lecture-info .term {
  padding-bottom: 10px;
  line-height: calc(32/16);
}
#lecture .lecture-info .term .large {
  font-size: 24px;
  font-weight: bold;
  line-height: calc(40/24);
}
#lecture .lecture-info .description {
  line-height: calc(28/16);
}
#lecture .message-title {
  position: relative;
  font-size: 24px;
  color: #1EAAE3;
  font-weight: bold;
  padding-bottom: 10px;
}
#lecture .message-title::before, #lecture .message-title::after {
  position: absolute;
  content: "";
  margin-left: 147px;
  bottom: 16px;
  left: 0;
}
#lecture .message-title::before {
  width: 50px;
  height: 55px;
  background: url(../img/message_pen.webp) no-repeat center/contain;
}
#lecture .message-title::after {
  width: 100%;
  max-width: 953px;
  height: 2px;
  background: #1EAAE3;
}
#lecture .message-description {
  background: #e6e6ef;
  padding: 30px 40px;
}
#lecture .message-description p {
  font-size: 16px;
  line-height: calc(28/16);
}
#lecture .message-description p span {
  color: #0080C8;
}

@media screen and (max-width: 768px) {
  #lecture {
    padding: 60px 0 40px;
    margin-top: -30px;
  }
  #lecture .sec-title {
    font-size: 20px;
    line-height: calc(28/20);
    margin-bottom: 30px;
  }
  #lecture .lecture-block {
    width: 100%;
    margin-bottom: 10px;
  }
  #lecture .lecture-pic {
    width: 138px;
  }
  #lecture .lecture-info {
    width: 100%;
    margin-left: 20px;
  }
  #lecture .lecture-info .term {
    font-size: 14px;
    margin-top: 20px;
  }
  #lecture .lecture-info .term .large {
    font-size: 18px;
  }
  #lecture .description {
    font-size: 14px;
    line-height: calc(22/14);
    margin-bottom: 36px;
  }
  #lecture .message-title {
    font-size: 18px;
    line-height: 2;
    padding-bottom: 0;
  }
  #lecture .message-title::before, #lecture .message-title::after {
    margin-left: 102px;
    bottom: 10px;
  }
  #lecture .message-title::before {
    width: 41px;
    height: 50px;
  }
  #lecture .message-title::after {
    max-width: 250px;
    height: 1px;
  }
  #lecture .message-description {
    padding: 20px 19px;
  }
  #lecture .message-description p {
    font-size: 12px;
    line-height: calc(18/12);
  }
}
/*-------------------------
  schedule
--------------------------*/
@media screen and (min-width: 769px) {
  #schedule {
    padding: 100px 0 50px;
    margin-top: -50px;
  }
}
#schedule .sec-title {
  margin-bottom: 80px;
  text-align: center;
}
#schedule .sec-title > div {
  display: inline-block;
  padding: 10px 0 5px 20px;
  color: #fff;
  font-size: 38px;
  background: #014099;
}
#schedule .sec-title span {
  background: #666565;
  padding: 10px 20px 5px;
  margin-left: 10px;
}
#schedule .content-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
#schedule .program-title {
  font-size: 36px;
  color: #0081CC;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
#schedule .program-list-title {
  display: flex;
  margin-bottom: 20px;
}
#schedule .program-list-title .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  background: #004098;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
#schedule .program__container {
  width: calc(100% - 160px);
}
#schedule .program-list-title .title {
  display: block;
  padding-left: 57px;
  background: #8EC31F;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: calc(34/24);
}
#schedule .program-list-title img {
  height: 36px;
}
#schedule .program-list-subtitle {
  background: #EFEEE7;
  font-size: 24px;
  font-weight: bold;
  padding-left: 57px;
}
#schedule .program-sublist {
  margin-bottom: 40px;
  margin-left: 20px;
}
#schedule .program-sublist li {
  margin-bottom: 8px;
}
#schedule .program-sublist-title {
  margin-bottom: 4px;
  font-size: 18px;
  color: #0081CC;
  font-weight: bold;
}
#schedule .program-sublist-item p {
  position: relative;
  margin-left: 37px;
}
#schedule .program-sublist-item p::before {
  content: "●";
  position: absolute;
  left: -18px;
  top: 0px;
  color: #0081CC;
}
#schedule .program-sublist-item p.petit {
  margin-left: 50px;
}
#schedule .program-sublist-item p.petit::before {
  content: "・";
}
#schedule .program-block + .program-block {
  margin-top: 40px;
}
#schedule .sp-title {
  font-size: 0;
}
#schedule .sp-title span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: bold;
}
#schedule .sp-title span.number {
  color: #fff;
  background: #666565;
  padding: 10px 10px 7px;
  border-left: 10px solid #014099;
}
#schedule .sp-title span.date {
  background: #fff;
  color: #014099;
  padding: 10px 10px 7px;
}
#schedule .sp-title span.title {
  color: #014099;
  display: block;
  margin-top: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid #014099;
  line-height: 1.4;
}
#schedule .program-text {
  margin-bottom: 15px;
}
#schedule .program-lists li:not(:last-child) {
  margin-bottom: 20px;
}
#schedule .program-lists .title {
  margin-bottom: 5px;
  color: #ec6e65;
  font-weight: bold;
  font-size: 20px;
}
#schedule .program-lists .title span {
  font-size: 25px;
  font-family: "Helvetica Neue", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", Meiryo, serif;
}
#schedule .program-notion {
  margin-top: 30px;
  text-align: right;
}
#schedule .item__ttl {
  position: relative;
  z-index: 1;
  width: 500px;
  background: #B35608;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  padding-bottom: 5px;
  transform: rotate(-2deg);
}
#schedule .item__ttl span {
  display: block;
  transform: rotate(2deg);
}
#schedule .item__ttl::before {
  position: absolute;
  content: "";
  width: 500px;
  height: 41px;
  background: #FF7500;
  top: 0;
  left: -7px;
  transform: rotate(2deg);
}
#schedule .item__sub {
  position: relative;
  width: 694px;
  font-size: 16px;
  line-height: 2;
  padding: 32px 44px 24px;
  margin-left: 33px;
  box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.2);
  top: -15px;
}

@media screen and (max-width: 768px) {
  #schedule {
    padding: 60px 0 25px;
    margin-top: -30px;
  }
  #schedule .sec-title {
    font-size: 20px;
    margin-bottom: 40px;
    padding: 0 4%;
  }
  #schedule .sec-title > div {
    font-size: 23px;
    padding: 10px 0 10px 10px;
  }
  #schedule .sec-title span {
    padding: 9px;
  }
  #schedule .content-inner {
    width: 100%;
    padding: 0 4%;
  }
  #schedule .program-lists .title span {
    font-size: 18px;
  }
  #schedule .program-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #schedule .program-list-title .num {
    width: 55px;
    font-size: 15px;
  }
  #schedule .program-list-subtitle {
    font-size: 15px;
    text-align: center;
    line-height: calc(22/15);
    padding-left: 0;
  }
  #schedule .program__container {
    width: calc(100% - 55px);
  }
  #schedule .program__container .title {
    font-size: 14px;
    text-align: center;
    line-height: calc(22/14);
    padding-left: 12px;
  }
  #schedule .program-sublist {
    margin-left: 0;
    margin-bottom: 28px;
  }
  #schedule .program-sublist-title {
    font-size: 15px;
  }
  #schedule .program-sublist-title .deco {
    font-size: 14px;
  }
  #schedule .program-sublist-item {
    font-size: 14px;
  }
  #schedule .item__ttl {
    width: 100%;
    font-size: 14px;
    transform: rotate(-4deg);
  }
  #schedule .item__ttl::before {
    width: 100%;
    height: 35px;
    left: 0;
    transform: rotate(4deg);
  }
  #schedule .item__ttl span {
    transform: rotate(4deg);
  }
  #schedule .item__sub {
    width: 95%;
    font-size: 14px;
    padding: 30px 10px 20px;
    margin: 0 auto;
  }
}
.fee__bg {
  background: #EEEAF8;
  padding-top: 66px;
  padding-bottom: 29px;
}
.fee__ttl {
  display: inline-block;
  width: 100%;
  font-size: 34px;
  font-weight: bold;
  line-height: calc(46/34);
  border-bottom: 2px solid #000;
  margin-bottom: 36px;
}
.fee__ttl .deco {
  font-size: 18px;
  margin-left: 14px;
}
.fee__wrapper {
  background: #fff;
  padding-top: 8px;
  padding-bottom: 11px;
  margin-bottom: 20px;
}
.fee__container {
  display: flex;
  justify-content: space-between;
  width: 650px;
  margin: 0 auto;
}
.fee__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 474px;
  font-size: 18px;
  margin: 0 auto;
}
.fee__price .large {
  font-size: 36px;
  font-weight: bold;
}
.fee__price .middle {
  font-size: 20px;
}
.fee__txt {
  position: relative;
  max-width: 474px;
  background: #FFD4D4;
  font-size: 15px;
  text-align: center;
  line-height: calc(26/15);
  margin: 0 auto;
  margin-top: 15px;
}
.fee__txt::after {
  position: absolute;
  content: "";
  width: 773px;
  height: 2px;
  border-top: 2px dashed #888;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.fee__sub {
  font-weight: 500;
  line-height: 2;
  margin-left: 40px;
}
.fee__sub .deco {
  color: #f36;
}
.fee__sub:last-of-type {
  margin-bottom: 54px;
}
.fee .method__wrapper {
  display: flex;
}
.fee .method__container {
  padding-left: 40px;
}
.fee .method__txt {
  width: fit-content;
  background: linear-gradient(transparent 80%, #1EAAE3 80%);
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-right: 68px;
  margin-bottom: 32px;
}
.fee .method__address {
  font-size: 18px;
  font-weight: bold;
  line-height: calc(30/18);
  margin-bottom: 28px;
}
.fee .method__address .large {
  font-size: 20px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .fee__bg {
    padding-top: 30px;
  }
  .fee__ttl {
    font-size: 20px;
    text-align: center;
    padding-bottom: 8px;
    margin-bottom: 19px;
  }
  .fee__ttl .deco {
    font-size: 14px;
  }
  .fee__wrapper {
    padding: 11px 23px 10px 20px;
  }
  .fee__container {
    display: block;
    width: auto;
  }
  .fee__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
  }
  .fee__price .large {
    display: inline-block;
    margin-left: auto;
  }
  .fee__txt {
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 42px;
  }
  .fee__txt::after {
    width: 290px;
    top: -25px;
  }
  .fee__sub {
    font-size: 15px;
    line-height: calc(26/15);
    margin-left: auto;
  }
  .fee__sub:last-of-type {
    margin-bottom: 41px;
  }
  .fee .method__wrapper {
    display: block;
  }
  .fee .method__container {
    padding-left: 0;
  }
  .fee .method__txt {
    display: block;
    position: relative;
    z-index: 10;
    background: none;
    text-align: center;
    font-size: 18px;
    margin: 0 auto 15px;
  }
  .fee .method__txt .sp__bg {
    background: linear-gradient(transparent 65%, #1EAAE3 65%);
  }
  .fee .method__address {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .fee .method__address .large {
    font-size: 16px;
  }
  .fee .method .sp__lower {
    display: flex;
    justify-content: space-between;
  }
  .fee .method__sub {
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
  }
  .fee__img {
    width: 171px;
  }
}
/*--------------------------
 contact
---------------------------*/
#contact.box {
  width: 1180px;
  margin: 0 auto;
  padding: 80px 0;
}
#contact .box__title {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 14px;
  font-size: 30px;
  font-weight: bold;
}
#contact .box__title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: #000;
}

.contact__text {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
.contact__table {
  width: 100%;
  margin: 0 auto 45px;
  table-layout: fixed;
}
.contact__table th, .contact__table td {
  line-height: 1.3;
  border: 10px solid #fafafa;
  vertical-align: middle;
  font-weight: bold;
}
.contact__table th {
  width: 340px;
  padding: 15px 10px 15px 30px;
  background: #E4DFD5;
}
.contact__table td {
  padding: 15px 20px;
  background: #F8F5EE;
}
.contact__table td.date label {
  display: block;
  margin: 5px 0;
  word-break: break-all;
}
.contact__table td input:not(:first-child) {
  margin-top: 13px;
}
.contact__table .required {
  display: inline-block;
  width: 40px;
  margin-right: 4px;
  padding: 4px 0;
  background: #E35580;
  color: #FFF;
  font-size: 0.875em;
  text-align: center;
}
.contact__table input[type="text"] {
  padding: 5px;
  border: 2px solid #B0B0B0;
}
.contact__table .long {
  width: 80%;
}
.contact__table .middle {
  width: 60%;
}
.contact__table .short {
  width: 40%;
}
.contact__table textarea {
  width: 100%;
  padding: 5px;
  resize: vertical;
  line-height: 1.2;
  border: 2px solid #B0B0B0;
}
.contact__table__text {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.contact__table__text a {
  color: #000;
  text-decoration: underline;
}
.contact__table__text a:hover {
  text-decoration: none;
}
.contact__button__area {
  display: flex;
  justify-content: space-between;
  width: 420px;
  margin: 0 auto;
}
.contact__button__area.-thanks {
  justify-content: center;
  margin-top: 70px;
}
.contact__button__area input {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  width: 200px;
  height: 50px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  text-align: center;
}
.contact__button__area input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}
.contact__button__area input[type="reset"] {
  background: #c7c7c7;
}
.contact__button__area input[type="button"], .contact__button__area input[type="submit"] {
  background: #009fe8;
}
.contact .errortxt {
  display: none;
  color: #E35580;
}

.confirm .contact__button__area input[type="button"] {
  background: #c7c7c7;
}

.data-r {
  color: #E35580;
  font-weight: bold;
}

@media screen and (max-width: 1180px) {
  #contact.box {
    width: 96%;
  }

  .contact__table {
    margin-bottom: 5%;
  }
  .contact__table select {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contact.box {
    width: 100%;
    padding: 40px 0 0;
    margin-bottom: 10%;
  }
  #contact .box__title {
    margin: 0 4% 8%;
    padding-bottom: 3%;
    font-size: 22px;
    line-height: 1.2;
  }

  .contact {
    margin-top: 8%;
  }
  .contact__text {
    margin: 4%;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.47059;
  }
  .contact__table th,
  .contact__table td {
    display: list-item;
    font-size: 16px;
    list-style: none;
    border: none;
  }
  .contact__table th {
    position: relative;
    width: 100%;
    padding: 2% 5%;
  }
  .contact__table td {
    padding: 3% 5%;
    background: none;
  }
  .contact__table .required {
    width: auto;
    margin-right: 1%;
    padding: 1% 2%;
    font-size: 13px;
  }
  .contact__table .long {
    width: 100%;
  }
  .contact__table .middle {
    width: 100%;
  }
  .contact__table .short {
    width: 100%;
  }
  .contact__table__text {
    margin: 0 5% 3%;
    font-size: 14px;
    line-height: 1.42857;
    text-align: left;
  }
  .contact__button__area {
    width: 90%;
  }
  .contact__button__area.-thanks {
    margin-top: 8%;
  }
  .contact__button__area input {
    width: 47.16418%;
    height: auto;
    padding: 4% 0;
    font-size: 16px;
    font-weight: bold;
  }
}
#footer {
  width: 100%;
  background: #000;
  min-width: 1100px;
}
#footer-inner {
  width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}
#footer-inner img {
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
#footer-inner a {
  color: #FFF;
}

@media screen and (max-width: 768px) {
  #footer {
    min-width: 100%;
  }
  #footer-inner {
    width: 100%;
  }
}
/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
#content {
  *zoom: 1;
  padding-top: 60px;
}
#content:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 768px) {
  #content {
    padding-top: 50px;
  }
}
