@charset "UTF-8";
/* デフォルト */
/* レスポンシブ設定 */
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}

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

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  /* デフォルトのフォントと文字カラー設定 */
  font-family: heisei-mincho-std, serif;
  color: #333333;
  text-align: center;
  counter-reset: count01, count02, count03, count04, count-lesson;
}

p {
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 540px) {
  p {
    font-size: 16px;
  }
}

.base-text {
  text-align: justify;
  text-justify: inter-ideograph;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

/* 見出しデフォルト */
h2 {
  font-size: 30px;
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 540px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

@media screen and (max-width: 540px) {
  h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

/* セクションデフォルト */
section {
  padding-bottom: 100px;
}

@media screen and (max-width: 540px) {
  section {
    padding-bottom: 80px;
  }
}

/* コンテイナーデフォルト */
.container {
  max-width: 960px;
  margin: auto;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .container {
    width: 85%;
  }
}

@media screen and (max-width: 540px) {
  .container {
    width: 93%;
  }
}

.sub-container {
  max-width: 700px;
  margin: auto;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sub-container {
    width: 80%;
  }
}

@media screen and (max-width: 540px) {
  .sub-container {
    width: 93%;
  }
}

.mini-container {
  max-width: 650px;
  margin: auto;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .mini-container {
    width: 80%;
  }
}

@media screen and (max-width: 540px) {
  .mini-container {
    width: 80%;
  }
}

/* 画像デフォルト */
img {
  width: 100%;
  display: block;
}

.base-img {
  max-width: 500px;
  margin: 60px auto;
}

@media screen and (max-width: 540px) {
  .base-img {
    max-width: 260px;
    margin: 40px auto;
  }
}

img.title-img {
  margin-top: 40px;
}

@media screen and (max-width: 540px) {
  img.title-img {
    margin-top: 30px;
  }
}

/* aタグデフォルト */
a {
  display: block;
  text-decoration: none;
  font-size: 35px;
  /* aタグの文字サイズ */
  line-height: 1.2;
  /* aタグの行間 */
  text-align: center;
}

@media screen and (max-width: 540px) {
  a {
    font-size: 24px;
  }
}

/* フッターデフォルト */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 20px 0;
}

footer a {
  font-size: 14px;
  color: #ffffff;
}

footer p {
  text-align: center;
  font-size: 14px;
}

footer .footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* カラー指定 */
.bg-gray {
  background: #f8f8f8;
}

.bg-green {
  background: #f4faf7;
}

.bg-blue {
  background: #eaf4fa;
}

/* テキストデザイン */
.red {
  color: #ce3000;
  font-weight: bold;
}

.gold {
  color: #ac880f;
  font-weight: bold;
}

.blue {
  color: #1c71a7;
  font-weight: bold;
}

.white {
  color: #fff;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

/* テキスト装飾 */
.text-dashed {
  border-bottom: 1px dashed #ce3000;
  /* 文字下に破線 */
  padding-bottom: 2px;
  /* 位置調整 */
}

.text-dot {
  border-bottom: 2px dotted #ce3000;
  /* 文字下に点線 */
  padding-bottom: 2px;
  /* 位置調整 */
}

.text-double {
  border-bottom: 4px double #ce3000;
  /* 文字下に二重線 */
  padding-bottom: 0px;
  /* 位置調整 */
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(5%, #fffec9));
  background: linear-gradient(transparent 5%, #fffec9 5%);
  font-weight: bold;
}

.marker-half {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fffec9));
  background: linear-gradient(transparent 50%, #fffec9 50%);
  /* 位置調整 */
  padding-bottom: 2px;
  font-weight: bold;
}

/* 吹き出し */
.ballon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ballon-img {
  width: 14%;
}

@media screen and (max-width: 540px) {
  .ballon-img {
    width: 18%;
  }
}

.ballon-text {
  display: inline-block;
  border: 1px solid #707070;
  background: #fff;
  border-radius: 6px;
  padding: 30px;
  position: relative;
  text-align: left;
  margin-left: 16px;
}

@media screen and (max-width: 540px) {
  .ballon-text {
    padding: 20px 15px;
  }
}

.ballon-text::before {
  /* 吹き出しの三角形を作成 */
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 16px 9px 0;
  border-color: transparent #707070 transparent transparent;
  top: 50%;
  left: -16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 540px) {
  .ballon-text::before {
    border-width: 8px 14px 8px 0;
    left: -14px;
  }
}

.ballon-text::after {
  /* 吹き出しの三角形を作成 */
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 16px 9px 0;
  border-color: transparent #ffffff transparent transparent;
  top: 50%;
  left: -14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 540px) {
  .ballon-text::after {
    border-width: 8px 14px 8px 0;
    left: -12px;
  }
}

.ballon-text p {
  font-size: 18px;
  line-height: 1.3;
}

@media screen and (max-width: 540px) {
  .ballon-text p {
    font-size: 16px;
  }
}

.ballon-first {
  margin-bottom: 40px;
}

@media screen and (max-width: 540px) {
  .ballon-first {
    margin-bottom: 25px;
  }
}

.ballon-first .ballon-text {
  margin-left: 30px;
}

@media screen and (max-width: 540px) {
  .ballon-first .ballon-text {
    margin-left: 20px;
  }
}

.ballon-second .ballon-text {
  margin-right: 30px;
}

@media screen and (max-width: 540px) {
  .ballon-second .ballon-text {
    margin-right: 20px;
  }
}

.ballon-second .ballon-text::before {
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #707070;
  left: unset;
  right: -16px;
}

@media screen and (max-width: 540px) {
  .ballon-second .ballon-text::before {
    border-width: 8px 0 8px 14px;
    right: -14px;
  }
}

.ballon-second .ballon-text::after {
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #ffffff;
  left: unset;
  right: -14px;
}

@media screen and (max-width: 540px) {
  .ballon-second .ballon-text::after {
    border-width: 8px 0 8px 14px;
    right: -12px;
  }
}

/* オリジナル */
/* 基本リスト */
/* チェックリスト */
/* ラウンドリスト */
.check-list-gold ul li {
  text-align: left;
  line-height: 1.3;
  margin-top: 25px;
  font-size: 18px;
}

@media screen and (max-width: 540px) {
  .check-list-gold ul li {
    font-size: 16px;
    margin-top: 15px;
  }
}

.check-list-gold ul li:first-child {
  margin-top: 0;
}

.check-list-gold ul li {
  position: relative;
  padding-left: 32px;
}

@media screen and (max-width: 540px) {
  .check-list-gold ul li {
    padding-left: 28px;
  }
}

.check-list-gold ul li::before {
  content: "";
  background: url(../img/check.png) top left/contain no-repeat;
  position: absolute;
  top: 0px;
  left: 3px;
  width: 22px;
  height: 22px;
}

@media screen and (max-width: 540px) {
  .check-list-gold ul li::before {
    top: 2px;
    width: 18px;
    height: 18px;
  }
}

.check-list-blue ul li {
  text-align: left;
  line-height: 1.3;
  margin-top: 25px;
  font-size: 18px;
}

@media screen and (max-width: 540px) {
  .check-list-blue ul li {
    font-size: 16px;
    margin-top: 15px;
  }
}

.check-list-blue ul li:first-child {
  margin-top: 0;
}

.check-list-blue ul li {
  position: relative;
  padding-left: 32px;
}

@media screen and (max-width: 540px) {
  .check-list-blue ul li {
    padding-left: 28px;
  }
}

.check-list-blue ul li::before {
  content: "";
  background: url(../img/check-blue.png) top left/contain no-repeat;
  position: absolute;
  top: 0px;
  left: 3px;
  width: 22px;
  height: 22px;
}

@media screen and (max-width: 540px) {
  .check-list-blue ul li::before {
    top: 2px;
    width: 18px;
    height: 18px;
  }
}

.round-list-green ul li {
  text-align: left;
  line-height: 1.3;
  margin-top: 25px;
  font-size: 18px;
}

@media screen and (max-width: 540px) {
  .round-list-green ul li {
    font-size: 16px;
    margin-top: 15px;
  }
}

.round-list-green ul li:first-child {
  margin-top: 0;
}

.round-list-green ul li {
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 540px) {
  .round-list-green ul li {
    padding-left: 17px;
  }
}

.round-list-green ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #074a2b;
  border-radius: 100%;
}

@media screen and (max-width: 540px) {
  .round-list-green ul li::before {
    top: 5px;
    width: 9px;
    height: 9px;
  }
}

.round-list-gold ul li {
  text-align: left;
  line-height: 1.3;
  margin-top: 25px;
  font-size: 18px;
}

@media screen and (max-width: 540px) {
  .round-list-gold ul li {
    font-size: 16px;
    margin-top: 15px;
  }
}

.round-list-gold ul li:first-child {
  margin-top: 0;
}

.round-list-gold ul li {
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 540px) {
  .round-list-gold ul li {
    padding-left: 17px;
  }
}

.round-list-gold ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #ac880f;
  border-radius: 100%;
}

@media screen and (max-width: 540px) {
  .round-list-gold ul li::before {
    top: 5px;
    width: 9px;
    height: 9px;
  }
}

.round-list-blue ul li {
  text-align: left;
  line-height: 1.3;
  margin-top: 25px;
  font-size: 18px;
}

@media screen and (max-width: 540px) {
  .round-list-blue ul li {
    font-size: 16px;
    margin-top: 15px;
  }
}

.round-list-blue ul li:first-child {
  margin-top: 0;
}

.round-list-blue ul li {
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 540px) {
  .round-list-blue ul li {
    padding-left: 17px;
  }
}

.round-list-blue ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #1c71a7;
  border-radius: 100%;
}

@media screen and (max-width: 540px) {
  .round-list-blue ul li::before {
    top: 5px;
    width: 9px;
    height: 9px;
  }
}

.in-text {
  margin: 40px 0;
}

@media screen and (max-width: 540px) {
  .in-text {
    margin: 30px 0;
  }
}

.in-text ul li {
  margin-top: 20px;
}

@media screen and (max-width: 540px) {
  .in-text ul li {
    margin-top: 10px;
  }
}

/* リスト背景色 */
.list-box-pos {
  background: #fffeef;
  padding: 40px 30px;
  margin: 40px 0;
}

@media screen and (max-width: 540px) {
  .list-box-pos {
    padding: 30px 20px;
    margin: 30px 0;
  }
}

.list-box-neg {
  background: #f2f2f2;
  padding: 40px 30px;
  margin: 40px 0;
}

@media screen and (max-width: 540px) {
  .list-box-neg {
    padding: 30px 20px;
    margin: 30px 0;
  }
}

/* 見出しデザイン */
.sub-header {
  background: #00311a;
  padding: 5px 0;
}

.sub-header h2 {
  color: #fff;
  padding: 45px 0;
  border-bottom: 1px solid #c6960c;
  border-top: 1px solid #c6960c;
  -o-border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#c6960c), to(#fff7cc));
     border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
  border-image-slice: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 540px) {
  .sub-header h2 {
    padding: 35px 0;
  }
}

.sub-header h2 span.gold {
  color: #c7b98a;
}

.sub-header h2 span.small {
  font-size: 25px;
}

@media screen and (max-width: 540px) {
  .sub-header h2 span.small {
    font-size: 18px;
  }
}

h2 span.yellow,
h3 span.yellow {
  color: #e6ca69;
}

h2 span.block,
h3 span.block {
  display: inline-block;
  margin-bottom: 30px;
}

h2 .block,
h3 .block {
  margin-bottom: 20px;
}

@media screen and (max-width: 540px) {
  h2 .block,
  h3 .block {
    margin-bottom: 15px;
  }
}

h2.main {
  background: #074a2b;
  padding: 40px 15px;
  color: #fff;
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  h2.main {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
}

h2.main-black {
  background: #000;
  padding: 40px 15px;
  color: #fff;
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  h2.main-black {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
}

h2.img {
  background: url(../img/title03-1.jpg) top center/cover no-repeat;
  color: #fff;
  padding: 100px 15px;
  margin-bottom: 60px;
  border-bottom: 4px solid #c6960c;
  border-top: 4px solid #c6960c;
  -o-border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#c6960c), to(#fff7cc));
     border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
  border-image-slice: 1;
}

@media screen and (max-width: 540px) {
  h2.img {
    background: url(../img/title03-1-sp.jpg) top center/cover no-repeat;
    padding: 50px 15px;
    margin-bottom: 40px;
  }
}

h2.img span.large {
  font-size: 45px;
}

@media screen and (max-width: 540px) {
  h2.img span.large {
    font-size: 30px;
  }
}

h3.short-line {
  position: relative;
  display: inline-block;
  margin: 60px 0;
}

@media screen and (max-width: 540px) {
  h3.short-line {
    margin: 40px 0 50px 0;
  }
}

h3.short-line::before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #4aa87d;
}

@media screen and (max-width: 540px) {
  h3.short-line::before {
    width: 45px;
  }
}

h3.short-line span {
  color: #067b45;
  font-weight: bold;
}

h2.line,
h3.line {
  border-top: 2px solid #b1d5c4;
  border-bottom: 2px solid #b1d5c4;
  padding: 30px 15px;
  margin: 60px 0;
}

@media screen and (max-width: 540px) {
  h2.line,
  h3.line {
    padding: 20px 0;
    margin: 40px 0;
  }
}

h2.line span,
h3.line span {
  color: #067b45;
}

h3.img-title {
  margin-bottom: -20px;
}

@media screen and (max-width: 540px) {
  h3.img-title {
    margin-bottom: -10px;
  }
}

/* アイコン吹き出し */
.icon-ballon {
  margin: 50px 0;
}

@media screen and (max-width: 540px) {
  .icon-ballon {
    margin: 40px 0;
  }
}

.icon-ballon .ballon-item {
  margin-top: 20px;
}

@media screen and (max-width: 540px) {
  .icon-ballon .ballon-item {
    margin-top: 30px;
  }
}

.icon-ballon .ballon-first {
  margin-bottom: 0;
}

.icon-ballon .ballon-text {
  border: 1px solid #707070;
}

.icon-ballon .ballon-text::before {
  border-color: transparent #707070 transparent transparent;
}

.icon-ballon .ballon-text p {
  font-size: 18px;
  line-height: 1.3;
}

@media screen and (max-width: 540px) {
  .icon-ballon .ballon-text p {
    font-size: 16px;
  }
}

.icon-ballon .ballon-second {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.icon-ballon .ballon-second .ballon-text::before {
  border-color: transparent transparent transparent #707070;
}

span.indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/* メイン */
.section7-01 {
  padding-top: 80px;
}

@media screen and (max-width: 540px) {
  .section7-01 {
    padding-top: 60px;
  }
}

.section7-02,
.section7-04 {
  padding-bottom: 40px;
}

section.program {
  padding-bottom: 20px;
}

section.program .program-title {
  background: url(../img/program-title.jpg) top center/cover no-repeat;
  padding: 10px 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  section.program .program-title {
    margin-bottom: 40px;
  }
}

section.program .program-title .program-title-inner {
  padding: 90px 15px;
  color: #fff;
  border-bottom: 4px solid #c6960c;
  border-top: 4px solid #c6960c;
  -o-border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#c6960c), to(#fff7cc));
     border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
  border-image-slice: 1;
}

@media screen and (max-width: 540px) {
  section.program .program-title .program-title-inner {
    padding: 50px 15px;
    border-bottom: 3px solid #c6960c;
    border-top: 3px solid #c6960c;
  }
}

section.program .program-title .program-title-inner h2 {
  position: relative;
  display: inline-block;
}

section.program .program-title .program-title-inner h2::before {
  content: "";
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #c7b98a;
}

@media screen and (max-width: 540px) {
  section.program .program-title .program-title-inner h2::before {
    bottom: -20px;
    width: 45px;
  }
}

section.program .program-title .program-title-inner h2 span.yellow {
  font-size: 50px;
}

@media screen and (max-width: 540px) {
  section.program .program-title .program-title-inner h2 span.yellow {
    font-size: 35px;
  }
}

section.program .program-title .program-title-inner h2 .h2-sub {
  color: #e6ca69;
}

section.program .program-title .program-title-inner h2 .h2-sub span {
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

@media screen and (max-width: 540px) {
  section.program .program-title .program-title-inner h2 .h2-sub span {
    padding: 0 30px;
  }
}

section.program .program-title .program-title-inner h2 .h2-sub span::before, section.program .program-title .program-title-inner h2 .h2-sub span::after {
  content: "〜";
  position: absolute;
  top: 0;
  display: inline-block;
}

section.program .program-title .program-title-inner h2 .h2-sub span::before {
  left: 0;
}

section.program .program-title .program-title-inner h2 .h2-sub span::after {
  right: 0;
}

section.program .program-title .program-title-inner .program-title-bottom p {
  font-size: 22px;
  margin-top: 60px;
}

@media screen and (max-width: 540px) {
  section.program .program-title .program-title-inner .program-title-bottom p {
    font-size: 18px;
    margin-top: 40px;
  }
}

section.program .program-wrapper .program-item {
  margin: 60px 0;
  padding: 60px 0;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item {
    margin: 40px 0;
    padding: 40px 0;
  }
}

section.program .program-wrapper .program-item .program-item-title .program-no {
  color: #074a2b;
  font-size: 45px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .program-item-title .program-no {
    font-size: 30px;
  }
}

section.program .program-wrapper .program-item .program-item-title .program-no::before {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #074a2b;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .program-item-title .program-no::before {
    bottom: 0px;
    width: 45px;
  }
}

section.program .program-wrapper .program-item .program-item-title .program-no span {
  font-size: 75px;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .program-item-title .program-no span {
    font-size: 50px;
  }
}

section.program .program-wrapper .program-item .program-item-title h3 {
  margin-top: 40px;
  font-size: 30px;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .program-item-title h3 {
    margin-top: 25px;
    font-size: 22px;
  }
}

section.program .program-wrapper .program-item .program-item-title h3 .h3-sub {
  color: #074a2b;
  font-size: 22px;
  margin-top: 10px;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .program-item-title h3 .h3-sub {
    font-size: 18px;
  }
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item img.base-img {
    margin-top: 20px;
  }
}

section.program .program-wrapper .program-item .bullet-wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .bullet-wrapper {
    margin-top: 40px;
  }
}

section.program .program-wrapper .program-item .bullet-wrapper .bullet-item {
  margin-top: 40px;
  border: 1px solid #074a2b;
  padding: 40px;
  position: relative;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .bullet-wrapper .bullet-item {
    margin-top: 30px;
    padding: 30px 20px;
  }
}

section.program .program-wrapper .program-item .bullet-wrapper .bullet-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 80px 0 0;
  border-color: #074a2b transparent transparent transparent;
  top: 0;
  left: 0;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .bullet-wrapper .bullet-item::before {
    border-width: 60px 60px 0 0;
  }
}

section.program .program-wrapper .program-item .bullet-wrapper .bullet-item::after {
  position: absolute;
  font-size: 30px;
  color: #e6ca69;
  top: 5px;
  left: 15px;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .bullet-wrapper .bullet-item::after {
    font-size: 25px;
    top: 4px;
    left: 10px;
  }
}

section.program .program-wrapper .program-item .bullet-wrapper .bullet-item:last-of-type {
  margin-bottom: 0;
}

section.program .program-wrapper .program-item .bullet-wrapper .bullet-item .bullet-title {
  margin-bottom: 35px;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .bullet-wrapper .bullet-item .bullet-title {
    margin-bottom: 30px;
  }
}

section.program .program-wrapper .program-item .bullet-wrapper .bullet-item .bullet-title p {
  color: #074a2b;
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .bullet-wrapper .bullet-item .bullet-title p {
    font-size: 18px;
  }
}

section.program .program-wrapper .program-item .bullet-wrapper .bullet-item div.round-list-green {
  margin: 35px 0;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .bullet-wrapper .bullet-item div.round-list-green {
    margin: 25px 0;
  }
}

section.program .program-wrapper .program-item .bullet-wrapper .bullet-item div.round-list-green ul li {
  margin-top: 15px;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program-item .bullet-wrapper .bullet-item div.round-list-green ul li {
    margin-top: 10px;
  }
}

section.program .program-wrapper .program01 {
  background: #fff url(../img/program01.png) top left/370px 45px no-repeat;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program01 {
    background: #fff url(../img/program01.png) top left/250px 30px no-repeat;
  }
}

