@charset "utf-8";
/* CSS Document */
/*----------------------------------------
	RESET
-----------------------------------------*/
body {
  line-height: 1.0;
  -webkit-text-size-adjust: none;
  background-size: cover;
  height: 100vh;
}
img {
  border: 0;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  width: 100%;
}

a:-webkit-any-link {
  color: inherit;
  text-decoration: none;
}
a:-webkit-any-link:hover {
  opacity: 0.4;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*----------------------------------------
menu
-----------------------------------------*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
	background-color: #FFF2E7;
	margin-bottom: 20px;
}
.global-nav {
  position: fixed;
  right: -320px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: #fff;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 40px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
}
.global-nav__list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
}
.global-nav__item a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333333;
text-align: left;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 35px;
  height: 4px;
	border-radius: 2px;
  background-color: #111;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 15px;
}
.hamburger__line--2 {
  top: 25px;
}
.hamburger__line--3 {
  top: 35px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}
/*----------------------------------------
BODY
-----------------------------------------*/
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
body {
  width: 100%;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
/*  background-color: #FFF2E7;*/
}
.bg{
	background-color: #FFF2E7;
	padding-top: 20px;
	padding-bottom: 5px;

}
.inner {
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%
}

p{
	font-size: 28px;
	line-height: 1.3em;
}

h2{
	font-size: 32px;
	text-align: left;
	margin-bottom: 50px;
	line-height: 3rem;
}
.marker{
	background: linear-gradient(transparent 60%, #FCE898 60%);
	padding-bottom: 7px;
}
section{
	margin-bottom: 150px;
}
/*----------------------------------------
header
-----------------------------------------*/
header p {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	margin-bottom: 50px;
}

/*----------------------------------------
mv
-----------------------------------------*/
#mjlogo{
	width: 205px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 70px;
}

h1 img{
	margin-bottom: 50px;
}


/*----------------------------------------
answer
-----------------------------------------*/

.acd-check{
    display: none;
}
.acd-label{
    background: #333;
    color: #fff;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
	/*position: relative;*/
}
.acd-content{
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
	overflow: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
    height: 100%;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}







.acd-label:after{
    box-sizing: border-box;
    content: url("../img/arrow_d.png");
    display: block;
    font-family: 'FontAwesome';
    height: 52px;
    /*padding: 10px 20px;
    position: absolute;*/
    right: 0;
    top: 0px;
	padding-left: 100%;
    margin: -4%;
	padding-top: 5px;
}

.acd-check:checked + .acd-label:after{
    content:  url("../img/arrow_u.png");
}









.flex_circle{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 95%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/*ボックス全体*/
.accbox {
    margin: 2em auto;
    padding: 0;
    max-width:90%;
	text-align: center;
	
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    color: #ffffff;
    background: #fff2cc;
    cursor :pointer;
    transition: all 0.5s;
	text-align: left;
	font-size: 24px;
	letter-spacing: 0.2rem;
}
section .accbox .m_y{
	background-color: #3FA9F5;
}
section .accbox .m_n{
	background-color: #0071BC;
}
section .accbox .w_y{
	background-color: #FF7180;
}
section .accbox .w_n{
	background-color: #D4145A;
}


.flex_speech{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.flex_answer{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 10px;
}



p.txt_m_y{
    padding-top: 10px;
    padding-bottom: 10px;
	    padding-left: 7px;
	padding-right: 5px;
	text-align: left;
	color: #3FA9F5;
}
p.txt_m_n{
    padding-top: 10px;
    padding-bottom: 10px;
	    padding-left: 7px;
	padding-right: 5px;
	text-align: left;
	color: #0071BC;
}
p.txt_w_y{
    padding-top: 10px;
    padding-bottom: 10px;
	    padding-left: 7px;
	padding-right: 5px;
	text-align: left;
	color: #FF7180;
}
p.txt_w_n{
    padding-top: 10px;
    padding-bottom: 10px;
	    padding-left: 7px;
	padding-right: 5px;
	text-align: left;
	color: #D4145A;
}

.square{
	padding-top: 8px;
}
   

.txt_speech{
	background-color: #ffffff;
	width: 540px;
	 border-radius: 10px;
	
}
/*----------------------------------------
recommend
-----------------------------------------*/
#recommend{
	margin-bottom: 0px;
}

#recommend.inner h2{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 120px;
    letter-spacing: 0.1rem;
}
#sns.inner h2{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 80px;
    letter-spacing: 0.1rem;
}
#recommend.inner p{
	margin-bottom: 50px;
}




