@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/* ----------------------
- base
- bottom_spacing
- color
- font
- fadein
- header
- footer
- breadcrumbs
- main_ttl
- cmn_btn
- cmn_ttl
- pager
- txt
- 整列
- 新着情報 共通
---------------------- */
/*=======================================
　base
=======================================*/
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow-x: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--main_black);
  font-weight: 500;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*アンカーリンク*/
.anchor {
  padding-top: 145px;
  margin-top: -145px;
  display: block;
}
@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/*コンテンツ幅*/
.inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: calc(100% - 50px);
  }
}

.w1080 {
  max-width: 1080px;
}

.w1000 {
  max-width: 1000px;
}

.w1240 {
  max-width: 1240px;
}

/* PCではTELのリンク無効 */
@media only screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*=======================================
　bottom_spacing
=======================================*/
.bottom_spacing {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .bottom_spacing {
    margin-bottom: 100px;
  }
}

/*=======================================
　color
=======================================*/
:root {
  --main_black: #333;
  --main_purple: #9A81DC;
  --sub_purple: #7f6dae;
}

/*=======================================
　font
=======================================*/
.en {
  font-family: "Jost", sans-serif;
}

/*=======================================
　fadein
=======================================*/
/* 下から表示 */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*=======================================
　header
=======================================*/
header {
  width: 100%;
  height: 95px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 60px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fff;
  /* ハンバーガーメニューボタン */
  /* ハンバーガーメニュー中身 */
}
@media screen and (max-width: 1024px) {
  header {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 0 5%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    height: 50px;
  }
}
header > .pc {
  width: 100%;
  height: 100%;
}
header .flex_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
header .flex_area .hd_logo {
  width: 24.8571428571vw;
  max-width: 348px;
}
@media screen and (max-width: 768px) {
  header .flex_area .hd_logo {
    width: 200px;
    z-index: 5;
  }
}
header .flex_area > nav {
  height: 100%;
}
@media screen and (max-width: 768px) {
  header .flex_area > nav {
    display: none;
  }
}
header .flex_area nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .flex_area nav ul {
    gap: 0 20px;
  }
}
header .flex_area nav ul li {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
header .flex_area nav ul li.current {
  position: relative;
}
header .flex_area nav ul li.current::before {
  content: "";
  width: 100%;
  height: 3px;
  display: inline-block;
  background: var(--main_purple);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}
header .flex_area nav ul li a {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  header .flex_area nav ul li a:hover {
    color: var(--sub_purple);
    opacity: 1;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  header .flex_area nav ul li a:hover {
    color: var(--sub_purple);
    opacity: 1;
  }
}
@media only screen and (max-width: 1200px) {
  header .flex_area nav ul li a {
    font-size: clamp(13px, 1.1428571429vw, 16px);
  }
}
header .openbtn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 25px;
  height: 17px;
  z-index: 5;
  cursor: pointer;
}
header .openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--main_purple);
}
header .openbtn span:nth-of-type(1) {
  top: 0;
}
header .openbtn span:nth-of-type(2) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .openbtn span:nth-of-type(3) {
  top: calc(100% - 1px);
}
header .openbtn.active span:nth-of-type(1) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .openbtn.active span:nth-of-type(2) {
  display: none;
}
header .openbtn.active span:nth-of-type(3) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header > .sp {
  width: 100%;
  height: 100%;
}
header .g_nav {
  position: fixed;
  z-index: 4;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 50px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: block;
  background: #F5F4FB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
header .g_nav.panelactive {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
header .g_nav .g_nav_inn {
  height: 100%;
  overflow-y: scroll;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .g_nav .g_nav_inn nav ul {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 63.46%;
  height: 100%;
  margin: 0 auto;
}
header .g_nav .g_nav_inn nav ul li {
  width: 100%;
  border-bottom: 1px solid var(--main_purple);
}
header .g_nav .g_nav_inn nav ul li a {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #202b36;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 21px 6px;
  position: relative;
}
header .g_nav .g_nav_inn nav ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url("../img/common/arrow01.svg") no-repeat;
  background-size: cover;
  width: 13.11px;
  height: 8.81px;
}
header .g_nav .g_nav_inn nav ul li:first-child a {
  padding-top: 0;
}

/*=======================================
　footer
=======================================*/
footer {
  padding: 70px 0 34px;
  position: relative;
  background: url("../img/common/ft_bg.jpg") no-repeat;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    background: url("../img/common/ft_bg_sp.jpg") no-repeat;
  }
}
footer::after {
  content: "";
  background: url("../img/common/ft_bg_img.png") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 63.9285714286vw;
  max-width: 895px;
  height: 32.2142857143vw;
  max-height: 472px;
}
@media screen and (max-width: 768px) {
  footer::after {
    display: none;
  }
}
footer .inner {
  position: relative;
  z-index: 1;
}
footer .inner .ft_logo {
  margin-bottom: 69px;
}
@media screen and (max-width: 768px) {
  footer .inner .ft_logo {
    width: 252px;
    margin: 0 auto 36px;
  }
}
footer .inner .nav_area {
  margin-bottom: 65px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  footer .inner .nav_area {
    margin: 0 auto 36px;
  }
}
footer .inner .nav_area ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 20px 49px;
}
@media screen and (max-width: 768px) {
  footer .inner .nav_area ul {
    gap: 16px 41px;
    grid-template-columns: 1fr 1fr;
  }
}
footer .inner .nav_area ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .inner .nav_area ul li a {
  color: #fff;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .inner .nav_area ul li a span {
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  footer .inner .nav_area ul li a span {
    padding-left: 14px;
  }
}
footer .inner .nav_area ul li a span.jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2.125;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .inner .nav_area ul li a span.jp {
    font-size: 14px;
  }
}
footer .inner .nav_area ul li a span.jp::before {
  content: "";
  width: 8px;
  height: 1px;
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
footer .inner .nav_area ul li a span.en {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  footer .inner .nav_area ul li a span.en {
    font-size: 8px;
    line-height: 1.25;
  }
}
footer .copyright {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 10px;
    text-align: center;
  }
}

