@charset "UTF-8";

/* ====================================================
# mixins
===================================================== */
/* ====================================================
# colors
===================================================== */
.col-dark-grey-blue {
  color: #2f4466;
}

.col-grey-blue {
  color: #6784a1;
}

.col-desert {
  color: #d79f4b;
}

.col-greyish-blue {
  color: #6184a7;
}

.col-light-grey {
  color: #f0efe9;
}

.col-cloudy-blue {
  color: #c6d0db;
}

.col-slate-green {
  color: #599170;
}

.col-greyish-brown {
  color: #50413e;
}

.col-sandy-brown {
  color: #bca866;
}

.col-gray {
  color: #999;
}

h3 {
  font-weight: 600;
}

/*＝＝＝＝＝＝＝＝＝＝＝
    フェードイン
＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein {
  transform: translate3d(0, -10px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* ====================================================
# font
===================================================== */
/* NotoSansCJKjp */
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/NotoSansCJKjp-Light.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Light.woff") format("woff"), url("../fonts/NotoSansCJKjp-Light.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Light.eot") format("embedded-opentype");
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Medium.woff") format("woff"), url("../fonts/NotoSansCJKjp-Medium.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Medium.eot") format("embedded-opentype");
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}

/* ====================================================
# content width
===================================================== */
/* $wrapper-width: calc(960 / 1366 * 100%);
$content-width: calc(760 / 960 * 100%);
$inner-width: calc(560 / 960 * 100%); */
.wrapper {
  width: 960px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media screen and (max-width: 768px) {
  .wrapper {
    width: 95%;
  }
}

.container {
  width: 760px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

.inner {
  width: 560px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

/* ====================================================
# bace(共通)
===================================================== */
body {
  width: 100%;
  color: #333;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt"1;
  font-feature-settings: "palt"1;
  background-color: #e7e7e7;
  scroll-behavior: smooth;
  font-size: 16px;
  /*IE9以前に対応する*/
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 4vw;
  }
}

a {
  color: #333;
  display: block;
}

@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.7;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    /* transform: scale(1.05, 1.05); */
  }
}

a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  /* transform: scale(1.05, 1.05); */
}

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

.text-center {
  text-align: center;
}

.fw-bold {
  font-weight: bold;
}

.fw-nomal {
  font-weight: nomal;
}

.is-pc {
  display: block;
}

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

.is-sp {
  display: none;
}

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

/* ================================================
 * flex
/* ================================================*/
.flex_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex_end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex_all_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
}

/* ====================================================
# header
===================================================== */
header {
  background-color: #fff;
}

section {
  background-color: #fff;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  section {
    padding: 10% 0 20%;
  }

  header {
    padding-bottom: 80px;
  }
}

.section-title {
  font-size: 24px;
  /*IE9以前に対応する*/
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.18em;
  color: #fff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 4.5vw;
  }
}

.border-bottom {
  border-top: dotted 1px #ccc;
  margin: 1em auto 0.8em;
  width: 100%;
}

.under-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ebe5d1));
  background: linear-gradient(transparent 50%, #ebe5d1 50%);
  padding-bottom: 4px;
}

.mb4em {
  margin-bottom: 4em;
}

.mt34em {
  margin-top: 3.4em;
}

.mt25em {
  margin-top: 2.5em;
}

.mt2em {
  margin-top: 2em;
}

.mb3em {
  margin-bottom: 3em;
}

.mb25em {
  margin-bottom: 2.5em;
}

.mb2em {
  margin-bottom: 2em;
}

.mb15em {
  margin-bottom: 1.5em;
}

.mb1em {
  margin-bottom: 1em;
}

.mb05em {
  margin-bottom: 0.5em;
}

.fz18 {
  font-size: 18px;
  /*IE9以前に対応する*/
  font-size: 1.125rem;
  line-height: 1.77778;
  letter-spacing: 0.1em;
}

.fz14 {
  font-size: 14px;
}

.Yumin {
  font-family: 游明朝,
    "Yu Mincho",
    YuMincho,
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    HGS明朝E,
    'Noto Serif JP',
    serif;
}

@media screen and (max-width: 768px) {
  .fz18 {
    font-size: 4vw;
  }
}

.fz20 {
  font-size: 20px;
  /*IE9以前に対応する*/
  font-size: 1.25rem;
  line-height: 1.6;

}

@media screen and (max-width: 768px) {
  .fz20 {
    font-size: 4.66667vw;
  }
}

.fz22 {
  font-size: 22px;
  /*IE9以前に対応する*/
  font-size: 1.375rem;
  line-height: 1.45455;
}

@media screen and (max-width: 768px) {
  .fz22 {
    font-size: 5.06667vw;
  }
}

.fwbold {
  font-weight: 500;
}

/* ====================================================
# header
===================================================== */
.header-top {
  background-color: #829db9;
  padding: 1.5em 0 0.6em;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  color: #fff;
  line-height: 1.75;
}

.header-top .header-text {
  font-size: 20px;
  /*IE9以前に対応する*/
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .header-top .header-text {
    font-size: 4vw;
  }
}

.header-top .header-lead {
  color: #bca866;
  font-size: 24px;
  /*IE9以前に対応する*/
  font-size: 1.5rem;
  background-color: #fff;
  border-radius: 100vh;
  font-weight: bold;
  width: 430px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .header-top .header-lead {
    font-size: 4.5vw;
    width: 100%;
  }
}

