﻿/*----------------------------
 common
-----------------------------*/

/*===== layout =====*/

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.section-inner {
  width: 100%;
  position: relative;
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
}

.col-2 {
  width: 100%;
  display: table;
}

.col-2 > div,
.col-2 > li {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

.display-pc {
  display: block !important;
}

.display-sp {
  display: none !important;
}

.none {
  display: none !important;
}

#main {
  width: 100%;
  position: relative;
}

#contents {
  background: url(../img/common/bg_slash.gif);
}

.outer {
  padding: 40px 10px 60px;
}

.ttl-h2 {
  position: relative;
  background: #0068b7;
  text-align: center;
  padding: 30px 10px;
}

.ttl-h2::after {
  content: "";
  height: 0;
  position: absolute;
  width: 0;
  border: 10px solid transparent;
  border-top-color: #0068b7;
  border-width: 30px 35px 30px 35px;
  top: 99%;
  left: 50%;
  margin-left: -35px;
  z-index: 10;
}

.shine {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

.shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.shine:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
@-webkit-keyframes shine {
  100% {
		left: 125%;
	}
}
@keyframes shine {
  100% {
		left: 125%;
	}
}

.view-off {
  visibility: hidden;
}

.view-on {
  visibility: visible;
}

.fade {
  position: relative;
}
.topfade {
  opacity: 0;
  position: relative;
}

.fadetop {
  top: 0px;
  position: relative;
}

.fadeleft {
  left: 0px;
  position: relative;
}

.fade1,
.fade2 {
    opacity: 0;
    left: -50px;
    position: relative;
}



/*===== header =====*/

header {
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  background: rgba(255,255,255,1);
  border-bottom: 4px solid #0068b7;
  padding: 15px 0;
}

header img {
  width: 100%;
}

header > div {
  display: flex; 
}

header > div h1 {
  width: 53%;
}

header > div h1 img {
  width: 45%;
}

header > div h1 strong {
  font-size: 19px;
  font-weight: bold;
  position: relative;
  top: -20px;
}

header > div .cf {
  margin-left: auto;
  width: 43%;
}

header > div .cf li {
  float: left;
  width: 210px;
  margin-right: 10px;
}

header > div .cf li:last-child {
  margin-right: 0;
}

.header-back {
  animation: fade-out .3s ease-out 0s alternate forwards;
  position: relative;
  z-index: 101;
}

@keyframes fade-out {
  0%{
	opacity: 0;
  top: 30px;
  }
  100%{
	opacity: 1;
	top: 0;
  }
}

.header-fixed {
  animation: fade-in .6s ease-out 0s alternate forwards;
  /*position: fixed;*/
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  padding: 10px 0;
}

.header-fixed > div h1 {
  width: 45%;
  margin-top: .25vw;
}

.header-fixed > div h1 img {
  width: 37%;
}

.header-fixed > div h1 strong {
  font-size: 16px;
  top: -15px;
}

.header-fixed > div .cf {
  width: 35%;
}

.header-fixed > div .cf li {
  width: 49%;
  margin-right: 2%;
}

@keyframes fade-in {
  0%{
	opacity: 0;
	top: -70px;
  }
  100%{
	opacity: 1;
	top: 0;
  }
}



/*===== fv =====*/

#fv {
  overflow: hidden;
}

#fv-upper {
  background: url(../img/fv/bg_upper.gif);
  padding: 30px 0;
  position: relative;
}

#fv-upper p:first-of-type {
  text-align: center;
  margin-bottom: 15px;
}

#fv-upper figure {
  text-align: center;
  position: relative;
}

#fv-upper figure:last-of-type {
  margin-top: -20px;
}

#fv-lower {
  background: url(../img/fv/bg_lower.jpg) no-repeat center top;
  min-height: 600px;
  position: relative;
}

#fv-lower h2 {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  top: -20px;
}

#fv-lower h2 img {
  display: block;
  margin-left: auto;
}

#fv-card {
  background: url(../img/fv/bg_obi.gif);
  max-height: 115px;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 10;
}

#fv-card figure {
  text-align: center;
  position: relative;
  margin-top: -203px;
}

.comments {
  padding: 20px 10px;
}

.comments p {
  margin-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  line-height: 1.4;
}

.comments p:not(:last-child) {
  margin-bottom: 5px;
}





/*===== conversion =====*/

.conversion {
  background: url(../img/conversion/bg.gif);
  padding: 20px 10px 60px; 
}

.conversion h2 {
  text-align: center;
}

.conversion .col-2 {
  max-width: 940px;
  margin: -30px auto 0;
  position: relative;
}

.conversion .col-2 > div:first-child {
  vertical-align: bottom;
  text-align: center;
  padding-right: 10px;
}

.conversion .col-2 > div:last-child {
  padding-left: 10px;
  text-align: center;
}

.conversion .col-2 > div figure {
  margin-bottom: 10px;
}




/*===== トラブル時の弁護費用の強いミカタ =====*/

.content {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.img-left {
  float: left;
  width: 25%;
  margin-right: 5.2%;
}

.img-right {
  float: right;
  width: 25%;
  margin-left: 5.2%;
}

.txt-highlight {
  position: relative;
  display: inline-block;
  color: #0068b7;
  font-size: 34px;
  font-weight: bold;
}

.txt-highlight::after {
  content: "";
  background: #fef102;
  height: 7px;
  display: block;
  width: 100%;
  position: relative;
  left: 0;
  bottom: 10px;
}

.trouble-intro .trouble-intro-inner:not(:last-of-type) {
  border-bottom: 1px solid #b4b4b4;
  padding-bottom: 4.16%;
  margin-bottom: 4.16%;
}

.trouble-intro .trouble-intro-inner > div {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 83.3%;
  margin: 0 auto;
	flex-basis: auto;
	flex-shrink: 0;
}

.trouble-intro .trouble-intro-inner > div p {
  font-size: 25px;
  line-height: 1.8;
  overflow: auto;
  text-align: center;
}

.trouble-intro .trouble-intro-inner:nth-of-type(1) img {
  width: 30%;
  margin-right: 5%;
	flex-basis: auto;
	flex-shrink: 0;
}

.trouble-intro .trouble-intro-inner:nth-of-type(2) img {
  width: 30%;
  margin-left: 5%;
  order: 2;
	flex-basis: auto;
	flex-shrink: 0;
}

.txt-cause {
  font-size: 40px;
  font-weight: bold;
  border: 5px solid #0068b7;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 4.16% 2%;
	margin-top: 4.16%;
}

.txt-cause strong {
  font-weight: bold;
  color: #ff6600;
}

.txt-cause span {
  color: #0068b7;
}

.ttl-h3 {
  display: inline-block;
  position: relative;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  margin: 0 auto 3.125%;
  text-align: center;
}

.ttl-h3 span::after {
  content: "";
  display: block;
  width : calc(100% - 160px);
  left: 160px;
  height: .5vw;
  position: absolute;
  bottom: 1.5vw;
  background-color: #fef102;
}

.ttl-h3 img {
  position: relative;
  display: inline-block;
  width: 140px;
  height: auto;
  margin-right: 20px;
  vertical-align: middle;
}

#trouble-case {
	margin-top: 4.16%;
	background: url(../img/common/bg_arrow.png) no-repeat center bottom/contain;
	padding-bottom: 85px;
}