section.program .program-wrapper .program01 .bullet-wrapper .bullet-item {
  counter-increment: count01;
}

section.program .program-wrapper .program01 .bullet-wrapper .bullet-item::after {
  content: counter(count01);
}

section.program .program-wrapper .program02 {
  background: #fff url(../img/program02.png) top left/370px 45px no-repeat;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program02 {
    background: #fff url(../img/program02.png) top left/250px 30px no-repeat;
  }
}

section.program .program-wrapper .program02 .bullet-wrapper .bullet-item {
  counter-increment: count02;
}

section.program .program-wrapper .program02 .bullet-wrapper .bullet-item::after {
  content: counter(count02);
}

section.program .program-wrapper .program03 {
  background: #fff url(../img/program03.png) top left/370px 45px no-repeat;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program03 {
    background: #fff url(../img/program03.png) top left/250px 30px no-repeat;
  }
}

section.program .program-wrapper .program03 .bullet-wrapper .bullet-item {
  counter-increment: count03;
}

section.program .program-wrapper .program03 .bullet-wrapper .bullet-item::after {
  content: counter(count03);
}

section.program .program-wrapper .program04 {
  background: #fff url(../img/program04.png) top left/370px 45px no-repeat;
}

@media screen and (max-width: 540px) {
  section.program .program-wrapper .program04 {
    background: #fff url(../img/program04.png) top left/250px 30px no-repeat;
  }
}

