@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ローディング画面
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

#loading.is-active {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.loading-anim {
  position: relative;
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: url("../../_images/_common/loading-bg.jpg") #fff no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-anim.is-active {
  opacity: 1;
  visibility: visible;
  z-index: -1;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .loading-anim img {
    width: 80%;
    margin: 0 auto;
  }
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  padding-left:20px;
  padding-right: 20px;
  margin: 0 auto;
  overflow: hidden;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding:0 20px;
   margin: 0 auto;
   overflow: hidden;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 30px;
  padding-bottom: 30px;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 20px;
  margin: 0 auto;
  overflow: hidden;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}


/* ****************************************************************************************************
   * 重要なお知らせ
**************************************************************************************************** */
/* -------------------------------------------------------------------------------------------------
   * 共通
/* ---------------------------------------------------------------------------------------------- */

.important {
  padding-top: 130px;
}
.important .inner {
  border-radius: 20px;
  background: #f4f7f8;
  padding: 30px 20px 50px;
}

/* -------------------------------------------------------------------------------------------------
   * コンテンツエリア
/* ---------------------------------------------------------------------------------------------- */

.important .area-box {
  max-width: 800px;
  margin: 0 auto;
}

/* 要素が無い場合*/
.important .no-padding {
  min-height: 400px;
}

/* -------------------------------------------------------------------------------------------------
   * タイトル
/* ---------------------------------------------------------------------------------------------- */

.important .title {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #808080;
  padding-left: 2.55em;
}
.important .title::before {
  content: "";
  display: block;
  background: url("../../_images/_common/icon-info.png") no-repeat;
  width: 37px;
  height: 37px;
  position: absolute;
  top: 0;
  left: 0;
}

/* -------------------------------------------------------------------------------------------------
   * 内容
/* ---------------------------------------------------------------------------------------------- */

.important .item {
  position: relative;
}

.important .item ~ .item {
  padding-top: 50px;
}

.important .item:nth-child(n+1)::after {
  content: "";
  display: block;
  max-width: 640px;
  margin: 0 auto;
  border-bottom: 5px dotted #aeaeae;
  position: absolute;
  bottom: -2.8em;
  left: 0;
  right: 0;
}

.important .item:last-child::after {
  display: none;
}

.important .item .text {
  font-weight: bold;
  color: #333333;
  font-size: 1.8rem;
}

.important .item .text-1 {
  color: #333333;
}

.important .item .day {
  display: block;
  text-align: right;
  font-size: 1.4rem;
  color: #808080;
}


.important .item a {
  color: #0000ff;
}
.important .item a:hover {
  text-decoration: underline;
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1300px) {

}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

}


/* ****************************************************************************************************
   * お知らせ
**************************************************************************************************** */
/* -------------------------------------------------------------------------------------------------
   * 共通
/* ---------------------------------------------------------------------------------------------- */

.topics {
  padding-top: 70px;
}
.topics .inner {
  border-radius: 20px;
  background: #f4f7f8;
  padding: 30px 20px 50px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  .topics {
    margin-top: min(18vh, 150px);
  }

}

/* -------------------------------------------------------------------------------------------------
   * コンテンツエリア
/* ---------------------------------------------------------------------------------------------- */

.topics .area-box {
  max-width: 800px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------------------------------
   * タイトル
/* ---------------------------------------------------------------------------------------------- */

.topics .title {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #808080;
  padding-left: 2.55em;
}
.topics .title::before {
  content: "";
  display: block;
  background: url("../../_images/_common/icon-info.png") no-repeat;
  width: 37px;
  height: 37px;
  position: absolute;
  top: 0;
  left: 0;
}

/* -------------------------------------------------------------------------------------------------
   * 内容
/* ---------------------------------------------------------------------------------------------- */

.topics .item {
  position: relative;
}
.topics .item ~ .item {
  padding-top: 50px;
}

.topics .item:nth-child(n+1)::after {
  content: "";
  display: block;
  max-width: 640px;
  margin: 0 auto;
  border-bottom: 5px dotted #aeaeae;
  position: absolute;
  bottom: -2.8em;
  left: 0;
  right: 0;
}

.topics .item .text {
  font-weight: bold;
  color: #333333;
  font-size: 1.8rem;
}

.topics .item .text-1 {
  color: #333333;
}

.topics .item .day {
  display: block;
  text-align: right;
  font-size: 1.4rem;
  color: #808080;
}

.topics .item a {
  color: #0000ff;
}
.topics .item a:hover {
  text-decoration: underline;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1300px) {

}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

}