#trouble-case ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
	margin-bottom: -40px;
}

#trouble-case ul > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 40px;
  border-radius: 8px;
  background: #0068b7;
	padding: 10px;
}

#trouble-case ul > li:nth-child(2n) {
  margin-right: 0;
}

#trouble-case ul > li > div {
	border-radius: 5px;
	display: flex;
	background: #fff;
	height: 100%;
	flex-direction: column;
}

#trouble-case ul > li h4 img {
  border-radius: 5px 5px 0 0;
}

#trouble-case ul > li .inner {
  padding: 20px;
}

#trouble-case ul > li .inner ol {
	font-size: 0;
  margin-bottom: -20px;
}

#trouble-case ul > li .inner ol li {
	display: inline-block;
  width: 50%;
  font-size: 20px;
  margin-bottom: 20px;
	background: url(../img/sec01/icon_check.jpg) no-repeat left center/24px 24px;
	padding: 2px 0 2px 30px;
}

#trouble-case ul > li .inner h5 {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #0068b7;
  margin: 30px 0 20px;
}

#trouble-case ul > li .inner h5::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 40px;
  border-top: 2px solid #68b5e7;
  margin-right: 10px;
  top: -5px;
}

#trouble-case ul > li .inner h5::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 40px;
  border-top: 2px solid #68b5e7;
  margin-left: 10px;
  top: -5px;
}

#trouble-case ul > li .inner dl dt {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background: #0068b7;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

#trouble-case ul > li .inner dl dd p {
  font-size: 18px;
}

#trouble-case ul > li .inner dl dd .price {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  margin: 0 auto;
}

#trouble-case ul > li .inner dl dd .price::after {
  content: "";
  display: block;
  width : 100%;
  left: 0;
  height: 7px;
  position: absolute;
  bottom: 0;
  background-color: #fef102;
}

#trouble-case ul > li .inner dl dd .price span {
  color: #0068b7;
  margin-right: 10px;
}

#trouble-case ul > li .inner dl dd .price em {
  color: #ff6600;
  font-size: 40px;
  margin-right: 5px;
}

#mikata-about {
  background-image: -moz-linear-gradient( 90deg, rgb(0,104,183) 65%, rgb(104,181,231) 99%);
  background-image: -webkit-linear-gradient( 90deg, rgb(0,104,183) 65%, rgb(104,181,231) 99%);
  background-image: -ms-linear-gradient( 90deg, rgb(0,104,183) 65%, rgb(104,181,231) 99%);
  min-height: 420px;
	padding: 30px 0;
}

#mikata-about h3 {
	margin-bottom: 20px;
  text-align: center;
}

#mikata-cost {
  background: url(../img/common/bg_grid.gif);
  border: 10px solid #0068b7;
  border-radius: 10px;
  padding: 30px;
}

#mikata-cost figure:first-of-type {
  margin-bottom: 20px;
}

#mikata-cost .comments {
  max-width: 880px;
  padding: 0 20px;
  margin: 30px auto 40px;
}

#mikata-cost ul {
  max-width: 880px;
  margin: 0 auto;
}

#mikata-cost ul li {
  width: 430px;
  float: left;
  margin-right: 20px;
}

#mikata-cost ul li:last-child {
  margin-right: 0;
}



/* 補償 */

.compensation {
  background: url(../img/compensation/bg.jpg) no-repeat center top/cover;
  min-height: 660px;
  padding: 30px 10px 40px;
}

.compensation .inner {
  background: url(../img/compensation/bg_grid.png);
  border: 8px solid #0068b7;
  border-radius: 8px;
  max-width: 900px;
  padding: 30px;
  margin: 30px auto 0;
  text-align: center;
}

.compensation .inner figure + p {
  font-size: 30px;
  margin: 20px 0;
  font-weight: bold;
  letter-spacing: 1px;
}

.compensation .inner .comments {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding: 0;
}



/* マンガ */

.manga {
  background: url(../img/manga/bg.gif);
  padding: 50px 0 60px;
}

.manga h3 {
  max-width: 900px;
  margin: 0 auto 20px;
}

.manga-slide {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0 20px;
  background: #fff;
  border: 5px solid #0068b7;
  border-radius: 5px;
  position: relative;
}

.manga-slide h4 {
  position: relative;
  display: inline-block;
  text-align: center;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  margin: 0 auto 30px;
  padding: 14px 52px;
  font-size: 40px;
  font-weight: bold;
  background: url(../img/manga/icon_quart.png) no-repeat left top/42px 34px,url(../img/manga/icon_quart2.png) no-repeat right bottom/42px 34px;
}

.manga-slide img {
  display: block;
  max-width: 830px;
  margin: 0 auto 20px;
}

.slick-track {
  position: relative;
  left: 0;
  z-index: 11;
}

.slider-nav,
.slider-nav2 {
  position: relative;
  text-align: center;
  display: inline-block !important; 
  width: auto;
  margin: 0 auto;
  left: 50% ;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}