section.program .program-wrapper .program04 .bullet-wrapper .bullet-item {
  counter-increment: count04;
}

section.program .program-wrapper .program04 .bullet-wrapper .bullet-item::after {
  content: counter(count04);
}

.section7-06 {
  padding-top: 20px;
  padding-bottom: 40px;
}

@media screen and (max-width: 540px) {
  .section7-06 {
    padding-bottom: 20px;
  }
}

.section7-06 h3.ballon-title {
  background: #074a2b;
  padding: 25px 30px;
  color: #fff;
  display: inline-block;
  position: relative;
}

.section7-06 h3.ballon-title::before {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-top: 15px solid #074a2b;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section7-06 img.text-sp-img {
  max-width: 300px;
  margin: 10px auto 40px;
}

@media screen and (max-width: 540px) {
  .section7-06 img.text-sp-img {
    max-width: 200px;
    margin: 10px auto 30px;
  }
}

section.tokuten {
  background: #f8f7ec;
}

section.tokuten .tokuten-title {
  background: url(../img/tokuten-title.jpg) top left/cover no-repeat;
  padding: 100px 0;
  margin-bottom: 60px;
  border-bottom: 4px solid #c6960c;
  -o-border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#c6960c), to(#fff7cc));
     border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
  border-image-slice: 1;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-title {
    background: url(../img/tokuten-title-sp.jpg) top left/cover no-repeat;
    padding: 50px 0;
    margin-bottom: 40px;
  }
}

