@charset "UTF-8";

/* -----------------------------------------------
Table of Contents (common css) [Thought of SMACSS + original]
--------------------------------------------------
0. Foundation
	 0-1. Reset (normalize.css + original)
	 0-2. Base
	 0-3. Config
1. Layout
	 1-1. #l-document
	 1-2. #l-header
	 1-3. #l-container
				1-3-1. #l-main
				1-3-2. #l-sub
	 1-4. #l-footer
	 1-5. #l-nav-global
2. Object
	 2-1. Component a.k.a Module [Thought of BEM + original]
				2-1-1.  Wrap     [wrp-***]
				2-1-2.  Box      [box-***]
				2-1-3.  Table    [tbl-***]
				2-1-4.  Headings [hdg-lv*]
				2-1-5.  Nav      [nav-***]
				2-1-6.  List     [lst-***]
				2-1-7.  Button   [btn-***]
				2-1-8.  Anchor   [acr-***]
				2-1-9.  Text     [txt-***]
				2-1-10. Icon     [icn-***]
				2-1-11. Label    [lbl-***]
				2-1-12. Form     [frm-***]
				2-1-13. Error    [err-***]
				2-1-14. UI
	 2-2. Utility
				2-2-1. clearfix
				2-2-2. margin,padding [mb10,pt20]
				2-2-3. Object-Oriented CSS
				2-2-4. Grid System [grid-***]
				2-2-5. WebFont [FontAwesome] http://fortawesome.github.io/Font-Awesome/icons/
	 2-3. State [is-***]
	 2-4. OverLayerConfig [z-index]
	 2-5. Project

	 -------------------------------------------------- */

/* -----------------------------------------------
 [0. Foundation]
 -------------------------------------------------- */

