/*===== layout / common parts =====*/

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

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

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

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

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

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

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

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

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

.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%;
	}
}

#contents {
  padding: 40px 0 60px;
}

#contents section:not(:last-child) {
  margin-bottom: 60px;
}

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



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

header {
  width: 100%;
  position: relative;
  background: #f8f8f2;
  padding: 15px 0 10px;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0px 5px 4px -4px rgba(0,0,0,.3);
}

header > div {
  display: flex; 
}

h1 {
  width: 147px;
}

h1 img {
  width: 100%;
}

header nav {
  margin-left: auto;
  width: 81%;
}

header nav ul li {
  float: left;
  width: 20%;
}

header nav ul li a {
  display: block;
  text-align: center;
  border-left: 1px solid #d1c0a5;
  height: 50px;
}

header nav ul li:nth-child(1) a,
header nav ul li:nth-child(2) a,
header nav ul li:nth-child(5) a{
  padding-top: 8px;
}

header nav ul li:last-child a {
  border-right: 1px solid #d1c0a5;
}

header nav ul li a img {
  transition: .3s;
}

header nav ul li a:hover img {
  margin-top: 3px;
}

#menu-btn,
#gnav {
  display: none;
}

/* ナビ固定 */
.header-back {
  animation: fade-out 0s ease-out 0s alternate forwards;
  position: relative;
  z-index: 101;
}

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

.header-fixed {
  animation: fade-in .6s ease-out 0s alternate forwards;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  opacity: 0;
}

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



/*===== mv =====*/

#mv {
  background: url(../content/img/bg_mv.jpg) no-repeat center/cover;
  min-height: 530px;
  position: relative;
}

#mv h2 {
  text-align: center;
  padding-top: 45px;
}



/*===== intro =====*/

.intro-box {
  background: #f7f3e9;
  padding: 15px 20px;
}

.intro-box p:first-child {
  font-size: 18px;
  font-weight: bold;
  color: #ff3d01;
  margin-bottom: 20px;
}

.intro-box p:last-child span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}



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

.conversion {
  background: #f9f2f2;
  border: 5px solid #e60012;
  border-radius: 20px;
  padding: 20px 25px;
  max-width: 910px;
  margin: 40px auto 0;
}

.conversion > p:first-of-type {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.conversion .col-2 > div:first-child {
  width: 434px;
  padding-right: 30px;
}

.conversion .col-2 > div img {
  width: 100%;
}

.conversion .col-2 > div:last-child p:first-of-type {
  font-size: 18px;
  padding: 10px 0;
}

.conversion .col-2 > div:last-child p:last-of-type {
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}



/*===== plan =====*/

.ttl-h2 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  position: relative;
  background: url(../content/img/bg_title.jpg) repeat left top/84px 85px;
  padding: 20px 10px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
  margin-bottom: 40px;
}

.ttl-h2::before {
  content: "";
  background: #f39700;
  height: 2px;
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: -3px;
}

.ttl-h2::after {
  content: "";
  background: #f39700;
  height: 2px;
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.flex {
  display: flex;
}

.flex li {
  width: 32%;
  margin-right: 2%;
  background: #f6f4ec;
}

.flex li:nth-child(3n) {
  margin-right: 0;
}

.flex figure {
  max-width: 93.75%;
  margin: 20px auto 10px;
}

.flex figure img {
  width: 100%;
}

.flex li p {
  padding: 0 3% 3%;
}

.flex li h3 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  padding: 15px 10px;
}

#plan ul li h3 {
  background: url(../content/img/bg_blue.jpg) repeat;
}

#plan ul li h3::before {
  content: "";
  display: block;
  background: url(../content/img/icon_point.png) no-repeat left center / 40px 31px;
  width: 40px;
  height: 31px;
  position: absolute;
  top: 50%;
  margin-top: -15px;
}

#price ul li:first-child h3 {
  background: url(../content/img/bg_brown.jpg) repeat;
}

#price ul li:nth-child(2n) h3 {
  background: url(../content/img/bg_gray.jpg) repeat;
}

#price ul li:last-child h3 {
  background: url(../content/img/bg_olive.jpg) repeat;
}

#price ul li h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
}

#price ul li:first-child h3::before {
  background: url(../content/img/icon_price_brown.png) no-repeat left center / 40px 40px;
}

#price ul li:nth-child(2n) h3::before {
  background: url(../content/img/icon_price_gray.png) no-repeat left center / 40px 40px;
}