section.tokuten .tokuten-title h2 {
  font-size: 50px;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-title h2 {
    font-size: 35px;
  }
}

section.tokuten .tokuten-wrapper .tokuten-item {
  margin-top: 60px;
  padding: 60px 0;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten-item {
    margin-top: 40px;
    padding: 40px 0;
  }
}

section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title .tokuten-no {
  color: #ac880f;
  font-size: 45px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title .tokuten-no {
    font-size: 30px;
  }
}

section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title .tokuten-no::before {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ac880f;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title .tokuten-no::before {
    width: 45px;
  }
}

section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title .tokuten-no span {
  font-size: 75px;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title .tokuten-no span {
    font-size: 50px;
  }
}

section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title h3 {
  margin-top: 40px;
  font-size: 30px;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title h3 {
    margin-top: 30px;
    font-size: 22px;
  }
}

section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title h3 .h3-sub {
  color: #074a2b;
  font-size: 22px;
  margin-bottom: 20px;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title h3 .h3-sub {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

section.tokuten .tokuten-wrapper .tokuten-item .tokuten-item-title h3 span {
  font-size: 16px;
}

section.tokuten .tokuten-wrapper .tokuten01 {
  background: #fff url(../img/tokuten01.png) top left/370px 45px no-repeat;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten01 {
    background: #fff url(../img/tokuten01.png) top left/250px 30px no-repeat;
  }
}

section.tokuten .tokuten-wrapper .tokuten02 {
  background: #fff url(../img/tokuten02.png) top left/370px 45px no-repeat;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten02 {
    background: #fff url(../img/tokuten02.png) top left/250px 30px no-repeat;
  }
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten02 img.sp {
    max-width: 100%;
  }
}