.header-top .header-note {
  font-size: 18px;
  /*IE9以前に対応する*/
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .header-top .header-note {
    font-size: 3vw;
  }
}

.balloon {
  position: relative;
  margin: 0 auto;
  background: #c6d0db;
  padding: 35px;
  color: #666;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  border-radius: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .balloon {
    padding: 5% 2%;
    -webkit-transform: translateY(-0%);
    transform: translateY(-0%);
    margin-top: 20px;
  }
}

.balloon::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(198, 208, 219, 0);
  border-top-width: 39px;
  border-bottom-width: 39px;
  border-left-width: 40px;
  border-right-width: 40px;
  margin-left: -39px;
  border-top-color: #c6d0db;
  top: 100%;
  left: 50%;
}

@media screen and (max-width: 768px) {
  .balloon::after {
    border-top-width: 5vw;
    border-bottom-width: 5vw;
    border-left-width: 5vw;
    border-right-width: 5vw;
    margin-left: -5vw;
  }
}

.balloon-title {
  font-size: 32px;
  /*IE9以前に対応する*/
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .balloon-title {
    font-size: 4.26667vw;
  }
}

.balloon-title-emphasis {
  background-color: #faf9f4;
  color: #6784a1;
  padding: 7px;
  margin-right: 5px;
}

.balloon-attention {
  font-size: 24px;
  /*IE9以前に対応する*/
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .balloon-attention {
    font-size: 3.2vw;
  }
}

.balloon-attention-fzL {
  font-size: 26px;
  /*IE9以前に対応する*/
  font-size: 1.625rem;
  line-height: 1;
  margin-bottom: 1em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .balloon-attention-fzL {
    font-size: 3.46667vw;
  }
}

/* ====================================================
# nayami
===================================================== */

.nayami {
  padding-top: 20;
}
@media screen and (max-width: 768px) {
  .nayami {
    padding-top: 0;
  }
}

.nayami-box {
  position: relative;
  padding: 4em 0.5em 0.5em;
  border: solid 1px #6784a1;
}

@media screen and (max-width: 768px) {
  .nayami-box {
    padding: 3em 1em 0em 1em;
  }
}

.nayami-box-title {
  position: absolute;
  display: inline-block;
  width: 400px;
  top: -0.8em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0.4em;
  font-size: 24px;
  /*IE9以前に対応する*/
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  background: #6784a1;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .nayami-box-title {
    font-size: 4.5vw;
    width: 85%;
  }
}

.nayami-list-box ul li {
  position: relative;
  font-size: 16px;
  /*IE9以前に対応する*/
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0em;
  list-style: none;
  padding-left: 4.8em;
  -webkit-font-feature-settings: "palt"1;
  font-feature-settings: "palt"1;
  background: url(../img/00_list-mark.png) left 42px top 2px no-repeat;
  background-size: 26px auto;
  margin-bottom: -6px;
}

@media screen and (max-width: 768px) {
  .nayami-list-box ul li {
    font-size: 3.5vw;
    padding-left: 2.5em;
    background: url(../img/00_list-mark.png) left 0 top 4px no-repeat;
    background-size: 6vw auto;
  }
}

.nayami-list-box ul li .col-dark-grey-blue {
  font-weight: 600;
}

.nayami-list-box ul li .col-desert {
  font-weight: 600;
}

.nayami-list-box ul li:last-child {
  margin-bottom: 1.8em;
}

.nayami-list-box .border-bottom {
  width: 94%;
}

.nayami-add-text {
  padding-top: 3em;
}

.nayami-add-text p {
  margin-bottom: 2em;
  font-size: 16px;
  line-height: 2;
}

.nayami-add-text p:last-child {
  margin-bottom: 0;
}

.nayami-add-text p.text-center.col-desert {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .nayami-add-text p.text-center.col-desert {
    font-size: clamp(18px, 2vw, 20px);
  }
}

/* ====================================================
# voice
===================================================== */
.voice {
  background-color: #6184a7;
}

.voice .section-title {
  background-image: url(../img/01_voice-title.png);
  background-repeat: no-repeat;
  background-position: right bottom 20px;
  background-size: 24%;
  padding-bottom: 32px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .voice .section-title {
    background-image: url(../img/01_voice-title.png);
    background-repeat: no-repeat;
    background-position: right bottom 15%;
    background-size: 35%;
  }
}

.voice-box {
  -webkit-box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 32px 32px 60px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .voice-box {
    padding: 5% 3% 5%;
    margin-bottom: 10%;
  }

  .voice-box img {
    width: 80%;
  }
}


@media screen and (max-width: 768px) {
  .voice-box:first-of-type {
    padding: 5% 3% 5%;
  }
}

.voice-box:last-child {
  margin-bottom: 0;
}

.voice-item-img {
  width: 216px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .voice-item-img {
    width: 80%;
  }
}

.voice-item-img-caption {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: 0.9px;
}

.voice-item-img-caption span {
  font-size: 16px;
  letter-spacing: 0.8px;
}

.voice-item-text {
  padding: 8px;
  line-height: 1.75;
}

.voice-item-note {
  margin-bottom: 1.8em;
}

/* .voice-item-note .col-dark-grey-blue,
.voice-item-note .col-desert {
  font-weight: bold;
} */

.voice-item-note:last-child {
  margin-bottom: 0;
}

.voice-name {
  font-size: 18px;
  /*IE9以前に対応する*/
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .voice-name {
    font-size: 5.33333vw;
  }
}

.voice .border-bottom {
  width: 97%;
}