/*=======================================
　breadcrumbs
=======================================*/
.breadcrumbs {
  margin-bottom: 69px;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 45px;
  }
}
.breadcrumbs nav ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs nav ol li {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2.142;
  color: #707070;
  position: relative;
}
@media screen and (max-width: 768px) {
  .breadcrumbs nav ol li {
    font-size: 12px;
  }
}
.breadcrumbs nav ol li:not(:last-child) {
  padding-right: 12.66px;
  margin-right: 5.3px;
  color: rgba(112, 112, 112, 0.3);
}
.breadcrumbs nav ol li:not(:last-child)::before {
  content: "";
  background: url("../img/common/arrow02.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 6px;
  height: 10px;
}

/*=======================================
　main_ttl
=======================================*/
.main_ttl {
  height: 360px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: auto 100% !important;
  background-position: center bottom !important;
  margin-bottom: 38px;
}
@media only screen and (max-width: 1400px) {
  .main_ttl {
    height: 25.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .main_ttl {
    height: 37.0666666667vw;
    margin-bottom: 20px;
  }
}
.main_ttl h1 {
  max-width: 1080px;
  margin: 0 auto;
  width: 90%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 10px;
}
@media screen and (max-width: 768px) {
  .main_ttl h1 {
    row-gap: 1.0666666667vw;
  }
}
.main_ttl h1 span {
  display: block;
}
.main_ttl h1 .jp {
  width: auto;
  height: 47px;
}
@media screen and (max-width: 768px) {
  .main_ttl h1 .jp {
    height: 6.2746666667vw;
  }
}
.main_ttl h1 .jp img {
  width: auto;
  height: 100%;
}
.main_ttl h1 .en {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--sub_purple);
}
@media screen and (max-width: 768px) {
  .main_ttl h1 .en {
    font-size: 2.6666666667vw;
  }
}

/*=======================================
　cmn_btn
=======================================*/
.btn_arrow {
  position: relative;
}
.btn_arrow .arrow {
  position: absolute;
  width: 44px;
  height: 44px;
}
.btn_arrow .arrow::before, .btn_arrow .arrow::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn_arrow .arrow::before {
  width: 0;
  height: 0;
  background: var(--main_purple);
  border-radius: 50%;
}
.btn_arrow .arrow::after {
  background: url("../img/common/arrow01.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17.36px;
  height: 11.33px;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .btn_arrow:hover {
    opacity: 1;
  }
  .btn_arrow:hover .arrow::before {
    width: 100%;
    height: 100%;
  }
  .btn_arrow:hover .arrow::after {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(101%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(101%);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .btn_arrow:hover {
    opacity: 1;
  }
  .btn_arrow:hover .arrow::before {
    width: 100%;
    height: 100%;
  }
  .btn_arrow:hover .arrow::after {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(101%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(101%);
  }
}

.cmn_btn01 {
  width: 293px;
  height: 92px;
  border-top: 2px solid #e8e8e8;
  border-bottom: 2px solid #e8e8e8;
}
@media screen and (max-width: 768px) {
  .cmn_btn01 {
    width: 100%;
    max-width: 250px;
    height: 76px;
  }
}
.cmn_btn01 a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.666;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .cmn_btn01 a {
    font-size: 16px;
    padding-left: 20px;
  }
}
.cmn_btn01 a .arrow {
  right: 25px;
}
@media screen and (max-width: 768px) {
  .cmn_btn01 a .arrow {
    right: 15px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .cmn_btn01 a:hover {
    color: var(--sub_purple);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .cmn_btn01 a:hover {
    color: var(--sub_purple);
  }
}

.cmn_btn02 {
  width: 230px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .cmn_btn02 {
    width: 200px;
    height: 50px;
  }
}
.cmn_btn02 a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.666;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#6952cb), to(#6b82ce));
  background: linear-gradient(-90deg, #6952cb 0%, #6b82ce 100%);
  border-radius: 50vw;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0 34.9px;
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .cmn_btn02 a {
    font-size: 16px;
  }
}
.cmn_btn02 a.link_blank::after, .cmn_btn02 a.link_pdf::after {
  content: "";
  background-size: cover !important;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 27px;
}
.cmn_btn02 a.link_blank::after {
  background: url("../img/common/icon_blank.svg") no-repeat;
  width: 15px;
  height: 15px;
}
.cmn_btn02 a.link_pdf::after {
  background: url("../img/common/icon_pdf.svg") no-repeat;
  width: 18px;
  height: 18px;
}

/*=======================================
　pager
=======================================*/
.pager {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .pager {
    font-size: 15px;
    gap: 10px;
  }
}
.pager li {
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 768px) {
  .pager li {
    width: 30px;
    height: 30px;
  }
}
.pager li a {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background: #F5F4FB;
  border-radius: 50vw;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .pager li a:hover {
    opacity: 1;
    color: #fff;
    background: var(--main_purple);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .pager li a:hover {
    opacity: 1;
    color: #fff;
    background: var(--main_purple);
  }
}
.pager li a.active {
  color: #fff;
  background: var(--main_purple);
}
.pager li.prev {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .pager li.prev {
    margin-right: 5px;
  }
}
.pager li.prev a span::before {
  left: 16px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
@media screen and (max-width: 768px) {
  .pager li.prev a span::before {
    left: 12px;
  }
}
.pager li.next {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .pager li.next {
    margin-left: 5px;
  }
}
.pager li.next a span::before {
  right: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pager li.next a span::before {
    right: 12px;
  }
}
.pager li.prev a, .pager li.next a {
  background: #fff;
  border: 1px solid var(--main_purple);
}
.pager li.prev a span, .pager li.next a span {
  position: relative;
  width: 100%;
  height: 100%;
}
.pager li.prev a span::before, .pager li.next a span::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  top: 14px;
  border-top: 1px solid var(--main_purple);
  border-right: 1px solid var(--main_purple);
}
@media screen and (max-width: 768px) {
  .pager li.prev a span::before, .pager li.next a span::before {
    width: 8px;
    height: 8px;
    top: 10px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .pager li.prev a:hover, .pager li.next a:hover {
    background: var(--main_purple);
    border: 1px solid var(--main_purple);
  }
  .pager li.prev a:hover span::before, .pager li.next a:hover span::before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .pager li.prev a:hover, .pager li.next a:hover {
    background: var(--main_purple);
    border: 1px solid var(--main_purple);
  }
  .pager li.prev a:hover span::before, .pager li.next a:hover span::before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

/*=======================================
　cmn_ttl
=======================================*/
.cmn_ttl01 {
  padding: 12px 27px 13px;
  background: #fff;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .cmn_ttl01 {
    margin-bottom: 20px;
    padding: 10px 15px;
  }
}
.cmn_ttl01 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 21px;
  display: block;
}
@media screen and (max-width: 768px) {
  .cmn_ttl01 span {
    font-size: 20px;
    padding-left: 15px;
  }
}
.cmn_ttl01 span::before {
  content: "";
  width: 3px;
  height: 30px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(#6952cb), color-stop(50%, #6b82ce), color-stop(50%, #E8E8E8), to(#E8E8E8));
  background: linear-gradient(#6952cb 0%, #6b82ce 50%, #E8E8E8 50%, #E8E8E8 100%);
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
}
@media screen and (max-width: 768px) {
  .cmn_ttl01 span::before {
    height: 20px;
    top: 3px;
  }
}

.cmn_ttl02 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 23px;
  position: relative;
  padding-left: 31px;
}
@media screen and (max-width: 768px) {
  .cmn_ttl02 {
    font-size: 16px;
    padding-left: 25px;
  }
}
.cmn_ttl02::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background: var(--main_purple);
  position: absolute;
  top: 15px;
  left: 2.5px;
  margin: 0 2.5px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .cmn_ttl02::before {
    width: 10px;
    height: 10px;
    top: 13px;
  }
}

/*=======================================
　txt
=======================================*/
.cmn_txt01 {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.875;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .cmn_txt01 {
    font-size: 14px;
  }
}

/*=======================================
　整列
=======================================*/
.align_L {
  text-align: left;
  margin-left: 0 !important;
}

.align_C {
  text-align: center;
}

.align_R {
  text-align: right;
  margin-right: 0 !important;
}

/*=======================================
　mb
=======================================*/
.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

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

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

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

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

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 768px) {
  .mb70 {
    margin-bottom: 35px !important;
  }
}

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

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 768px) {
  .mb90 {
    margin-bottom: 45px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 768px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mb110 {
  margin-bottom: 110px !important;
}
@media screen and (max-width: 768px) {
  .mb110 {
    margin-bottom: 55px !important;
  }
}

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

.mb140 {
  margin-bottom: 140px !important;
}
@media screen and (max-width: 768px) {
  .mb140 {
    margin-bottom: 70px !important;
  }
}

.mb160 {
  margin-bottom: 160px !important;
}
@media screen and (max-width: 768px) {
  .mb160 {
    margin-bottom: 80px !important;
  }
}

.mb200 {
  margin-bottom: 200px !important;
}
@media screen and (max-width: 768px) {
  .mb200 {
    margin-bottom: 100px !important;
  }
}

/*=======================================
　新着情報 共通
=======================================*/
.date {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: var(--main_purple);
}

.category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  height: 27px;
  border-radius: 50vw;
  border: 1px solid #707070;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 13px;
}
@media screen and (max-width: 768px) {
  .category {
    padding: 0 10px 2px;
    height: 20px;
    font-size: 11px;
  }
}

.title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=common.css.map */