section.tokuten .tokuten-wrapper .tokuten03 {
  background: #fff url(../img/tokuten03.png) top left/370px 45px no-repeat;
}

@media screen and (max-width: 540px) {
  section.tokuten .tokuten-wrapper .tokuten03 {
    background: #fff url(../img/tokuten03.png) top left/250px 30px no-repeat;
  }
}

.section7-08 {
  padding-bottom: 80px;
}

.section7-08 img.profile-img {
  max-width: 250px;
  margin: 60px auto;
}

@media screen and (max-width: 540px) {
  .section7-08 img.profile-img {
    max-width: 200px;
    margin: 40px auto;
  }
}

.section7-08 .lesson-wrapper {
  background: #f4faf7;
  margin: 60px auto;
  padding: 60px 15px;
}

@media screen and (max-width: 540px) {
  .section7-08 .lesson-wrapper {
    margin: 40px auto;
    padding: 40px 15px;
  }
}

.section7-08 .lesson-wrapper h3 {
  color: #074a2b;
  position: relative;
  display: inline-block;
  padding: 0 30px;
  font-size: 30px;
}

@media screen and (max-width: 540px) {
  .section7-08 .lesson-wrapper h3 {
    font-size: 22px;
  }
}

.section7-08 .lesson-wrapper h3::before, .section7-08 .lesson-wrapper h3::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #074a2b;
}

.section7-08 .lesson-wrapper h3::before {
  left: 0;
}

.section7-08 .lesson-wrapper h3::after {
  right: 0;
}

.section7-08 .lesson-wrapper img {
  max-width: 350px;
  margin: 0 auto;
}

@media screen and (max-width: 540px) {
  .section7-08 .lesson-wrapper img {
    max-width: 240px;
  }
}

.section7-08 .lesson-wrapper .lesson-index {
  margin: 40px 0 0;
  border: 1px solid #074a2b;
}

@media screen and (max-width: 540px) {
  .section7-08 .lesson-wrapper .lesson-index {
    margin: 30px 0 0;
  }
}

.section7-08 .lesson-wrapper .lesson-index .index-item {
  background: #fff;
  padding: 30px 40px;
  counter-increment: count-lesson;
}

@media screen and (max-width: 540px) {
  .section7-08 .lesson-wrapper .lesson-index .index-item {
    padding: 20px;
  }
}

.section7-08 .lesson-wrapper .lesson-index .index-item:nth-of-type(2n) {
  background: #fafafa;
}

.section7-08 .lesson-wrapper .lesson-index .index-item p {
  text-align: left;
  position: relative;
  padding-left: 40px;
}

.section7-08 .lesson-wrapper .lesson-index .index-item p::before {
  position: absolute;
  content: counter(count-lesson);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 40px;
  color: #074a2b;
}

.section7-08 .lesson-wrapper p.attention {
  margin-top: 20px;
  font-size: 14px;
  text-align: left;
}

.section7-09 {
  padding-top: 20px;
  padding-bottom: 40px;
}

.section7-10 h2.main .block {
  font-size: 22px;
}

@media screen and (max-width: 540px) {
  .section7-10 h2.main .block {
    font-size: 18px;
  }
}

.section7-10 img.flow-img {
  margin: 60px auto;
  max-width: 400px;
}

