@charset "UTF-8";

.w_min_100 {
	min-width: 100px;
}
.w_min_125 {
	min-width: 125px;
}
.w_min_150 {
	min-width: 150px;
}
.w_min_200 {
	min-width: 200px;
}
.w_min_300 {
	min-width: 300px;
}
.w_min_500 {
	min-width: 500px;
}
.w_max_150 {
	max-width: 150px;
}
.w_max_200 {
	max-width: 200px;
}
.w_max_250 {
	max-width: 250px;
}
.w_max_300 {
	max-width: 300px;
}
.w_max_500 {
	max-width: 500px;
}

.view_timer {
	display: none;
}

.main_pht_top {
  overflow: hidden;
  transform-origin: top center;
  animation: loading_pht_top 5s;
	z-index: -1000;
	position: relative;
	max-height: 80vh;/* 枠の高さ */
}
.main_pht_top img {
	width: 100%;
	height: auto;
}

@keyframes loading_pht_top {
  0% {opacity: 0;transform: scale(1);}
  100% {opacity: 1;transform: scale(1);}
}

.shadow {
	-moz-box-shadow: 1px 1px 2px 2px #CCC;
	-webkit-box-shadow: 1px 1px 2px 2px #CCC;
	box-shadow: 1px 1px 2px 2px #CCC;
}

/* jQueryでスクロール時に要素をフェードイン */
.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(70px);
  transition: opacity 2s, visibility 1s, transform 1s;
}

.zoom_in {
  /* 最初は非表示 */
  opacity: 0;
  overflow: hidden;
  transform-origin: top center;
  animation: loading_zoom_in 3s;
	z-index: 1000;
	position: relative;
}
@keyframes loading_zoom_in {
  0% {opacity: 0;transform: scale(0.8);}
  100% {opacity: 1;transform: scale(1);}
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/* その場で */
.fadeIn {
animation-name:fadeInAnime;
animation-duration:5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.main {
  /*overflow-x: hidden;*/
  transform-origin: top center;
  animation: loading 3s;
}
@keyframes loading {
  0% {opacity: 0;transform: scale(1);}
  100% {opacity: 1;transform: scale(1);}
}

.scale01 {
  overflow-x: hidden;
  transform-origin: top center;
  animation: loading_scale01 3s;
}
@keyframes loading_scale01 {
  0% {opacity: 0;transform: scale(1.3);}
  100% {opacity: 1;transform: scale(1);}
}

.col-custom01 {
	width: auto;
}

/* 四角く一色で塗りつぶしたボタン */
a.background_btn01 {
  display: inline-block;
  width: 100%;
  position: relative;
  background: #1377BA; /* 背景色 */
  border: 2px solid #1377BA;
  padding: 0.8em 0.8em 0.8em 2.6em;
  font-weight: 500;
  color: #fff; /* 文字色 */
  text-decoration: none;
  transition-duration: 0.3s;
	font-size: clamp(1.8rem, calc(1.8rem + ((48rem - 100vw) * 0.1)), 2.0rem);
	text-align: left;
}
a.background_btn01:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff; /* 矢印の色 */
  border-right: 2px solid #fff; /* 矢印の色 */
  transform: rotate(45deg);
  position: absolute;
  top: 53%;
  left: 25px;
  margin-top: -6px;
}

a.background_btn01.active:before {
  transform: rotate(135deg);
}
/* マウスオーバーした際のデザイン */
a.background_btn01:hover,
a.background_btn01.active {
	border: 2px solid #1377BA;
	background: #fff; /* 背景色 */
  color: #1377BA; /* 文字色 */
}
a.background_btn01:hover:before,
a.background_btn01.active:before {
  border-top: 2px solid #1377BA; /* 矢印の色 */
  border-right: 2px solid #1377BA; /* 矢印の色 */
}

.btn0102,
a.btn0102,
button.btn0102 {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 1rem;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
	width: 100%;
	margin: 10px 0;
}
/* 表示領域が576px以上の場合に適用するスタイル
-----------------------------------------------------*/
@media print, screen and (min-width: 576px) {
.btn0102,
a.btn0102,
button.btn0102 {
		max-width: 350px;
	}
}
a.btn-border01 {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #FF941E;
  border-radius: 5px;
  color: #fff;
  background: #FF6600;
	font-size: clamp(1.8rem, calc(1.8rem + ((1vw - 0.36rem) * 0.5435)), 2.0rem);
}
a.btn-border01:hover {
  color: #fff;
  background: #FF8600;
}
.btn-border02 {
  border: 2px solid #EEE;
  border-radius: 5px;
  background: #CCC;
  color: #666;
	font-size: clamp(1.6rem, calc(1.6rem + ((1vw - 0.36rem) * 0.5435)), 1.8rem);
}