#price ul li:last-child h3::before {
  background: url(../content/img/icon_price_olive.png) no-repeat left center / 40px 40px;
}

.slide-box {
  max-width: 93.75%;
  margin: 20px auto 10px;
  position: relative;
}

.slide-area {
  display: none;
  width: 100%;
  margin: 0 auto;
}

.slide-area div img {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.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 {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.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: 24px;
  height: 32px;
  margin-top: -16px;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  z-index: 2;
}

.slick-prev {
  background: url(../content/img/arrow_prev.png) no-repeat left top /24px 32px;
  left: 5px;
}

.slick-next {
  background: url(../content/img/arrow_next.png) no-repeat left top /24px 32px;
  right: 5px;
}

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

.caution {
  margin-top: 20px;
}

.caution p {
  font-size: 12px;
}



/*===== flow =====*/

.flow-box {
  background: #f8f8f8;
  border: 1px solid #dadada;
  padding: 20px;
  position: relative;
  margin-bottom: 60px;
}

.flow-box::after {
  content: "";
  height: 0;
  position: absolute;
  width: 0;
  border: 10px solid transparent;
  border-top-color: #d4d4d4;
  border-width: 20px 40px 20px 40px;
  top: 100%;
  left: 460px;
  margin-top: 20px;
  z-index: 10;
}

.flow-inner + .flow-box:last-of-type::after {
  display: none;
}

.flow-box div:first-child {
  width: 120px;
  padding-right: 20px;
}

.flow-box div:first-child img {
  width: 100%;
}

.flow-box dt {
  font-size: 24px;
  font-weight: bold;
  color: #3ca7be;
  margin-bottom: 20px;
}

.flow-box dd {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.flow-wrap {
  background: url(../content/img/arrow_flow.jpg) no-repeat right top;
}

.flow-wrap .flow-box {
  width: 90%;
}



/*===== voice =====*/

.vocie-box > div {
  display: flex;
  padding: 2%;
  background: #f7f4eb;
  border: 1px solid #d1c0a5;
  margin-bottom: 30px;
}

.vocie-box > div:last-child {
  margin-bottom: 0;
}

.vocie-box dl {
  width: 65.625%;
}

.vocie-box figure {
  width: 31.25%;
  margin-left: 3.125%;
}

.vocie-box figure img {
  width: 100%;
}

.vocie-box dl dt {
  font-size: 24px;
  font-weight: bold;
  color: #f0640f;
  line-height: 1.4;
  margin-bottom: 20px;
}



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

footer {
  width: 100%;
  padding: 40px 0 0;
  background: #F4F0EB;
}

footer .attention {
  margin-bottom: 40px;
}

footer .attention > p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

footer .attention p span {
  color: #F00;
}

footer .attention dt {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

footer .attention dd p a {
  color: #076baf !important;
  text-decoration: underline !important;
}

footer .attention dd p a:hover {
  color: #a62037 !important;
}

#footer-nav {
  background: url(../common_img/bg-green.jpg) repeat center;
  padding: 30px 10px;
}

#footer-nav .menu-pc {
  display: table;
  width: auto;
  margin: 0 auto 40px;
}

#footer-nav .menu-pc li {
  display: table-cell;
  vertical-align: middle;
}

#footer-nav .menu-pc li a {
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 0 15px;
  border-right: 1px solid #fff;
}

/*#footer-nav .menu-pc li:first-child a,*/
#footer-nav .menu-pc li:last-child a {
  border-right: none;
}

#footer-nav #copy {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

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

#pagetop a {
  display: block;
}

#pagetop a img {
  width: 60px;
  height: auto;
}



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

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

footer .attention > p,
footer .attention > dl {
  padding: 0 10px;
}


}




@media screen and (max-width:768px) {
	
/*===== layout / common parts =====*/

.section-inner {
  padding: 0 2.6%;
}	

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

.display-sp {
  display: block !important;
}
	
.shine::before {
	display: none;
}
	
#contents {
  padding: 4.12% 2.6% 8%;
}

#contents section:not(:last-child) {
  margin-bottom: 8%;
}

	
/* トグル */

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

.toggle-contents {
  display: none;
}

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

header {
  padding: 1.3% 0;
}

h1 {
  width: 20%;
  margin-top: 1.3%;
}

header nav {
	display: none;
}
	
header .display-sp {
  margin-left: auto;
  width: 53.57%;
	position: relative;
}
	
header .display-sp > div:first-child {
	width: 76.92%;
}