@media screen and (max-width: 540px) {
  .section7-10 img.flow-img {
    margin: 40px auto;
    width: 80%;
  }
}

.section7-10 .list-box-neg {
  background: #eaf0ed;
}

.section7-11 {
  background: #f8f7ec;
}

.section7-11 .voice-wrapper .voice-item {
  background: #fff;
  -webkit-box-shadow: 3px 3px 6px rgba(172, 136, 15, 0.4);
          box-shadow: 3px 3px 6px rgba(172, 136, 15, 0.4);
  padding: 50px;
  margin-top: 60px;
}

@media screen and (max-width: 540px) {
  .section7-11 .voice-wrapper .voice-item {
    padding: 40px 20px;
    margin-top: 40px;
  }
}

.section7-11 .voice-wrapper .voice-item .score p.score-title {
  background: #333;
  display: inline-block;
  color: #fff;
  padding: 2px 10px;
  margin-bottom: -10px;
}

.section7-11 .voice-wrapper .voice-item .score p.score-no {
  font-size: 25px;
}

.section7-11 .voice-wrapper .voice-item .score p.score-no img.score-arrow {
  width: 20px;
  vertical-align: 4px;
  display: inline;
  margin: 0 10px;
}

.section7-11 .voice-wrapper .voice-item .score p.score-no span.gold {
  font-size: 40px;
}

.section7-11 .voice-wrapper .voice-item img {
  max-width: 150px;
  margin: 10px auto;
}

@media screen and (max-width: 540px) {
  .section7-11 .voice-wrapper .voice-item img {
    max-width: 120px;
  }
}

.section7-11 .voice-wrapper .voice-item h3 {
  margin: 50px auto 40px;
  color: #074a2b;
}

@media screen and (max-width: 540px) {
  .section7-11 .voice-wrapper .voice-item h3 {
    margin: 30px auto 40px;
    font-size: 20px;
  }
}

.section7-11 .voice-bottom-text {
  margin-top: 60px;
}

@media screen and (max-width: 540px) {
  .section7-11 .voice-bottom-text {
    margin-top: 40px;
  }
}

.section7-11 .voice-bottom-text p {
  font-size: 25px;
  font-weight: bold;
}

@media screen and (max-width: 540px) {
  .section7-11 .voice-bottom-text p {
    font-size: 18px;
  }
}

.section7-11 .voice-bottom-text p span.green {
  color: #067b45;
}

.section7-11 .voice-bottom-text p span.large {
  font-size: 40px;
}

@media screen and (max-width: 540px) {
  .section7-11 .voice-bottom-text p span.large {
    font-size: 25px;
  }
}

.section7-11 .voice-bottom-text p span.red {
  font-size: 30px;
}

@media screen and (max-width: 540px) {
  .section7-11 .voice-bottom-text p span.red {
    font-size: 22px;
  }
}

.section7-12 {
  padding-bottom: 40px;
}

.section7-12 .limited {
  margin: 60px auto 30px;
  background: #fffeef;
  padding: 2px 2px;
  border-radius: 6px;
  border: 2px solid #e6ca69;
  max-width: 500px;
}

@media screen and (max-width: 540px) {
  .section7-12 .limited {
    margin: 40px auto 20px;
    max-width: 260px;
  }
}

.section7-12 .limited p {
  font-size: 25px;
  font-weight: bold;
  color: #074a2b;
  border: 0.5px solid #e6ca69;
  padding: 6px auto;
  border-radius: 4px;
}

@media screen and (max-width: 540px) {
  .section7-12 .limited p {
    font-size: 18px;
  }
}

.section7-12 .limited p span {
  font-size: 40px;
}

@media screen and (max-width: 540px) {
  .section7-12 .limited p span {
    font-size: 30px;
  }
}

.section7-12 img.base-img:first-of-type {
  margin-top: 0;
}

.section7-13 h2.main {
  background: #333;
  border-bottom: 4px solid #c6960c;
  -o-border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#c6960c), to(#fff7cc));
     border-image: linear-gradient(to right, #c6960c 0%, #fff7cc 100%);
  border-image-slice: 1;
}

.section7-13 h2.main .block {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 22px;
}

@media screen and (max-width: 540px) {
  .section7-13 h2.main .block {
    font-size: 18px;
  }
}

.section7-13 .content-matome {
  background: #fff;
  border: 3px solid #e6ca69;
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome {
    margin-bottom: 40px;
  }
}

.section7-13 .content-matome .matome-title {
  background: url(../img/frame-l.png) top 20px left 20px/65px no-repeat, url(../img/frame-r.png) top 20px right 20px/65px no-repeat, #e6ca69;
  padding: 50px 0 40px;
  background: url(../img/frame-l.png) top 10px left 10px/45px no-repeat, url(../img/frame-r.png) top 10px right 10px/45px no-repeat, #e6ca69;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .matome-title {
    padding: 30px 0 30px;
  }
}

.section7-13 .content-matome .matome-title p {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .matome-title p {
    font-size: 30px;
  }
}

.section7-13 .content-matome .matome-title p span {
  font-size: 22px;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .matome-title p span {
    font-size: 18px;
  }
}

.section7-13 .content-matome .main-content,
.section7-13 .content-matome .tokuten-content {
  margin: 60px 0;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .main-content,
  .section7-13 .content-matome .tokuten-content {
    margin: 40px 0;
  }
}

.section7-13 .content-matome .main-content .matome-item,
.section7-13 .content-matome .tokuten-content .matome-item {
  margin: 40px auto;
  border-bottom: 1px solid #e6ca69;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .main-content .matome-item,
  .section7-13 .content-matome .tokuten-content .matome-item {
    margin: 30px auto;
  }
}