.slider-nav li,
.slider-nav2 li {
  background: #ddd;
  border-radius: 50%;
  width: 100px !important;
  height: 100px !important;
  color: #666;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
  outline: none;
  cursor: pointer;
  margin-right: 20px;
}

.slider-nav li:last-child,
.slider-nav2 li:last-child {
  margin-right: 0;
}

.slider-nav li span,
.slider-nav2 li span {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.slider-nav li.slick-active,
.slider-nav2 li.slick-active2 {
  color: #fff;
	background: linear-gradient(to bottom, #0080d2 0%,#005dc5 100%);
}

.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 200px;
  margin-top: -100px;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  z-index: 2;
}

.slick-prev {
  background: url(../img/manga/btn_prev.png) no-repeat left top/50px 200px;
  left: -55px;
}

.slick-next {
  background: url(../img/manga/btn_next.png) no-repeat right top/50px 200px;
  right: -55px;
}

.slick-prev:focus,
.slick-next:focus {
  outline: none;
}

.manga .comments {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 0;
}

#sec02 .trouble-intro .trouble-intro-inner {
  border-bottom: 1px solid #b4b4b4;
  padding-bottom: 4.16%;
  margin-bottom: 4.16%;
}

#sec02 .trouble-intro .trouble-intro-inner > div {
  max-width: 90%;
}

#sec02 .trouble-intro-inner + p {
  text-align: center;
  font-size: 30px;
}

#sec02 .txt-cause {
  padding: 3.125% 2%;
	margin-top: 3.125%;
}

#trouble-case02 {
  background: url(../img/sec02/bg_line.png) no-repeat center top;
  padding-top: 180px;
}

#trouble-case02 > ul li {
  width: 31.25%;
  float: left;
  margin-right: 3.125%;
}

#trouble-case02 > ul li:nth-child(3n) {
  margin-right: 0;
}

.mikata-box figure:first-child {
	margin: 40px 0;
}




/*===== 心強いミカタ！2つの会員特典付！ =====*/

#sec03 .ttl-h2 {
	padding: 15px 10px 30px;
}

.point-box {
	background: #fff;
	border-radius: 10px;
	border: 8px solid #0068b7;
	padding: 40px 32px;
	margin-top: 20px;
}

.point-box > p:first-of-type {
	font-size: 25px;
	text-align: center;
	line-height: 1.8;
	letter-spacing: 1px;
	margin-bottom: 40px;
}

.point-box > p:first-of-type strong {
	color: #ff6600;
	font-weight: bold;
}

.asterisk {
	vertical-align: baseline;
	font-size: 60%;
	margin-left: 2px;
	position: relative;
	top: 2px;
}

.point-box > p:first-of-type + ul {
	max-width: 93.18%;
	margin: 0 auto 40px;
}

.point-box > p:first-of-type + ul li {
	float: left;
	width: 43.9%;
}

.point-box > p:first-of-type + ul li:last-child {
	float: right;
}

.point-box > p:first-of-type + ul li img {
	display: block;
	margin-bottom: 20px;
}

.point-box > p:first-of-type + ul li p {
	font-size: 20px;
	text-align: center;
}

.point-box > p:first-of-type + ul li p em {
	color: #0068b7;
	font-weight: bold;
}

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

.point-icon + p {
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	color: #0068b7;
	margin-top: 35px;
}

.point-icon + p strong {
	font-weight: bold;
	color: #ff6600;
	font-size: 30px;
}

.point-box .comments {
	padding: 20px 0 0;
}

#point02 {
	margin-top: 40px;
}

#point02 .point-box {
	padding: 40px 22px;
}

#point02 .inner {
	padding: 0 10px;
	margin-top: 30px;
}

#point-case {
	background: url(../img/conversion/bg.gif);
	border: 5px solid #0068b7;
	border-radius: 10px;
	margin-top: 40px;
}

#point-case h4 {
	position: relative;
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	padding: 15px 10px 20px;
	background: #0068b7;
	color: #fff;
}

#point-case h4::after {
  content: "";
  height: 0;
  position: absolute;
  width: 0;
  border: 10px solid transparent;
  border-top-color: #0068b7;
  border-width: 30px 35px 30px 35px;
  top: 99%;
  left: 50%;
  margin-left: -35px;
  z-index: 10;
}

#point-case h4 span {
	color: #fef102;
}

#point-case ul {
	padding: 40px 25px 20px;
}

#point-case ul li {
	float: left;
	width: 32%;
	margin-right: 2%;
	text-align: center;
}

#point-case ul li:nth-child(3n) {
	margin-right: 0;
}

#point-case ul li dt {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

#point-case ul li dt span {
	font-size: 20px;
}

#point-case ul li dd p {
	font-size: 20px;
	font-weight: bold;
	border-radius: 5px;
	padding: 20px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#point-case ul li dd p:first-of-type {
	color: #0068b7;
	background: #e5f0f8;
}

#point-case ul li dd p:last-of-type {
	position: relative;
	background: #fff;
	border: 3px solid #ff6600;
	margin-top: 40px;
}

#point-case ul li dd p:last-of-type::before {
	content: "";
  height: 0;
  position: absolute;
  width: 0;
  border: 10px solid transparent;
  border-top-color: #ff6600;
  border-width: 20px 25px 20px 25px;
  top: 0;
  left: 50%;
  margin-left: -25px;
	margin-top: -30px;
  z-index: 10;
}




/*===== 「メディア掲載」情報 =====*/

#sec04 .ttl-h2 {
	padding: 40px 10px;
}

.media-box,
.media-box02 {
	background: url(../img/conversion/bg.gif);
	border: 5px solid #0068b7;
	border-radius: 5px;
	padding: 40px 35px;
	margin-top: 20px;
}

.media-box02 {
	background: #fff;
	margin-top: 40px;
}

.media-box > div div:last-child {
	width: 38.6%;
	padding-left: 4.5%;
}

.media-box h3,
.media-box02 h3 {
  position: relative;
  display: inline-block;
  text-align: center;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  margin: 0 auto 15px;
  padding: 14px 52px;
  font-size: 40px;
  font-weight: bold;
  background: url(../img/manga/icon_quart.png) no-repeat left top/42px 34px,url(../img/manga/icon_quart2.png) no-repeat right bottom/42px 34px;
}