#menu-btn {
  display: block;
  width: 15.38%;
	position: absolute;
	top: 8.33%;
	right: 0;
	z-index: 100;
}

#menu-btn img {
  width: 100%;
}
  
#menu-btn.active {
  width: 12.8%;
	right: 2.5%;
}

#menu-btn.active img:first-child,
#menu-btn img:last-child {
  display: none;
}

#menu-btn.active img:last-child {
  display: block;
}

#gnav {
  position: absolute;
	background: #fff;
  width: 100%;
  z-index: 99;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
	
.header-fixed + #gnav {
	top: 0;
	position: fixed;
	margin-top: 10%;
}
	
#gnav li {
	border-bottom: 1px solid #b4b4b4;
}
	
#gnav li a {
	display: block;
	font-size: 5vw;
	padding: 4% 1.3%;
	text-align: center;
}
	
.header-back {
  animation: none;
}
	
.header-fixed {
  animation: none;
	opacity: 1;
}
	
	
	
/*===== mv =====*/

#mv-sp img {
	width: 100%;
}
	
	
	
/*===== intro =====*/

.intro-box {
  padding: 2.75%;
}

.intro-box p:first-child {
  font-size: 4vw;
  margin-bottom: 2.75%;
}
	
.intro-box p br {
	display: none;
}

.intro-box p:last-child span {
  font-size: 3vw;
  margin-top: .5vw;
}

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

.conversion {
  border: .75vw solid #e60012;
  border-radius: 3vw;
  padding: 2.75% 4.8%;
  margin: 5.5% auto 0;
}

.conversion > p:first-of-type {
  font-size: 3.5vw;
  margin-bottom: 2.75%;
	text-align: left;
}
	
.conversion .col-2,
.conversion .col-2 > div {
	display: block;
}
	
.conversion .col-2 > div img,
.conversion .col-2 > div:first-child img {
	display: block;
	width: auto;
	margin: 0 auto;
}

.conversion .col-2 > div:first-child {
  width: 100%;
  padding-right: 0;
	margin-bottom: 2.75%;
}

.conversion .col-2 > div:last-child p:first-of-type {
  font-size: 3vw;
  padding: 1.3% 0;
}

.conversion .col-2 > div:last-child p:last-of-type {
  font-size: 3vw;
  margin-top: .5vw;
}

  
  
/*===== plan =====*/

.ttl-h2 {
  font-size: 5.5vw;
  padding: 2.7% 1.3%;
  margin-bottom: 5.5%;
}

.flex {
  flex-direction: column;
}

.flex li {
  width: 100%;
  margin-right: 0;
  margin-bottom: 5.5%;
}

.flex li:nth-child(3n) {
  margin-bottom: 0;
}

.flex figure {
  max-width: 100%;
  margin: 0 auto;
  padding: 4%;
  padding-bottom: 2.7%;
}

.flex li p {
  padding: 0 4% 4%;
}

.flex li h3 {
  font-size: 4.5vw;
  padding: 3.4% 1.3%;
  padding-left: 9vw;
  text-align: left;
}
  
.flex li h3 br {
  display: none;
}

#plan ul li h3::before {
  background: url(../content/img/icon_point.png) no-repeat left center / 5vw 4vw;
  width: 5vw;
  height: 4vw;
  margin-top: -2vw;
  left: 2vw;
}

#price ul li h3::before {
  width: 5vw;
  height: 5vw;
  margin-top: -2.5vw;
  left: 2vw;
}

#price ul li:first-child h3::before {
  background: url(../content/img/icon_price_brown.png) no-repeat left center / 5vw 5vw;
}

#price ul li:nth-child(2n) h3::before {
  background: url(../content/img/icon_price_gray.png) no-repeat left center / 5vw 5vw;
}

#price ul li:last-child h3::before {
  background: url(../content/img/icon_price_olive.png) no-repeat left center / 5vw 5vw;
}
  
.caution {
  margin-top: 2.7%;
}

.caution p {
  font-size: 3.5vw;
}

  
  
/*===== flow =====*/

.flow-box {
  padding: 2.7% 4%;
  margin-bottom: 9%;
}

.flow-box::after {
  border-width: 4.5vw 9vw 4.5vw 9vw;
  margin-left: -9vw;
  left: 50%;
  margin-top: 2.7%;
}

.flow-box div:first-child {
  width: 28%;
  padding-right: 5%;
}

.flow-box dt {
  font-size: 4vw;
  margin-bottom: 2.7%;
}

.flow-box dd {
  font-size: 3.5vw;
}

.flow-wrap {
  background: none;
}