.section7-13 .content-matome .main-content .matome-item:last-of-type,
.section7-13 .content-matome .tokuten-content .matome-item:last-of-type {
  border-bottom: none;
}

.section7-13 .content-matome .main-content .matome-item .matome-item-title .matome-no,
.section7-13 .content-matome .tokuten-content .matome-item .matome-item-title .matome-no {
  color: #074a2b;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.section7-13 .content-matome .main-content .matome-item .matome-item-title .matome-no::before,
.section7-13 .content-matome .tokuten-content .matome-item .matome-item-title .matome-no::before {
  content: "";
  position: absolute;
  bottom: -5px;
  display: inline-block;
  width: 40px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #074a2b;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .main-content .matome-item .matome-item-title .matome-no::before,
  .section7-13 .content-matome .tokuten-content .matome-item .matome-item-title .matome-no::before {
    bottom: 0;
  }
}

.section7-13 .content-matome .main-content .matome-item .matome-item-title .matome-no span,
.section7-13 .content-matome .tokuten-content .matome-item .matome-item-title .matome-no span {
  font-size: 50px;
}

.section7-13 .content-matome .main-content .matome-item .matome-item-title h3,
.section7-13 .content-matome .tokuten-content .matome-item .matome-item-title h3 {
  margin-top: 30px;
  font-size: 30px;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .main-content .matome-item .matome-item-title h3,
  .section7-13 .content-matome .tokuten-content .matome-item .matome-item-title h3 {
    margin-top: 20px;
    font-size: 22px;
  }
}

.section7-13 .content-matome .main-content .matome-item .matome-item-title h3 .h3-sub,
.section7-13 .content-matome .tokuten-content .matome-item .matome-item-title h3 .h3-sub {
  color: #074a2b;
  font-size: 22px;
  margin-top: 10px;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .main-content .matome-item .matome-item-title h3 .h3-sub,
  .section7-13 .content-matome .tokuten-content .matome-item .matome-item-title h3 .h3-sub {
    font-size: 18px;
  }
}

.section7-13 .content-matome .main-content .matome-item img.base-img,
.section7-13 .content-matome .tokuten-content .matome-item img.base-img {
  max-width: 350px;
  margin: 30px auto 40px;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .main-content .matome-item img.base-img,
  .section7-13 .content-matome .tokuten-content .matome-item img.base-img {
    max-width: 260px;
    margin: 30px auto;
  }
}

.section7-13 .content-matome .tokuten-content {
  background: #f7f7ed;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 40px;
}

@media screen and (max-width: 540px) {
  .section7-13 .content-matome .tokuten-content {
    padding-top: 1px;
    padding-bottom: 20px;
  }
}

.section7-13 .content-matome .tokuten-content .matome-item .matome-item-title .matome-no {
  color: #ac880f;
}

.section7-13 .content-matome .tokuten-content .matome-item .matome-item-title .matome-no::before {
  background-color: #ac880f;
}

.section7-13 .content-matome .tokuten-content .matome-item .matome-item-title h3 .h3-sub {
  margin-bottom: 10px;
}

.section7-13 .premium-matome {
  background: #fff;
  border: 3px solid #ac8822;
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome {
    margin-bottom: 40px;
  }
}

.section7-13 .premium-matome .matome-title {
  background: url(../img/p_frame-l.png) top 20px left 20px/65px no-repeat, url(../img/p_frame-r.png) top 20px right 20px/65px no-repeat, #e6ca69;
  padding: 50px 0 40px;
  background: url(../img/p_frame-l.png) top 10px left 10px/45px no-repeat, url(../img/p_frame-r.png) top 10px right 10px/45px no-repeat, #ac8822;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome .matome-title {
    padding: 30px 0 30px;
  }
}

.section7-13 .premium-matome .matome-title p {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  color: white;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome .matome-title p {
    font-size: 30px;
  }
}

.section7-13 .premium-matome .matome-title p span {
  font-size: 22px;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome .matome-title p span {
    font-size: 18px;
  }
}

.section7-13 .premium-matome .main-content {
  margin: 60px 0;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome .main-content {
    margin: 40px 0;
  }
}

.section7-13 .premium-matome .main-content .matome-item {
  margin: 40px auto;
  border-bottom: 1px solid #e6ca69;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome .main-content .matome-item {
    margin: 30px auto;
  }
}

.section7-13 .premium-matome .main-content .matome-item:last-of-type {
  border-bottom: none;
}

.section7-13 .premium-matome .main-content .matome-item .matome-item-title h3 {
  margin-top: 30px;
  font-size: 30px;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome .main-content .matome-item .matome-item-title h3 {
    margin-top: 20px;
    font-size: 22px;
  }
}

.section7-13 .premium-matome .main-content .matome-item .matome-item-title h3 .h3-sub {
  color: #074a2b;
  font-size: 22px;
  margin-top: 10px;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome .main-content .matome-item .matome-item-title h3 .h3-sub {
    font-size: 18px;
  }
}

.section7-13 .premium-matome .main-content .matome-item img.base-img {
  max-width: 350px;
  margin: 30px auto 40px;
}

@media screen and (max-width: 540px) {
  .section7-13 .premium-matome .main-content .matome-item img.base-img {
    max-width: 260px;
    margin: 30px auto;
  }
}

.section7-13 .henkin {
  background: #fff;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  padding: 40px 0 60px;
  margin: 120px auto 60px;
  position: relative;
}

@media screen and (max-width: 540px) {
  .section7-13 .henkin {
    padding: 20px 0 40px;
    margin: 80px auto 40px;
  }
}

.section7-13 .henkin img.henkin-title {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
}

@media screen and (max-width: 540px) {
  .section7-13 .henkin img.henkin-title {
    top: -30px;
  }
}