.media-box .date {
	font-size: 18px;
	text-align: center;
	color: #0068b7;
	margin-bottom: 40px;
}

.media-box .date + p {
	font-size: 20px;
	line-height: 1.8;
}

.toggle {
  cursor: pointer;
  position: relative;
}

.toggle:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  vertical-align: middle;
  border-top: 10px solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  color: #ff6600;
}

.toggle-active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.toggle-contents {
  display: none;
}

.btn-reading {
	background: #68b5e7;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	font-size: 25px;
	padding: 25px 10px;
	margin-top: 20px;
}

.btn-reading.toggle:after {
	color: #fef102;
}

.article {
	padding-top: 20px;
	margin-bottom: -30px;
}

.article p {
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 1.8;
}

.media-box02 .col-2 img {
	width: 100%;
}

.media-box02 .col-2 {
	background: url(../img/sec04/bg_border.gif) repeat-x left bottom;
	padding-bottom: 30px;
	margin-bottom: 30px;
	margin-top: 10px;
}

.media-box02 .col-2 > div:first-child {
	width: 36.36%;
	padding-right: 4.5454%;
}

.media-box02 p {
	font-size: 20px;
	line-height: 1.8;
}

.media-box02 p span {
	display: block;
	color: #ff6600;
	font-size: 30px;
	font-weight: bold;
}

.media-box02:nth-of-type(2) .col-2 p span {
	margin-top: 20px;
	text-align: center;
}

.media-box02 .col-2 + p {
	font-size: 18px;
	line-height: 2;
}

.media-box02 .col-2 + p span {
	font-size: 25px;
	text-align: left;
}

.media-box02 p em {
	font-size: 25px;
	font-weight: bold;
}

.media-box02:nth-of-type(3) .col-2 p span {
	text-align: left;
	margin-top: 0;
}

.media-box02:nth-of-type(3) .col-2 p em {
	font-size: 30px;
}

#moive-box {
	margin-top: 60px;
}

.movie {
	max-width: 640px;
	margin: 0 auto;
}

.movie-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie-inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}




/*===== よくある質問 =====*/

#sec05 .outer > p:first-of-type {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}

#sec05 dl {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 5px solid #0068b7;
  border-radius: 5px;
  padding: 20px;
  padding-bottom: 10px;
}

#sec05 dl:not(:last-child) {
  margin-bottom: 30px;
}

#sec05 dl dt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
  background: url(../img/sec05/icon_q.png) no-repeat left top;
  background-size: 60px 60px;
  padding: 20px 0 20px 80px;
  letter-spacing: -1px; 
}

#sec05 dl dd {
  background: url(../img/sec05/icon_a.png) no-repeat left top;
  background-size: 60px 60px;
  padding: 10px 0 20px 80px;
}

#sec05 dl dd > p {
  font-size: 18px;
}

#sec05 p + table {
  margin: 20px 0;
}

#sec05 table {
  border: 1px solid #68b5e7;
  border-bottom: none;
  border-right: none;
  width: 100%;
}

#sec05 table th,
#sec05 table td {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #68b5e7;
  border-right: 1px solid #68b5e7;
  padding: 10px;
  line-height: 1.3;
  font-size: 14px;
}

#sec05 table th {
  background: #68b5e7;
  color: #fff;
  border-right: 1px solid #fff;
  font-weight: bold;
}

#sec05 table tr:first-child th:last-child {
  border-right: 1px solid #68b5e7;
}

.border-bottom {
  border-bottom: 1px solid #fff !important;
}

.bg-blue {
  background: #e5f0f8 !important;
}

#sec05 .comments {
  padding: 0;
}




/*===== 泣き寝入りのない世の中へ =====*/

#sec06 figure {
  max-width: 900px;
  margin: 20px auto 0;
  box-shadow: 2px 2px 20px rgba(0,0,0,.2);
}




/*===== 資料請求 =====*/

#sec07 figure {
  position: relative;
  margin: 20px 0 70px;
}

#sec07 figure::after {
	content: "";
  height: 0;
  position: absolute;
  width: 0;
  border: 10px solid transparent;
  border-top-color: #bd0000;
  border-width: 30px 35px 30px 35px;
  top: 100%;
  left: 50%;
  margin-left: -35px;
  margin-top: 20px;
  z-index: 10;
}

.form {
  width: 100%;
  margin: 0 auto 40px;
}

.form th,
.form td {
  border-bottom: 1px solid #ccc;
  padding: 20px;
  font-size: 18px;
  vertical-align: middle;
  word-break: break-all;
}

.form tr:first-child th,
.form tr:first-child td {
  border-top: 1px solid #ccc;
}

.form th {
  width: 34%;
  padding-right: 0;
}

.required::before {
	content: "必須";
	position: relative;
  font-size: 14px;
  color: #fff;
  background: #ff6600;
  padding: 5px 10px;
  margin-right: 7px;
  top: -2px;
	display: inline-block;
}

input, button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,Verdana, Roboto, "Droid Sans", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  -webkit-transition: .4s;
  transition: .4s;
}

::-webkit-input-placeholder {
  color: #ccc;
  font-size: 16px;
}
::-moz-placeholder {
  color: #ccc; opacity: 1;
  font-size: 16px;
}
:-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
}

input[type="text"] {
  width: 80%;
  height: 50px;
  padding: 10px;
  border: 1px solid #ccc;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,.2) inset;
}

input[type="text"]:hover,
input[type="text"]:focus {
  background-color: #fff;
  border: 1px solid rgba(0,104,183,.7);
  box-shadow: 0px 0px 25px 0px rgba(0,104,183,.3) inset;
  outline: none;
}

#submit {
  max-width: 640px;
  margin: 0 auto;
}

#submit button {
  display: block;
  width: 100%;
  padding: 25px 10px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  background: #FF6600;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  border-radius: 5px;
  letter-spacing: .1em;
}

#submit button::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../img/sec07/icon_request.png) no-repeat left center/43px 40px;
  width: 43px;
  height: 40px;
  margin-right: 15px;
  top: 8px;
}

