@charset "UTF-8";

/*
---------------------------------------------
å…±é€šè¨­å®š
---------------------------------------------
*/

* {
	box-sizing: border-box;
}

body {
	color: #666;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1;
	margin: 0;
	font-size: 16px;
}

a {
  text-decoration: none;
  transition-duration: .5s;
}

a:hover {
  opacity: .8;
}

ol,ul,li {
  list-style: none;
}

main {
  display: block;
}

/*
---------------------------------------------
ãƒ˜ãƒ«ãƒ‘ãƒ¼
---------------------------------------------
*/

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-nowrap {
	display: flex;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-between {
	display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
}

.flex-start {
	display: flex;
  justify-content: flex-start;
	flex-wrap: wrap;
}

.flex-reverse {
	display: flex;
  flex-direction: row-reverse;
	flex-wrap: wrap;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-stretch {
	display: flex;
	justify-content: stretch;
}

.flex-column {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.flex-col-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-col-end {
	display: flex;
	align-items: flex-end;
}

.text-center {
	text-align:center;
}

.text-right {
	text-align: right;
}

.font-normal {
	font-weight: normal;
}

.font-bold {
	font-weight: bold;
}

.pc {
	display:block;
}

.sp {
	display:none;
}

br.sp,img.sp,span.sp {
	display:none;
}

br.pc,img.pc,span.pc {
	display:inline;
}


@media screen and (max-width: 767px) {
	.sp-block {
		display: block;
	}

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

	br.sp,img.sp,span.sp {
		display:inline;
	}

	br.pc,img.pc,span.pc {
		display:none;
	}
}

/* modal */

.modal {
  width: 1000px;
  display: inline-block;
  /* height: 800px; */
  padding: 45px;
}

.modal .pic {
  margin-bottom: 50px;
	text-align:center;
  max-height: 500px;
}

.modal .pic img {
    max-height: 500px;
    max-width: 100%;
}

.modal .name {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
	word-wrap: break-word;
}

.modal .category {
  margin-bottom: 50px;
}

.modal .category li {
  background: #f1f1f1;
  border-radius: 9px;
  display: inline-block;
  padding: 5px 6px;
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.modal .category li.on {
  background: #b6b940;
  color: white;
}

.modal .text {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal .text a {
  color: #666;
  text-decoration: underline;
}

.modal .box {
  background: #f1f1f1;
  padding: 20px 20px 40px;
  border-left: solid 1px #999;
  margin-top: 40px;
}
.modal .box .flex-between{
align-items: flex-start;
}

.modal .box .site {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.modal .box .over {
	background: #000;
	color: white;
	border-radius: 8px;
	padding: 10px 15px;
	display:inline-block;
}

.modal .box .btn-wrap {
  margin-top: 40px;
}

.modal .box .btn-wrap li {
  position: relative;
  background: white;
  border: solid 1px #333;
  color: #333;
  display: block;
  font-size: 14px;
  
  width: calc(calc(100% - 60px) / 3);
}

.modal .box .btn-wrap li:not(:last-child) {
  margin-right: 30px;
}

.modal .box .btn-wrap .btn {
  color: #666;
	display:block;
	height:100%;
	padding: 13px 17px;
}

.modal .box .btn-wrap .btn::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 17px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #b6b940;
  border-right: 3px solid #b6b940;
  transform: rotate(45deg);
}

.modal .box .btn-wrap .btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 20px;
  height: 3px;
  background: #b6b940;
}

.modal .box .category {
  margin-bottom: 0;
}

.modal .box .category li {
  background: white;
  border-radius: 8px;
  padding: 10px 15px;
  margin-right: 15px;
}

.modal .box .category li.is-black {
  background: #000;
  color: white;
}

.modal .box .sub-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}

.modal .box .trial li {
  position: relative;
  display: block;
  font-size: 14px;
 
}

.modal .box .trial li:not(:last-child) {
  margin-right: 10px;
}

.modal .box .trial li a,
.modal .box .trial li span {
  background: #999;
  color: white;
  display: inline-block;
  padding: 10px 15px;
}


@media screen and (max-width: 1000px) {
  .modal {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .modal {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .modal .pic {
    margin-bottom: 20px;
  }

  .modal .name {
    font-size: 20px;
  }

  .modal .category {
		margin-top: 10px;
    margin-bottom: 20px;
  }

  .modal .text {
    font-size: 14px;
  }

  .modal .box {
    margin-top: 20px;
    padding: 10px;
  }

  .modal .box .site {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .modal .box .btn-wrap {
    margin-top: 20px;
  }

  .modal .box .btn-wrap li:not(:last-child) {
    margin-right: 0;
  }

  .modal .box .btn-wrap li {
    margin-bottom: 10px;
    width: 100%;
  }

  .modal .box .sub-title {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .modal .box .trial li:not(:last-child) {
    margin-right: 0;
  }

  .modal .box .trial li {
    margin-bottom: 7px;
    width: auto;
  }

  .modal .box .trial li:nth-child(odd) {
    margin-right: 2%;
  }

  .modal .box .trial li a {
    width: 100%;
  }

	.modal .box .over {
		font-size:12px;
	}

}
