@charset "UTF-8";
/* CSS Document */

html,
body {
	padding: 0;
	margin: 0;
}
img {
	max-width: 100%;
}
ul,li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
}

#lp_wrap {
	position: relative;
	background: #eee;
	font-family: "Oswald", sans-serif;
	letter-spacing: 1px;
}
#lp_wrap .visual {
	position: relative;
}
#lp_wrap .visual .title {
	position: absolute;
	top: 10%;
	left: 5%;
	width: 40%;
}
#lp_wrap .visual .title img {
	display: block;
	margin-bottom: 20px;
}
#lp_wrap .inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 0 1%;
	background: #FFF;
}
#lp_wrap .inner .look {
	display: flex;
	flex-wrap: wrap;
	gap:2%;
	width: 95%;
	margin: 10% auto 5%;
}
#lp_wrap .inner .look .img {
	width: 49%;
	line-height: 0;
	margin-bottom: 2%;
	position: relative;
}
#lp_wrap .inner .look .img::before{
	content: "";
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	background: url("../img/plus.svg") no-repeat;
	background-size: 100%;
	pointer-events: none;
}


.modal-toggle {
  display: none;
}

/* クリックできることを示す */
.image-trigger {
  cursor: pointer;
}

.image-trigger img {
  display: block;
  max-width: 100%;
}


.ktr_modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: grid;
  place-items: center;

  padding: 24px;

  background: rgb(0 0 0 / 70%);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.2s;
	    box-sizing: border-box;
}


.ktr_modal {
  position: fixed; /* absoluteではなくfixedにする */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999; /* サイト全体のヘッダー等より前面に出す */
}

.modal-toggle:checked ~ .ktr_modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__content {
  position: relative;
  max-width: 450px;
  max-height: 80vh;
  padding: 50px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 5px;

  overflow-y: auto;
}


.modal__content img {
  display: block;
  width: 100%;
  height: auto;
}
.modal__content .modal_link a {
	border: 1px solid #000;
	box-sizing: border-box;
	padding: 10px 20px;
	border-radius: 100px;
	font-size: 14px;
	color: #000;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 5% auto;
}
.modal__content .modal_link a span:nth-of-type(1) {
	width: 45%;
	text-align: left;
}
.modal__content .modal_link a span:nth-of-type(2) {
	width: 30%;
	text-align: left;
}
.modal__content .modal_link a span:nth-of-type(2) span {
	font-size: 10px;
}
.modal__content .modal_link a span:nth-of-type(3) {
	width: 25%;
	text-align: right;
	position: relative;
}
.modal__content .modal_link a span:nth-of-type(3)::before {
	content: "|";
	margin-right: 10%;
	
}

.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  font-size: 30px;
	font-weight: 100;
  line-height: 1;
	background: none;

  cursor: pointer;
}
@media only screen and (max-width: 768px)  {
	.modal__content {
	  position: relative;
	  max-width:500px;
	  max-height: 580px;
	  padding: 40px 25px 10px;
	}
	.modal__content .modal_link a span:nth-of-type(1) {
		width: 40%;
	}
	.modal__content .modal_link a span:nth-of-type(2) {
		width: 35%;
		text-align: left;
	}
	.modal__close {
	  position: absolute;
	  top: 0px;
	  right: 0px;
		font-size: 36px;
	}
}


.footer {
    letter-spacing: 1.4px;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    padding: 1% 0;
    line-height: 1em;
    background: #444;
    color: #FFFFFF;
	
}

.animktr {
	opacity: 0;
	transition: 1s all 0s ease;
}
.animktr.acktr {
	opacity: 1;
}
.visual .title img {
	opacity: 0;
	transform: translate(0,40px);
	transition: 1.8s all 0.6s;
}
.visual .title img:nth-of-type(2) {
	transition-delay: 0.9s;
}
.visual .title img:nth-of-type(3) {
	transition-delay: 1.2s;
}
.visual.acktr .title img {
	opacity: 1;
	transform: translate(0px);
}