@charset "UTF-8";

html, body{
font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
background: #000;
width: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
}


.content{
margin: 0 auto;
max-width: 800px;
width: 100%;
background: #FFF;
}

.content img{
width: 100%;
vertical-align: bottom;
}

footer{
margin-top: 50px;
padding-top: 1.75em;
padding-bottom: 1.5em;
background: #333;
}

/* コピーボタン */
.copy_btn {
width:88%!important;
padding: 12px 0;
margin-left: auto!important;
margin-right: auto!important;
color:#ffffff;
font-weight:bold;
background: #054B56;
border: solid 2px #054B56;
border-radius: 3px;
transition: .4s;
text-align: center;

}

.copy_btn:hover {
background: #ffffff;
color: #000000;
}
.copy_btn:hover {
cursor: pointer;
}

@media(max-width:640px){
footer{
font-size: 12px;
}
}

footer .link{
text-align: center;
padding-bottom: 0.25em;
}

footer .link a{
color: #FFF;
}


div.line_button {
width: 88% !important;
margin: 0px auto;
	padding-top: 3%;
	margin-bottom: 5%;
transition: .4s;
}

div.line_button:hover {
opacity: 0.7;
}

.slick-dotted.slick-slider{
	margin-left: -40px;
}

.slick-next:before, .slick-prev:before{
color:#000;
}

.slick-next {
	right: 0px;
	z-index: 99;
}
.slick-prev {
	left: 40px;
	z-index: 99;
}

/* 追従ボタン */
.fixed-btn {
  position: fixed;
  bottom: 22px;
  left: 50%;
  width: min(88vw, 41.25rem);
  transform: translateX(-50%);
  margin-inline: auto;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s;
  z-index: 10;
}

.fixed-btn.is-show {
  visibility: visible;
  opacity: 1;
}

/* ボタン内画像に対する光アニメーション */
.glow-btn-img{
  display: block;
  position: relative;
  z-index: 199;
  overflow: hidden;
  border-radius: 100px;
}

/* 擬似要素で光を作成（imgの上に） */
.fixed-btn .glow-btn-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 99;
}

/* is-showの時にアニメーションを開始 */
.fixed-btn.is-show .glow-btn-img::after {
  animation: shine-on-img 2s ease-in-out infinite;
}

/* アニメーション定義 */
@keyframes shine-on-img {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}





@media(max-width:640px){
div.cv_area article p {
	font-size: 0.6rem;
}
}


section.green {
	background: #d2e6e5;
}
section.green2 {
  background: -moz-linear-gradient(top, #e1ece4, #cbe1d5);
  background: -webkit-linear-gradient(top, #e1ece4, #cbe1d5);
  background: linear-gradient(to bottom, #e1ece4, #cbe1d5);

}

.Annotation{
    font-size: x-small;
    padding: 10px;
    color: gray;
    text-align: center;
}

/* FAQ */
.details {
    height: 71px;
    transition: all ease-in-out .3s;
    border-left: 2px solid #C0D9D9;
    border-right: 2px solid #C0D9D9;
    box-sizing: border-box;
}
.details:last-of-type {
    border-bottom: 2px solid #C0D9D9;
}
.details[open] {
    height: 200px;
}
.details-summary {
    display: block;
    padding: 20px;
    border-top: 1px solid #C0D9D9;
    font-size: 14px;
    font-weight: bold;
    transition: all ease-in-out .3s;
}
.details-summary:hover {
    cursor: pointer;
}
.details-summary::-webkit-details-marker {
    display: none;
}
.details-content {
    margin: 10px;
    padding: 10px 20px;
    height: 70px;
    overflow: hidden;
    overflow-y: auto;
    background-color: #ededed;
    font-size: 12px;
}
.details[open] .details-content {
    animation: fadeIn .3s ease;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

/* アコーディオンの右側に＋マーク */
.details-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.details-summary::after {
  content: '+';
  font-size: 18px;
  color: #054B56;
  transition: transform 0.3s ease;
  margin-left: auto;
}

/* 開いているときは「−」に変更 */
.details[open] .details-summary::after {
  content: '−';
}

.details-summary::after {
  content: '+';
  font-size: 18px;
  color: #054B56;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.details[open] .details-summary::after {
  content: '−';
  transform: rotate(180deg);
}

.details-summary::before {
  content: 'Q. ';
  font-weight: bold;
  color: #054B56;
  margin-right: 0.5em;
}

.details-content::before {
  content: 'A. ';
  font-weight: bold;
  color: #F75151;
  margin-right: 0.5em;
}