/*----------------------------------------
footer
-----------------------------------------*/

footer p {
	font-size: 18px;
	color: #ffffff;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
}

.copy {
	background-color: #000000;
	padding-top: 10px;
	padding-bottom: 10px;
}
	#sns.inner img{
		width: 100%;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}


#sns_mj{
	width: 10%;
	text-align: center;
		margin-left: auto;
		margin-right: auto;
	
}


.flex_sns{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 40%;
	text-align: center;
		margin-left: auto;
		margin-right: auto;
	margin-bottom: 100px;
}
img#f_mj{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	width: 15%;
	margin-bottom: 30px;
	padding-right: 30px;
}


/*----------------------------------------
sp
-----------------------------------------*/

@media screen and (max-width: 750px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	/*----------------------------------------
BODY
-----------------------------------------*/
	.inner{
		width: 95%;
		margin-bottom: 100px;
	}

p{
	font-size: 16px;
	line-height: 1.3em;
}

h2{
	font-size: 16px;
	text-align: left;
	margin-bottom: 15px;
	line-height: 2rem;
	padding-top: 60px
}


section{
	margin-bottom: 0px;
}
	.bg{
	padding-top: 0px;
		padding-bottom: 1px;
		margin-bottom: 0px;
}
	/*----------------------------------------
menu
-----------------------------------------*/
.header {
  height: 50px;
	margin-bottom: 10px;
}

	/*----------------------------------------
mv
-----------------------------------------*/
#mjlogo{
	width: 30%;
	margin-top: 50px;
}

h1 img{
	margin-bottom: 20px;
}
	/*----------------------------------------
answer
-----------------------------------------*/
	/*ボックス全体*/
.accbox {
    margin: 1em auto;
    max-width:95%;
}

/*ラベル*/
.accbox label {
    padding : 14px 6px;
    color: #ffffff;
    cursor :pointer;
    transition: all 0.5s;
	font-size: 16px;
	letter-spacing: 0.1rem;
}

	.accbox .accshow p {
   font-size: 14px;
	padding-left: 10px;
}

	.txt_speech{
	width: 260px;
	
}
	
	
	
		.acd-label:after {
 margin: -9%;
    padding-top: 12px;
			width: 100%;
}
	
	
	section .accbox .m_y,section .accbox .m_n,section .accbox .w_y,section .accbox .w_n{
	height: 16px;
}

	/*----------------------------------------
recommend
-----------------------------------------*/
#recommend{
	margin-bottom: 40px;
}

#recommend.inner h2,#sns.inner h2{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 80px;
    letter-spacing: 0;
	font-size: 18px;
}
#recommend.inner p{
	margin-bottom: 15px;
}
	/*----------------------------------------
footer
-----------------------------------------*/
	footer{
		vertical-align: bottom;
		
	}
		footer p {
		font-size: 10px;
			
	}
	
	.power{
		margin-top: -400px;
	}
		#sns.inner img{
		width: 80%;
			padding-top: 20px;
	}
	.flex_sns{
	width: 50%;
		margin-bottom: 50px;
}
	img#f_mj{
	width: 30%;
	margin-bottom: 30px;
	padding-right: 15px;
}


}

@media screen and (max-width: 320px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
		.txt_speech{
	width: 220px;
	
}
	.acd-label:after {
    padding-top: 8px;
}

}
