@charset "UTF-8";
/******************************************************************************
* layout
*******************************************************************************/
.l-wrap,
.l-content,
.l-inner {
  width: 100%;
  margin: 0 auto;
}

.l-wrap {
  --content-pd-x: 28;
  padding-right: calc(calc(var(--content-pd-x) * var(--content-pd-scale, 1)) / 16 * 1rem);
  padding-left: calc(calc(var(--content-pd-x) * var(--content-pd-scale, 1)) / 16 * 1rem);
}
@media (max-width: 767px) {
  .l-wrap {
    --content-pd-x: 20;
  }
}
.l-wrap.is-full {
  --content-pd-x: 0;
}
@media (min-width: 768px) {
  .l-wrap.is-full-pc {
    --content-pd-x: 0;
  }
}
.l-wrap.is-pd-x-double {
  --content-pd-scale: 1;
}
.l-wrap.is-pd-x-triple {
  --content-pd-scale: 1;
}
@media (max-width: 767px) {
  .l-wrap.is-pd-x-double {
    --content-pd-scale: 2;
  }
  .l-wrap.is-pd-x-triple {
    --content-pd-scale: 3;
  }
}

.l-content {
  max-width: var(--content-width, 1200px);
}
.l-content.is-w-1920 {
  --content-width: 1920px;
}
.l-content.is-w-1440 {
  --content-width: 1440px;
}
.l-content.is-w-1200 {
  --content-width: 1200px;
}
.l-content.is-w-1000 {
  --content-width: 1000px;
}
.l-content.is-w-800 {
  --content-width: 800px;
}
.l-content.is-max-w-none {
  --content-width: none;
}

/******************************************************************************
* page-heading
*******************************************************************************/
@media (min-width: 768px) {
  .a-page-heading {
    font-size: calc(40 / 16 * 1rem);
  }
}

/******************************************************************************
* heading-unit
*******************************************************************************/
.a-section-heading {
  color: #0072bc;
}
.a-section-heading > * {
  display: block;
  line-height: 1;
}
@media (max-width: 767px) {
  .a-section-heading {
    font-weight: 500;
    font-size: calc(40 / 16 * 1rem);
  }
}

.a-section-heading_top {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: calc(44 * 1px);
}
@media (max-width: 767px) {
  .a-section-heading_top {
    font-size: calc(27 * 1px);
  }
}

.is-main-text-japanese .a-section-heading_top {
  font-size: 20px;
}
@media (max-width: 980px) {
  .is-main-text-japanese .a-section-heading_top {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .is-main-text-japanese .a-section-heading_top {
    font-size: 14px;
  }
}

.a-section-heading_bottom {
  margin-top: 8px;
  font-size: calc(20 * 1px);
}
@media (max-width: 767px) {
  .a-section-heading_bottom {
    font-size: calc(14 * 1px);
  }
}

.is-main-text-japanese .a-section-heading_bottom {
  margin-top: 15px;
  font-size: 36px;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .is-main-text-japanese .a-section-heading_bottom {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .is-main-text-japanese .a-section-heading_bottom {
    margin-top: 5px;
    font-size: 26px;
  }
}

/******************************************************************************
* text
*******************************************************************************/
.a-text {
  font-size: calc(18 * 1px);
}
@media (max-width: 980px) {
  .a-text {
    font-size: calc(16 * 1px);
  }
}
@media (max-width: 767px) {
  .a-text {
    font-size: calc(14 * 1px);
  }
}

/******************************************************************************
* button
*******************************************************************************/
.a-button {
  position: relative;
  display: block;
  padding-left: 30px;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  border: 1px solid #6785c1;
  border-radius: 9999px;
}
.a-button.is-text-white {
  color: #fff;
  border-color: #fff;
}
.a-button.is-text-white svg circle {
  fill: #fff;
}
.a-button:hover {
  text-decoration: none;
}
@media (max-width:767px) {
  .a-button {
    padding-left: 20px;
    font-size: calc(11 * 1px);
  }
}
@media (any-hover: hover) {
  .a-button {
    transition: background-color var(--animation-base-value), color var(--animation-base-value);
  }
  .a-button svg circle {
    transition: fill var(--animation-base-value);
  }
  .a-button:hover {
    color: #fff;
    background-color: #3b486f;
  }
  .a-button:hover svg circle {
    fill: #fff;
  }
  .a-button.is-text-white:hover {
    color: #003777;
    background-color: #fff;
  }
  .a-button.is-text-white:hover svg circle {
    fill: #003777;
  }
}

.a-button_inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.a-button_arrow {
  position: absolute;
  top: 50%;
  right: calc(24 * 1px);
  display: block;
  width: calc(5 * 1px);
  height: calc(5 * 1px);
  transform: translateY(-50%);
}
@media (max-width:767px) {
  .a-button_arrow {
    right: calc(16 * 1px);
  }
}

/******************************************************************************
* button-text
*******************************************************************************/
.a-button-text {
  display: flex;
  color: #fff;
}
.a-button-text_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(45 / 2 * 1px);
  height: calc(45 / 2 * 1px);
  border: solid 1px currentcolor;
  border-radius: 50%;
}
@media (max-width:767px) {
  .a-button-text_icon svg {
    width: calc(15 / 2 * 1px);
    height: calc(15 / 2 * 1px);
  }
}
@media (min-width: 768px) {
  .a-button-text_icon {
    width: 47px;
    height: 47px;
  }
}
.a-button-text_item {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: calc(23 / 2 * 1px);
}
.a-button-text_item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: currentcolor;
}
@media (min-width: 768px) {
  .a-button-text_item::before {
    bottom: 4px;
  }
  .a-button-text_item {
    margin-left: 20px;
  }
}
@media (any-hover: hover) {
  .a-button-text:hover {
    text-decoration: none;
  }
}
@media (any-hover: none) {
  .a-button-text:active {
    text-decoration: none;
  }
}

