@charset "UTF-8";
/* webfont 変数　*/
/* blockeffects */
@-webkit-keyframes fadeIn {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
}

@-webkit-keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/*伸びたブロックを横に追いやるアニメーション*/
@-webkit-keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}
@keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}

@-webkit-keyframes overlayOutR {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
  }
}

@keyframes overlayOutR {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
  }
}

/* upeffects */
@-webkit-keyframes margintop {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes margintop {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    margin-top: 0;
    opacity: 1;
  }
}

/* ofi */

/*====================================================================

index.css

=====================================================================*/
/*--------------------------------------------------------------------/
	main-view
/--------------------------------------------------------------------*/
.main-view {
  position: relative;
  position: relative;
  position: relative;
  margin-right: auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-left: auto;
  padding-top: 80px;
  overflow: hidden;
  background: url(../img/common/pattern_01.png) 0 0 repeat;
}

.main-view__tit {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.main-view__catch {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 32px 6%;
  padding: 2rem 6%;
  text-align: center;
}

.main-view__catch img {
  width: 64%;
  min-width: 200px;
  max-width: 346px;
}

/* common
----------------------------------------------------------------*/
/*--------------------------------------------------------------------/
	contents
/--------------------------------------------------------------------*/
.contents {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.top-txt {
  margin-bottom: 48px;
  margin-bottom: 3rem;
  color: #4B4F51;
}

.top-txt .catch {
  font-weight: 500;
}

.top-txt .caution {
  margin-left: 5px;
  line-height: 1.4;
}

.top-txt .caution:before {
  content: "※";
}

.top-txt .caution:not(:last-child) {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.top-txt .caution a {
  margin-left: 6.4px;
  margin-left: 0.4rem;
  text-decoration: none !important;
  vertical-align: top;
}

.top-txt .caution a:before {
  speak: never;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  content: "";
}

.top-txt .caution a:before {
  margin-right: 1.6px;
  margin-right: 0.1rem;
  vertical-align: baseline;
}

.top-txt .caution a:hover {
  text-decoration: underline !important;
}

@media (min-width: 376px) {
  /*====================================================================/
/*--iPhone 以上--
/====================================================================*/
}

@media (min-width: 576px) {
  /*====================================================================/
/*--スマホ 以上--
/====================================================================*/
  .main-view {
    margin-bottom: 3rem;
  }
  .main-view__catch {
    padding: 3rem 6%;
  }
  .top-txt .catch {
    font-size: 1em;
  }
  .top-txt .caution {
    font-size: 1em;
    text-align: center;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  /*====================================================================/
/*--スマホ以上 タブレット iPadmini未満--
/====================================================================*/
}

@media (min-width: 768px) {
  /*====================================================================/
/*--タブレット　iPadmini 以上--
/====================================================================*/
  .main-view__catch {
    padding: 3rem 4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /*====================================================================/
/*--タブレット iPadmini以上 XGAサイズ iPadPro未満--
/====================================================================*/
}

@media (min-width: 1024px) {
  /*====================================================================/
/*--XGAサイズ　iPadPro 以上--
/====================================================================*/
  .main-view {
    padding-top: 100px;
  }
  .contents {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) and (max-width: 1256px) {
  /*====================================================================/
/*--XGAサイズ iPadPro以上 PC未満--
/====================================================================*/
}

@media (min-width: 1257px) {
  /*====================================================================/
/*---PC 以上--
/====================================================================*/
}

@media (min-width: 1257px) and (max-width: 1639px) {
  /*====================================================================/
/*--px以上 Large PC未満--
/====================================================================*/
}

@media (min-width: 1640px) {
  /*====================================================================/
/*--Large PC 以上--
/====================================================================*/
}

@media (max-width: 1639px) {
  /*====================================================================/
/*--Large PC 未満--
/====================================================================*/
}

@media (max-width: 1256px) {
  /*====================================================================/
/*--PC 未満--
/====================================================================*/
}

@media (max-width: 1023px) {
  /*====================================================================/
/*--XGAサイズ iPadPro 未満--
/====================================================================*/
}

@media (max-width: 767px) {
  /*====================================================================/
/*--タブレット iPadmini 未満--
/====================================================================*/
}

@media (max-width: 575px) {
  /*====================================================================/
/*--iPhone 以下--
/====================================================================*/
}
