@charset "utf-8";
/* ====================================================================
 *  index.bundle.css
 *  以下のファイルを読み込み順のまま連結したものです。
 *  中身は1文字も変更していません。編集は必ずこのファイルに対して行い、
 *  元ファイル（下記）は履歴として残してあります。
 *
 *    1. index.css
 *    2. slick.css
 *    3. topi.css
 *    4. messe.css
 *    5. responsive.css
 * ==================================================================== */


/* ---------- ここから index.css ---------- */
html,
body {
  overflow-x: hidden;
  /* まずはこれ */
}

/* * {
  outline: 1px solid magenta;
} */


.firstView {
  position: relative;

  /*背景を設定するdivの基点とするためrelativeをかける*/
  width: 100%;
  height: calc(100vh - 110px);
  overflow: hidden;
  /*はみ出しているところを隠す*/

  /* height: calc(100vh - 110px); */
}

#firstViewImg {
  position: fixed;
  /*背景を固定するためfixedをかける*/
  z-index: -999;
  /*#container,#footerよりも下に配置するために数値を小さくする*/
  /*topの位置がJSで変化*/
  /*以下画面で背景画像を表示させるための指定*/
  width: 100%;
  height: 100vh;

  background: url(../images/index/bg-top.jpg) no-repeat top center;
  /*背景画像の設定※オリジナルの画像に設定してください*/
  background-size: contain;
  transform-origin: center;
  /*変化する基点を中心からに設定*/
}

.firstView h1 {
  font-family: "RocknRoll One", sans-serif;
  font-size: 100px;
  line-height: 115px;
  position: fixed;
  top: 0%;
  left: -5%;
  /* transform: translate(-50%, -50%); */
  color: #ffffff;
  font-weight: bold;
  font-style: normal;
  letter-spacing: -0.05em;
  text-shadow: 1px 1px 10px #4b2c14;
  transform: rotate(-10deg);
  z-index: -3;
  /* background-color: rgba(104, 114, 255, 0.4); */
  width: 120vw;
  padding: 50px 200px;
  overflow: visible;
}

.fontRed {
  color: #e76f3b;
}


.fontYelloew {
  color: #f8e47e;
}

.firstView p {
  font-size: 18px;
  margin-top: 20px;
}


.linkButtonArea {
  text-align: center;
  margin: 50px 0 80px 0;

}

.linkButton {
  background-color: #e79c5b;
  margin: 0 auto;
  min-width: 180px;
  line-height: 48px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  padding: 20px 50px;

}

.linkButton:hover {
  background-color: #d8b500;
}

.mainBg h2 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  color: rgb(32, 32, 163);
  /* text-align: center; */
  font-size: 4rem;

  margin: 0 0 20px 0;
  animation-delay: 0.3s;
}



/*スクロールダウン*/
.scroll_down {
  position: absolute;
  top: 50px;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #000;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }

  33% {
    opacity: 1;
    transform: translateY(30px);
  }

  67% {
    opacity: 1;
    transform: translateY(40px);
  }

  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}




/* ====================================   news   ==================================== */


/* ここからがニュース記事のCSS */
.news {
  margin: 25% 5%;
}

.news_list {
  color: #00496D;
  margin: 0 5%;
}

.news_list_item {
  padding: 40px 10px 10px 10px;
  border-bottom: 1px solid #00496D;
}


.news_list_item a {
  padding-right: 30px;
}

.news_list_date {
  position: relative;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.news_list_date time {
  width: 200px;
  text-align: center;
  margin-right: 30px;
  /* position: absolute; */
}

/* .news_list_date p::before {
  content: "";
  display: block;
  width: 0.5px;
  height: 200%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: -50%;
} */

.news_item {
  font-size: 11px;
  background: #e76f3b;
  border-radius: 0 50px 50px 0;
  color: #fff;
  width: 120px;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  padding: 8px;
}

.old_item {
  font-size: 11px;
  background: #ffffff;
  border-radius: 0 50px 50px 0;
  color: #fff;
  width: 120px;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  padding: 8px;
}

.news_more_list {
  text-align: right;
}

.news_more p {
  display: inline-block;
  margin-right: 50px;
}

.news_more {
  display: inline-block;
  position: relative;
  font-size: 15px;
  margin: 25px 15px 50px 0;

}


.news_arrow {
  width: 20px;
  height: 15px;
  background: url(../images/index/arrow.jpg) no-repeat center/cover;
  position: absolute;
  top: 20%;
  right: 0;
  transition: 0.3s;

}

.news_arrow:hover {

  transform: rotate(-90deg);
}

/* 
.news_arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #00496D;
  transform: rotate(-45deg);
  position: absolute;
  right: 0px;
  bottom: -2px;
} */


/* popup_content */
.popup_bg {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(64, 73, 82, 0.8);
  transition: 0.4s;
  z-index: 101;
}

.popup_news_list {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-40%);
  z-index: 110;
  max-width: 730px;
  max-height: 80vw;
  background: #fff;
}


