@charset "utf-8";

/* 
   base.css 
   */
body {
  font-size: 14px;
  background: #fff;
  font-family: "Noto Sans JP", "noto-sans-cjk-jp", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}

:root {
  --main-color: #096FC8;
  --accent-color: #8E795D;
  --sub-color: #002366;
  --btn-color: #EB1428;
  --line-color: #06C775;
  --tel-color: #0052CC;
  --column-color: #479CD7;
  --text-color: #333333;
  --required-color: #EB1428;
  --date-color: #BDB3A7;
  --post-color: #BDB3A7;
  --red: #E71A2F;
  --ttl-bg: #FFF3F0CC;
  --bg-footer: #0052CC;
  --bg-form: #F0F7FC;
  --bg-atumeru: #F5F7FA;
  --bg-qanda: #E1F0FF;
  --bg-student: #FFFDEA;
  --bg-news: #F0F7FC;
  --bg-fee: #F9F7F2;
  --bg-course: #E8F3FF;
  --bg-course02: #F8F9FA;
  --bg-color01: #F7F7F7;

  --bg-color02: #FFF3F0;
  --bg-color03: #F0F8FF;
  --bg-color04: #ECF8FD;
  --bg-color05: #EBF0FF;
  --bg-color06: #FAF1E6;
  --bg-color07: #FFF9F7;
  --font-base: "Noto Sans JP", sans-serif;
  --box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  --text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.64);
  --main-gradient: linear-gradient(to bottom, #FFEFD8 0%, #FAE4E4 100%);
}

.bg-white {
  background: #fff;
}

/* @font-face {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../font/not-sans-r.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("../font/noto-sans-b.woff") format("woff");
  font-display: swap;
} */

/* レギュラー　 */
@font-face {
  font-family: Noto Sans JP, sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.ttf") format("ttf");
  font-display: swap;
}

/* ミディアム　 */
@font-face {
  font-family: Noto Sans JP, sans-serif;
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.ttf") format("ttf");
  font-display: swap;
}

/* ボールド */
@font-face {
  font-family: Noto Sans JP, sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.ttf") format("ttf");
  font-display: swap;
}

@font-face {
  font-family: "Lora", serif;
  font-style: normal;
  font-weight: 700;
  src: url("../font/Lora-Bold.ttf") format("ttf");
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 700;
  src: url("../font/CormorantGaramond-Bold.ttf") format("ttf");
  font-display: swap;
}

.lora {
  font-family: "Lora", serif;
  font-style: normal;
  font-weight: 700;
}

.cormorant {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}






@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  body {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  a {
    word-break: break-all;
  }
}

p {
  margin: .5em 0;
}

/* li, dt {
  margin: .5em 0;
} */

/* ul, ol {
  padding: 0 0 0 1.5em;
} */

/* ul, ol, dd {
  margin: .8em 0;
} */

:focus {
  outline: none;
}

img {
  max-width: 100%;
  object-fit: cover;
}

a {
  transition: all .7s;
}

a:hover {
  opacity: .7;
}

h2 {
  font-size: 32px;
  font-weight: bold;
}

h3 {
  font-size: 24px;
  font-weight: bold;
}

.en-ttl {
  color: var(--accent-color);
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: bold;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.ja-ttl {
  font-size: 16px;
  font-weight: 500;
}

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

  .en-ttl {
    font-size: 40px;
  }

  .ja-ttl {
    font-size: 14px;
  }

  h2 {
    font-size: 24px;
    font-weight: bold;
  }

  h3 {
    font-size: 20px;
    font-weight: bold;
  }
}

.sec-ttl {
  color: var(--sub-color);
}

.sec-desc {
  font-size: 16px;
  max-width: 776px;
  margin: auto;
  margin-bottom: 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .sec-desc {
    margin-bottom: 24px;
  }
}

.is-mb {
  margin-bottom: 1em;
}

.is-mt {
  margin-top: 1em;
}

.marker {
  background: linear-gradient(transparent 60%, #FFF799 60%);
  padding: 0;
  display: inline-block;
  line-height: 1.6;
}

.relative {
  position: relative;
}

/* ------------------------------------------------ */
.btn-more {
  font-size: 16px;
  font-weight: bold;
  width: 90%;
  max-width: 240px;
  padding: .7em;
  position: relative;
  transition: all .7s;
  margin: auto;
  border-radius: 35px;
  border: solid 2px var(--sub-color);
  background: #fff;
  color: var(--sub-color);
}

.btn-more-l {
  width: 100%;
  max-width: 300px;
}

.btn-more:hover {
  /* background: var(--sub-color);
  color: #fff;
  opacity: 1; */
}

.btn-more-arrow {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-more-arrow::after {
  position: absolute;
  right: 20px;
  /* font-family: 'Material Symbols Outlined';
  content: "arrow_circle_right"; */
  content: "";
  background: url(../images/arrow-r.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  vertical-align: middle;

}



/* .btn-more-arrow:hover::after {
  position: absolute;
  right: 20px;
  content: "";
  background: url(../images/arrow-r-w.svg);
  width: 20px;
  height: 20px;
} */

.icon-arrow {
  position: relative;
  padding-right: 25px;
}

.icon-arrow.-red::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background: url(../images/arrow-red.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.icon-arrow.-green::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background: url(../images/arrow-green.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

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

.idanchor {
  display: block;
  padding-top: 114px;
  margin-top: -114px;
}

@media(max-width: 767px) {
  .idanchor {
    display: block;
    padding-top: 58px;
    margin-top: -58px;
  }
}