@charset "UTF-8";
/*CSSライブラリのインポート*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  font-family: "Merriweather", serif;
  scroll-behavior: smooth;
}

body {
  background-color: #FBFBFB;
}

a {
  text-decoration: none;
  cursor: pointer;
}

header {
  z-index: 999;
  background-color: #FBFBFB;
  width: 100%;
  margin: 0;
}

.button {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  width: 300px;
  height: 40px;
  margin: 20px auto;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #003C7E), to(#006DE4));
  background-image: linear-gradient(0deg, #003C7E 40%, #006DE4 100%);
  border: none;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 5px #b9b9b9;
          box-shadow: 2px 2px 5px #b9b9b9;
}

.button:hover, .btn-kanri:hover, .btn-model:hover, .btn-modeltry:hover {
  opacity: 0.7;
}

.btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-area0 a {
  font-size: 16px;
}

.btn-wh {
  background: #fff;
  border: #003C7E 1px solid;
  color: #003C7E;
}

p {
  text-align: justify;
  font-family: "Noto Sans", sans-serif;
}

li {
  list-style: none;
}

.footer-text p {
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  font-weight: bold;
}

.logo-img {
  max-width: 100%;
  padding-left: 20px;
}

.heading p {
  text-align: center;
  font-family: "Merriweather", serif;
}

.heading {
  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;
  margin: 16px auto;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

img {
  vertical-align: bottom;
}

/* =========================
      main visual
=========================== */
.main-visual img {
  max-width: 100%;
}

h1 {
  font-size: 24px;
  padding: 16px 0;
}

h4 {
  font-weight: normal;
}

.read-contents {
  max-width: 80%;
  margin: auto;
  padding-bottom: 40px;
}

.read-text {
  font-size: 10px;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
}

.btn-15min {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFD942), color-stop(50%, #FF9E42));
  background-image: linear-gradient(180deg, #FFD942 0%, #FF9E42 50%);
}

.news {
  background-color: rgba(255, 158, 66, 0.5);
}

.news-title {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
  border-bottom: #333 1px solid;
  display: block;
  margin: 0 20px 20px;
}

.news-text {
  font-size: 14px;
  margin: 0 20px;
  padding-bottom: 40px;
}

#news-ticker-container {
  position: relative;
  /* コンテナの位置を設定 */
  overflow: hidden;
  /* コンテンツがコンテナを超える場合に非表示にする */
  height: 100px;
  /* コンテナの高さを設定 */
  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;
  /* 交差軸方向に要素を中央揃えにする */
  font-weight: bold;
  padding: 0 20px 20px 20px;
}

#news-ticker {
  font-family: "Noto Sans", sans-serif;
  position: absolute;
  /* ティッカーの位置を設定 */
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  /* transformプロパティの変化を0.8秒間で緩やかに適用する */
}

@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
    /* アニメーション開始時、要素を下（Y軸方向）に100%移動 */
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* アニメーション終了時、要素の位置を初期状態（Y軸方向0%）に戻す */
  }
}

@keyframes slide-up {
  from {
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
    /* アニメーション開始時、要素を下（Y軸方向）に100%移動 */
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* アニメーション終了時、要素の位置を初期状態（Y軸方向0%）に戻す */
  }
}

.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* =========================
      main
=========================== */
.title {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  padding: 60px 0 30px;
}

.event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.event-card {
  margin: 10px auto;
}

.event-card img {
  width: 328px;
  height: 185px;
}

.line-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(0, 60, 126, 0.5)));
  background: linear-gradient(transparent 70%, rgba(0, 60, 126, 0.5) 70%);
}

.question {
  width: 242px;
  margin: auto auto 20px auto;
}

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

.check-area {
  margin: 0 20px 40px 20px;
}

.check-w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.check-w img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.check-w h3 {
  font-size: 14px;
  letter-spacing: -1px;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
}

