@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.content {
  margin: 0 auto;
  padding: 50px 20px; padding: 50px 80px;
  width: 100%;
  height: 100%;
  max-width: 1024px; max-width: 996px;
  background-color: #dcffff;
  background: linear-gradient(to bottom, #dcffff, #fff);
  position: relative;
  top: 0;
  box-shadow: 0 0 6px #666;
}

@media screen and (max-width: 768px) {
  .content {
    padding: clamp(20px,6.51041vw,50px) clamp(20px,10.41666vw,80px);
  }
}

h2 {
  font-size: 42px;
  font-weight: bold;
}

.main_area .content .q,
.main_area .content .a {
  position: relative;
  font-size: 24px;
}

.main_area .content .a {
  margin-top: clamp(150px,24.41406vw,250px);
}

.main_area .content .q img {
  margin: 50px auto; margin: 0 auto 50px;
  width: 100%;
  height: auto;
  max-width: 420px;
}

.main_area .content .a img {
  margin: 0 auto 30px;
  width: 100%;
  height: auto;
  max-width: 520px;
}

.main_area .content .a .cap {
  margin-bottom: 80px;
  font-size: 14px;
  text-align: center;
}

p span.line {
  background: linear-gradient(transparent 50%, #FFFE03 50%);
  border-radius: 80% 50% 60% 5%/80% 75% 15% 75%;
}

/***********************

スクロールダウン

***********************/
.scroll_down {
  position:absolute;
  bottom: -5%;
  right:50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #000;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}

/***********************

写真情報

***********************/
.photo_info {
  margin: 0 auto 10rem;
  font-size: clamp(24px,3.125vw,40px);
  font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, メイリオ, Osaka, 'MS PGothic', sans-serif;
}

.photo_info p {
  display: block;
  margin: 1em auto;
  padding: 0;
  font-size: 16px;
  text-align: left;
}

.photo_info span {
  display: block;
  font-size: 43px;
}

/***********************

アコーディオン

***********************/
/* 必須 */
.accordion-content {
  display: none;
}

.accordion-header {
  background-color: #000;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  color: #fff;
}

.accordion-header::before,
.accordion-header::after{
	position:absolute;
	content:'';
	top:1px;
	right:20px;
	bottom:0;
	width:12px;
	height:2px;
	margin:auto;
	background:#fff;
}
.accordion-header::after{
	transform:rotate(-90deg);
	transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
  background-color: #FFF;
  padding: 12px 20px 10px;
  margin-bottom: 20px;
}
  
.accordion-content ul {
  display: flex;
  flex-wrap: wrap;
  padding-right: 5%;
  list-style: none;
  position: relative;
}

.accordion-content ul li {
  margin: 0 1em;
  color: #040000;
  font-size: 17px;

  position: relative;
}

.accordion-content ul li::before {
  content: '';
  width: .5em;
  height: .5em;

  position: absolute;
  top: 50%;
  left: -13px;

  background-image: url("../images/icon_ya.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  transform: translateY(-50%);
}

@media screen and (max-width: 414px) {
  .accordion-content ul {
    padding-right: 0;
    justify-content: space-between;

    padding-inline-start: 14px;
    margin-block-start: 0;
    margin-block-end: 0;
  }
  
  .accordion-content ul li {
    font-size: 16px;
  }
}

.accordion-header span,
.accordion-content span{
  padding-left: 25px;
  position: relative;
}

.accordion-header span::before{
  position: absolute;
  content:"Q";
  top: 2px;
  left: 0;
  color: #fff;
  font-size: 17px;
}


.accordion-content span::before{
    position: absolute;
  content:"A";
  top: 3px;
  left: 0;
  color: #151E2F;
  font-size: 17px;
}

/* hover */
.accordion-header:hover {
  background-color: #000;
}