#submit button:hover {
  opacity: .7;
}


/* エラー */

#error-box {
  width: 90%;
  margin: 0 auto;
}

#error-box > p {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

#error-box p:first-child {
  margin-bottom: 15px;
}

#error-box .error_messe {
  color: #F00;
  margin-bottom: 15px;
}

#error-box .btn-back {
  text-align: center;
  width: 520px;
  margin: 30px auto 0;
}

#error-box .btn-back input {
  width: 100%;
  display: block;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
  outline: none;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  -webkit-transition: .6s;
  transition: .6s;
  padding: 18px 20px;
  background: #ddd;
}

.btn-back input:hover {
  opacity: .7;
}



/* 確認画面・送信完了 */

.confirm {
	padding-top: 20px;
}

#confirm h3 {
  font-size: 24px;
  border-left: 5px solid #62b0dc;
  padding-left: 12px;
  margin-left: 10px;
  margin-bottom: 20px;
}

#confirm h3 + p {
  margin-bottom: 25px;
  margin-left: 10px;
  line-height: 1.3;
}

#confirm-btn {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#confirm-btn li {
  float: left;
  margin-right: 5%;
  width: 47.5%;
}

#confirm-btn li:last-child {
  margin-right: 0;
}

#confirm-btn li input,
.btn-box a {
  width: 100%;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
  outline: none;
  cursor: pointer;
  border: none;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 20px;
}

#confirm-btn li:first-child input,
.btn-box a {
  background: #68b5e7;
}

#confirm-btn li:last-child input {
  background: #ddd;
  color: #333;
}

#confirm-btn input:hover {
  opacity: .7;
}

.btn-box {
  width: 360px;
  margin: 0 auto;
}

.btn-box a {
  text-align: center;
}

#thanks-txt {
  text-align: center;
  line-height: 1.3;
  margin-bottom: 25px;
}

a[href="http://www.php-factory.net/"]{
  display: none !important;
}

#kiyaku {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px 10px;
  margin-top: 40px;
}

#kiyaku dt {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

#kiyaku dd p {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.3;
  font-size: 14px;
}

#kiyaku dd p:not(:last-child) {
  margin-bottom: 20px;
}




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

footer {
  background: #fff;
}

footer ul {
  text-align: center;
  font-size: 0;
  padding: 30px 10px;
}

footer ul li {
  display: inline-block;
  font-size: 16px;
}

footer ul li::after {
  content: "|";
  padding: 0 40px;
}

footer ul li:last-child::after {
  content: "";
  padding-right: 0;
}

footer ul li:fisrt-child::after {
  padding-left: 0;
}

footer ul li a:hover {
  text-decoration: underline;
}

#copy {
  background: #0068b7;
  text-align: center;
  color: #fff;
  padding: 15px 10px;
  line-height: 1.3;
  font-size: 14px;
}

#pagetop {
  position: fixed;
  right: 1.34%;
  bottom: 1.34%;
  z-index: 1000;
  display: none;
}

#pagetop a {
  display: inline-block;
  background: rgba(104,181,231,.6);
  border-radius: 5px;
  padding: 15px 10px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: -.05em;
  -webkit-transition: .4s;
  transition: .4s;
}

#pagetop span {height:25px; width:40px; display:block; position:relative;overflow:hidden; margin: 0 auto 5px;}

#pagetop span:before{content:''; height:20px; width:20px; display:block; border:5px solid #fff; border-left-width:0; border-bottom-width:0; -webkit-transform:rotate(-45deg); transform:rotate(-45deg);;position:absolute; top:7px; left:7px;}

#pagetop a:hover {
  background: rgba(104,181,231,.8);
}

/* 追加調整 */
br.pcno { display: none; }


@media screen and (max-width:768px) {

/*===== layout =====*/

.display-pc {
  display: none!important;
}

.display-sp {
  display: block !important;
}
	
.section-inner {
  padding: 0 1.3%;
}
	
#contents {
  background: url(../img/common/bg_slash.gif)/32px 32px;
}

.outer {
  padding: 5.2% 1.3% 7.8125%;
}
  
.ttl-h2 {
  padding: 4% 1.3%;
}

.ttl-h2::after {
  border-width: 4.2vw 5vw 4.2vw 5vw;
  margin-left: -5vw;
}
  
.shine::before {
  display: none;
}

	
br.pcno { display: initial; }	
	
	
/*===== header =====*/

header {
  padding: 2% 0;
	border-bottom: .5vw solid #0068b7;
}

header > div h1 {
  width: 53%;
}

header > div h1 img {
  width: 60%;
}

header > div h1 strong {
	display: none;
}

header > div .cf {
  width: 40%;
}

header > div .cf li {
  width: 48%;
  margin-right: 4%;
}

.header-fixed {
  position: fixed;
  padding: 1.3% 0;
}

.header-fixed > div h1 {
  width: 48%;
  margin-top: .25vw;
}

.header-fixed > div h1 img {
  width: 55%;
}

.header-fixed > div .cf {
  width: 35%;
}

.header-fixed > div .cf li {
  width: 48%;
  margin-right: 4%;
}
	
	
	
/*===== fv =====*/

#fv-upper {
  padding: 4% 0;
}

#fv-upper p:first-of-type {
	width: 95%;
	margin: 0 auto 2%;
}

#fv-upper figure:last-of-type {
  margin-top: -1.25vw;
}

#fv-lower {
  background: url(../img/fv/bg_lower.jpg) no-repeat center top/cover;
  min-height: inherit;
}

#fv-lower h2,
#fv-card {
  display: none;
}
	
#fv-lower figure {
	position: relative;
  top: -1.5vw;
}

.comments {
  padding: 2% 1.3%;
}

.comments p {
  font-size: 13px;
}
	
	
	
/*===== conversion =====*/

.conversion {
  background: url(../img/conversion/bg.gif)/50px 50px;
  padding: 2.67% 1.3% 6.5%; 
}

.conversion .col-2 {
  margin: -2vw auto 0;
}

.conversion .col-2 > div:first-child {
  padding-right: 1.3%;
}

.conversion .col-2 > div:last-child {
  padding-left: 1.3%;
}