/* 0-1. Reset
-------------------------------------------------- */
html{
	font-family: sans-serif;
}
body{
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}
a{
	background: transparent;
}
a:focus{
	outline: thin dotted;
}
a:active,
a:hover{
	outline: 0;
}
html,div,span,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,code,del,em,img,strong,
dl,dt,dd,ol,ul,li,
fieldset,form,label,
table,caption,tbody,tfoot,thead,tr,th,td{
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
article,aside,footer,header,small,nav,section,figure,figcaption,main{
	margin: 0;
	padding: 0;
	display: block;
	vertical-align: baseline;
	list-style: none;
	background-color: transparent;
	outline: none;
}
audio,canvas,video{
	display: inline-block;
}
ul,ol{
	list-style-type: none;
}
table{
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
}
img{
	line-height: 1;
	vertical-align: bottom;
	outline: none;
	-webkit-backface-visibility: hidden;
}
a img{
	border: none;
	outline: none;
}
sub,sup{
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
hr{
	box-sizing: content-box;
	height: 0;
}
dt,dd,li,
th,td,
input,textarea{
	text-align: left;
	vertical-align: top;
}
button{
	border: none;
}
input,textarea,button{
	margin: 0;
	padding: 0;
}
input{
	border: 1px solid #dad7d3;
	padding: 2px 5px;
}
textarea{
	border: 1px solid #dad7d3;
	resize: none;
}
button,label{
	background-color: transparent;
	cursor: pointer;
}
button,select{
	text-transform: none;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"]{
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
input[disabled]{
	cursor: default;
}
input[type="checkbox"],
input[type="radio"]{
	box-sizing: content-box;
	padding: 0;
	vertical-align: middle;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration{
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner{
	padding: 0;
	border: 0;
}
textarea{
	overflow: auto;
	vertical-align: top;
}
small{
	font-size: 0.8em;
	display: inline;
}
:focus{
	outline: none;
}

/* 0-2. Base
-------------------------------------------------- */
html{
	overflow-y: scroll;
	font-size: 100%;
}
h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: bold;
}
table{
	width: 100%;
}
input,textarea,button,select{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 100%;
}
html[lang="en"] input,
html[lang="en"] textarea,
html[lang="en"] button,
html[lang="en"] select{
	font-family: Arial, Helvetica, sans-serif;
}
strong,
em{
	font-weight: bold;
}

/* 0-3. Config
-------------------------------------------------- */
body{
	font-size: 15px;
	color: #4f5b5c;
	background-color: #fff;
	letter-spacing: 0;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
@media only screen and (min-width: 1px) and (max-width: 768px){
	body{
		font-size: 13px;
		line-height: 1.538;
	}
}
input,textarea,button,select{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 100%;
}

a{
	color: #00479d;				/* ベースのリンク文字の色を指定 */
	text-decoration: none;	/* ベースのリンク文字の下線の有無を指定 */
	-webkit-transition: all .5s;
	transition: all .5s;
}
a:focus {
	outline: none;
}
@media only screen and (min-width: 769px){
	a:hover{
		opacity: .7;
	}
	a:hover,
	a:active{
		color: #00479d;				/* ベースのリンク文字の色を指定 */
		/*text-decoration: underline;	*/	/* ベースのリンク文字の下線の有無を指定 */
	}
}
h1,h2,h3,h4,h5,h6{
	line-height: 1.4;			/* ベースの行間を指定 */
}
p{
	line-height: 1.6666666;			/* ベースの行間を指定 */
}
dt,dd,li,
th,td,
input,
textarea,
button{
	line-height: 1.5;			/* ベースの行間を指定 */
}
button {
	border-radius: 0;
}
sup {
	vertical-align: top;
	line-height: 1;
}
img{
	vertical-align: top;
}
/* -----------------------------------------------
 [1. Layout]
 -------------------------------------------------- */
/* 1-1. #l-document
-------------------------------------------------- */
#l-document{
	overflow: hidden;
	position: relative;
}
/* 1-2. header
-------------------------------------------------- */
.header {
    background: #fff;
    padding: 13px 0;
    z-index: 100;
    width: 100%;
}
.header__logo a {
	padding-left: 20px;
	font-size: 0;
	display: inline-block;
	vertical-align: bottom;
  bottom :1px;
	background-size: 7px auto;
	transition: all 0.5s;
}
.header__logo a:hover {
	opacity: 0.7;
}
.header__logo span {
	display: inline-block;
	line-height: 1;
	vertical-align: bottom;
	color: #053b80;
	font-size: 16px;
	letter-spacing: -0.025em;
	font-weight: 300;
	margin-left: 5px;
}
.header__logo img {
	width: 108px;
	height: auto;
}

.header-img{width:100%;}

@media only screen and (min-width: 1px) and (max-width: 768px) {
	.header {
		padding: 11px 0;
	}
	.header__logo a {
		background-size: 5px auto;
		padding-left: 18px;
		margin-left: -6px;
	}
	.header__logo img {
		width: 86px;
	}
	.header__logo span {
		font-size: 12px;
	}
}
.ie8 .header__logo a {
}

/* 1-3. #l-container
-------------------------------------------------- */

/* 1-3-1. #l-main
-------------------------------------------------- */

/* 1-3-2. #l-sub
-------------------------------------------------- */


/* 1-4. footer
-------------------------------------------------- */
.footer__totop {
	text-align: right;
	font-size: 0;
	margin-top: -35px;
	margin-bottom: -36px;
}
.footer__totop a {
	display: inline-block;
	transition: all 0.5s;
}
.footer__totop a:hover {
	opacity: 0.7;
}
.footer__totop img {
	width: 71px;
	height: auto;
}
.footer__body {
    background: #f4f4f4;
    padding-bottom: 25px;
    bottom: 0;
    width: 100%;
}
.footer__left {
	padding-top: 25px;
}
.footer__left:after {
	content: "";
	display: block;
	clear: both;
}
.footer__share {
	width: 485px;
	border-radius: 35px;
	background: #f1f1f1;
	box-shadow: inset 0 2px 10px rgba(0,0,0,.09);
	color: #666;
	font-size: 14px;
	display: table;
	float: left;
	margin-top: 5px;
}
.footer__share__text,
.footer__share__list {
	display: table-cell;
	vertical-align: middle;
}
.footer__share__text {
	padding: 0 15px 0 20px;
}
.footer__share__text span {
	display: inline-block;
	vertical-align: middle;
}
.footer__share__text span:last-child {
	font-size: 12px;
	margin-left: 10px;
}
.footer__share__list {
	padding: 11px 0;
	font-size: 0;
}
.footer__share__list li {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
}
.footer__share__list a {
	display: block;
	font-size: 0;
	transition: all 0.5s;
}
.footer__share__list a:hover {
	opacity: 0.7;
}
.footer__share__list img {
	width: 48px;
	height: auto;
}
.footer__copyright {
	text-align: right;
	font-size: 10px;
	margin-top: -20px;
	letter-spacing: -0.025em;
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
	.footer__body {
		padding-bottom: 10px;
	}
	.footer__totop {
		margin-bottom: -30px;
	}
	.footer__totop img {
		width: 60px;
	}
	.footer__logo {
		float: none;
		text-align: center;
		margin: 0 0 30px;
	}
	.footer__logo img {
		width: 105px;
	}
  .footer__left {
	padding-top: 25px;
  padding-bottom: 70px;
}
	.footer__share {
		width: 100%;
		border-radius: 50px;
		margin-bottom: 10px;
	}
	.footer__share__text span {
		display: block;
	}
	.footer__share__text span:last-child {
		margin: 0;
	}
	.footer__share__list {
		padding: 20px 15px 20px 0;
		text-align: right;
	}
	.footer__share__list img {
		width: 60px;
	}
	.footer__copyright {
		margin-top: 0;
		font-size: 9px;
		text-align: center;
	}
}
@media only screen and (min-width: 1px) and (max-width: 374px) {
	.footer__share__list img {
		width: 44px;
	}
}

/* 1-5. #l-nav-global
-------------------------------------------------- */

/* -----------------------------------------------
 [2. Object]
 -------------------------------------------------- */

/* 2-1. Component a.k.a Module
-------------------------------------------------- */
/*2-1-1.  Wrap     [wrp-***]*/
.wrp-container {
	max-width: 970px;
	padding: 0 15px;
	margin: 0 auto;
}

.wrp-container2 {
    max-width: 970px;
    padding: 0 15px 50px;
    background: url(./img/bg_inner2.png) repeat center top / 100% auto;
    margin: 0 auto;
}

.wrp-container3 {
    max-width: 970px;
    padding: 0 15px 80px;
    background: #000 ;
    margin: 0 auto;
}

.wrp-container4 {
    max-width: 970px;
    padding: 0 15px 50px;
    background: #8a0780 ;
    margin: 0 auto;
}
.wrp-container5 {
    max-width: 940px;
    padding: 0 15px 50px;
    background: url(./img/bg_inner.png) repeat center top / 100% auto;
    margin: 0 auto;
}

@media only screen and (min-width:1px) and (max-width:768px){
  .wrp-container2 {
    max-width: 970px;
    padding: 30px 0px 0px;
    background-color:#f5c800; 
    background: url(./img/bg_inner2-sp.png) repeat center top / 100% auto;
    margin: 0 auto;
}
  .wrp-container3 {
    max-width: 970px;
    padding: 0 0px 2%;
    background: #000 ;
    margin: 0 auto;
}
  .wrp-container4 {
    max-width: 970px;
    padding: 0 0px 0px;
    background: #440062 ;
    margin: 0 auto;
}
  
  .mt20-sp{margin-top: 20px;}
  .mt30-sp{margin-top: 30px;}
  .mt40-sp{margin-top: 40px;}
  .mt50-sp{margin-top: 50px;}
}

/*-----------------------------*/


@media all and (-ms-high-contrast:none){
	*::-ms-backdrop{
		width: 100%;
	}
}

/* 2-2. Utility
-------------------------------------------------- */
/*2-2-1. clearfix [ModernType]*/
#l-header:after,.wrp-header:after,#l-container:after,#l-main:after,#l-sub:after,#l-footer:after,.nav ul:after,.wrp-container:after,
.clearfix:after{
	display: block;
	clear: both;
	content: "";
}


/* for RWD */
.fluid-image{
	max-width: 100%;
	height: auto;
}
.full-image {
	width: 100%;
	height: auto;
}


/* 2-2-6. Visibility [visible-***] */
.is-visiblePc{
	display: block!important;
}
.is-visibleSp{
	display: none!important;
}
.is-visibleTablet{
	display: none!important;
}
@media only screen and (min-width:1px) and (max-width:768px){
	.is-visiblePc{
		display: none!important;
	}
	.is-visibleSp{
		display: block!important;
	}
	.is-visibleTablet{
		display: none!important;
	}
}/* endMedia */

/* 2-3. State [is-***]
-------------------------------------------------- */
.is-open{
	display: block;
}
.is-error{
	background-color: #f9eceb;
}
.is-disabled{
	opacity: 0.45;
}
.is-show{
	visibility: visible;
	opacity: 1;
}
/* -------------------------------------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}




.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/* -------------------------------------------------- */
.main-visual h1 {
	font-size: 0;
}
.is-revealed {
 	opacity: 0;
 	transition: all .5s ease;
}
.is-revealed.show {
  opacity: 1;
  transform: none;
}
.animated-up {
  transform: scale(.5);
}
.main-visual {
	position: relative;
}
.main-visual__yuge {
	animation-name: fadeIn !important;
	animation-duration: 5s !important;
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
}


@media screen and (min-width: 769px){
	#document {
		background-color: #fff;
	}
	.main {
		background: url("./img/bg.png") repeat center top;
    background-color: #fff;
	}
	.main-content {
		width: 970px;
		margin: 0 auto;
    background: url("./img/bg_inner.png") repeat center top / 100% auto;
    background-size: auto;
	}
  .main-visual {
    background: url("./img/bg_inner.png") repeat center top / 100% auto;
    background-size: auto;
  }
  .main-visual img {
    width: 100%;
  }
	.main-visual__title {
    padding-top: 0;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
    height: 200px;
    position: relative;
  }
  .main-visual__title img {
    width: 100% ;
  }
	.main-visual__benefits01 {
    margin-top: 0;
    text-align: center;
    margin: 0 auto;
    max-width: 345px;
    padding: 50px 0 10px 0;
  }
  .main-visual__benefits01 img {
    width: 100% ;
  }
	.main-visual__benefits02 {
    margin-top: 0;
    text-align: right;
  }
  .main-visual__benefits02 img {
    width: 100%;
  }
	.main-visual__benefits02 img.is-visiblePc {
		display: inline!important;
	}
	.main-visual__note {
    margin-top: 0;
    text-align: right;
    color: #fff;
    padding-right: 45px;
    font-size: 12px;
  }
  	.main-visual__note2 {
    margin-top: 40px;
    text-align: right;
    color: #fff;
    padding-right: 70px;
    font-size: 12px;
  }
	.main-visual__note img.is-visiblePc {
		display: inline!important;
	}
	.box-charm {
    margin-top: 10px;
		position: relative;
	}
	.box-charm__title {
    margin-top: 0;
    width: 316px;
  }
  .box-charm__title img {
    width: 100%;
  }
  li.box-charm__charm01.animated-up.show {
    max-width: 278px;
}
  li.box-charm__charm01.animated-up.show img {
    width: 100%;
  }
  li.box-charm__charm02.animated-up.show {
    max-width: 283px;
}
  li.box-charm__charm02.animated-up.show img {
    width: 100%;
  }
  li.box-charm__charm03.animated-up.show {
    max-width: 312px;
}
  li.box-charm__charm03.animated-up.show img {
    width: 100%;
  }
  li.box-charm__charm04.animated-up.show {
    max-width: 351px;
  }
  li.box-charm__charm04.animated-up.show img {
    width: 100%;
  }
  .box-charm__title2 {
    position: relative;
    max-width: 599px;
    margin: 0 auto;
    background: #910782;
    margin: 50px auto 0;
    padding: 50px;
  }
  .box-charm__title2 img {
    width: 100%;
  }
  .box-charm__title2-2 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin: 50px auto 0;
    padding: 60px 50px 0px;
  }
  .box-charm__title2-2 img {
    width: 100%;
  }
  .box-charm__title2-3 {
    position: relative;
    max-width: 700px;
    background: #fff;
    margin: 0 auto;
    margin: 20px auto 0px;
    padding: 50px 50px 50px;
  }
  .box-charm__title2-3 img {
    width: 100%;
  }
  .box-charm__title2-4{
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin: 50px auto 0;
    padding: 60px 50px 0px;
  }
  .box-charm__title2-5{
    position: relative;
    max-width: 800px;
    margin: 0px auto !important;
    padding: 80px 50px 0px;
  }
  .box-charm__title2-5.pd20{
    padding: 20px 50px 0px !important;
  }
  
  .box-charm__title2-4 img,.box-charm__title2-5 img {
    width: 100%;
  }
  .box-charm__title2-4,.box-charm__title2-5 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin: 50px auto 0;
    padding: 60px 50px 0px;
  }
  .box-charm__title2-4 img,.box-charm__title2-5 img {
    width: 100%;
  }
	.box-charm__text ul li {
		position: absolute;
	}
	.box-charm__charm01 {
		top: 400px;
		left: 0px;
	}
	.box-charm__charm02 {
    top: 510px;
    left: 290px;
  }
	.box-charm__charm03 {
    top: 132px;
    right: -8px; 
  }
	.box-charm__charm04 {
    top: 650px;
    right: 0;
  }
	.box-charm__note {
		position: absolute;
		top: 927px;
		right: 0;
		color: #fff;
	}
	.box-charm__note a {
		color: #fff;
		text-decoration: underline;
	}
	.box-howto__text {
		margin-top: 600px;
    max-width: 970px;
	}
  .box-howto__text img {
    width: 100%;
	}
  
	.box-howto__bnr {
		margin-top: 30px;
	}
	.box-howto__note {
		padding: 30px 0 60px;
		color: #000;
	}
}
@media only screen and (min-width:1px) and (max-width:768px){
	body {
		background-color: #fff;
	}
  /*
	.main {
		background: url("./img/background-sp.png") no-repeat center top / 100% auto;
	}
  */
  .main-visual {
    background: url("./img/bg_inner.png") repeat center top / 100% auto;
    background-size: cover;
  }
  .box-charm {
    background: url("./img/bg_inner.png") repeat center top / 100% auto;
  }
	.main-visual__title {
    width: 60%;
    margin: 0 auto;
    padding-top: 7%;
    padding-bottom: 7%;
  }
	.main-visual__benefits01 {
    margin-top: 0;
    padding: 3% 0 0;
    max-width: 80%;
    margin: 0 auto;
  }
	.main-visual__benefits02 {
		margin-top: 180px;
	}
	.main-visual__note {
		width: 90%;
    margin: 0 auto;
    font-size: 10px;
    color: #000;
	}
	.box-charm__title {
    width: 50%;
    margin: 0 auto 6%;
    margin-top: 30%;
    margin-left: 5%;
  }
  .box-charm__title2 {
    width: 90%;
    margin: 0 auto 5%;
  }
  .box-charm__title2-2 {
    width: 90%;
    margin: 0 auto 5%;
  }
  .box-charm__title2-3 {
    width: 90%;
    margin: 0 auto 5%;
  }
	.box-charm__charm01,.box-charm__charm02,.box-charm__charm03,.box-charm__charm04 {
		width: 70%;
		margin: 0 auto;
	}
  .box-charm__charm03 {
    
		width: 82%;
		margin: 0 auto;
    margin-top: 7%;
	}
  .box-charm__charm04 {
    
		width: 95%;
		margin: 0 auto;
    margin-top: 7%;
	}
	.box-charm__charm02 {
		margin-top: 7%;
		position: relative;
	}
	.box-charm__charm02:after {
		content: '';
		display: inline-block;
		background: url("/special/campaign/ibusuki_yuttari/images/bg-charm01-sp.png") no-repeat center top;
		position: absolute;
		top: -74px;
		left: -31px;
		background-size: 100%;
		height: 304px;
		width: 552px;
		z-index: -1;
		max-width: 100%;

	}
	.box-charm__charm03 {
		margin-top: 2%;
	}
	.box-charm__charm04 {
		margin-top: 3%;
		position: relative;
	}
	.box-charm__charm04:after {
		content: '';
		display: inline-block;
		background: url("/special/campaign/ibusuki_yuttari/images/bg-charm02-sp.png") no-repeat center top;
		position: absolute;
		top: -74px;
		left: -31px;
		background-size: 100%;
		height: 437px;
		width: 625px;
		z-index: -1;
		max-width: 100%;

	}
	.box-charm__note {
		width: 90%;
		margin: 7% auto 0;
		color: #fff;
		font-size: 120%;
	}
	.box-charm__note a {
		color: #fff;
		text-decoration: underline;
	}
	.box-howto__text {
		width: 90%;
		margin: 7% auto;
	}
	.box-howto__bnr {
		margin: auto;
		padding: 7% 0 7%;
	}
	.box-howto__note {
		color: #fff;
	}
}

.title-col3 {
    width: 30%;
    display: inline-block;
    position: relative ;
}
.title-col3 img {
    width: 100%;
    position: absolute;
    left: 0 ;
    
}
.fukidashi {
    position: absolute;
    right: -70px;
    width: 83px;
    top: 56px;
}
.title-col3:nth-child(1) img {
    max-width: 133px;
  
}
.title-col3:nth-child(2) img {
    max-width: 205px;
    width: 205px ;
}
.title-col3:nth-child(3) img {
    max-width: 133px;
}
.main-visual__title_top {
    max-width: 460px;
    margin: 0 auto;
    padding-top: 75px;
}
.main-visual__title_top img {
    width: 100%;
}
.box-charm__title3 {
    margin: 0 auto;
    max-width: 344px;
    padding: 100px 0 50px;
}
.box-charm__title3 img {
    width: 100%;
}
.banner-area {
    max-width: 600px;
    margin: 0 auto ;
    font-size: 0 ;
    padding-bottom: 75px ;
}
.banner-col3 {
    width: 49%;
    display: inline-block;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .banner-col3:nth-child(2n) {
    margin-right: 0 ;
  }
/*.banner-col3 {
    width: 32%;
    display: inline-block;
    margin-right: 1%;
    margin-bottom: 1%;
}*/
.banner-col3 img {
    width: 100%;
}
.banner01-col3 {
    width: 33%;
    display: inline-block;
    text-align: center;
}
.banner01-col3 img {
    max-width: 165px ;
    width: 100%;
}
.banner02-col3 {
    width: 33%;
    display: inline-block;
    text-align: center;
}
.banner02-col3 img {
    max-width: 161.5px ;
    width: 100%;
}
.banner03-col3 {
    width: 32.5%;
    display: inline-block;
    text-align: center;
}
.banner03-col3 img {
    max-width: 279.5px ;
    width: 100%;
}
.banner-com {
    padding: 0 10% 50px;
    border-top: 2px solid #fff;
    padding-top: 20px;
}
.cv_btn_area {
    position: fixed;
    top: 63px;
    right: 10px;
}
.cv_btn_area img {
    width: 260px ;
}
.image02_fix {
    margin-top: -76px;
}
@media only screen and (min-width:1px) and (max-width:768px){
  .main-visual__title_top {
    margin: 0 auto 0px;
    padding-bottom: 0px;
    text-align: center;
  }
  .main-visual__title_top img{width:99%}
  .main-visual__note,.main-visual__note2 {
    width: 90%;
    margin: 0 auto;
    font-size: 10px;
    color: #fff;
    text-align: right;
  }
  .title-col3:nth-child(1) img {
    max-width: 133px;
    width:95px;
  
}
.title-col3:nth-child(2) img {
    max-width: 150px;
    width: 155px ;
}
.title-col3:nth-child(3) img {
    max-width: 133px;
  width:93px;
  margin-left:15%;
}
  .main-visual__title {
    width: 80%;
    margin: 0 auto;
    padding-top: 0%;
    padding-bottom: 7%;
  }
  .box-charm__title2 {
    width: 80%;
    margin: 7% auto 5%;
    background: #88167A;
    padding: 5%;
  }
  .box-charm__title2-2 {
    width: 90%;
    margin: 7% auto 0%;
    padding: 5%;
  }
  .box-charm__title2-3 {
    width: 100%;
    margin: 0px auto;
    background: #fff;
    padding: 10% 0 10% ;
    border-bottom: solid 20px #f5c800;
  }
  .box-charm__title2-4 {
    width: 100%;
    margin: 7% auto 5%;
    padding: 15% 0 5%;
  }
  .box-charm__title2-5 {
    width: 100%;
    margin: 0 auto;
    padding: 10% 0 0;
  }
  .box-charm__title2-5 img.pd{
    width: 85%;
    margin: 0 auto 0;
    padding: 0 0 10px;
  }
  .box-charm__title2-5 img{
    width:100%;
  }
  .banner-area {
    max-width: 666px;
    margin: 0 auto ;
    font-size: 0 ;
    padding-bottom: 75px ;
}
  .banner-col3 {
    width: 49%;
    display: inline-block;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .banner-col3:nth-child(2n) {
    margin-right: 0 ;
  }
  .banner-com {
    padding: 0 0 40px;
    border-top: 2px solid #fff;
    padding-top: 20px;
  }
  .banner01-col3 {
    width: 32%;
  }
  .banner02-col3 {
    width: 32%;
  }
  .banner01-col3 img {
    max-width: 100px;
  }
  .banner02-col3 img {
    max-width: 90px;
  }
  .banner03-col3 img {
  }
  .cv_btn_area {
    position: fixed;
    width: 100%;
    top: initial;
    bottom: 0;
    right: inherit
}
  .cv_btn_area img {
    width: 100% ;
}
  .main-visual__title_top {
    padding-top: 20px;
  }
  .box-charm__title3 {
    padding: 50px 0 50px;
  }
  img.w90-sp {width:90%; margin: 0 auto;}
  
    .slide-wrap {
  overflow-x: scroll;
  margin-top:5%;
} 
.slide-wrap::-webkit-scrollbar{height:10px;}/*バーの太さ*/
.slide-wrap::-webkit-scrollbar-track{background:#dddddd;}/*バーの背景色*/
.slide-wrap::-webkit-scrollbar-thumb{background:#88167A;}/*バーの色*/
  
}

@media only screen and (min-width:641px) and (max-width:768px){
  .slide-wrap img{width:768px; padding:0 20px 20px !important; }
}
@media only screen and (max-width:640px){
  .slide-wrap img{width:514px; padding:0 20px 20px !important; }
}

.align1{text-align: center;}