.kaiketsu {
  background: -webkit-gradient(linear, right top, left top, from(#006de4), to(#003c7e));
  background: linear-gradient(-90deg, #006de4, #003c7e);
  height: 110px;
  position: relative;
}

.kaiketsu p {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding-top: 30px;
  font-family: "Merriweather", serif;
}

.text-large {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.triangle {
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 24px solid #FBFBFB;
  border-bottom: 0;
}

.title-point {
  position: relative;
  margin-bottom: 60px;
  font-size: 24px;
}

.title-point::after {
  content: "";
  width: 30px;
  height: 8px;
  display: inline-block;
  background-color: #003C7E;
  position: absolute;
  bottom: 10px;
  left: calc(50% - 15px);
  border-radius: 20px;
}

.color-orange {
  color: #FF9E42;
}

.point {
  padding-bottom: 60px;
}

.point-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: 10px 20px;
}

.point-img-area img {
  width: 100%;
}

.point-number {
  font-size: 24px;
  color: #FF9E42;
}

.number-l {
  font-size: 32px;
  font-family: 'Roboto', serif;
  color: #FF9E42;
}

.point-maintitle {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: -1px;
}

.point-text {
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
}

.bgi-blue {
  background-color: rgba(0, 60, 126, 0.1);
}

.btn-copy {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  margin-bottom: .2em;
  text-align: center;
  padding-top: 60px;
}

.btn-copy:before {
  margin-right: 1rem;
  content: '＼';
}

.btn-copy:after {
  margin-left: 1rem;
  content: '／';
}

.title-support {
  padding-top: 0;
}

.point-maintitle-support {
  font-size: 20px;
}

.btn-kanri {
  display: block;
  width: 300px;
  height: 60px;
  line-height: 60px;
  margin: 60px auto 10px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#DBDBDB), color-stop(50%, #757575));
  background-image: linear-gradient(180deg, #DBDBDB 0%, #757575 50%);
  border: none;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 5px #b9b9b9;
          box-shadow: 2px 2px 5px #b9b9b9;
  font-family: "Noto Sans", sans-serif;
}

.kanri-text {
  max-width: 300px;
  margin: 10px auto;
  font-size: 12px;
  text-align: center;
  padding-bottom: 60px;
}

.reason-img {
  width: 100%;
  width: 306px;
  height: 203px;
}

.reason-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.reason-maintitle {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
  letter-spacing: -2px;
}

.reason-text {
  font-size: 16px;
  margin: 0 20px;
  font-family: "Noto Sans", sans-serif;
}

.reason-card {
  text-align: center;
  max-width: 300px;
  margin: 0 15px;
}

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

.btn-15min {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFD942), color-stop(50%, #FF9E42));
  background-image: linear-gradient(180deg, #FFD942 0%, #FF9E42 50%);
  color: #333;
}

.mission {
  background-image: url(../img/blue-bgi.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
}

.mission-maintitle, .mission-text {
  color: #fff;
}

.mission-title {
  font-size: 14px;
  padding-top: 60px;
  text-align: center;
  color: #fff;
}

.mission-maintitle {
  font-size: 24px;
  padding: 26px 0;
  text-align: center;
}

.text-orange {
  color: #FF9E42;
}

.mission-text {
  padding: 10px 0;
  margin: 0 20px;
  font-family: "Noto Sans", sans-serif;
}

.program-text {
  font-size: 16px;
  margin: 0 20px;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
}

.circle-card {
  background-color: rgba(0, 60, 126, 0.5);
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin: 10px auto 10px;
  position: relative;
}

.circle-card span {
  font-family: "Noto Sans", sans-serif;
}

.arrow {
  display: inline-block;
  width: 40px;
  height: 60px;
  background: #b3b3b3;
  -webkit-clip-path: polygon(0 64.6%, 35.9% 64.6%, 35.9% 0, 64.1% 0, 64.1% 64.6%, 100% 64.6%, 50% 100%);
          clip-path: polygon(0 64.6%, 35.9% 64.6%, 35.9% 0, 64.1% 0, 64.1% 64.6%, 100% 64.6%, 50% 100%);
}

.circle {
  text-align: center;
}

.circle-card p {
  color: #fff;
  text-align: center;
  line-height: 200px;
}

.circle-card span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 200px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.model-img img {
  width: 375px;
  margin: auto;
  display: block;
}

.btn-model {
  font-size: 11px;
  margin: auto;
  height: 60px;
}

.btn-modeltry {
  display: block;
  max-width: 300px;
  height: 60px;
  line-height: 60px;
  margin: 20px auto 20px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #003C7E), to(#006DE4));
  background-image: linear-gradient(0deg, #003C7E 40%, #006DE4 100%);
  border: none;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 5px #b9b9b9;
          box-shadow: 2px 2px 5px #b9b9b9;
  font-family: "Noto Sans", sans-serif;
}

.model {
  padding-bottom: 60px;
}

.plus-text {
  text-align: center;
  font-weight: bold;
}

.plus-img {
  width: 350px;
  display: block;
  margin: 10px auto;
}

.model14 {
  font-size: 14px;
}

.plus {
  padding-bottom: 60px;
}

footer {
  background-color: #333;
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-flex a {
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  padding: 20px 40px;
  color: #fff;
}

.footer-text p {
  text-align: center;
  font-size: 12px;
  color: #fff;
}

/* =========================
      pc版
=========================== */
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .button {
    height: 60px;
    line-height: 60px;
  }
  .logo-img {
    max-width: 300px;
  }
  .heading {
    -ms-grid-column-align: start;
        justify-self: start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  header {
    position: fixed;
    z-index: 999;
    height: 86px;
    background-color: #fff;
    width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .heading::after {
    position: absolute;
    top: 38px;
    left: 300px;
  }
  .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .btn-wh {
    background: #fff;
    border: #003C7E 1px solid;
    color: #003C7E;
  }
  .main-visual {
    position: relative;
  }
  .main-visual img {
    padding-top: 86px;
  }
  .read-contents {
    position: absolute;
    top: 100px;
    left: 40px;
  }
  .btn-area0 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .button {
    width: 180px;
    margin: 10px 4px;
    font-size: 10px;
  }
  .btn-navi {
    width: 100px;
    height: 30px;
    font-size: 10px;
    line-height: 30px;
    margin: auto 2px;
  }
  .pdl200 {
    padding-left: 200px;
    font-size: 7px;
  }
  .news {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 300px 1fr;
        grid-template-columns: 300px 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 67px;
  }
  #news-ticker-container {
    height: 90px;
  }
  .news-text {
    margin: auto;
    padding: 0;
  }
  .news-title {
    border-bottom: none;
  }
  .news p {
    font-size: 10px;
    padding: 20px;
    margin: auto;
    font-weight: bold;
    margin: 0;
  }
  .news {
    -ms-grid-columns: 220px 1fr;
        grid-template-columns: 220px 1fr;
  }
  .title {
    font-size: 36px;
  }
  .title40 {
    font-size: 40px;
  }
  .event {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 20px;
  }
  .question-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1000px;
    margin: auto;
  }
  .question {
    width: 340px;
  }
  .check-area {
    margin: auto;
  }
  .check-w {
    padding: 10px;
  }
  .check-w img {
    width: 40px;
    height: 40px;
  }
  .check-w h3 {
    font-size: 16px;
    padding-top: 8px;
  }
  .kaiketsu {
    max-width: 1000px;
    margin: auto;
  }
  .kaiketsu p {
    font-size: 24px;
    padding-top: 24px;
  }
  .text-large {
    font-size: 48px;
  }
  .point-area {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 10px 20px;
  }
  .point-text-area {
    padding-right: 20px;
  }
  .point-img-area img {
    max-width: 450px;
    max-height: 300px;
  }
  .btn-copy {
    font-size: 24px;
  }
  .btn-kanri {
    width: 600px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }
  .kanri-text {
    max-width: 600px;
    font-size: 14px;
  }
  .reason-img {
    max-width: 305px;
  }
  .reason-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reason-maintitle {
    font-size: 32px;
  }
  .reason-text {
    font-size: 20px;
  }
  .mission-title {
    font-size: 20px;
  }
  .mission-maintitle {
    font-size: 48px;
  }
  .mission-text {
    font-size: 20px;
  }
  .arrow2 {
    display: inline-block;
    width: 70px;
    height: 56.6px;
    background: #b3b3b3;
    -webkit-clip-path: polygon(0 32.3%, 59.6% 32.3%, 59.6% 0, 100% 50%, 59.6% 100%, 59.6% 67.7%, 0 67.7%);
            clip-path: polygon(0 32.3%, 59.6% 32.3%, 59.6% 0, 100% 50%, 59.6% 100%, 59.6% 67.7%, 0 67.7%);
    margin: auto;
  }
  .circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .circle-card {
    background-color: rgba(0, 60, 126, 0.5);
    width: 215px;
    height: 215px;
  }
  .circle-card span {
    width: 215px;
  }
  .model-img img {
    width: auto;
    max-width: 1000px;
  }
  .button {
    height: 40px;
    line-height: 40px;
  }
  .btn-modeltry {
    max-width: 600px;
    font-size: 18px;
  }
  .footer-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .btn-area0 a {
    font-size: 18px;
  }
  .heading p {
    font-size: 12px;
    padding-left: 10px;
    font-weight: bold;
  }
  .heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: auto 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 36px;
    padding: 20px 0;
  }
  .read-text {
    font-size: 14px;
  }
  .pdl200 {
    padding-left: 220px;
    font-size: 10px;
  }
  button {
    width: 200px;
  }
  .news p {
    font-size: 14px;
  }
  .news {
    -ms-grid-columns: 250px 1fr;
        grid-template-columns: 250px 1fr;
  }
  .check-w p {
    font-size: 20px;
  }
  .point-number {
    font-size: 32px;
  }
  .number-l {
    font-size: 48px;
  }
  .point-maintitle {
    font-size: 32px;
  }
  .point-text {
    font-size: 20px;
    letter-spacing: -1px;
  }
  .point-area {
    margin: 10px auto;
  }
  .point-maintitle-support {
    font-size: 28px;
  }
  .mission-title {
    font-size: 20px;
  }
  .mission-maintitle {
    font-size: 64px;
  }
  .mission-text {
    font-size: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .program-text {
    max-width: 1000px;
    margin: auto;
  }
  .circle {
    max-width: 1000px;
    margin: auto;
  }
  .arrow2 {
    display: inline-block;
    width: 40px;
    height: 30px;
    background: #b3b3b3;
    -webkit-clip-path: polygon(0 32.3%, 59.6% 32.3%, 59.6% 0, 100% 50%, 59.6% 100%, 59.6% 67.7%, 0 67.7%);
            clip-path: polygon(0 32.3%, 59.6% 32.3%, 59.6% 0, 100% 50%, 59.6% 100%, 59.6% 67.7%, 0 67.7%);
    margin: auto;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 48px;
    padding: 34px 0;
  }
  .read-text {
    font-size: 20px;
  }
  .button {
    width: 350px;
    height: 60px;
    line-height: 60px;
    margin: 24px 4px 4px 4px;
    font-size: 16px;
  }
  .pdl200 {
    padding-left: 350px;
    font-size: 14px;
  }
  .logo-img {
    max-width: 500px;
  }
  .heading::after {
    position: absolute;
    top: 46px;
    left: 490px;
    font-size: 16px;
  }
  .btn-navi {
    width: 140px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .news p {
    font-size: 18px;
  }
  .news {
    -ms-grid-columns: 400px 1fr;
        grid-template-columns: 400px 1fr;
  }
}

@media screen and (min-width: 2560px) {
  h1 {
    font-size: 100px;
    padding: 70px 0;
  }
  .read-text {
    font-size: 34px;
  }
  button {
    width: 500px;
    height: 80px;
    margin: 30px 10px 10px 10px;
    font-size: 24px;
  }
  .pdl200 {
    padding-left: 550px;
    font-size: 18px;
  }
  .logo-img {
    max-width: 100%;
  }
  .heading::after {
    position: absolute;
    top: 52px;
    left: 666px;
    font-size: 28px;
  }
  .btn-navi {
    width: 300px;
    height: 70px;
    font-size: 24px;
  }
  .news {
    -ms-grid-columns: 800px 1fr;
        grid-template-columns: 800px 1fr;
  }
  .news p {
    font-size: 24px;
  }
  .event-card img {
    max-width: 528px;
  }
}
/*# sourceMappingURL=style.css.map */