.popup_news_box {
  width: 90%;
  margin: 0 auto;
}



.popup_news_item {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #000; */
  position: relative;
  padding-top: 7%;
  width: 95%;
  margin: 0 auto;
}





.popup_news_item time {
  /* font-size: 26px; */
  margin-left: 5%;
  /* margin-right: 15px; */
}

.popup_news_item p {
  font-size: 20px;

}

.popnews_title {
  font-size: 25px;

  margin-left: 5%;


}

.news_photo {
  display: flex;
  justify-content: center;
  /* 横方向中央 */
  align-items: center;
}

.popup_news_text {
  text-align: center;
}

.popup_news_text p {
  font-size: 15px;
  text-align: left;
  width: 85%;
  margin: 0 auto;
  padding-top: 34px;
  line-height: 1.5;

}

.popup_news_text a {
  display: inline-block;
  font-size: 12px;
  padding-top: 57px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 50px;

}


.news_photo img {
  object-fit: cover;
  margin: 30px auto 0;

}




.popup_list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

/* popup_content */
.popup_bg {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(64, 73, 82, 0.8);
  transition: 0.4s;
  z-index: 101;
}

.popup_content {
  position: relative;
}


.popup_box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-40%);
  z-index: 110;
  width: 60%;
  max-width: 1536px;
  height: 75%;
  max-height: 1070px;
  background: #fff;
  overflow: scroll;
  /* padding: 5%; */
}

#popup_gallery.popup_flex {
  display: flex;
  gap: 3%;
  justify-content: center;
  height: 100%;
  padding: 5% 0;

}

.art_cap {
  font-size: 25px;
}

.popup_box img {
  display: block;

  max-width: 65%;
  /* height: 80%; */
  object-fit: scale-down;
}

.popup_txt {
  width: 50%;
}

/* .title_boder {
  height: 1px;
  background-color: #000;
} */


.popup_txt .title {
  font-size: 43px;
  border-bottom: solid 1px #000;
  padding-bottom: 40px;

}



.popup_name {
  display: flex;
  gap: 5%;
  align-items: center;
  font-size: 26px;
  margin: 65px 0;
  vertical-align: middle;
}



.art_cap {
  font-size: 15px;

}

.art_cap p {
  padding-bottom: 20px;
}

.popup_name a {
  font-size: 14px;
  background-color: #D9D9D9;
  border-radius: 25px;
  /* margin-left: 2em; */
  padding: 0.5em 1.7em;
}

.popup_eve {
  padding: 1em 0;
  font-size: 18px;
}

.popup_eve li {
  font-size: 14px;
  padding: 16px 0 0 90px;
}

.popup_icon {
  width: 283px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup_icon img {
  max-width: 80px;
  margin-top: 14px;
}

/* .popup_box p {
 font-size: 14px;
 line-height: 1.8;

} */

/* popup_nav */
.popup_nav .prev {
  position: absolute;
  top: 50%;
  left: 0px;
  /* left: -40px; */
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  z-index: 130;
}

.popup_nav .next {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
}

.popup_nav .prev.disabled,
.popup_nav .next.disabled {
  display: none;
}

.popup_nav img {
  width: 100%;

}

/*--close btn--*/
.popup_close {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 120;
}

.popup_close span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  width: 30px;
  height: 2px;
  background: #434c55;
  position: absolute;
  left: 50%;
  top: 50%;
}

.popup_close span:nth-child(1) {
  transform: translate(-50%, 50%) rotate(45deg);
}

.popup_close span:nth-child(2) {
  transform: translate(-50%, 50%) rotate(-45deg);
}

.newsBr {
  display: none;
}


/* ====================================  slider   ==================================== */
/* @slick.css */



#topics h2 {
  width: 75vw;
  margin: 0 auto 100px auto;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.news h2 {
  margin: 0 auto 100px auto;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}
/* ---------- ここまで index.css ---------- */

/* ---------- ここから slick.css ---------- */
/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 100px auto;
}

