@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

body {
  font-family: "Inter", "Noto Sans JP", "Noto Sans", sans-serif;
  line-height: 1.5;
}

li {
  color: #333;
}

.l-header__mainVisual {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
  display: block;
}

.l-header {
  background-color: #333;
  width: 100%;
  position: relative;
}
.l-header .l-headerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  height: 50px;
}
.l-header .l-headerNav .l-headerNav__item {
  margin-right: 30px;
  color: #fff;
}
.l-header .l-headerNav .l-headerNav__item--last {
  margin-right: 0;
}
.l-header .l-hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.l-header .l-hamburger__bar {
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
}
.l-header .l-hamburger__bar:nth-child(1) {
  top: 0;
}
.l-header .l-hamburger__bar:nth-child(2) {
  top: 10px;
}
.l-header .l-hamburger__bar:nth-child(3) {
  top: 20px;
}
.l-header .l-hamburger.is-open .l-hamburger__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}
.l-header .l-hamburger.is-open .l-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.l-header .l-hamburger.is-open .l-hamburger__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}
@media (max-width: 960px) {
  .l-header .l-hamburger {
    display: block;
  }
  .l-header .l-headerNav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background-color: #333;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 60px 20px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
    z-index: 1000;
  }
  .l-header .l-headerNav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0.9;
    visibility: visible;
  }
  .l-header .l-headerNav .l-headerNav__item {
    margin: 15px 0;
    text-align: left;
    width: 100%;
    color: #fff;
  }
}

.l-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.l-wrapper--contents {
  position: relative;
}

.l-wrapper--header {
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 0 4%;
}

.l-wrapper--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .l-wrapper--contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-rightContents {
  width: 30%;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .l-rightContents {
    width: 100%;
  }
}
.l-rightContents .l-sideProf {
  margin-top: 120px;
}
.l-rightContents .l-sideProf .l-sideProftitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-rightContents .l-sideProf .l-sideProftitle .l-sideProftitle__img {
  width: 100px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 40px;
}
.l-rightContents .l-sideProf .l-sideProftitle .l-sideProftitle__name {
  margin: 0 auto;
  margin-bottom: 20px;
}
.l-rightContents .l-sideProf .l-sideProftitle .l-sideProftitle__text {
  margin: 0 auto;
  margin-bottom: 30px;
  padding-left: 2%;
}
.l-rightContents .l-sideProf .l-sideProfText {
  margin-bottom: 80px;
}
.l-rightContents .l-sideProf .l-sideProfText .l-sideProfText__text {
  margin-bottom: 24px;
}
.l-rightContents .l-sideProf .l-sideProfText .l-sideProfText__text--last {
  margin-bottom: 0;
}