/* ====================================================
# nayami-about
===================================================== */
.nayami-about-catch {
  background-color: #f0efe9;
  padding: 30px 0;
  font-size: 20px;
  /*IE9以前に対応する*/
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.17em;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  position: relative;
}

@media screen and (max-width: 768px) {
  .nayami-about-catch {
    font-size: 4vw;
    padding: 3% 0;
    margin-bottom: 10%;
  }
}

.nayami-about-catch-text {
  padding: 0;
  font-weight: 600;
  display: inline-block;
  position: relative;
  font-size: 24px;
}

.nayami-about-catch-text::before,
.nayami-about-catch-text::after {
  position: absolute;
  content: "";
}

.nayami-about-catch-text::before {
  background-image: url(../img/02_nayami-about-catch-left.png);
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  left: -2em;
  width: 25px;
  height: 20px;
}

.nayami-about-catch-text::after {
  background-image: url(../img/02_nayami-about-catch-right.png);
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: 0;
  right: -2em;
  width: 25px;
  height: 20px;
}

.nayami-about-catch-box {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .nayami-about-catch-box {
    width: 100%;
  }
  .nayami-about-catch-text {
    font-size: 18px;
  }
}

.nayami-about-catch-left {
  position: absolute;
  top: -1em;
  left: 0;
}

@media screen and (max-width: 768px) {
  .nayami-about-catch-left {
    width: 5%;
  }
}

.nayami-about-catch-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .nayami-about-catch-right {
    width: 5%;
  }
}

.nayami-about-catch-en {
  position: absolute;
  top: 0;
  right: -23%;
  width: 124px;
}

@media screen and (max-width: 768px) {
  .nayami-about-catch-en {
    width: 40%;
    right: 8%;
    top: inherit;
    bottom: -15%;
  }
}

.nayami-about-catch-img {
  position: absolute;
  -webkit-box-shadow: -10px -10px 0px 0 #c6d0db;
  box-shadow: -10px -10px 0px 0 #c6d0db;
  top: 43%;
  right: 0;
  width: 240px;
}

@media screen and (max-width: 768px) {
  .nayami-about-catch-img {
    width: 50%;
    margin: 0 auto;
    position: static;
    display: none;
  }
}

.nayami-about-text-box {
  margin-top: 70px;
}

.nayami-about-text-box .col-dark-grey-blue {
  font-weight: bold;
}
.nayami-about-text-box .col-desert {
  font-weight: bold;
}

.nayami-about-add-band {
  margin-bottom: 1.5em;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  background-color: #c6d0db;
  border-radius: 5px;
  padding: 0.5em 1.25em;
}

.ongaku {
  line-height: 2.5;
  font-weight: bold;
}

.nayami-about-img {
  width: 400px;
  margin-bottom: 32px;
}

.nayami-about-img.center {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .nayami-about-img {
    width: 100%;
  }

  .ongaku {
    font-size: 16px;
  }

  .nayami-about-text-box {
    margin-top: 40px;
  }
}

.nayami-about-intro {
  background-color: #e7e7e7;
  padding: 0.4em;
  margin-top: 1em;
}

.nayami-about .arrow {
  width: 24px;
  margin: 0 auto 8px;
}

.nayami-about-action {
  font-weight: 500;
  font-size: 18px;
  /*IE9以前に対応する*/
  font-size: 1.125rem;
  line-height: 2;
  padding: 0.5em;
  background-color: #bca866;
  color: #fff;
  margin: 0 0 1em 0;
}

.nayami-about-list-box {
  margin-bottom: 42px;
}

.nayami-about-list-box ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.nayami-about-list-box ul li .list-mark {
  font-size: 12px;
  color: #ddd;
  margin-right: 4px;
}

.nayami-about-list-box .border-bottom {
  margin: 6px auto;
  border-top: 0px;
}

.nayami-about-text-img {
  width: 55%;
  margin: 72px auto 60px;
}

@media screen and (max-width: 768px) {
  .nayami-about-text-img {
    width: 100%;
  }

  .nayami-about-action {
    font-size: 16px;
  }
}

.nayami-about-emphasis {
  font-size: 20px;
  /*IE9以前に対応する*/
  font-size: 1.25rem;
  line-height: 2.3;
  letter-spacing: 0.18em;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  margin-bottom: 28px;
}

.nayami-about-emphasis .flex_all_center {
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .nayami-about-emphasis.flex_between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.nayami-about-emphasis .nayami-about-img {
  margin-bottom: 0;
  width: 53%;
}

@media screen and (max-width: 768px) {
  .nayami-about-emphasis .nayami-about-img {
    width: 100%;
    margin: 0 auto;
  }
}

.nayami-about-feature {
  font-size: 20px;
  /*IE9以前に対応する*/
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  font-weight: 600;
  margin-bottom: 1.5em;
}

.nayami-about-img2 {
  width: 265px;
  margin: 0 auto 38px;
}

.nayami-about-ballon {
  border-radius: 10px;
  padding: 0.5em 1.5em;
  background-color: #f0efe9;
  border: 1px solid #f0efe9;
  -webkit-box-shadow: 0 0 8px #f0efe9;
  box-shadow: 0 0 8px #f0efe9;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .nayami-about-ballon {
    margin-bottom: 3%;
    margin-right: 0;
  }

  .nayami-about-img2 {
    width: 100%;
  }

  .nayami-about-ballon,
  .nayami-about-ballon2 {
    padding: 0.5em 1em;
  }

  .nayami-about-feature {
    font-size: 18px;
  }
}

