@charset "utf-8";
/*==========================================================================

   icon

==========================================================================*/
@font-face {
  font-family: 'jamdstudio';
  src: url('../font/jamdstudio.eot');
  src: url('../font/jamdstudio.eot#iefix') format('embedded-opentype'),
       url('../font/jamdstudio.woff2') format('woff2'),
       url('../font/jamdstudio.woff') format('woff'),
       url('../font/jamdstudio.ttf') format('truetype'),
       url('../font/jamdstudio.svg#jamdstudio') format('svg');
  font-weight: normal;
  font-style: normal;
}
.m-jamd-icon:before {
  font-family: "jamdstudio";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-jamd-up-thin:before { content: '\e800'; }
.i-jamd-right-thin:before { content: '\e801'; }
.i-jamd-left-thin:before { content: '\e802'; }
.i-jamd-down-thin:before { content: '\e803'; }

.i-jamd-up-mini-r:before { content: '\e804'; }
.i-jamd-right-mini-r:before { content: '\e805'; }
.i-jamd-left-mini-r:before { content: '\e806'; }
.i-jamd-down-mini-r:before { content: '\e807'; }

.i-jamd-up-medium:before { content: '\e808'; }
.i-jamd-right-medium:before { content: '\e809'; }
.i-jamd-left-medium:before { content: '\e80a'; }
.i-jamd-down-medium:before { content: '\e80b'; }

.i-jamd-up-bold:before { content: '\e80c'; }
.i-jamd-right-bold:before { content: '\e80d'; }
.i-jamd-left-bold:before { content: '\e80e'; }
.i-jamd-down-bold:before { content: '\e80f'; }

.i-jamd-attention-circle:before { content: '\e810'; }
.i-jamd-attention:before { content: '\e811'; }
.i-jamd-instagram:before { content: '\f16d'; }
.i-jamd-facebook-sq:before { content: '\f30e'; }


/*==========================================================================

   hr

==========================================================================*/
hr {
    margin: 60px auto;
    width: 90px;
    height: 1px;
    background: #888;
}
@media screen and (min-width: 769px) {
	hr {
		margin: 100px auto;
	}
}


/*==========================================================================

   table

==========================================================================*/
.m-table01 {
	width: 100%;
	margin-bottom: -1px;
	border-collapse: collapse;
	border-bottom: 1px solid #ebebeb;
	font-size: 16px;
	line-height: 1.8;
	background: #fff;
}
.m-table01 caption {
	font-size: 16px;
	padding: 20px;
	text-align: center;
	border-top: 1px solid #aeaeae;
	border-right: 1px solid #aeaeae;
	border-left: 1px solid #aeaeae;
	background: #e5e4e4;
}
.m-table01 th {
	padding: 17px;
	vertical-align: middle;
	border-top: 1px solid #ebebeb;
}
.m-table01 td {
	padding: 17px;
	vertical-align: middle;
	border-top: 1px solid #ebebeb;
}
.m-table01 thead th {
	text-align: center;
	background-color: #e5e4e4;
}
.m-table01 tbody th {
	text-align: left;
	font-weight: normal;
	background-color: #f9f9f9;
}


/*==========================================================================

   btn

==========================================================================*/
.m-btn {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition-duration);
    transition-property: color, background-color, border-color;
}
.m-btn01 {
    color: #fff;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background: var(--main-color);
}
.m-btn01:hover {
	color: var(--main-color);
	background: #fff;
}
.m-btn02 {
	position: relative;
    display: block;
    padding: 19px;
    font-size: 14px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
}
.m-btn02::before,
.m-btn02::after {
    content: "";
    position: absolute;
    right: 15px;
    background-color: currentColor;
	transition: .3s ease;
}
.m-btn02::before {
    top: 50%;
    width: 20px;
    height: 1px;
    transform-origin: right;
}
.m-btn02::after {
    top: calc(50% - 2px);
    width: 6px;
    height: 1px;
    transform: rotate(45deg);
    
}


/*==========================================================================

   slider

==========================================================================*/
.m-slider01 {
    position: relative;
}
.m-slider01.slick-dotted.slick-slider {
	margin-bottom: 20px;
}
.m-slider01 .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 12px;
}
.m-slider01 .slick-dots li {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.m-slider01 .slick-dots li button:before {
	font-size: 15px;
	color: #e2dfdf;
	opacity: 1;
}
.m-slider01 .slick-dots li.slick-active button:before {
	color: #bab7b1;
}
.m-slider01-arrow {
    position: absolute;
    top: calc(50% - 23px);
    /*width: 23px;
    height: 40px;*/
    transform: translate(0, -50%);
    /*-webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #fff;
	mask-size: 100% 100%;*/
	cursor: pointer;
    z-index: 10;
}
.m-slider01-arrow:before {
    font-size: 40px;
	color: #fff;
	text-shadow: 0px 0px 7px rgba(0, 0, 0, .5);
}

.m-slider01-arrow.is-next {
	right: 0;
    /*-webkit-mask-image: url(../svg/arrow-r.svg);
    mask-image: url(../svg/arrow-r.svg);*/
}
.m-slider01-arrow.is-prev {
	left: 0;
    /*-webkit-mask-image: url(../svg/arrow-l.svg);
    mask-image: url(../svg/arrow-l.svg);*/
}

@media screen and (min-width: 769px) {
	.m-slider01-arrow {
		/*width: 27px;
		height: 45px;*/
	}
	.m-slider01-arrow:before {
		font-size: 60px;
	}
	.m-slider01-arrow.is-next {
		right: -3.75em;
	}
	.m-slider01-arrow.is-prev {
		left: -3.75em;
	}
}


/*==========================================================================

   pagetop

==========================================================================*/
.m-pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #fff;
    color: #666;
    transition: var(--transition-duration);
    z-index: 1000;
	display: none;
}
.m-pagetop-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
	padding: 10px;
	color: #666;
}
.m-pagetop-title {
    font-size: 12px;
}


/*==========================================================================

   form

==========================================================================*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea,
select {
    position: relative;
    top: -5px;
    border: 1px solid #ccc;
    padding: 10px 9px;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 5px;
    color: #777;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    display: block;
    background: #fff;
}
input[type="submit"] {
    display: block;
    margin: 0 auto;
    padding: 15px 100px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid var(--main-color);
	border-radius: 5px;
    background: var(--main-color);
    transition: color var(--transition-duration) border-color var(--transition-duration) background-color var(--transition-duration);
}
input[type="submit"]:hover {
    color: var(--main-color);
    font-size: 15px;
    background: #fff;
}
:placeholder-shown {
    line-height: 1.8;
}


/*==========================================================================

	animation
	
==========================================================================*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.a-zoomUp {
  animation: zoomUp 10s linear 0s normal both;
}