.conversion .col-2 > div figure {
  margin-bottom: 2.67%;
}
	
	
	
	
/*===== トラブル時の弁護費用の強いミカタ =====*/

.txt-highlight {
  font-size: 4.2vw;
}

.txt-highlight::after {
  height: 1vw;
  bottom: 1vw;
}

.trouble-intro .trouble-intro-inner > div {
  max-width: 95%;
}

.trouble-intro .trouble-intro-inner > div p {
  font-size: 3.2vw;
}

.trouble-intro .trouble-intro-inner:nth-of-type(1) img {
  margin-right: 4%;
}

.trouble-intro .trouble-intro-inner:nth-of-type(2) img {
  margin-left: 4%;
}

.txt-cause {
  font-size: 4.2vw;
  border: .5vw solid #0068b7;
  border-radius: 1vw;
}

.ttl-h3 {
  font-size: 4.5vw;
	width: auto;
}

.ttl-h3 span::after {
  width : calc(100% - 16vw);
  left: 16vw;
  height: .5vw;
  bottom: 2vw;
}

.ttl-h3 img {
  width: 14vw;
  margin-right: 2vw;
}

#trouble-case {
	padding-bottom: 11.36%;
}

#trouble-case ul {
	margin-bottom: -4%;
}

#trouble-case ul > li {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 4%;
  border-radius: 1vw;
	padding: 1vw;
}

#trouble-case ul > li > div {
	border-radius: .5vw;
}

#trouble-case ul > li h4 img {
  border-radius: .5vw .5vw 0 0;
}

#trouble-case ul > li .inner {
  padding: 2.67%;
  padding-bottom: 4%;
}

#trouble-case ul > li .inner ol {
  margin-bottom: -2.67%;
}

#trouble-case ul > li .inner ol li {
  width: 100%;
  font-size: 3vw;
  margin-bottom: 2.67%;
	background: url(../img/sec01/icon_check.jpg) no-repeat left center/3vw 3vw;
	padding: .25vw 0 .25vw 3.5vw;
}

#trouble-case ul > li .inner h5 {
  font-size: 3.5vw;
  margin: 5.3% 0 2.67%;
}

#trouble-case ul > li .inner h5::before {
  width: 5vw;
  margin-right: 1vw;
  top: -1vw;
}

#trouble-case ul > li .inner h5::after {
  width: 5vw;
  margin-left: 1vw;
  top: -1vw;
}

#trouble-case ul > li .inner dl dt {
  font-size: 3vw;
  border-radius: 5vw;
  padding: 1vw;
  margin-bottom: 2%;
}

#trouble-case ul > li .inner dl dd p {
  font-size: 2.6vw;
}

#trouble-case ul > li .inner dl dd .price {
  font-size: 2.5vw;
}

#trouble-case ul > li .inner dl dd .price::after {
  height: 1vw;
}

#trouble-case ul > li .inner dl dd .price span {
  margin-right: 1vw;
}

#trouble-case ul > li .inner dl dd .price em {
  font-size: 3.5vw;
  margin-right: .5vw;
}

#mikata-about {
  min-height: inherit;
	padding: 4% 1.3%;
}

#mikata-about h3 {
	margin-bottom: 2.67%;
}

#mikata-cost {
  background: url(../img/common/bg_grid.gif)/50px 50px;
  border: 1vw solid #0068b7;
  border-radius: 1vw;
  padding: 4%;
}

#mikata-cost figure:first-of-type {
  margin-bottom: 2.67%;
}

#mikata-cost .comments {
  padding: 0;
  margin: 4% auto 5.3%;
}

#mikata-cost ul li {
  width: 49%;
  margin-right: 2%;
}
  
  
  
/* 補償 */

.compensation {
  background: url(../img/compensation/bg.jpg) no-repeat center top/cover;
  min-height: inherit;
  padding: 4% 1.3% 5.2%;
}

.compensation .inner {
  background: url(../img/compensation/bg_grid.png)/50px 50px;
  border: 1vw solid #0068b7;
  border-radius: 1vw;
  padding: 4%;
  margin: 4% auto 0;
}

.compensation .inner figure + p {
  font-size: 4vw;
  margin: 2.67% 0;
}

.compensation .inner .comments {
  padding: 0;
}
  
  
  
/* マンガ */

.manga {
  padding: 6.5% 0 7.8125%;
}

.manga h3 {
  margin: 0 auto 2.67%;
}

.manga-slide {
  padding: 4% 0 2.67%;
  border: .5vw solid #0068b7;
  border-radius: .5vw;
}

.manga-slide h4 {
  margin: 0 auto 4%;
  padding: 1.5vw 5.2vw;
  font-size: 4.5vw;
  background: url(../img/manga/icon_quart.png) no-repeat left top/4.2vw 3.4vw,url(../img/manga/icon_quart2.png) no-repeat right bottom/4.2vw 3.4vw;
}

.manga-slide img {
  margin: 0 auto 2.67%;
  width: 95%;
}
  
.slider-nav {
  width: 50%;
}
  
.slider-nav2 {
  width: 85%;
}

.slider-nav li,
.slider-nav2 li {
  width: 14vw !important;
  height: 14vw !important;
  font-size: 5vw;
  padding-top: 4vw;
  margin-right: 2vw;
}
.slider-nav li span,
.slider-nav2 li span {
  font-size: 2vw;
  margin-bottom: .5vw;
}

/* Arrows */
.slick-prev,
.slick-next {
  display: none !important;
}

.manga .comments {
  padding: 2.67% 0 0;
}

#sec02 .trouble-intro .trouble-intro-inner > div {
  max-width: 100%;
}
  
#sec02 .txt-highlight {
  font-size: 4vw;
}

#sec02 .trouble-intro .trouble-intro-inner > div p {
  font-size: 3vw;
}

#sec02 .trouble-intro-inner + p {
  font-size: 4vw;
}

#trouble-case02 {
  background: url(../img/sec02/bg_line.png) no-repeat center top/contain;
  padding-top: 18vw;
}

#trouble-case02 > ul li {
  width: 32%;
  margin-right: 2%;
}