/******************************************************************************
* a-image
*******************************************************************************/
.a-image {
  line-height: 0;
}
.a-image.is-fit {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.a-image.is-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.a-image.is-round {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  border-radius: 5px;
}

/******************************************************************************
* text-wrap
*******************************************************************************/
.m-text-wrap > * {
  margin-top: calc(5 / 16 * 1rem);
}
@media (min-width: 768px) {
  .m-text-wrap > * {
    margin-top: calc(10 / 16 * 1rem);
  }
}

/******************************************************************************
* card
*******************************************************************************/
.o-card {
  display: block;
  cursor: pointer;
}
.o-card > * {
  color: #333;
}
.o-card:hover {
  text-decoration: none;
}

/* 202311_セミナー修正 */
.o-card_caption {
  color: #7e7e7e;
  font-size: calc(12 * 1px);
}
.o-card_caption span {
  padding: 5px 10px;
  margin-right: 10px;
  font-weight: 400;
  color: #0072bc;
  background-color: #e7eef5;
  border: none;
  border-radius: 50px;
}

/* 202311_セミナー修正ここまで */
.tw-relative{
  position: relative;
}
.tw-z-\[1\]{
  z-index: 1;
}
.tw-mt-\[-30px\]{
  margin-top: -30px;
}
.tw-mt-\[100px\]{
  margin-top: 100px;
}
.tw-mt-\[120px\]{
  margin-top: 120px;
}
.tw-mt-\[20px\]{
  margin-top: 20px;
}
.tw-mt-\[30px\]{
  margin-top: 30px;
}
.tw-mt-\[35px\]{
  margin-top: 35px;
}
.tw-mt-\[40px\]{
  margin-top: 40px;
}
.tw-mt-\[60px\]{
  margin-top: 60px;
}
.tw-mt-\[80px\]{
  margin-top: 80px;
}
.tw-mt-\[8px\]{
  margin-top: 8px;
}
.tw-mt-\[90px\]{
  margin-top: 90px;
}
.tw-flex{
  display: flex;
}
.tw-grid{
  display: grid;
}
.tw-hidden{
  display: none;
}
.tw-h-\[50px\]{
  height: 50px;
}
.tw-w-\[170px\]{
  width: 170px;
}
.tw-w-fit{
  width: -webkit-fit-content;
  width: fit-content;
}
.tw-grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tw-justify-end{
  justify-content: flex-end;
}
.tw-gap-x-\[calc\(43\/1200\*100\%\)\]{
  column-gap: calc(43 / 1200 * 100%);
}
.tw-gap-y-\[20px\]{
  row-gap: 20px;
}
.tw-gap-y-\[80px\]{
  row-gap: 80px;
}
.tw-overflow-hidden{
  overflow: hidden;
}
.tw-border-t{
  border-top-width: 1px;
}
.tw-border-solid{
  border-style: solid;
}
.tw-border-\[\#E2E2E2\]{
  --tw-border-opacity: 1;
  border-color: rgb(226 226 226 / var(--tw-border-opacity));
}
.tw-py-\[100px\]{
  padding-top: 100px;
  padding-bottom: 100px;
}
.tw-pb-\[100px\]{
  padding-bottom: 100px;
}
.tw-pb-\[120px\]{
  padding-bottom: 120px;
}
.tw-pb-\[140px\]{
  padding-bottom: 140px;
}
.tw-pb-\[160px\]{
  padding-bottom: 160px;
}
.tw-pb-\[45px\]{
  padding-bottom: 45px;
}
.tw-pb-\[60px\]{
  padding-bottom: 60px;
}
.tw-pr-\[60px\]{
  padding-right: 60px;
}
.tw-pt-\[120px\]{
  padding-top: 120px;
}
.tw-pt-\[150px\]{
  padding-top: 150px;
}
.tw-pt-\[30px\]{
  padding-top: 30px;
}
.tw-pt-\[55px\]{
  padding-top: 55px;
}
.tw-pt-\[60px\]{
  padding-top: 60px;
}
.tw-text-\[18px\]{
  font-size: 18px;
}
.tw-text-\[30px\]{
  font-size: 30px;
}
.tw-font-bold{
  font-weight: 700;
}
.tw-text-\[\#272727\]{
  --tw-text-opacity: 1;
  color: rgb(39 39 39 / var(--tw-text-opacity));
}
.tw-text-\[\#3B486F\]{
  --tw-text-opacity: 1;
  color: rgb(59 72 111 / var(--tw-text-opacity));
}
.tw-text-\[\#fff\]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.tw-text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
/******************************************************************************
  * common
  *******************************************************************************/
:root {
  --animation-duration: 0.3s;
  --animation-delay: 0s;
  --animation-timing-function: ease-out;
  --animation-base-value: var(--animation-duration) var(--animation-timing-function) var(--animation-delay);
}

.l-main {
  font-family: "BIZ UDPGothic", "Noto Sans JP", "LocalNotoSansJP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.l-main img {
  display: block;
  height: auto;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width:767px) {
  .l-main img {
    image-rendering: auto;
  }
}
.l-main .is-bg-light-blue {
  background-color: #f4f5f6;
}
.l-main .is-bg-deep-blue {
  background-color: #1d264d;
}
.l-main .is-bg-gradation {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(232, 243, 255) 100%);
}
@media (max-width: 767px){
  .sm\:tw-order-1{
    order: 1;
  }
  .sm\:tw-order-2{
    order: 2;
  }
  .sm\:tw-mt-\[15px\]{
    margin-top: 15px;
  }
  .sm\:tw-mt-\[20px\]{
    margin-top: 20px;
  }
  .sm\:tw-mt-\[25px\]{
    margin-top: 25px;
  }
  .sm\:tw-mt-\[30px\]{
    margin-top: 30px;
  }
  .sm\:tw-mt-\[40px\]{
    margin-top: 40px;
  }
  .sm\:tw-mt-\[45px\]{
    margin-top: 45px;
  }
  .sm\:tw-mt-\[50px\]{
    margin-top: 50px;
  }
  .sm\:tw-block{
    display: block;
  }
  .sm\:tw-flex{
    display: flex;
  }
  .sm\:tw-hidden{
    display: none;
  }
  .sm\:tw-h-\[39px\]{
    height: 39px;
  }
  .sm\:tw-w-\[135px\]{
    width: 135px;
  }
  .sm\:tw-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:tw-justify-end{
    justify-content: flex-end;
  }
  .sm\:tw-gap-y-\[40px\]{
    row-gap: 40px;
  }
  .sm\:tw-gap-y-\[50px\]{
    row-gap: 50px;
  }
  .sm\:tw-py-\[50px\]{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sm\:tw-py-\[60px\]{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sm\:tw-pb-\[27px\]{
    padding-bottom: 27px;
  }
  .sm\:tw-pb-\[60px\]{
    padding-bottom: 60px;
  }
  .sm\:tw-pb-\[75px\]{
    padding-bottom: 75px;
  }
  .sm\:tw-pr-\[50px\]{
    padding-right: 50px;
  }
  .sm\:tw-pt-\[15px\]{
    padding-top: 15px;
  }
  .sm\:tw-pt-\[27px\]{
    padding-top: 27px;
  }
  .sm\:tw-pt-\[45px\]{
    padding-top: 45px;
  }
  .sm\:tw-pt-\[60px\]{
    padding-top: 60px;
  }
  .sm\:tw-pt-\[70px\]{
    padding-top: 70px;
  }
  .sm\:tw-text-\[11px\]{
    font-size: 11px;
  }
  .sm\:tw-text-\[20px\]{
    font-size: 20px;
  }
  .sm\:tw-tracking-\[0\]{
    letter-spacing: 0;
  }
}
.\[\&\>\*\]\:tw-border-b>*{
  border-bottom-width: 1px;
}
.\[\&\>\*\]\:tw-border-solid>*{
  border-style: solid;
}
.\[\&\>\*\]\:tw-border-\[\#E2E2E2\]>*{
  --tw-border-opacity: 1;
  border-color: rgb(226 226 226 / var(--tw-border-opacity));
}
.\[\&\>img\]\:tw-w-\[100\%\]>img{
  width: 100%;
}