﻿@charset "utf-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css?family=Anton|Economica:400,400i,700,700i|Electrolize|Fira+Sans+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Julius+Sans+One|Jura:300,400,500,600,700|Khand:300,400,500,600,700|Montserrat+Alternates:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Orbitron:400,500,700,900|Oswald:200,300,400,500,600,700|Rajdhani:300,400,500,600,700|Raleway+Dots|Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Ropa+Sans:400,400i|Saira+Condensed:100,200,300,400,500,600,700,800,900|Saira+Extra+Condensed:100,200,300,400,500,600,700,800,900|Sarpanch:400,500,600,700,800,900|Squada+One|Teko:300,400,500,600,700|Wire+One|Baloo+Da|Baloo+Tammudu|Chathura:100,300,400,700,800|Kenia|Timmana|Viga|Righteous|Allerta+Stencil|Bahiana|Basic|Black+Ops+One|Carme|Days+One|Dorsa|Farsan|Fredericka+the+Great|Fugaz+One|Gurajada|Homenaje|Jockey+One|Just+Another+Hand|Just+Me+Again+Down+Here|Lily+Script+One|Nixie+One|Nosifer|Pompiere|Racing+Sans+One|Reem+Kufi|Secular+One|Six+Caps|Tulpen+One');

/* Anton - Economica - Electrolize - Fira Sans Condensed - Julius Sans One - Jura - Khand - Montserrat Alternates - Orbitron - Oswald - Rajdhani - Raleway Dots - Raleway - Ropa Sans - Saira Condensed -Saira Extra Condensed - Sarpanch - Squada One - Teko - Wire One - Baloo Da - Baloo Tammudu - Chathura - Kenia - Timmana - Viga - Righteous - Allerta Stenci - Bahiana - Basic - Black Ops One - Carme - Days One - Dorsa - Farsan - Fredericka the Great - Fugaz One - Gurajada - Homenaje - Jockey One - Just Another Hand - Just Me Again Down Here - Lily Script One - Nixie One - Nosifer - Racing Sans One - Reem Kufi - Secular One - Six Caps - Tulpen One */


/***** loader *****/

#fade {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 5000;
    width: 100%;
    height: 100%;
    background: #fff;
}

#wrap {
    display: block;
}

#spinner {
    position: fixed;
    z-index: 5000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	width: 75px;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#spinner div {
    width: 8px;
    height: 110px;
    background-color: #d8a21e;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    -moz-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    -o-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    -ms-animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

#spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

#spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

#spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

#spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
	
0%, 40%, 100% {
	-webkit-transform: scaleY(0.4);
}  

20% {
	-webkit-transform: scaleY(1.0);
}

}

@keyframes sk-stretchdelay {

0%, 40%, 100% { 
	  transform: scaleY(0.4);
	  -webkit-transform: scaleY(0.4);
}

20% { 
	  transform: scaleY(1.0);
	  -webkit-transform: scaleY(1.0);
}

}



/***** base *****/

*{
	list-style: none;
	margin: 0 auto;
	padding: 0px;
	border: none;
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

body {
	color: #000;
	font-family: 'Noto Sans Japanese', 'Sawarabi Mincho', 'Open Sans', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'sans-serif';
	font-size: 14px;
	line-height: 1.5;
	background-color: #000;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: #000;
	text-decoration: none;
}

.fixed {
    position: fixed;
    top: 0;
	bottom: 0;
    left: 0;
    right: 0;
}


/***** slide *****/

.d1 {
	display: block;
}

.d2 {
	display: none;
}


/***** bg *****/

.bg1 {
    background-color: #f6f6f6;
}

.bg2 {
    background-color: #fff;
}

.bg3 {
    background-color: #222;
}

.bg4 {
    background-color: #fbfbfb;
}


/***** header *****/

.header1 {
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.38);
	transition: .8s;
}

.header1-inner1 {
	position: relative;
	width: 1700px;
    height: auto;
}

.header1-img1 {
    position: fixed;
    z-index: 2000;
    top: 30px;
    left: 50px;
    width: 250px;
}

