@charset "utf-8";
/* ----------------------------------------------
 共通
---------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
*, ::before, ::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #1f1f1f;
}
img{
    display: block;
    width: 100%;
}
.demobox-sitename{
    font-weight: 700;
    font-size: 18px;
}
ul {
    padding-inline-start: 0px;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
/*ポジション*/
.po_r{
    position: relative;
	display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 0;
}
.po_a{
    position: absolute;
}

.mt10{
    margin-top:10%;
}

.cta_wrap {
	width: 100%;
}

.cta_wrap a {
	width: 100%;
}

@media (max-width: 767px) {
    body{
        margin: 0 auto;
        width: 100%;
        font-size: 0.95rem;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/* ----------------------------------------------
 コンテンツ
---------------------------------------------- */
.wrap{
    width: 750px;
    margin: 0 auto;
}
header{
	position: relative;
    padding: 2% 1%;
    text-align: center;
    display: flex;
    justify-content: space-around;
	align-items: center;
    font-size: 0.8em;
    font-weight: bold;
    color: #de0423;
    line-height: 1.3;
	overflow: hidden;
}
header img{
    width: 100%;
	height: auto;
}
  .font-size{
    font-size: 14px;
  }
.mv_time{
    background-color: #DE0423;
    width: 100%;
    text-align: center;
    top: 0;
    padding: 1.5%;
    font-size: min(3vw,20px);
    font-weight: bold;
    box-sizing: border-box;
    color:#fff;
}

.human {
	width: 22%;
	position: absolute;
	right: 0;
}

.standby {
	position: relative;
	background-color: yellow;
	border: 2px solid #000;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 8px;
}

.bell {
	width: 20px;
	display: inline;
	vertical-align: middle;
}

/* 光らせるためのstyle */
.shine{
  position: relative;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before{
    content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shine 3s ease-in-out infinite;
    position: absolute;
    top: -180px;
    left: 0;
    opacity: 0;
    transform: rotate(45deg);
}
/* 光の動き */
@keyframes shine{
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.cta_tel {
  position: relative;
  top: 145px; /* 下に10pxずらす */
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.cta_line {
  position: relative;
  top: 170px; /* 上に5pxずらす */
}

.cta-contact {
  background-image: url('../img/cta-contact.png');
  background-position: center;
  background-repeat: no-repeat;
  width: 100%; /* 横幅いっぱい */
  height: 865px;
}

.note {
    list-style-type: none;
    font-size:18px;
    margin-left: 15%;
    margin-top: 20%;
}
.note li{
    padding-left: 1em;
    text-indent: -1em;
  }

.cont11 {
	position: relative;
  margin-top: -1px;
}
.cont12 {
  margin-top: -1px;
}
.cont21 {
	position: relative;
  margin-top: -1px;
}
.cont22 {
  margin-top: -1px;
}
.cont32 {
  margin-top: -1px;
}

.attention{
    bottom:-12%;
    width: 95%;
    margin: 0 auto;
    right: 0;
    left: 0;
}
footer{
  background-color: #11A6BA;
    color:#fff;
    padding: 5% 5% 35% 5%;
    font-size: 1.6vw;
}
footer img{
    width: 72%;
    margin: 0 auto 8%;
}
table{
    border-collapse: collapse;
    margin-left: 90px;

}
table th{
    width:22%;
}
table th,table td{
    vertical-align: top;
    text-align:left;
}
footer p{
    text-align:center;
    padding-top: 4%;
}
footer a{
    color: #fff;
}
.float-button__wrap {
    position: fixed;
    bottom: 0%;
    right: 0%;
    left: 0;
    width: 750px;
    margin: 0 auto;
    z-index: 100;
}
.is-hidden{
    visibility: hidden;
    opacity: 0;
    transition: .5s;
}
@media (max-width: 767px) { 
    .wrap{
        width: 100%;
    }
    .mv_time{
        padding: 1.5%;
        font-size: min(3.2vw,20px);
    }
    .note {
        font-size:2.5vw;
    }
    footer{
        font-size:3.0vw;
    }
    .float-button__wrap {
        width:100%;
    }
    .cta-contact {
      height: 500px;
      background-size: cover;
    }
    .cta_tel {
      top: 85px; /* 下に10pxずらす */
    }

    .cta_line {
      top: 100px; /* 上に5pxずらす */
    }
}

/* ----------------------------------------------
 離脱防止用ポップアップ
---------------------------------------------- */
.madal_container {
	background: rgba(0, 0, 0, .7);
	position: fixed;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 10000;
}
.madal_contents {
    width: 29%;
    height: auto;
    position: absolute;
    top: 44%;
    left: 50%;
	  -ms-transform: translate(-50%, -50%);
	  -webkit-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
}
.madal_contents span {
	  cursor: pointer;
	  position: absolute;
	  top: -38px;
	  right: -33px;
	  color: #fff;
	  font-size: 2em;
	  z-index: 11111;
	  font-weight: bold;
}
.active {
	  display: block !important;
	  animation-name: fadeIn;
	  animation-duration: .2s;
	  animation-fill-mode: both;
}

@media only screen and (max-width: 1000px) {
    .madal_contents {
    	  width: 70%;
    	  height: auto;
    	  position: absolute;
    	  top: 25%;
    	  left: 0;
    	  right: 0;
    	  margin: auto;
    	  transform: inherit;
    }
    .madal_contents span {
    	  cursor: pointer;
    	  position: absolute;
    	  top: -26px;
    	  right: -23px;
    	  color: #fff;
    	  font-size: 1.5em;
    	  Z-INDEX: 11111;
    	  font-weight: bold;
    }
}

/* ----------------------------------------------
 プライバシーポリシー
---------------------------------------------- */

.title {
  width: 100%;
  padding: 3% 0 0%;
}

.title div {
  margin: 0 auto;
}

.title div h1 {
  font-size: 2.4em;
  color: #000;
  text-align: center;
  letter-spacing: 0px;
  border-bottom: 2px solid #000;
}

.content , .btn {
  margin: 0 auto;
}

.content {
  margin-top: 0%;
}

.content p {
  font-size: 18px;
}

.content div div {
  margin: 4% 0;
  padding: 3%;
  background: #f0f0f0;
  border-radius: 5px;
}

.content div div:nth-of-type(12) {
  background: #fff;
  padding: 0;
  text-align: center;
}
.content div div:nth-of-type(1) {
  background: #fff;
  padding: 0;
}

.btn {
  padding: 1% 0 5%;
}

.btn a {
  background: #ed4214;
  padding: 2% 5%;
  border-radius: 100px;
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  display: block;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .content , .btn {
    padding: 0 3%;
  }
  .title div {
    padding: 0 3%;
  }
  .title div h1 {
    font-size: 1.6em;
  }
  .title {
    padding: 5% 0 0%;
  }
  header img {
    margin-left: 8px;
    width: 90%;
  }
  .bell {
	  width: 0.95rem;
  }
  .standby {
	  min-width: 200px;
  }
  .content p {
    font-size: 14px;
    line-height: 1.8em;
  }
  .content div div {
    margin: 6% 0;
    padding: 5%;
  }
  .btn{
      padding-bottom:6%;
  }
  .btn a {
    background: #ed4214;
    padding: 3% 5%;
    border-radius: 100px;
    font-size: 1.3em;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    display: block;
    width: 80%;
  }
  section {
    padding-bottom: 10%;
  }
  .font-size{
    font-size: 12px;
  }
}


/* 点滅 */
.blinking{
	animation: blinkEffect 1s ease infinite;
}
@keyframes blinkEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

a.reflection {
	position: relative;
	overflow: hidden;
}
a.reflection:before {
	-moz-animation: is-reflection 4s ease-in-out infinite;
	-moz-transform: rotate(45deg);
	-ms-animation: is-reflection 4s ease-in-out infinite;
	-ms-transform: rotate(45deg);
	-o-animation: is-reflection 4s ease-in-out infinite;
	-o-transform: rotate(45deg);
	-webkit-animation: is-reflection 4s ease-in-out infinite;
	-webkit-transform: rotate(45deg);
	animation: is-reflection 4s ease-in-out infinite;
	background-color: #fff;
	content: " ";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: -180px;
	transform: rotate(45deg);
	width: 30px;
}
/* アニメーションを遅延させる */
a.reflection + a.reflection:before {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}
@keyframes is-reflection {
	0% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes is-reflection {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}