.mikata-box figure:first-child {
	margin: 5.3% 0;
}

  
  
  
/*===== 心強いミカタ！2つの会員特典付！ =====*/

#sec03 .ttl-h2 {
	padding: 2% 1.3% 4%;
}

.point-box {
	border-radius: 1vw;
	border: 1vw solid #0068b7;
	padding: 4% 2.67%;
	margin-top: 2.67%;
}

.point-box > p:first-of-type {
	font-size: 3.2vw;
	margin-bottom: 4%;
}

.point-box > p:first-of-type + ul {
	max-width: 100%;
	margin: 0 auto 4%;
}

.point-box > p:first-of-type + ul li {
	width: 45%;
}

.point-box > p:first-of-type + ul li img {
	margin-bottom: 2.67%;
}

.point-box > p:first-of-type + ul li p {
	font-size: 2.5vw;
}

.point-icon + p {
	font-size: 3.2vw;
	margin-top: 4%;
}

.point-icon + p strong {
	font-size: 4vw;
}

.point-box .comments {
	padding: 2.67% 0 0;
}

#point02 {
	margin-top: 5.3%;
}

#point02 .point-box {
	padding: 4% 2.67%;
}

#point02 .inner {
	padding: 0;
	margin-top: 4%;
}

#point-case {
	background: url(../img/conversion/bg.gif)/50px 50px;
	border: .5vw solid #0068b7;
	border-radius: 1vw;
	margin-top: 5.3%;
}

#point-case h4 {
  line-height: 1.3;
	font-size: 4vw;
	padding: 2% 1.3% 2.67%;
}

#point-case h4::after {
  border-width: 4.2vw 5vw 4.2vw 5vw;
  margin-left: -5vw;
}

#point-case ul {
	padding: 5.34% 1.3% 2.67%;
}

#point-case ul li {
	float: none;
	width: 100%;
	margin-right: 0;
  margin-bottom: 4%;
}

#point-case ul li:nth-child(3n) {
	margin-right: 0;
  margin-bottom: 0;
}

#point-case ul li dt {
	font-size: 3vw;
	margin-bottom: 1vw;
}

#point-case ul li dt span {
	font-size: 4vw;
}

#point-case ul li dd p {
	font-size: 3vw;
	border-radius: .5vw;
	padding: 2.67% 1.3%;
}

#point-case ul li dd p:last-of-type {
	margin-top: 7.2vw;
}

#point-case ul li dd p:last-of-type::before {
  border-width: 4.2vw 5vw 4.2vw 5vw;
  margin-left: -5vw;
  margin-top: -6.2vw;
}
  
  
  
  
/*===== 「メディア掲載」情報 =====*/

#sec04 .ttl-h2 {
	padding: 5.3% 1.3%;
}

.media-box,
.media-box02 {
	background: url(../img/conversion/bg.gif)/50px 50px;;
	border: .5vw solid #0068b7;
	border-radius: .5vw;
	padding: 4% 2.67%;
	margin-top: 2.67%;
}

.media-box02 {
	margin-top: 5.3%;
}

.media-box > div div:last-child {
	width: 38.6%;
	padding-left: 4.5%;
}

.media-box h3,
.media-box02 h3 {
  margin: 0 auto 4%;
  padding: 1.5vw 5.2vw;
  font-size: 4.5vw;
  background: url(../img/manga/icon_quart.png) no-repeat left top/4.2vw 3.4vw,url(../img/manga/icon_quart2.png) no-repeat right bottom/4.2vw 3.4vw;
}

.media-box .date {
	font-size: 2.5vw;
	margin-bottom: 4%;
}

.media-box .date + p {
	font-size: 3vw;
}

.toggle:after {
  margin-left: 1.5vw;
  border-top: 1.5vw solid;
  border-right: 1.5vw solid transparent;
  border-left: 1.5vw solid transparent;
}

.btn-reading {
	border-radius: .5vw;
	font-size: 3.5vw;
	padding: 4% 1.3%;
	margin-top: 2.67%;
}

.article {
	padding-top: 2.67%;
	margin-bottom: -4%;
}

.article p {
	margin-bottom: 4%;
	font-size: 3vw;
}

.media-box02 .col-2 {
	padding-bottom: 4%;
	margin-bottom: 4%;
	margin-top: 1vw;
}

.media-box02 .col-2 > div:first-child {
	width: 44%;
	padding-right: 4%;
}

.media-box02 p {
	font-size: 3vw;
}

.media-box02 p span {
	font-size: 3.5vw;
}

.media-box02:nth-of-type(2) .col-2 p span {
	margin-top: 2.67%;
  line-height: 1.4;
}

.media-box02 .col-2 + p {
	font-size: 3vw;
}

.media-box02 .col-2 + p span {
	font-size: 3.5vw;
}

.media-box02 p em {
	font-size: 3.5vw;
}

.media-box02:nth-of-type(3) .col-2 p em {
	font-size: 3.5vw;
}

#moive-box {
	margin-top: 8%;
}
  
  
  
/*===== よくある質問 =====*/

#sec05 .outer > p:first-of-type {
  font-size: 3.5vw;
  margin-bottom: 2.67%;
}

#sec05 dl {
  border: .5vw solid #0068b7;
  border-radius: .5vw;
  padding: 2.67%;
  padding-bottom: 1vw;
}

#sec05 dl:not(:last-child) {
  margin-bottom: 4%;
}

#sec05 dl dt {
  font-size: 3.5vw;
  margin-bottom: 2%;
  background-size: 7.5vw 7.5vw;
  padding: 2% 0 2% 9.36%;
}

#sec05 dl dd {
  font-size: 3vw;
  background-size: 7.5vw 7.5vw;
  padding: 2% 0 2% 9.36%;
}

#sec05 dl dd > p {
  font-size: 3vw;
}

#sec05 p + table {
  margin: 2.67% 0;
}

#sec05 table th,
#sec05 table td {
  padding: 1.3%;
  font-size: 2vw;
}
  
  
  
/*===== 泣き寝入りのない世の中へ =====*/

#sec06 figure {
  margin: 2.67% auto 0;
}
  
  
  
/*===== 資料請求 =====*/

#sec07 figure {
  margin: 2.67% 0 9.4%;
}