.nayami-about-ballon:last-of-type {
  margin-right: 0;
}

.nayami-about-ballon01 {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .nayami-about-ballon01 {
    margin-bottom: 0%;
  }

  .nayami-about-ballon01.flex_start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.nayami-about-ballon2 {
  border-radius: 10px;
  padding: 0.5em 1.5em;
  background-color: #f0efe9;
  border: 1px solid #f0efe9;
  -webkit-box-shadow: 0 0 8px #f0efe9;
  box-shadow: 0 0 8px #f0efe9;
  margin-bottom: 16px;
}

.nayami-about-ballon2:last-of-type {
  margin-bottom: 0;
}

.nayami-about-ballon2.right {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .nayami-about-ballon2.right {
    margin-left: 0;
  }
}

.nayami-about-ballon02 {
  margin-bottom: 34px;
}

@media screen and (max-width: 768px) {
  .nayami-about-ballon02 {
    margin-bottom: 10%;
  }

  .nayami-about-ballon02.flex_start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* ====================================================
# resolution_key
===================================================== */
.resolution_key {
  padding-top: 0;
}

.resolution_key.pb0 {
  padding-bottom: 0;
}
.resolution_key-main .col-slate-green {
  font-weight: bold;
}

.resolution_key-main .col-dark-grey-blue {
  font-weight: bold;
}

.resolution_key-main {
  position: relative;
  margin-top: -3.5em;
}

@media screen and (max-width: 768px) {
  .resolution_key-main {
    margin-top: 0;
  }
}

.resolution_key-main .resolution_key-music {
  position: absolute;
  width: 65px;
  top: -30px;
  right: 10%;
}

@media screen and (max-width: 768px) {
  .resolution_key-main .resolution_key-music {
    margin-top: 0;
    width: 10%;
    right: 5%;
    top: -10vw;
  }
}

.resolution_key .section-title {
  background-color: #6184a7;
  margin-bottom: 8px;
  display: inline-block;
  padding: 0 0.5em;
}

.resolution_key .section-title-last {
  margin-bottom: 46px;
}

.resolution_key .section-title.is-sp {
  display: none;
}

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

@media screen and (max-width: 768px) {
  .resolution_key .section-title.is-pc {
    display: none;
  }
}

.resolution_key-emphasis {
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis {
    margin-bottom: 3%;
  }

  .resolution_key-emphasis.flex_between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.resolution_key-emphasis-text {
  width: 47%;
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis-text {
    width: 100%;
    margin-bottom: 5%;
  }
}

.resolution_key-emphasis-img {
  width: 53%;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis-img {
    width: 100%;
    margin-bottom: 5%;
  }
}

.resolution_key-img {
  width: 300px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .resolution_key-img {
    width: 100%;
  }
}

.resolution_key-emphasis2 {
  margin: 0 auto 52px;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis2 {
    margin-bottom: 3%;
  }

  .resolution_key-emphasis2.flex_all_center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.resolution_key-emphasis2-text {
  width: 50%;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  font-weight: 600;
  text-align: left;
  line-height: 2;
  letter-spacing: 0.5px;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis2-text {
    width: 100%;
    margin-bottom: 5%;
    font-size: 18px;
  }
}

.resolution_key-emphasis2-img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis2-img {
    width: 100%;
    margin-bottom: 5%;
  }
}

.resolution_key-emphasis3 {
  margin: 0 auto 36px;
}

.resolution_key-emphasis3-text {
  width: 55%;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis3-text {
    width: 100%;
    margin-bottom: 5%;
  }
}

.resolution_key-emphasis3-img {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis3-img {
    width: 100%;
    margin-bottom: 5%;
  }
}

.resolution_key-emphasis4-img {
  width: 38%;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis4-img {
    width: 100%;
    margin-bottom: 5%;
  }
}

.resolution_key-emphasis5 {
  width: 62.5%;
  margin: 0 auto 2em;
}

@media screen and (max-width: 768px) {
  .resolution_key-emphasis5 {
    width: 100%;
  }
}

/* ====================================================
# selfstudy_hard
===================================================== */
.selfstudy_hard {
  background-color: #fff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  text-align: center;
  font-size: 16px;
  /*IE9以前に対応する*/
  font-size: 1rem;
  line-height: 2.5;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding-bottom: 66px;
}

.selfstudy_hard-img {
  margin-bottom: 48px;
}

/* ====================================================
# service_detail
===================================================== */
.service_detail {
  padding-top: 0;
  padding-bottom: 0;
}

.service_detail-title-box {
  color: #fff;
  background-color: #6184a7;
  letter-spacing: 0.05em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 2em 0;
}

@media screen and (max-width: 768px) {
  .service_detail-title-box {
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
    padding: 1em 0;
  }

  .service_detail-title-box p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .service_detail-title-box h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}

.service_detail-title {
  letter-spacing: 0.18em;
}

.service_detail-img {
  width: 100%;
  margin: 0 auto 36px;
}

@media screen and (max-width: 768px) {
  .service_detail-img {
    width: 100%;
  }
}

.service_detail .service-voice-ballon-right {
  position: relative;
  display: inline-block;
  padding: 1em 1.5em;
  background: #f0efe9;
  border-radius: 10px;
  background-color: #f0efe9;
  margin-right: 40px;
  text-align: left;
}

.service_detail .service-voice-ballon-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 20px solid #f0efe9;
}

@media screen and (max-width: 768px) {
  .service_detail .service-voice-ballon-right {
    padding: 0.5em;
    width: 70%;
    margin-right: 10%;
  }
}

.service_detail .service-voice-ballon-left {
  position: relative;
  display: inline-block;
  padding: 1em 1.5em;
  background: #f0efe9;
  border-radius: 10px;
  background-color: #f0efe9;
  margin-left: 40px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .service_detail .service-voice-ballon-left {
    padding: 0.5em;
    width: 70%;
    margin-left: 10%;
  }
}

.service_detail .service-voice-ballon-left::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -10px;
  border: 10px solid transparent;
  border-right: 20px solid #f0efe9;
}

@media screen and (max-width: 768px) {
  .service_detail .service-voice-item-img {
    width: 10%;
  }
}

.service_detail .service-voice-box {
  margin: 0 auto 36px;
  padding-top: 2em;
}

.service_detail .service-voice-item {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .service_detail .service-voice-item {
    margin-bottom: 5%;
  }
}

.service_detail .service-voice-item:nth-child(1) {
  margin-left: 16%;
  width: 71%;
}

@media screen and (max-width: 768px) {
  .service_detail .service-voice-item:nth-child(1) {
    width: 100%;
    margin-left: 0;
  }
}

.service_detail .service-voice-item:nth-child(2) {
  margin-left: 13%;
  width: 85%;
}

@media screen and (max-width: 768px) {
  .service_detail .service-voice-item:nth-child(2) {
    width: 100%;
    margin-left: 0;
  }
}

.service_detail .service-voice-item:nth-child(3) {
  width: 85%;
  margin-left: 16%;
}

@media screen and (max-width: 768px) {
  .service_detail .service-voice-item:nth-child(3) {
    width: 100%;
    margin-left: 0;
  }
}

.service_detail .service-voice-item:nth-child(4) {
  width: 78%;
  margin-left: 13%;
}

@media screen and (max-width: 768px) {
  .service_detail .service-voice-item:nth-child(4) {
    width: 100%;
    margin-left: 0;
  }
}

.service-voice-add-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: #ccb155;
  padding: 1em;
  margin-bottom: 1.5em;
}