.sliderItem {
    width: 28vw;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.16);
}

.slider img {
    width: 100%;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: auto;
    padding: 10px;
    border-radius: 20px;
}

.slider .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
    margin: 60px 20px;
}

.slider .slick-slide.slick-center {
    transform: scale(1.2);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    
    /*透過なし*/
    margin: 60px 20px;
}

.sliderText {
    padding: 10px 20px;
  }
  

  
  .sliderTextP {
    line-height: 1.7;
    padding: 10px;
  font-size: 14px;
  }
  
  .sliderTextBtn {
    background-color: #e76f3b;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 30px;
    font-weight: 500;
  }

  /* 開催が終わったイベントは、色を落として「終了」を付ける */
  .sliderTextBtn.isFinished {
    background-color: #9aa6b2;
  }

  .sliderTextEnd {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.85);
    color: #6b7785;
    font-size: 0.8em;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  
  
  /* .sliderBox::after {
    position: absolute;
    content: '';
    top: 32%;
    left: 0;
    width: 100vw;
    height: 40vh;
    background: #eaf0f6;
  } */
  
  
  
  .sliderBox h2 {
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-weight: 400;
    color: rgb(32, 32, 163);
    font-size: 4rem;
    margin: 0 auto 100px auto;
    animation-delay: 0.3s;
  }
  

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align: center;
    margin: 50px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;

}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 50px;
    /*ドットボタンのサイズ*/
    height: 12px;
    /*ドットボタンのサイズ*/
    display: block;
    /* border-radius:50%; */
    background: #ccc;
    /*ドットボタンの色*/
}

.slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}




/* =========================================
   トップページ What's New スライダー
   申込締切のタグ
========================================= */

.sliderSoon {
    display: inline-block;
    margin: 0 10px 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    background-color: #e0353b;
    border-radius: 3px;
}

/* 申込締切が終わったもの（間近とは色を変える） */
.sliderSoon.isOver {
    background-color: #7a8593;
}
/* ---------- ここまで slick.css ---------- */

/* ---------- ここから topi.css ---------- */
/* topics */

#topics {
    /* position: relative; */
    margin: 0 0 200px 0;

}

.topicsArea1 {
    display: flex;
    justify-content: space-between;
    /* width: 100%;
    height: 60vh; */
    margin: 0 auto 50px auto;
}

/* 学びバナー */
.topicsArea1 article:nth-of-type(1) {
    width: 40%
}

.manabiNaviBanner {
    margin-top: 30px;
    border-radius: 15px;
    position: relative;
    /* 擬似要素を絶対配置するため必須 */
    z-index: 0;
    /* 本体より後ろに擬似要素を配置しやすくする */
}

.manabiNaviBannerZoom {
    rotate: -5deg;
}

.manabiNaviBanner::before {
    content: "";
    /* 擬似要素は必須 */
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 90%;

    background-color: rgba(84, 132, 221, 0.1);
    rotate: 10deg;
    z-index: -1;
    /* 本体の背景より後ろに置く */
}

.manabiNaviBannerZoom img {
    transform: scale(1);
    transition: .2s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
    width: 100%;
    border-radius: 15px;
    /* padding: 35px 15px; */
}

.manabiNaviBannerZoom:hover img {
    /*hoverした時の変化*/
    transform: scale(1.1);
    /*拡大の値を変更したい場合はこの数値を変更*/
}

.manabiNaviBannerZoom .mask {
    display: block;
    /* height: 15vw; */
    overflow: hidden;
    border-radius: 15px;
}

.manabinaviText p {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
    padding: 10px 10px 30px 30px;
    color: #121212;
}

/* 学びバナー ここまで*/


/* 学びバナー右側 */
.topicsBoxRight {
    flex-basis: 53%;
    margin-left: 2%;
    flex-direction: column;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: space-around;
}

.topicsBox1 {
    display: flex;
    justify-content: space-between;
}

/* .topics-block1 p {
    font-size: 20px;
    padding: 25px;

} */

/* .topicsArea1 .topicsBox1 article {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
} */

.topics-block {
    display: none;
}

/* .topicsBoxRight::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 85%;
    height: 70%;
    background-color: rgba(84, 132, 221, 0.1);
    z-index: -1;
 
} */




.topicsArea1 .topicsBox1 article:nth-of-type(1) {
    width: 46%;
}

.topicsArea1 .topicsBox1 article:nth-of-type(2) {
    width: 46%;
}