.l-sideArticle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.l-footer {
  background-color: #333;
}
.l-footer .l-footerCon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .l-footer .l-footerCon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer .l-footerCon .l-footerCon__prof {
  max-width: 300px;
}
@media screen and (max-width: 960px) {
  .l-footer .l-footerCon .l-footerCon__prof {
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
  }
}
.l-footer .l-footerCon .l-footerCon__prof .l-footerCon__prof__title {
  color: #fff;
  margin-bottom: 16px;
}
.l-footer .l-footerCon .l-footerCon__prof .l-footerCon__prof__text {
  color: #fff;
}
.l-footer .l-footerCon .l-footerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 960px) {
  .l-footer .l-footerCon .l-footerNav {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 24px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.l-footer .l-footerCon .l-footerNav .l-footerNav__item {
  margin-right: 30px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .l-footer .l-footerCon .l-footerNav .l-footerNav__item {
    margin-right: 0;
  }
}
.l-footer .l-footerCon .l-footerNav .l-footerNav__item--last {
  margin-right: 0;
}
.l-footer .l-footerCopyright {
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
}

.l-leftContents {
  width: 65%;
  margin-top: 180px;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .l-leftContents {
    width: 100%;
  }
}

.l-fullContents {
  width: 92%;
  margin-top: 180px;
  margin-bottom: 80px;
}

.l-fullContents__miniMargin {
  margin-top: 120px;
}

.l-fullContents--topPage {
  width: 100%;
}

.u-regular16Text {
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  color: #333;
}

.u-bold24Text {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.u-bold20Text {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.u-regular14Text {
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  color: #333;
}

.u-regular24Text {
  font-size: 24px;
  font-weight: normal;
  text-decoration: none;
  color: #333;
}

.u-bold32Text {
  font-size: 32px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.u-bold16text {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.u-bold48Text {
  font-size: 48px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.u-underline {
  text-decoration: underline;
}

.u-blueText {
  color: #7EBAFF;
}

.u-marginBottom80 {
  margin-bottom: 80px;
}

.u-marginBottom24 {
  margin-bottom: 24px;
}

.u-visuallyHidden {
  /* コンテンツの流れから切り離す */
  position: absolute;
  /* 誤ったコードに対処するための回避策 */
  white-space: nowrap;
  /* 可能な限り文字サイズを小さくするための処理
   * (スクリーンリーダー中には height と width が 0 のものを無視するため)
   */
  width: 1px;
  height: 1px;
  /* オーバーフローしているコンテンツを隠す */
  overflow: hidden;
  /* 要素サイズを変更しうるプロパティのリセット */
  border: 0;
  padding: 0;
  /* 要素のどの部分が表示されるかを定義するもの */
  /* 古いブラウザでは使用できない */
  clip: rect(0 0 0 0);
  /* 最近のブラウザ用
   * コンテンツを非表示にする設定  */
  clip-path: inset(50%);
  /* 今現在なぜ-1pxがここで設定されるかは分かっていないそうです。
   * それに加えていくつか問題もあるそうです 
   * (参考: https://github.com/h5bp/html5-boilerplate/issues/1985)
   */
  margin: -1px;
}

.c-title--underline {
  padding: 10px;
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: #333 solid 2px;
  margin-bottom: 30px;
}

.c-article {
  text-decoration: none;
}
.c-article .c-articleThumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-article .c-articleText {
  background-color: #F2F2F2;
  padding: 20px 16px 16px 16px;
}
.c-article .c-articleText .c-articleText__title {
  margin-bottom: 16px;
}

.c-contentsheading {
  padding: 10px 20px 10px 10px;
  border-left: #7EBAFF solid 8px;
  margin-bottom: 60px;
}

.c-contentsheading--minimargin {
  margin-bottom: 30px;
}

.c-subheading {
  padding: 10px;
  background-color: #F0F7FF;
  border-bottom: #7EBAFF solid 2px;
  margin-bottom: 30px;
}

.c-articleList {
  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;
  row-gap: 30px;
}
@media screen and (max-width: 960px) {
  .c-articleList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-articleList .c-article {
  width: 46%;
}
@media screen and (max-width: 960px) {
  .c-articleList .c-article {
    width: 100%;
  }
}

.c-archive {
  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;
  row-gap: 60px;
}
.c-archive .c-article {
  width: 30%;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .c-archive .c-article {
    width: 45%;
  }
}
@media screen and (max-width: 428px) {
  .c-archive .c-article {
    width: 100%;
  }
}

.c-archive--mini {
  margin-bottom: 30px;
}

.c-unity {
  margin-bottom: 120px;
}

.c-table {
  margin-bottom: 60px;
  width: 100%;
}
.c-table .c-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .c-table .c-table__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 24px;
  }
}
.c-table .c-table__row .c-table__heading {
  width: 30.8%;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .c-table .c-table__row .c-table__heading {
    width: 100%;
  }
}
.c-table .c-table__row .c-table__data {
  width: 69.2%;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .c-table .c-table__row .c-table__data {
    width: 100%;
  }
}

.c-table__row--border {
  padding: 24px 0;
  border-top: #A9A9A9 solid 1px;
}

.c-table__row--borderLast {
  border-bottom: #A9A9A9 solid 1px;
}

.c-worksImg {
  width: 100%;
  margin-bottom: 30px;
}

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

.c-catchCopy {
  text-align: center;
  margin-bottom: 80px;
}

.c-prof {
  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;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .c-prof {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-prof .c-prof__img {
  width: 23.5%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .c-prof .c-prof__img {
    width: 30%;
    margin-bottom: 30px;
  }
}
.c-prof .c-prof__item {
  width: 73.3%;
}
@media screen and (max-width: 960px) {
  .c-prof .c-prof__item {
    width: 100%;
  }
  .c-prof .c-prof__item .c-prof__heading {
    text-align: center;
  }
}

.c-blogImg {
  max-width: 100%;
  margin-bottom: 60px;
}

.c-blogTitle {
  text-align: left;
  margin-bottom: 20px;
}

.c-blogSubTitle {
  text-align: left;
  margin-bottom: 60px;
}

.c-blogText {
  text-align: left;
  margin-bottom: 50px;
}

.c-blogText--last {
  margin-bottom: 0;
}

.c-blogText--minimargin {
  margin-bottom: 24px;
}

.c-blogText--bigmargin {
  margin-bottom: 80px;
}

.c-blogLink {
  display: inline;
}

.c-list {
  list-style: none;
}
.c-list .c-list__item {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.c-list .c-list__item:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #7EBAFF;
  border-radius: 50%;
}

.c-list--border {
  padding: 30px 80px;
  border: #7EBAFF solid 2px;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .c-list--border {
    padding: 30px 20px;
  }
}

.c-list--normal {
  margin-bottom: 120px;
}

.c-TOCHeader {
  margin-bottom: 24px;
}

.c-TOCCon {
  list-style: none;
  margin-bottom: 8px;
}
.c-TOCCon .c-TOCNumber {
  padding-right: 1em;
  border-right: #7EBAFF solid 1px;
  margin-right: 1em;
}
.c-TOCCon .c-TOCCon__item {
  margin-bottom: 8px;
  counter-increment: sample;
  position: relative;
  margin-left: 2em;
}
.c-TOCCon .c-TOCCon__item .c-TOCCon__item__title {
  border-left: #7EBAFF solid 1px;
  padding-left: 1em;
}
.c-TOCCon .c-TOCCon__item:before {
  content: "0" counter(sample) "";
  position: absolute;
  top: 0;
  left: -2em;
  color: #7EBAFF;
}
.c-TOCCon .c-TOCCon__item .c-list__item {
  margin-left: 1em;
}

.c-blogQuestion {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 48px;
}
.c-blogQuestion:before {
  content: "Q";
  font-family: sans-serif;
  font-size: 48px;
  font-weight: normal;
  position: absolute;
  top: -0.6em;
  left: 0;
  color: #7EBAFF;
}

.c-blogAnswer {
  position: relative;
  padding-left: 3.75em;
}
.c-blogAnswer:before {
  content: "A";
  font-size: sans-serif;
  font-size: 48px;
  position: absolute;
  top: -0.5em;
  left: 0.044em;
  color: #FF7E7E;
}

.QA {
  margin-bottom: 120px;
}

.c-slideWrapper {
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.c-nextButton,
.c-prevButton {
  position: absolute;
  width: 15px;
  height: 15px;
  z-index: 20;
  cursor: pointer;
  border-top: solid 3px #333;
  border-right: solid 3px #333;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-nextButton {
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.c-prevButton {
  left: 30px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

.c-indicator {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  z-index: 10;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-indicatorList {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  border: 2px #333 solid;
  cursor: pointer;
}
.c-indicatorList:first-of-type {
  background-color: #333;
}

.c-slide {
  width: 200%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-slide .c-slide__item {
  width: 50%;
  height: 100%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-slide .c-slide__item .c-slide__img {
  width: 80%;
}

@media (max-width: 960px) {
  .c-slide {
    width: 400%;
  }
  .c-slide .c-slide__item {
    width: 100%;
  }
}
.c-indicator {
  display: none;
}

.c-form {
  margin-bottom: 50px;
}

.c-form___item {
  width: 100%;
  margin-bottom: 30px;
}

.c-formLabel {
  display: block;
  position: relative;
  margin-bottom: 10px;
}

.c-required {
  padding: 0 8px;
  background-color: #FF0000;
  color: #fff;
  position: absolute;
  border-radius: 5px;
  right: 0;
  top: 0;
}

.c-radioButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  margin-bottom: 10px;
}

.c-radioButton__item {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
.c-radioButton__item::before, .c-radioButton__item::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.c-radioButton__item::before {
  background-color: #fff;
  border: 1px solid #A9A9A9;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  left: 0.25em;
}
.c-radioButton__item::after {
  background-color: #A9A9A9;
  border-radius: 50%;
  opacity: 0;
  width: 0.75em;
  height: 0.75em;
  left: 0.45em;
}

.c-radioButton__item.checked::after {
  opacity: 1;
}

.c-input {
  width: 100%;
  padding: 5px 10px;
  border: #333 solid 1px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
}

.c-input--Textarea {
  height: 200px;
}

.c-submitButton {
  width: 100%;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  padding: 5px 0;
  display: block;
  text-align: center;
}

.c-submitButton--White {
  margin-top: 30px;
  background-color: #fff;
  color: #333;
  border: #333 solid 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*# sourceMappingURL=bundle.css.map */