.service_detail-end {
  background-image: url(../img/05_service_detail-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding-top: 80px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .service_detail-end {
    padding: 10% 5% 15%;
  }

  .detail-box-p {
    width: 85%;
    margin: 0 auto;
  }
}

/* ====================================================
# profile
===================================================== */
.profile {
  background-color: #f5f7f9;
}
.profile .section-title2{
  margin-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .profile {
    padding-top: 20vw;
  }
}

.profile-box {
  -webkit-box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-top: 128px;
  position: relative;
  padding: 144px 5% 30px;
}

.profile-box:last-of-type {
  margin-top: 200px;
}

.profile-box:last-of-type .profile-name-en {
  width: 53px;
}

@media screen and (max-width: 768px) {
  .profile-box {
    padding: 34vw 5% 5%;
  }
}

.profile-img {
  width: 250px;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .profile-img {
    width: 70%;
  }
}

.profile-name {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  font-size: 24px;
  /*IE9以前に対応する*/
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  color: #444;
  letter-spacing: 2px;
}

.profile-name-en {
  margin: 0 auto 20px;
  width: 83px;
}

@media screen and (max-width: 768px) {
  .profile-name-en {
    width: 30%;
  }
}

/* ====================================================
# feature
===================================================== */
.section-title2 {
  color: #6184a7;
  font-size: 24px;
  /*IE9以前に対応する*/
  font-size: 1.5rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.section-title2-icon {
  margin: 0 auto 10px;
  width: 13%;
}

@media screen and (max-width: 768px) {
  .section-title2-icon {
    width: 23%;
  }
}

@media screen and (max-width: 768px) {
  .section-title2 {
    font-size: 4.66667vw;
  }

  .section-title2 h3 {
    font-size: 24px;
    line-height: 1.7;
  }
}

.feature {
  padding: 24px 0 74px;
}

.feature-flow-item {
  margin-bottom: 78px;
}

.feature-flow-item:last-of-type {
  margin-bottom: 0;
}

.feature-flow-item-img {
  margin-bottom: 9px;
}

.feature-flow-item-title {
  color: #bca866;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-flow-item-text {
  line-height: 1.75;
}

/* ====================================================
# curriculum
===================================================== */
.curriculum {
  background-color: #f5f7f9;
}

.curriculum .section-title2-icon {
  margin: 0 auto 10px;
  width: 11%;
}

@media screen and (max-width: 768px) {
  .curriculum .section-title2-icon {
    width: 20%;
  }
}

.curriculum-subtitle {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  line-height: 2.25;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.curriculum-img {
  width: 82%;
  margin: 0 auto 36px;
}

.curriculum .fukidashi {
  margin: 0 auto 16px;
  display: flex;
}

.curriculum .fukidashi:last-of-type {
  margin: 0 auto 20px;
}

.curriculum .fukidashi dt {
  color: #fff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  letter-spacing: 1.6px;

  width: 20%;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .curriculum .fukidashi dt {
    width: 40%;
    font-size: 3.33333vw;
  }

  .curriculum-img {
    width: 90%;
  }
}

.curriculum .fukidashi dt.no1 {
  background-color: #6784a1;
  border: solid 1px #6784a1;
}

.curriculum .fukidashi dt.no2 {
  background-color: #6784a1;
  border: solid 1px #6784a1;
}

.curriculum .fukidashi dt.no3 {
  background-color: #879db4;
  border: solid 1px #879db4;
}

.curriculum .fukidashi dt.no4 {
  background-color: #96aabe;
  border: solid 1px #96aabe;
}

.curriculum .fukidashi dt.no5 {
  background-color: #a6b7c8;
  border: solid 1px #a6b7c8;
}

.curriculum .fukidashi dt.no6 {
  background-color: #b6c4d2;
  border: solid 1px #b6c4d2;
}

.curriculum .fukidashi dd {
  width: 80%;
  padding: 10px 8px 10px 16px;
  display: inline-block;
  background-color: #fff;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .curriculum .fukidashi dd {
    width: 100%;
  }
}

.curriculum .fukidashi dd.no1-text {
  border: solid 1px #7791ab;
}

.curriculum .fukidashi dd.no2-text {
  border: solid 1px #7791ab;
}

.curriculum .fukidashi dd.no3-text {
  border: solid 1px #879db4;
}

.curriculum .fukidashi dd.no4-text {
  border: solid 1px #96aabe;
}

.curriculum .fukidashi dd.no5-text {
  border: solid 1px #a6b7c8;
}

.curriculum .fukidashi dd.no6-text {
  border: solid 1px #b6c4d2;
  font-size: 15px;
  /*IE9以前に対応する*/
  font-size: 0.9375rem;
  padding: 10px 8px 12px;
}

@media screen and (max-width: 768px) {
  .curriculum .fukidashi dd.no6-text {
    font-size: 4vw;
  }
}

.fukidashi-gold {
  display: flex;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .fukidashi-gold {
    flex-direction: column;
  }
}

.fukidashi-gold dt,
.fukidashi-gold dd {
  width: 50%;
}

@media screen and (max-width: 768px) {

  .fukidashi-gold dt,
  .fukidashi-gold dd {
    width: 100%;
  }
}

.fukidashi-gold dt .under-line {
  border-bottom: solid 2px #fff;
  padding-bottom: 0.25em;
}

.fukidashi-gold dt {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.fukidashi-gold dd {
  text-align: center;
  letter-spacing: 1.5px;
  color: #bca866;
  flex-direction: column;
  padding: 0 10px;
}

.fukidashi-gold dd>p {
  border-bottom: dashed 1px #ccc;
  line-height: 1;
  padding: 10px 0;
}

.fukidashi-gold dd>p:last-child {
  border-bottom: none;
}

.fukidashi-gold dd>p span {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 4px 1em;
  border-radius: 10px;
  background-color: #ccc;
  margin-left: 0.5em;


}

.fukidashi-gold dt.no1 {
  background-color: #bca866;
  border: solid 1px #bca866;
}

.fukidashi-gold .no1-text {
  background-color: #fff;
  border: solid 1px #bca866;
}

.fukidashi-gold dt.no2 {
  background-color: #c4b278;
  border: solid 1px #c4b278;
}

.fukidashi-gold .no2-text {
  background-color: #fff;
  border: solid 1px #c4b278;
}

.fukidashi-gold dt.no3 {
  background-color: #ccbc89;
  border: solid 1px #ccbc89;
}

.fukidashi-gold .no3-text {
  background-color: #fff;
  border: solid 1px #ccbc89;
}

.fukidashi-gold dt.no4 {
  background-color: #d3c69b;
  border: solid 1px #d3c69b;
}

.fukidashi-gold .no4-text {
  background-color: #fff;
  border: solid 1px #d3c69b;
}

.curriculum-end {
  font-size: 14px;
  /*IE9以前に対応する*/
  font-size: 0.875rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .curriculum-end {
    font-size: 4vw;
    text-align: left;
  }
}

/* ====================================================
# course
===================================================== */
/* .course {
  padding: 24px 0;
} */

.course .course-box {
  background: #fff;
  border: solid 1px #6784a1;
  margin-bottom: 0;
}

.course .course-box.premium {
  border: solid 1px #bca866;
}

.course .course-box.green {
  border: solid 1px #599170;
}

.course .course-box .box-title {
  background: #6784a1;
  padding: 1.2em 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
}

.course .course-box .box-title.premium {
  background: #bca866;
  color: #fff;
  padding: 0.7em 0 0.6em;
}

.course .course-box .box-title.green {
  background: #599170;
  color: #fff;
  padding: 0.7em 0 0.6em;
}

.course .course-box .box-title.premium .box-title-label {
  background-color: #fff;
  color: #bca866;
  font-size: 14px;
  /*IE9以前に対応する*/
  font-size: 0.875rem;
  display: block;
  margin: 0 auto;
  width: 90px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .course .course-box .box-title.premium .box-title-label {
    font-size: 4vw;
  }
}

.course .course-box .box-main {
  padding: 2em 5%;
  margin: 0;
}

.course .course-box .box-main .box-img {
  margin: 0 auto 24px;
  width: 60%;
}

.course .course-box .box-main p {
  line-height: 1.85;
}

.course .course-point {
  color: #bca866;
  border: solid 1px #bca866;
  padding: 5px 0;
  margin-bottom: 1em;
  font-size: 14px;
  text-align: center;
}

.course .course-point.bule {
  color: #6784a1;
  border: solid 1px #6784a1;
}

.course .course-point.green {
  color: #599170;
  border: solid 1px #599170;
}

.course .course-point-box {
  max-width: 450px;
  width: 90%;
  margin: 0 auto;
}

.course .course-point-title {
  border-top: solid 1px #cec2bf;
  border-bottom: solid 1px #cec2bf;
  padding: 8px 0;
  margin-bottom: 24px;
}

.course .course-point-title-en {
  width: 20%;
  ;
  margin: 0 auto 6px;
}

@media screen and (max-width: 768px) {
  .course .course-point-title-en {
    width: 40%;
  }

  .course .course-box .box-main .box-img {
    width: 90%;
  }

  .course .col-greyish-brown {
    font-size: 4.5vw;
  }
}

/* ====================================================
# result
===================================================== */
.result {
  padding: 24px 0 68px;
  background-color: #fff;
}

.result .section-title2-icon {
  margin: 0 auto 10px;
  width: 10%;
}

@media screen and (max-width: 768px) {
  .result .section-title2-icon {
    width: 18%;
  }
}

@media screen and (max-width: 768px) {
  .result h3 {
    font-size: 5.7vw;
  }
}

.result .result-list-box {
  line-height: 1.85;
}

@media screen and (max-width: 768px) {
  .result .result-list-box {
    width: 100%;
  }
}

.result .result-list-box ul li {
  padding: 0 0 0 1em;
  list-style-type: none;
  margin-left: 1em;
  text-indent: -1em;
}

.result .result-list-box ul li::before {
  position: relative;
  top: 0px;
  left: -6px;
  display: inline-block;
  width: 16px;
  height: 16px;
  content: "";
  background-color: #ebe4d0;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .result .result-list-box ul li::before {
    width: 3.5vw;
    height: 3.5vw;
  }
}

.result .result-list-box .border-bottom {
  width: 100%;
  margin-left: 0px;
  padding-bottom: 5px;
  margin-bottom: 6px;
  border-top: solid 1px #ccc;
}

.result-img {
  width: 300px;
  margin: 27px auto;
}

@media screen and (max-width: 768px) {
  .result-img {
    width: 100%;
  }
}

.result-graduates__title {
  font-size: 20px;
  line-height: 1;
  color: #6784a1;
  text-align: center;
  padding: 1em 0;
  border: solid 1px #6784a1;
  margin-top: 80px;
  margin-bottom: 22px;
}

.result-graduates .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 40px;
}


.result-graduates .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ====================================================
# detail
===================================================== */
.detail {
  padding: 0 0 68px;
  background-color: #fff;
  line-height: 1.75;
}

.detail-title {
  margin-bottom: 48px;
  background-color: #6184a7;
  padding: 1.6em 0 1.2em;
  letter-spacing: 0.2em;
}

.detail-note {
  margin-top: 38px;
  margin-bottom: 50px;
}

.detail-flow {
  background-color: #f0efe9;
  padding: 8px 0 14px 28px;
  margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
  .detail-flow {
    padding: 2%;
  }
}

.detail-flow-info {
  font-size: 12px;
  /*IE9以前に対応する*/
  font-size: 0.75rem;
  margin-top: 16px;
  color: #999;
}

@media screen and (max-width: 768px) {
  .detail-flow-info {
    font-size: 3.73333vw;
  }
}

.detail-arrow {
  width: 24px;
  margin: 0 auto 4px;
}

.detail-entryfee-title {
  position: relative;
  padding: 0 65px;
  text-align: center;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
}

@media screen and (max-width: 768px) {
  .detail-entryfee-title {
    padding: 0;
  }

  .detail-box p {
    text-align: left;
  }

  .detail-box .detail-entryfee-title {
    text-align: center;
  }
}

.detail-entryfee-title span {
  position: relative;
  padding: 0 1em;
  background: #fff;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .detail-entryfee-title span {
    padding: 0 0.5em;
  }
}

