@charset "UTF-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
  line-height: 1.618;
  color: #151a2a;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}


p {
  font-size: 18px;
}



@media(max-width: 599px) {
  p {
  font-size: 17px;
}


}

img {
  max-width: 100%;              /* 1 */
  height: auto;                 /* 1 */
  vertical-align: middle;       /* 2 */
  font-style: italic;           /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover;       /* 4 */
  shape-margin: 0.75rem;        /* 5 */
}



/* リンク
======================================================================= */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}



/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}

/* =======================================================================
  CTA
======================================================================= */

.cta {
  text-align: center;
  padding: 50px;
}

.yureru-j {animation: yureru-j 2s infinite;}
@keyframes yureru-j {
0% {transform: translate(0px, 2px);}
5% {transform: translate(0px, -2px);}
10% {transform: translate(0px, 2px);}
15% {transform: translate(0px, -2px);}
20% {transform: translate(0px, 2px);}
25% {transform: translate(0px, -2px);}
30% {transform: translate(0px, 0px);}
}

@media (max-width: 599px) {
  .cta {
    padding: 20px;
  }
}


/* =======================================================================
  video
======================================================================= */

.video-container {
  position: relative;
  width: 100%;
}

.video-full {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* 動画がクリックされるようにする */
  transition: opacity 0.3s ease;
  opacity: 1;
}

.playing .play-button {
  opacity: 0;
}

.play-button svg {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-container:hover .play-button svg {
  opacity: 0.6; /* 薄くなる */
}

/* =======================================================================
  プラポリ・特商法
======================================================================= */

.subpage_title{
margin:0;
padding:30px 0;
font-size:100%;
font-weight:bold;
line-height:150%;
text-align:center;
}
.subpage_contents{
margin:0 30px 45px 30px;
padding:0;
}
.subpage_contents p{font-size:80%;}
table.info{
width:100%;
border-collapse:separate;
margin:0;
}
table.info th{
padding:0 0 5px 0;
font-size:80%;
line-height:150%;
text-align:left;
border-bottom:solid 1px #666;
display:block;
}
table.info td{
padding:10px 0 20px 0;
font-size:80%;
line-height:150%;
display:block;
}
@media screen and (min-width:769px) {
.subpage_title{padding:45px 0;font-size:18px;}
.subpage_contents{margin:0 60px 60px 60px;}
.subpage_contents p{font-size:14px;line-height:180%;}
table.info th{
width:180px;
padding:20px 0;
font-size:14px;
line-height:150%;
text-align:left;
border-bottom:solid 1px #666;
display:table-cell;
}
table.info td{
padding:20px 0 20px 15px;
font-size:14px;
line-height:150%;
border-bottom:solid 1px #ddd;
display:table-cell;
}
}


/* =======================================================================
  footer
======================================================================= */

.footer {
  background-color: #EE8185;
  padding: 20px;
}

.footer__inner {
  padding: 20px auto;
  text-align: center;
  color: #fff;
}

.footer__inner p {
  font-size: 10px;
}

.footer a {
  color: #fff;
}

@media (max-width: 599px) {
  .footer__inner {
    text-align: center;
    font-size: 10px;
    color: #fff;
  }
}