.section7-13 .henkin img.base-img {
  margin: 40px auto;
}

@media screen and (max-width: 540px) {
  .section7-13 .henkin img.base-img {
    margin: 30px auto;
  }
}

.section7-13 .henkin .henkin-link {
  margin-top: 40px;
}

@media screen and (max-width: 540px) {
  .section7-13 .henkin .henkin-link {
    margin-top: 30px;
  }
}

.section7-13 .henkin .henkin-link a {
  font-size: 16px;
  color: #1c71a7;
  border-bottom: 1px solid #1c71a7;
  display: inline;
}

@media screen and (max-width: 540px) {
  .section7-13 .henkin .henkin-link a {
    font-size: 14px;
  }
}

.section7-14 h2 {
  font-size: 60px;
}

@media screen and (max-width: 540px) {
  .section7-14 h2 {
    font-size: 40px;
  }
}

.section7-14 h2 span {
  font-size: 45px;
}

@media screen and (max-width: 540px) {
  .section7-14 h2 span {
    font-size: 30px;
  }
}

.section7-14 .aco-wrapper .aco {
  margin-top: 40px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 3px rgba(96, 105, 126, 0.3);
          box-shadow: 3px 3px 3px rgba(96, 105, 126, 0.3);
}

@media screen and (max-width: 540px) {
  .section7-14 .aco-wrapper .aco {
    margin-top: 30px;
    margin-bottom: 24px;
  }
}

.section7-14 .aco-wrapper .aco:last-of-type {
  margin-bottom: 0;
}

.section7-14 .aco-wrapper .aco-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 540px) {
  .section7-14 .aco-wrapper .aco-q {
    display: block;
  }
}

.section7-14 .aco-wrapper .aco-q {
  background-color: #333;
  border-left: 6px solid #e6ca69;
  padding: 25px;
  position: relative;
}

@media screen and (max-width: 540px) {
  .section7-14 .aco-wrapper .aco-q {
    padding: 20px 55px 18px 15px;
    text-align: left;
  }
}

.section7-14 .aco-wrapper .aco-q::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 540px) {
  .section7-14 .aco-wrapper .aco-q::before {
    border-width: 12px 7px 0 7px;
    right: 15px;
  }
}

.section7-14 .aco-wrapper .aco-q:hover {
  cursor: pointer;
}

.section7-14 .aco-wrapper .aco-q .aco-q-left {
  margin-right: 30px;
  font-size: 22px;
  line-height: 1.3;
  color: #e6ca69;
}

@media screen and (max-width: 540px) {
  .section7-14 .aco-wrapper .aco-q .aco-q-left {
    margin-right: 0;
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.section7-14 .aco-wrapper .aco-q .aco-q-right p {
  font-size: 22px;
  text-align: left;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 540px) {
  .section7-14 .aco-wrapper .aco-q .aco-q-right p {
    font-size: 17px;
    line-height: 1.3;
  }
}

.section7-14 .aco-wrapper .close::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.section7-14 .aco-wrapper .aco-a {
  padding: 40px;
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  .section7-14 .aco-wrapper .aco-a {
    padding: 25px 18px 25px;
    margin-bottom: 40px;
  }
}

.section7-14 .aco-wrapper .aco-a:last-of-type {
  margin-bottom: 0;
}

.section7-15 {
  padding-bottom: 40px;
}

.section7-15 h2.line {
  margin-top: 80px;
  margin-bottom: 40px;
}

@media screen and (max-width: 540px) {
  .section7-15 h2.line {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}

.section7-15 img.base-img:last-of-type {
  margin-top: 0;
}

section.yokoku h2.main,
section.work h2.main {
  background: #1c71a7;
}

@media screen and (max-width: 540px) {
  section.yokoku h3 {
    font-size: 22px;
  }
}

section.yokoku h3 span.red {
  font-size: 35px;
}

@media screen and (max-width: 540px) {
  section.yokoku h3 span.red {
    font-size: 30px;
  }
}

section.work h2.main span {
  font-size: 22px;
  display: block;
  margin-bottom: 5px;
  color: #ffff66;
}

@media screen and (max-width: 540px) {
  section.work h2.main span {
    font-size: 18px;
  }
}

section.work div.work-btn {
  margin: 40px 0 60px 0;
}

@media screen and (max-width: 540px) {
  section.work div.work-btn {
    margin: 40px 0;
  }
}

section.work div.work-btn a img {
  max-width: 500px;
  margin: 0 auto;
}

section.work div.work-btn a img:hover {
  opacity: 0.8;
}

section.work p.name {
  text-align: right;
  margin-top: 60px;
}

@media screen and (max-width: 540px) {
  section.work p.name {
    margin-top: 30px;
  }
}

.section8-11 {
  padding-bottom: 100px;
}

@media screen and (max-width: 540px) {
  .section8-11 {
    padding-bottom: 60px;
  }
}

.section8-11 h2 {
  background: #e15a28;
  padding: 80px 0;
  color: #fff;
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  .section8-11 h2 {
    padding: 60px 0;
    margin-bottom: 40px;
  }
}

.base-text {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 19px;
}

.teach {
  margin-top: 40px;
}

.section8-11 img {
  padding-bottom: 80px;
}

.dots span {
  position: relative;
  /* 基準値とする */
}

.dots span::before {
  content: "・";
  /* 文字の上に置くものを指定 */
  position: absolute;
  /* 相対位置とする */
  top: -1.3em;
  /* 縦方向の表示位置を調整（-1emくらいがちょうどいいかんじ） */
  left: 0;
  /* 横方向の表示位置を調整 */
}

.text-bold {
  line-height: 2;
}

.section8-11 h2 {
  background: #e15a28;
  padding: 80px 0;
  color: #fff;
  margin-bottom: 60px;
}