.detail-entryfee-title::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #ccb155;
}

/* ====================================================
# recommendation
===================================================== */
.recommendation {
  padding: 0 0 68px;
  background-color: #fff;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .recommendation {
    padding: 0 0 10%;
  }
}

.recommendation-title {
  margin-bottom: 36px;
  background-color: #6184a7;
  padding: 2.3em 0 2.2em;
  letter-spacing: 0.15em;
}

.recommendation-list-box ul li {
  position: relative;
  font-size: 16px;
  /*IE9以前に対応する*/
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0em;
  list-style: none;
  padding-left: 3em;
  -webkit-font-feature-settings: "palt"1;
  font-feature-settings: "palt"1;
  background: url(../img/00_list-mark-check.png) left 12px top 2px no-repeat;
  background-size: 26px auto;
  margin-bottom: -6px;
}

@media screen and (max-width: 768px) {
  .recommendation-list-box ul li {
    font-size: 3.5vw;
    padding-left: 2.5em;
    background: url(../img/00_list-mark-check.png) left 0 top 4px no-repeat;
    background-size: 6vw auto;
  }
}

.recommendation-list-box ul li .col-dark-grey-blue {
  font-weight: 700;
}

.recommendation-list-box .border-bottom {
  width: 94%;
}

/* ====================================================
# present
===================================================== */
.present {
  background-color: #f0efe9;
}