.header1-btn1 a {
    position: fixed;
	z-index: 2100;
    top: 120px;
    left: 65px;
    width: auto;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    padding: 10px 35px 10px 35px;
    background-color: #d8a21e;
	transition: .3s;
    display: block;
}

.header1-btn1 a:hover {
    background-color: #8ec046;
}

.header1-menu1 {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    width: 100%;
	height: 100%;
	background-color: #fff;
	display: none;
}

.header1-menu1 ul {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.header1-menu1 ul li {
    width: 100%;
    margin: 7px 0px 7px 0px;
    text-align: center;
    overflow: hidden;
	cursor: pointer;
}

.header1-menu1 ul li a {
	color: #d8a21e;
    font-size: 22px;
    font-weight: 900;
    text-indent: 1px;
    letter-spacing: 1px;
    display: block;
}

.header1-menu1-txt1 {
	color: #000;
	font-family: 'Noto Sans Japanese';
    font-size: 12px;
    font-weight: 700;
}

.header1-menu1 ul li  ul {
	padding: 10px 0px 10px 0px;
	display: none;
}


/***** hum *****/

.header1-hum1 {
    position: fixed;
    z-index: 3000;
    top: 60px;
    right: 65px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.header1-hum1-line1, .header1-hum1-line2, .header1-hum1-line3 {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #d8a21e;
    transition: .8s;
    border-radius: 5px;
}

.header1-hum1-line1 {
	top: 0px;
}

.header1-hum1-line2 {
    top: 10px;
}

.header1-hum1-line3 {
    top: 20px;
}

.header1-hum1.act1 .header1-hum1-line1 {
    width: 30px;
    transform: translateY(10px) translateX(0px) rotate(45deg);
}

.header1-hum1.act1 .header1-hum1-line2 {
	width: 0;
	opacity: 0;
}

.header1-hum1.act1 .header1-hum1-line3 {
    width: 30px;
    transform: translateY(-10px) translateX(0px) rotate(-45deg);
}


/***** grid *****/

.grid1 {
    width: 100%;
    /*padding: 140px 0px 70px 0px;*/
    overflow: hidden;
}

.grid1-inner1 {
    width: 100%;
    height: 120px;
    background-color: #653e0e;
}

.grid2 {
    width: 100%;
	overflow: hidden;
}

.grid2-inner1 {
    width: 1400px;
    padding: 80px 80px 80px 80px;
}

.grid2-inner2 {
    width: 1400px;
}

.grid2-inner3 {
    width: 100%;
    padding: 80px 0px 80px 0px;
}

.grid2-inner1-title1 {
    position: relative;
    text-indent: 3px;
    letter-spacing: 3px;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 50px 0px;
}

.grid2-inner1-title1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 47%;
    right: 47%;
    width: 6%;
    height: 5px;
    background-color: #d8a21e;
}

.grid2-inner1-title1-txt1 {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.grid2-inner1-title1-txt2 {
    font-size: 20px;
    font-weight: 900;
	letter-spacing: 3px;
	text-indent: 3px;
    text-align: center;
}

.grid3 {
    width: 100%;
}


/***** slide *****/

.slide1 {
	width: 100%;
}



/***** intro *****/

.intro1 {
    width: 100%;
}

.intro1-cap1 {
    width: 80%;
    font-size: 25px;
    font-weight: 700;
	text-align: center;
}

.intro1-menu1 {
	width: 100%;
}

.intro1-menu1 ul {
	width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.intro1-menu1 ul li {
    width: 31.33%;
    color: #000;
    padding: 60px 60px 60px 60px;
    margin: 0px 1% 0px 1%;
    background-color: #fff;
    transition: .3s;
    display: block;
    cursor: pointer;
    box-shadow: 0px 0px 12px 3px rgba(179, 179, 179, 0.23);
}

.intro1-menu1 ul li:hover {
	color: #fff;
	background-color: #d8a21e;
}

.intro1-menu1 ul li p {
    width: 100%;
}

.intro1-menu1-txt1 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-indent: 2px;
    text-align: center;
	margin: 0px 0px 25px 0px;
}

.intro1-menu1-txt2 {
    font-size: 18px;
    font-weight: 500;
}


/***** report *****/

.report1 {
    width: 100%;
    margin: 0px 0px 40px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.report2 {
    width: 100%;
    margin: 0px 0px 40px 0px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.report1-img1-wrap, .report2-img1-wrap {
    width: 50%;
}

.report1-img1, .report2-img1 {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    /*box-shadow: 0px 0px 10px 3px rgba(90, 90, 90, 0.31);*/
}

.report1-cap1, .report2-cap1 {
    width: 50%;
    padding: 40px 40px 40px 40px;
}

.report1-cap1-txt1, .report2-cap1-txt1 {
    font-size: 20px;
    font-weight: 700;
}

.report1-cap1-txt1 p, .report2-cap1-txt1 p {
    margin: 0px 0px 10px 0px;
}


/***** movie *****/

.movie1-wrap {
    width: 100%;
    height: 100%;
	overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
	/*pointer-events: none;*/
}

.movie1-wrap.act1 {
	position: fixed;
	top: 0;
	left: 0;
}

.movie1 {
    width: 100%;
    height: 100%;
    /*padding: 10px 10px 10px 10px;*/
	margin: 0px 0px 0px 0px;
    background-color: #f9f9f9;
}

.movie1-data1 {
    position: relative;
	height: 0;
    padding-bottom: 56%;
    background-color: #000;
}

.movie1-data1 iframe {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.movie1-cap1 {
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    /*padding: 10px 15px 10px 15px;*/
    background-color: #875312;
}


/***** profile *****/

.profile1 {
	width: 100%;
	margin: 0px 0px 65px 0px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.profile1-img1 {
    width: 45%;
	border-radius: 15px;
	overflow: hidden;
}

.profile1-info1 {
    width: 55%;
    padding: 0px 40px 0px 25px;
    border-left: 10px solid #d8a11e;
}

.profile1-info1-title1 {
    width: auto;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
	letter-spacing: 2px;
	text-indent: 2px;
    text-align: center;
    padding: 8px 30px 8px 30px;
    margin-bottom: 25px;
    background-color: #d8a11e;
    border-radius: 25px;
    display: inline-block;
}

.profile1-info1-name1 {
    padding: 0px 0px 15px 0px;
    margin-bottom: 20px;
    border-bottom: 2px dotted #d8a11e;
}

.profile1-info1-name1-txt1 {
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 5px;
}

.profile1-info1-name1-txt2 {
    font-size: 18px;
    font-weight: 700;
}

.profile1-info1-cap1 {
    font-size: 15px;
    font-weight: 700;
	margin-bottom: 30px;
}

.profile1-info1-cap1 p {
    margin-bottom: 10px;
}

.profile1-info1-btn1-wrap {
	width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.profile1-info1-btn1 {
	width: 48%;
	margin: 0px 1% 10px 1%;;
}

.profile1-info1-btn1 a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    padding: 10px 10px 10px 10px;
    background-color: #c08f1b;
	transition: .3s;
    display: block;
}

.profile1-info1-btn1 a:hover {
    background-color: #d8a11e;
}


/***** banner *****/

.product1-wrap {
	width: 100%;
	margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.product1 {
    width: 48%;
	color: #fff;
    margin: 0px 1% 0px 1%;
    background-color: #3c3c3c;
	border-radius: 15px;
	box-shadow: 0px 0px 3px 3px rgba(186, 186, 186, 0.25);
	overflow: hidden;
}

.product1-inner1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.product1-img1 {
    width: 100%;
    margin: 0px 0px 0px 0px;
	background-color: #fff;
}

.product1-info1 {
    width: 100%;
    padding: 30px 30px 30px 30px;
}

.product1-info1-name1 {
    width: 100%;
    padding: 0px 0px 0px 12px;
    margin: 0px 0px 10px 0px;
    border-left: 12px solid #d8a11e;
}

.product1-info1-name1-txt1 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 5px;
}

.product1-info1-name1-txt2 {
    font-size: 22px;
    font-weight: 900;
}

.product1-info1-price1 {
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    margin: 0px 0px 20px 0px;
}

.product1-info1-price1-txt1 {
    color: #ff5e5e;
    font-size: 28px;
}

.product1-info1-btn1 {
	width: 100%;
}

.product1-info1-btn1 a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 10px 10px 10px 10px;
    background-color: #c08f1b;
	transition: .3s;
    display: block;
}

.product1-info1-btn1 a:hover {
    background-color: #d8a11e;
}

.product1-special1 {
    width: 98%;
    padding: 10px 10px 10px 10px;
    margin: 0px 1% 0px 1%;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
}

.product1-special1-inner1 {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 20px 20px;
}

.product1-special1-img1 {
	width: 30%;
}

.product1-special1-info1 {
	width: 70%;
    padding: 0px 20px 0px 0px;
}

.product1-special1-info1-title1 {
    width: auto;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
	letter-spacing: 2px;
	text-indent: 2px;
    text-align: center;
    padding: 8px 50px 8px 50px;
    margin-bottom: 25px;
    background-color: #74a89b;
    border-radius: 25px;
    display: inline-block;
}

.product1-special1-info1-cap1 {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
	margin: 0px 0px 10px 0px;
}

.product1-special1-info1-cap2 {
    color: #e4a240;
    font-size: 35px;
    font-weight: 900;
	margin: 0px 0px 10px 0px;
}

.product1-special1-info1-cap3 {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
	margin: 0px 0px 10px 0px;
}


/***** sns *****/

.sns1-wrap {
	width: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.sns1 {
    width: 25%;
    padding: 7px 7px 7px 7px;
	margin: 0px 0px 0px 0px;
}


/***** store *****/

.store1-wrap {
    width: 1024px;
    display: flex;
    flex-direction: coloum;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.store1 {
    width: 100%;
    margin: 0px 0% 0px 0%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.store1-img1 {
    width: 50%;
    margin: 0px 0px 0px 0px;
}

.store1-info1 {
    width: 50%;
    padding: 0px 0px 0px 0px;
}

.store1-info1-name1 {
    font-size: 24px;
    font-weight: 900;
	text-align: left;
    margin-bottom: 15px;
}

.store1-info1-cap1 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.store1-info1-cap1 a {
    color: #d8a21e;
    font-weight: 500;
	transition: .3s;
}

.store1-info1-cap1 a:hover {
    color: #f3b620;
}

.store1-info1-btn1-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.store1-info1-btn1 {
    width: 50%;
    padding: 5px 5px 5px 5px;
	margin: 0;
}

.store1-info1-btn2 {
    width: 100%;
    padding: 5px 5px 5px 5px;
	margin: 0;
}

.store1-info1-btn1 a, .store1-info1-btn2 a {
	color: #fff;
	font-family: 'Noto Sans Japanese';
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 7px 10px 7px 10px;
	background-color: #d8a21e;
    display: block;
    transition: .3s;
}

.store1-info1-btn1 a:hover, .store1-info1-btn2 a:hover {
	color: #fff;
	background-color: #f3b620;
}


/***** map *****/

.map1 {
    width: 100%;
	display: flex;
}


/***** footer *****/

.footer1 {
    width: 100%;
    padding: 20px 20px 20px 20px;
}

.footer1-img1 {
    width: 220px;
}

.footer1-img1 a {
    display: block;
}

.footer1-pagetop1 {
    position: fixed;
    z-index: 1100;
    bottom: 22px;
    right: 66px;
}

.footer1-pagetop1 a {
    color: #d8a21e;
    font-size: 14px;
}



@media (max-width:1600px){

.grid2-inner1 {
	width: 100%;
}

}


@media (max-width:1024px){

.grid2-inner1 {
    padding: 60px 60px 60px 60px;
}

.grid2-inner1-title1 {
    margin: 0px 0px 25px 0px;
}

.grid2-inner1-title1-txt1 {
    font-size: 26px;
}

.grid2-inner1-title1-txt1 {
    font-size: 28px;
}

.intro1-cap1 {
    width: 100%;
	font-size: 20px;
}

.report1-cap1-txt1, .report2-cap1-txt1 {
    font-size: 16px;
}

.profile1-info1-title1 {
    font-size: 14px;
    padding: 7px 30px 7px 30px;
    margin-bottom: 10px;
}

.profile1-info1 {
    padding: 0px 30px 0px 25px;
}

.profile1-info1-cap1 {
    font-size: 13px;
}

.profile1-info1-btn1 a {
    font-size: 12px;
    padding: 8px 10px 8px 10px;
}

.product1-info1-name1-txt1 {
    font-size: 16px;
}

.product1-info1-name1-txt2 {
    font-size: 18px;
}

.product1-info1-price1 {
    font-size: 15px;
    margin: 0px 0px 10px 0px;
}

.product1-info1-price1-txt1 {
    font-size: 24px;
}

.product1-special1-info1-title1 {
    font-size: 14px;
}

.product1-special1-info1-cap1 {
    font-size: 18px;
}

.product1-special1-info1-cap2 {
    font-size: 25px;
}

.product1-special1-info1-cap3 {
    font-size: 18px;
}

.product1-info1-btn1 a {
    font-size: 12px;
    padding: 8px 10px 8px 10px;
}


.store1-wrap {
    width: 100%;
}

}


@media (max-width:768px){

.grid2-inner1 {
    padding: 40px 40px 40px 40px;
}

.grid2-inner1-title1-txt1 {
    font-size: 20px;
}

.grid2-inner1-title1-txt2 {
    font-size: 16px;
}

.intro1-cap1 {
    font-size: 16px;
}

.report1-cap1, .report2-cap1 {
    padding: 30px 30px 30px 30px;
}

.report1-cap1-txt1, .report2-cap1-txt1 {
    font-size: 13px;
}

.profile1-info1 {
    padding: 0px 25px 0px 20px;
}

.profile1-info1-title1 {
    font-size: 13px;
    padding: 6px 30px 6px 30px;
	margin-bottom: 10px;
}

.profile1-info1-name1 {
    padding: 0px 0px 10px 0px;
    margin-bottom: 15px;
}

.profile1-info1-name1-txt1 {
    font-size: 25px;
	margin-bottom: 0px;
}

.profile1-info1-name1-txt2 {
    font-size: 16px;
}

.profile1-info1-cap1 {
    font-size: 11px;
}

.product1-info1 {
    padding: 25px 25px 25px 25px;
}

.product1-info1-name1-txt1 {
    font-size: 14px;
}

.product1-info1-name1-txt2 {
    font-size: 16px;
}

.profile1-info1-btn1 a {
    font-size: 10px;
}

.product1-info1-price1 {
    font-size: 13px;
}

.product1-info1-price1-txt1 {
    font-size: 20px;
}

.product1-special1-info1-cap1 {
    font-size: 15px;
}

.product1-special1-info1-cap2 {
    font-size: 22px;
}

.product1-special1-info1-cap3 {
    font-size: 15px;
}

.sns1-wrap {
    width: 240px;
}

.store1-info1-name1 {
    font-size: 18px;
}

.store1-info1-cap1 {
    font-size: 12px;
}

.store1-info1-btn1 a, .store1-info1-btn2 a {
    font-size: 10px;
}

.footer1-img1 {
    width: 180px;
}

}


@media (max-width:475px){

.d1 {
	display: none;
}

.d2 {
	display: block;
}

.grid2-inner1 {
    padding: 35px 20px 35px 20px;
}

.grid2-inner1-title1 {
    text-indent: 1px;
    letter-spacing: 1px;
}

.grid2-inner1-title1::after {
    left: 45%;
    right: 45%;
    width: 10%;
    height: 4px;
}

.grid2-inner1-title1-txt1 {
    font-size: 16px;
}

.grid2-inner1-title1-txt2 {
    font-size: 13px;
}

.intro1-cap1 {
    font-size: 14px;
}

.report1 {
    margin: 0px 0px 40px 0px;
    flex-direction: column;
}

.report1-img1-wrap, .report2-img1-wrap {
    width: 100%;
    margin: 0px 0px 15px 0px;
}

.report1-cap1, .report2-cap1 {
    width: 100%;
    padding: 0px 0px 0px 0px;
}

.profile1 {
    flex-direction: column;
}

.profile1-img1 {
    width: 100%;
    float: none;
    padding: 0px 0px 0px 0px;
    margin-bottom: 20px;
}

.profile1-info1 {
    width: 100%;
    padding: 0px 0px 0px 15px;
}

.profile1-info1-title1 {
    font-size: 11px;
    padding: 6px 30px 6px 30px;
	margin-bottom: 10px;
}

.profile1-info1-name1 {
    width: 100%;
    padding: 0px 0px 10px 0px;
    margin: 0px 0% 13px 0px;
}

.profile1-info1-name1-txt1 {
    font-size: 25px;
	margin-bottom: 0px;
}

.profile1-info1-name1-txt2 {
    font-size: 15px;
}

.profile1-info1-cap1 {
    font-size: 12px;
	margin-bottom: 20px;
}

.profile1-info1-btn1 a {
    font-size: 10px;
    padding: 8px 10px 8px 10px;
}

.product1 {
    width: 100%;
    margin: 0px 0% 15px 0%;
}

.product1-info1-name1-txt1 {
    font-size: 15px;
}

.product1-info1-name1-txt2 {
    font-size: 15px;
}

.product1-info1-btn1 a {
    font-size: 10px;
    padding: 8px 10px 8px 10px;
}

.product1-special1 {
    width: 100%;
    padding: 0px 0px 0px 0px;
    margin: 0px 0% 0px 0%;
}

.product1-special1-inner1 {
    flex-direction: column;
}

.product1-special1-img1 {
    width: 100%;
    margin-bottom: 20px;
}

.product1-special1-info1 {
    width: 100%;
    padding: 0px 10px 0px 0px;
}

.product1-special1-info1-title1 {
    font-size: 10px;
    letter-spacing: 1px;
    text-indent: 1px;
    padding: 6px 50px 6px 50px;
	margin-bottom: 15px;
}

.product1-special1-info1-cap1 {
    font-size: 12px;
	margin: 0px 0px 5px 0px;
}

.product1-special1-info1-cap2 {
    font-size: 18px;
	margin: 0px 0px 5px 0px;
}

.product1-special1-info1-cap3 {
    font-size: 12px;
}

.store1 {
    flex-direction: column;
}

.store1-img1 {
    width: 100%;
    margin: 0px 0px 5px 0px;
}

.store1-info1 {
    width: 100%;
}

.store1-info1-name1 {
    font-size: 18px;
    text-align: center;
}

.footer1-pagetop1 {
    right: 30px;
}

}


@media (max-width:375px){
	
}


@media (max-width:320px){

.grid2-inner1-title1 {
    margin: 0px 0px 15px 0px;
}

.grid2-inner1-title1-txt2 {
    font-size: 12px;
    letter-spacing: 1px;
    text-indent: 1px;
}

.intro1-cap1 {
    font-size: 12px;
}

.report1-cap1-txt1, .report2-cap1-txt1 {
    font-size: 12px;
}

.profile1-info1-title1 {
    font-size: 9px;
}

.profile1-info1-name1-txt1 {
    font-size: 20px;
}

.profile1-info1-name1-txt2 {
    font-size: 13px;
}

.profile1-info1-cap1 {
    font-size: 10px;
}

.profile1-info1-btn1 a {
    font-size: 8px;
    padding: 6px 10px 6px 10px;
}

.product1-info1 {
    padding: 20px 20px 20px 20px;
}

.product1-info1-name1-txt1 {
    font-size: 12px;
}

.product1-info1-name1-txt2 {
    font-size: 12px;
}

.product1-info1-price1 {
    font-size: 11px;
}

.product1-info1-price1-txt1 {
    font-size: 17px;
}

.product1-info1-btn1 a {
    font-size: 9px;
    padding: 7px 10px 7px 10px;
}

.sns1-wrap {
    width: 200px;
}

.store1-info1-name1 {
    font-size: 16px;
}

.store1-info1-cap1 {
    font-size: 10px;
}

.store1-info1-btn1 a, .store1-info1-btn2 a {
    font-size: 9px;
}

.footer1-img1 {
    width: 150px;
}
	
}