#sec07 figure::after {
  border-width: 4.2vw 5vw 4.2vw 5vw;
  margin-left: -5vw;
  margin-top: 2.67%;
}

.form {
  margin: 0 auto 5.3%;
}

.form th,
.form td {
  border-bottom: 1px solid #ccc;
  padding: 20px 1.34%;
  font-size: 18px;
  display: block;
}

.form tr:first-child th,
.form tr:first-child td {
  border-top: 1px solid #ccc;
}
  
.form tr:first-child td {
  border-top: none;
}

.form th {
  width: 100%;
  padding-bottom: 0;
  border-bottom: none;
}

input, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"] {
  width: 100%;
  height: 50px;
}

#submit {
  max-width: 90%;
}

#submit button {
  padding: 4% 1.3%;
  font-size: 4.5vw;
  border-radius: .5vw;
}

#submit button::before {
  background: url(../img/sec07/icon_request.png) no-repeat left center/5.3vw 5vw;
  width: 5.3vw;
  height: 5vw;
  margin-right: 1vw;
  top: 1vw;
}

#submit button:hover {
  opacity: 1;
}


/* エラー */

#error-box {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.34%;
}

#error-box .btn-back {
  width: 80%;
  margin: 20px auto 0;
}
  
#error-box .btn-back input {
  padding: 16px 1.34%;
}

.btn-back input:hover {
  opacity: 1;
}



/* 確認画面・送信完了 */

#confirm {
  margin: 0 auto;
  padding: 0 1.34%;
}

#confirm h3 + p {
  margin-bottom: 20px;
  margin-left: 0;
}
  
#confirm-btn {
  margin: 0 auto;
}

#confirm-btn li {
  margin-right: 2%;
  width: 49%;
}
  
.btn-box {
  width: 90%;
  margin: 0 auto;
}

#confirm-btn li input,
.btn-box a {
  padding: 16px 1.34%;
}

#kiyaku {
  border-radius: .5vw;
  padding: 2.67% 1.3%;
  margin-top: 5.3%;
}

#kiyaku dt {
  font-size: 3vw;
  margin-bottom: 2.67%;
}

#kiyaku dd p {
  font-size: 2.5vw;
}

#kiyaku dd p:not(:last-child) {
  margin-bottom: 2.67%;
}
  
  
  
/*===== footer =====*/

footer ul {
  padding: 4% 1.3%;
}

footer ul li {
  display: inline;
  font-size: 2.5vw;
}

footer ul li::after {
  padding: 0 5.3%;
}

#copy {
  padding: 2.67% 1.3%;
  font-size: 2vw;
}

#pagetop {
  position: relative;
  right: inherit;
  bottom: inherit;
  display: block;
}

#pagetop a {
  display: block;
  background: rgba(104,181,231,1);
  border-radius: 0;
  padding: 2% 1.3%;
  font-size: 2.5vw;
  width: 100%;
  text-align: center;
}

#pagetop span {height:3vw; width:4.5vw; display:block; position:relative;overflow:hidden; margin: 0 auto 1vw;}

#pagetop span:before{content:''; height:2.2vw; width:2.2vw; display:block; border:.5vw solid #fff; border-left-width:0; border-bottom-width:0; -webkit-transform:rotate(-45deg); transform:rotate(-45deg);;position:absolute; top:1vw; left:1vw;}

#pagetop a:hover {
  background: rgba(104,181,231,1);
}

}





@media screen and (max-width:480px) {
	
/*===== fv =====*/

.comments p {
  font-size: 12px;
}
  
  
  
/*===== 「メディア掲載」情報 =====*/

#sec04 .ttl-h2 img {
  width: 85%;
  margin: 0 auto;
}
  
  
  
/*===== よくある質問 =====*/

#sec05 .ttl-h2 img {
  width: 85%;
  margin: 0 auto;
}
  
  
  
/*===== 泣き寝入りのない世の中へ =====*/
  
#sec06 .ttl-h2 img {
  width: 85%;
  margin: 0 auto;
}
  
  
  
/*===== 資料請求 =====*/
  
#sec07 .ttl-h2 img {
  width: 40%;
  margin: 0 auto;
}
  
}





@media screen and (max-width:414px) {
	
/*===== conversion =====*/

.conversion .col-2 {
  margin: 1.3% auto 0;
	display: block;
	width: 95%;
}

.conversion .col-2 > div:first-child {
  padding-right: 0;
	display: block;
	margin-bottom: 2.67%;
}

.conversion .col-2 > div:last-child {
  padding-left: 0;
	display: block;
}

.conversion .col-2 > div figure {
  margin-bottom: 2.67%;
}
  
  
  
  
/*===== トラブル時の弁護費用の強いミカタ =====*/

#trouble-case ul > li {
  width: 100%;
  float: none;
  margin-right: 0;
}

#trouble-case ul > li .inner ol {
  margin-bottom: -2.67%;
}

#trouble-case ul > li .inner ol li {
  width: 50%;
  font-size: 5vw;
	background: url(../img/sec01/icon_check.jpg) no-repeat left center/5vw 5vw;
	padding: .25vw 0 .25vw 6vw;
}

#trouble-case ul > li .inner h5 {
  font-size: 5vw;
  margin: 3vw 0;
}

#trouble-case ul > li .inner h5::before {
  width: 7vw;
}

#trouble-case ul > li .inner h5::after {
  width: 7vw;
}

#trouble-case ul > li .inner dl dt {
  font-size: 5vw;
}

#trouble-case ul > li .inner dl dd p {
  font-size: 4vw;
}

#trouble-case ul > li .inner dl dd .price {
  font-size: 4vw;
}

#trouble-case ul > li .inner dl dd .price em {
  font-size: 6vw;
}
  
  
  
/* 補償 */

.compensation .inner figure + p {
  font-size: 4.5vw;
}

}

.required.comp::before {

	content: "OK!!";

	position: relative;
	font-size: 14px;

	color: red;
	background: #fff;
	width: 48px;
	height: 24px;
	border: 2px solid red;
	padding: 3px 6px;

	margin-right: 7px;

	top: -2px;
	display: inline-block;

	box-sizing: border-box;

}