.present-icon {
  margin: 0 auto 10px;
  width: 40px;
}

.present-title {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  font-size: 24px;
  /*IE9以前に対応する*/
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  .present-title {
    font-size: 5.33333vw;
  }
}

.present-box {
  -webkit-box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding-top: 18px;
  padding-left: 22px;
  padding-right: 12px;
  padding-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .present-box {
    padding: 5%;
  }

  .present-box.flex_between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.present-textbox {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 26px 0;
}

@media screen and (max-width: 768px) {
  .present-textbox {
    width: 100%;
    padding: 0;
  }
}

.present-textbox .fz18 {
  background-color: #f5f7f9;
  display: inline-block;
}

.present-textbox .text-right {
  text-align: right;
}

.present-imgbox {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .present-imgbox {
    width: 80%;
    margin: 0 auto;
  }

  .present-textbox .fz18 {
    padding: 0.5em;
    margin-bottom: 10px;
  }
}

/* ====================================================
# contact
===================================================== */
.contact {
  background-color: #f5f7f9;
}

.contact-box {
  -webkit-box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 9.7px 0.3px rgba(0, 0, 0, 0.1);
  border: solid 1px #6184a7;
  background-color: #fff;
  padding: 2em 0;
}

.contact-box-wrap {
  width: 490px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.contact .section-title {
  color: #829db9;
}

.contact-subtitle {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  color: #fff;
  background-color: #829db9;
  border-radius: 100vh;
  line-height: 1.6;
  width: 50%;
  margin: 0.5em auto 1em;
}

@media screen and (max-width: 768px) {
  .contact-subtitle {
    width: 80%;
  }

  .contact .section-title {
    font-size: 22px;
    line-height: 1.5;
  }
}

.contact-img {
  margin: 0 auto 16px;
}

@media screen and (max-width: 768px) {
  .contact-img {
    width: 90%;
  }
}

.contact-small {
  font-size: 11px;
  /*IE9以前に対応する*/
  font-size: 0.6875rem;
  color: #999;
}

@media screen and (max-width: 768px) {
  .contact-small {
    font-size: 3.33333vw;
    width: 90%;
    margin: 0 auto;
  }
}

.btn {
  position: relative;
  margin: 22px auto;
  width: 92%;
  padding: 0.5em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  border-radius: 10px;
  background-color: #bca866;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2em;
  font-size: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  width: 10px;
  height: 10px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .btn::after {
    right: 1.5em;
  }
}

/* ====================================================
# qa
===================================================== */
.qa {
  padding: 0 0 60px;
}

.qa .section-title {
  background: #6184a7;
  padding: 2.3em 0;
  margin-bottom: 50px;
}

.qa .qa-list {
  margin-bottom: 36px;
}

.qa .qa-list .q-list {
  position: relative;
  list-style: none;
  padding: 0 0 0 50px;
  margin-bottom: 11px;
  font-weight: bold;
  line-height: 1.75;
}

@media screen and (max-width: 400px) {
  .qa .qa-list .q-list {
    font-size: 4vw;
  }
}

.qa .qa-list .q-list .q-mark {
  font-size: 18px;
  /*IE9以前に対応する*/
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: normal;
  background-color: #ebe4d0;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  /*装飾*/
  padding: 0 0.2em 0 0.2em;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 400px) {
  .qa .qa-list .q-list .q-mark {
    font-size: 16px;
  }
}

.qa .qa-list .a-list {
  margin-bottom: 48px;
  width: 710px;
  max-width: 100%;
  margin-right: 0;
  margin-left: auto;
  line-height: 1.75;
}

.qa .qa-list .a-list:last-of-type {
  margin-bottom: 0;
}

.qa .qa-img {
  width: 300px;
  margin: 0 auto 32px;
  -webkit-box-shadow: -10px 10px 0px 0 #c6d0db;
  box-shadow: -10px 10px 0px 0 #c6d0db;
}

@media screen and (max-width: 400px) {
  .qa .qa-img {
    margin-top: 40px;
    width: 100%;
  }
}

/* ====================================================
# information
===================================================== */
.information {
  background-color: #6184a7;
  padding-top: 66px;
}

@media screen and (max-width: 768px) {
  .information {
    padding-top: 5%;
  }
}

.information .section-title {
  font-size: 28px;
  /*IE9以前に対応する*/
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 27px;
}

@media screen and (max-width: 768px) {
  .information .section-title {
    font-size: 5.33333vw;
  }
}

.information .section-title .information-title {
  font-size: 24px;
  /*IE9以前に対応する*/
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .information .section-title .information-title {
    font-size: 4.66667vw;
  }
}

.information-box {
  background-color: #fff;
  padding: 2.5em 2em;
}

@media screen and (max-width: 768px) {
  .information-box {
    padding: 1.5em;
  }
}

/* ====================================================
# message
===================================================== */
.message {
  padding-top: 0;
  margin-bottom: 56px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  line-height: 2;
  letter-spacing: 0.25em;
  font-weight: 600;
}

.message-head {
  position: relative;
  margin-bottom: 68px;
}

.message-en {
  position: absolute;
  width: 262px;
  top: 80px;
  left: 98px;
}

@media screen and (max-width: 768px) {
  .message-en {
    width: 50%;
    top: 50%;
    left: 0;
  }
}

/* ====================================================
# footer
===================================================== */
.footer {
  background-color: #2f4466;
  color: #fff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, 'Noto Serif JP', serif;
  font-weight: normal;
}

.footer-link {
  color: #fff;
  margin: 0 0.5em;
  font-size: 10px;
  /*IE9以前に対応する*/
  font-size: 0.625rem;
  border-bottom: solid 1px #fff;
  line-height: 1;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .footer-link {
    font-size: 2.66667vw;
  }
}

/*# sourceMappingURL=style.css.map */

.course {
  background-color: #f5f7f9;
  padding-bottom: 0px;
  padding-top: 60px;
}

/* .course .course-box {
  margin-bottom: 0px;
} */

/* .voice-item-text .col-dark-grey-blue {
  color: #4f73ac;
} */

.col-gold{
  color:#bca866;
}