.topicsArea1 .topicsBox1 article:nth-of-type(3) {
    width: 46%;
}

.topicsArea1 .topicsBox1 article:nth-of-type(4) {
    width: 46%;
}

/* 学びバナー右側ここまで */


.topicsArea2 {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    margin: 0 auto;
}

.topicsBox2 {
    flex-basis: 70%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: 2%;
}

.topicsArea2 article:nth-of-type(1) {
    width: 35%;
}

.topicsArea2 .topicsBox2 article:nth-of-type(1) {
    width: 30%;
}

.topicsArea2 .topicsBox2 article:nth-of-type(2) {
    width: 30%;
}

.topicsArea2 .topicsBox2 article:nth-of-type(3) {
    width: 30%;
}

.topicsArea2 .topicsBox2 article:nth-of-type(4) {
    width: 30%;
}

.topicsArea2 .topicsBox2 article:nth-of-type(5) {
    width: 30%;
}

.topicsArea2 .topicsBox2 article:nth-of-type(6) {
    width: 30%;
}


.zoomOut .mask {
    border-radius: 15px;
    overflow: hidden;
}




/* 4-7 にゅーん（滑らかに変形して出現） */
.smooth {
    animation-name: smoothAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform-origin: left;
    opacity: 0;
}

@keyframes smoothAnime {
    from {
        transform: translate3d(0, 100%, 0) skewY(12deg);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0) skewY(0);
        opacity: 1;
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeDownTrigger,
.smoothTrigger {
    opacity: 0;
}

/*===========================================================*/
/* 印象編　7-2 画像が縮小 　*/
/*===========================================================*/

.zoomOut img {
    transform: scale(1);
    transition: .3s ease-in-out;
    /* border-radius: 20px 20px 0 0; */
    /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomOut:hover img {
    /*hoverした時の変化*/
    transform: scale(1.2);
    /*拡大の値を変更したい場合はこの数値を変更*/
}


.zoomOut .mask {
    display: block;
    /* height: 15vw; */
    overflow: hidden;
}



@media screen and (max-width:960px) {
    #topics {
        margin: 0 0 100px 0;
    }

    #topics .topics-btn {
        text-align: center;
        padding: 30px 0 0 0;
    }

}