.flow-wrap .flow-box {
  width: 100%;
}

.flow-inner {
  background: url(../content/img/flow_arrow.png) no-repeat 2% top/contain;
  height: 100%;
}
  
.flow-inner .flow-box:first-child::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../content/img/flow_txt.png) no-repeat left top/16vw 7vw;
  width: 16vw;
  height: 7vw;
  margin-top: 1vw;
  top: 100%;
  left: 0;
  z-index: 10;
}

  
  
/*===== voice =====*/

.vocie-box > div {
  flex-direction: column;
  padding: 4%;
  margin-bottom: 5.5%;
}

.vocie-box dl {
  width: 100%;
  order: 2;
}

.vocie-box figure {
  width: 46.15%;
  margin: 0 auto 4%;
  order: 1;
}

.vocie-box dl dt {
  font-size: 4.5vw;
  margin-bottom: 2.7%;
}
  
.vocie-box dl dt br {
  display: none;
}

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

footer {
  padding: 20px 0 0;
}

footer .attention {
  margin-bottom: 10px;
}

footer .attention > p {
  text-align: center;
}

footer .attention dl {
  padding: 0;
  background: #f3efcf;
}

footer .attention dl dt,
footer .attention dl dd {
  padding: 0 10px;
}

footer .attention dl dt {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: url(../common_img/icon_arrow_down.png) no-repeat 98% center;
  background-size: 39px auto;
  margin-bottom: 0;
}

footer .attention dl dt.toggle-active {
  background: url(../common_img/icon_arrow_down_close.png) no-repeat 98% center;
  background-size: 39px auto;
}

footer .attention dl dd {
  background: #FCF9ED;
  padding: 15px 10px;
}

#footer-nav {
  padding: 10px;
}

#footer-nav .display-sp {
  display: block !important;
}

#footer-nav .display-sp a {
  color: #0065A3;
}

#footer-nav .menu-pc {
  display: none;
}

.featured {
  width: 100%;
  margin-bottom: 10px;
}

.featured li {
  background: #fff;
  padding: 2px;
  margin-bottom: 1px;
}

.featured li a {
  display: block;
  border-left: 4px solid #A1CBA7;
  background: url(../common_img/bg_pc.png) no-repeat 98% center;
  background-size: 32px auto;
  font-size: 16px;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
}

.featured li a img {
  display: inline-block;
  width: 35px;
  height: auto;
  margin: 0 10px 0 5px;
  vertical-align: middle;
}

.featured li:first-child a {
  background: url(../common_img/bg_sp.png) no-repeat 98% center;
  background-size: 32px auto;
}

.regular {
  width: 100%;
}

.regular li {
  float: left;
  width: 50%;
  border-bottom: 1px solid #ccc;
}

.regular li:nth-child(odd) {
  border-right: 1px solid #ccc;
}

.regular li a {
  display: block;
  font-size: 16px;
  background: #fff url(../common_img/bg_pc.png) no-repeat 98% center;
  background-size: 32px auto;
  padding: 18px 10px;
  box-shadow: 0px 6px 6px rgba(0,0,0,.1);
}

#pagetop-sp {
  background: #fff;
  text-align: center;
  margin-bottom: 10px;
}

#pagetop-sp a {
  display: block;
  padding: 18px 10px;
}

#pagetop-sp a img {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

#pagetop {
  display: none !important;
}

}




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

header {
  padding: 2% 0;
}
  
.header-fixed + #gnav {
	margin-top: 11%;
}
  
  
  
/*===== intro =====*/

.intro-box p:first-child {
  font-size: 4.5vw;
}

.intro-box p:last-child span {
  font-size: 3.5vw;
}
	
  
  
/*===== conversion =====*/

.conversion {
  padding: 2.75% 3.4%;
}
	
.conversion > p:first-of-type {
  font-size: 4vw;
}

.conversion .col-2 > div img,
.conversion .col-2 > div:first-child img {
	width: 100%;
}

.conversion .col-2 > div:last-child p:first-of-type {
  font-size: 3.5vw;
}

.conversion .col-2 > div:last-child p:last-of-type {
  font-size: 3.5vw;
}

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

.regular li a {
  font-size: 13px;
  background-size: 26px auto;
}

}

#footer .footer-navi .inner li {
	font-size: 13px;
}


@media screen and (max-width:375px) {
	
/*===== footer =====*/

.regular li a {
  font-size: 12px;
  background-size: 22px auto;
  letter-spacing: -.025em;
}

}