@media screen and (max-width:1020px) {
    .topics-area article {
        width: 48%;
        /* margin: 0 0 20px 0; */
    }

    .topics-area article:nth-of-type(2n+1) {
        /* top: 20px; */
        margin-bottom: 30px;
    }

    .topics-area article:nth-of-type(2n) {
        top: 0;
        margin-bottom: 30px;
    }

    .zoomOut .mask {
        height: 25vw;
    }

    .topics-area {
        margin-bottom: 15px;
    }

    .topics-area .topics-block h3 {
        font-size: 0.7rem;
    }

    .topics-area .topics-block {
        padding: 10px;
    }

    .topics-area .topics-block time {
        font-size: 0.7rem;
    }


}

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

    .topicsArea1,
    .topicsArea2 {
        display: block;
        width: 100%;
    }


    /* .topicsBox1 .topicsBox2 {
        display: block;


    } */


    .topicsInfo {

        width: 100%;
    }

    .topics-block1 {
        width: 45%;
    }



    .topicsArea1 article:nth-of-type(1) {
        width: 100%;
        /* height: 20vh; */
    }

    .topicsArea1 .topicsBox1 article:nth-of-type(1) {
        width: 100%;
        /* height: 18vh; */


    }

    .topicsArea1 .topicsBox1 article:nth-of-type(2) {
        width: 100%;
        /* height: 18vh; */
    }

    .topicsArea2 article:nth-of-type(1) {
        width: 100%;
        /* height: 18vh; */
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(1) {
        width: 100%;
        /* height: 18vh; */
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(2) {
        width: 100%;
        /* height: 18vh; */
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(3) {
        width: 100%;
        /* height: 18vh; */
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(4) {
        width: 100%;
        /* height: 18vh; */
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(5) {
        width: 100%;
        /* height: 18vh; */
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(6) {
        width: 100%;
        /* height: 18vh; */
    }
}

@media screen and (max-width:550px) {
    .zoomOut .mask {
        height: auto;
        /* margin-top: 2vh; */
        /* width: 95%; */
    }

    .topicsArea1 .topicsBox1 article:nth-of-type(1) {
        width: 48%;
        /* height: 18vh; */
        margin-top: 2vh;
    }

    .topicsArea1 .topicsBox1 article:nth-of-type(2) {
        width: 48%;
        /* height: 18vh; */
        margin-top: 2vh;
    }

    .topicsArea2 article:nth-of-type(1) {
        width: 100%;
        /* height: 18vh; */
        margin-top: 4vh;
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(1) {
        width: 46%;
        /* height: 18vh; */
        margin-top: 2vh;
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(2) {
        width: 46%;
        /* height: 18vh; */
        margin-top: 2vh;
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(3) {
        width: 46%;
        /* height: 18vh; */
        margin-top: 2vh;
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(4) {
        width: 46%;
        /* height: 18vh; */
        margin-top: 2vh;
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(5) {
        width: 46%;
        /* height: 18vh; */
        margin-top: 2vh;
    }

    .topicsArea2 .topicsBox2 article:nth-of-type(6) {
        width: 46%;
        /* height: 18vh; */
        margin-top: 2vh;
    }



    .topicsBox2 {
        margin-right: 0;
    }

    .topicsBoxRight {
        margin-left: 0;
    }
}


/* @media screen and (max-width:550px) {
    .topics-area article {
        width: 90%;
    }

    .topics-area article:nth-of-type(2n+1) {
        top: 0;
    }
} */
/* ---------- ここまで topi.css ---------- */

/* ---------- ここから messe.css ---------- */
/* message */

#vision {
    position: relative;
    padding: 0 70px;
    margin-bottom: 230px;

}


#vision::after {
    position: absolute;
    transform-origin: center;
    content: '';
    top: 120px;
    left: 10%;
    width: 70%;
    height: 300px;
    background: #eaf0f6;
    transform: rotate(-5deg);

}

.vision-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;

}

.vision-img {
    background: url("../images/index/pict_03.png") no-repeat right top;
    background-size: cover;
    height: 40vh;
    width: 48%;
    z-index: 1;
}

.vision-content {
    text-align: right;

    width: 45%;
    padding: 150px 0 0 0;
    z-index: 1;
}

.vision-content p {
    line-height: 1.7;
}




@media screen and (max-width:768px) {
    #vision {
        padding: 0 10px;
        margin-bottom: 120px;
    }

    #vision::after {
        position: absolute;
        top: -50px;
        left: 10%;
        height: 400px;
    }

    .vision-img,
    .vision-content {
        width: 100%;
    }

    .vision-content h2 {
        font-size: 48px;
    }

    .vision-content p {
        font-size: 12px;
    }

    .vision-img {
        height: 40vh;
    }

    .vision-content {
        padding: 20px 0 0 0;
    }
}

@media screen and (max-width:430px) {
    .vision-img {
        height: 20vh;
    }
}




/* history */

#vision2 {
    position: relative;
    padding: 0 70px;
    margin-bottom: 25%;
}

#vision2::after {
    position: absolute;
    content: '';
    transform-origin: center;
    top: 120px;
    left: 10%;
    width: 70%;
    height: 300px;
    background: #eaf0f6;
    transform: rotate(5deg);
}

.vision2-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vision2-img {
    background: url("../images/index/pict_04.png") no-repeat center;
    background-size: cover;
    height: 44vh;
    width: 48%;

    z-index: 1;
}

.vision2-content {
    width: 45%;
    padding: 150px 0 0 0;
    z-index: 1;
}

.vision2-content p {
    line-height: 1.7;
}

.floating {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    animation: floatingmove 30s ease 0s infinite;
    /*アニメーションの設定*/
}


/* 4-1 ふわっ（左から）*/

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 4-1 ふわっ（右から） */

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
    opacity: 0;
}


@media screen and (max-width:768px) {
    #vision2 {
        padding: 0 10px;
        margin-bottom: 100px;
    }

    #vision2::after {
        position: absolute;
        top: -30px;
        left: 10%;
        height: 400px;
    }

    .vision2-img,
    .vision2-content {
        width: 100%;
    }

    .vision2-content h2 {
        font-size: 48px;
    }

    .vision2-content p {
        font-size: 12px;
    }

    .vision2-img {
        height: 40vh;
    }

    .vision2-content {
        padding: 20px 0 0 0;
    }
}

@media screen and (max-width:430px) {
    .vision2-img {
        height: 20vh;
    }


}
/* ---------- ここまで messe.css ---------- */

/* ---------- ここから responsive.css ---------- */
/* ====================================   レスポンシブ   ==================================== */
@media (max-width: 1500px) {
  .newsBr {
    display: block;
  }

  .newsSub {
    display: block;
    padding-top: 10px;
    font-size: 13px;

  }

}

@media screen and (max-width:960px) {
  #firstViewImg {
    background: url(../images/index/bg-top-sp.jpg) no-repeat top left/100%;
    /*背景画像の設定※オリジナルの画像に設定してください*/
    /* height: 90vh; */
  }

  .firstView h1 {
    font-family: "RocknRoll One", sans-serif;
    font-size: 70px;
    line-height: 115px;
    position: fixed;
    top: 5%;
    left: -5%;
    /* transform: translate(-50%, -50%); */
    color: #ffffff;
    font-weight: bold;
    font-style: normal;
    letter-spacing: -0.05em;
    text-shadow: 1px 1px 10px #4b2c14;
    transform: rotate(-10deg);
    z-index: -3;
    /* background-color: rgba(104, 114, 255, 0.4); */
    width: 120vw;
    padding: 50px 100px;
    overflow: visible;
  }

}



@media (max-width: 800px) {
  .firstView {
    position: relative;
    /*背景を設定するdivの基点とするためrelativeをかける*/
    overflow: hidden;
    /*はみ出しているところを隠す*/
    width: 100%;

  }


  .firstView h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 55px;
    line-height: 1.2;
    position: fixed;
    top: 10%;
    left: -5%;
    padding: 30px 60px;
  }

  .scroll_down {
    position: absolute;

    right: 45%;

  }

  .firstView p {
    font-size: 14px;
    margin-top: 15px;
  }

  .mainBg {
    padding-top: 180px;
  }

  .item-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-list li {
    width: 220px;
    margin-left: 30px;
  }

  .popup_news_item p {
    font-size: 15px;
  }

  .news_list_date {
    display: block;
  }

  .popup_news_item {
    display: block;
    padding-top: 20%;
  }

  .news_item {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .news_list {
    width: 100%;
  }

  .news_list_date p {
    padding-top: 10px;
  }

  .popup_news_text p {
    font-size: 13px;
    width: 90%;
  }

  .popup_box {
    width: 90%;
  }

  #popup_news img {
    width: 80%;
  }



  .news {
    margin: 0;
  }

  .linkButtonArea {
    margin: 80px 0 0 0;
  }




}




@media screen and (max-width:550px) {
  #firstViewImg {
    background: url(../images/index/bg-top-sp.jpg) no-repeat top left/cover;
    /*背景画像の設定※オリジナルの画像に設定してください*/
   
    height: 90vh;
overflow: hidden;
  }

  .scroll_down {
    position: absolute;
    bottom: 0px;
    right: 42%;

  }

  .firstView h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 31px;
    line-height: 1.2;
    position: fixed;
    top: 15%;
    left: -5%;
    padding: 30px 60px;
  }

  .linkButtonArea {
    margin: 50px 0 0 0;
  }


  .linkButton {

    font-size: 20px;

    padding: 10px 40px;

  }

  .mainBg {
    padding-top: 200px;
  }

  .mainBg h2 {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    color: rgb(32, 32, 163);
    /* text-align: center; */
    font-size: 3rem;
    margin: 0 0 20px 0;
    animation-delay: 0.3s;
  }




  /*==================================================
スライダーのためのcss
===================================*/
  .slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 50px auto;
  }

  .sliderItem {
    width: 45vw;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.16);
  }

  .slider img {
    width: 100%;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: auto;
    padding: 5px;
    border-radius: 10px;
  }

  .slider .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
    margin: 70px 10px;

  }

  .slider .slick-slide.slick-center {
    transform: scale(1.4);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;


  }

  .sliderText {
    padding: 10px;
  }



  .sliderTextP {
    line-height: 1.3;
    padding-bottom: 15px;
    font-size: 12px;
  }

  .sliderTextBtn {
    font-size: 10px;
    margin-bottom: 3px;
  }





  .sliderBox h2 {

    font-size: 3rem;

  }

  .slick-dots {

    margin: 25px 0 0 0;
  }

  .slick-dots button {
    color: transparent;
    outline: none;
    width: 30px;
    /*ドットボタンのサイズ*/
    height: 12px;
    /*ドットボタンのサイズ*/
    display: block;
    /* border-radius:50%; */
    background: #ccc;
    /*ドットボタンの色*/
  }

.manabinaviText p{
  font-size: 16px;
  line-height: 1.8;
}



}
/* ---------- ここまで responsive.css ---------- */
