html,body{
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
}

*{
	box-sizing: border-box;
}

main {
	/*max-width: 800px;*/
    margin: 0 auto;
}


header{
	display: flex;
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	padding: 10px 20px 0 20px;
}

header h1{
	display: block;
	margin: 0;
	padding: 0;
	max-width: 150px;
	width: 74%;
}

header h1 img{
	display: block;
	width: 100%;
}

section{
	position: relative;
	max-width: 700px;
	margin: 40px auto 0 auto;
	overflow: hidden;
}

.topVisual{
	max-width: 1200px;
	width: 100%;
	height: calc(100vh - 170px);
	margin:  10px auto 0 auto;
	padding: 20px;
	background: url(../img/top2-sp.jpg);
	background-size: cover;
	background-position: center top;
	opacity: 0;
}

.topVisualCopyWrap{
	width: 100%;
	height: 100%;
	border: rgba(0,0,0,1) 1px solid;
}

h2{
	display: block;
	margin: 0 auto;
	padding: 20px;
	max-width: 600px;
	width: calc(100% - 60px);
	line-height: 1;
    font-size: 0.9em;
    color: #525252;
}

h2 span{
	display: inline-block;
	margin-right: 10px;
	padding-right: 10px;
	border-right: #525252 1px solid;
}

.overImage{
	position: relative;
	width: 130%;
	margin-left: -15%;
	z-index: -100;
}

hr{
	display: block;
	max-width: 560px;
	width: calc(100% - 80px);
	height: 1px;
	margin: 0 auto;
	border-top: #525252 1px solid;
	border-left: none;
	border-right: none;
	border-bottom: none;
}

.innerWrap{
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	width: calc(100% - 60px);
}

.innerWrap .copyText{
	font-size: 0.75em;
    color: #525252;
    line-height: 1.8em;
}

.copyText span{
    background: linear-gradient(transparent 85%, #efcae9 0%);
}

.innerWrap img{
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	width: 100%;
}

.sectionWrapLine{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 600px;
	width: calc(100% - 40px);
	pointer-events: none;
	border: rgba(0,0,0,0) 1px solid;
	transition: all 300ms;
}

.sectionWrapLine:nth-of-type(1){
	position: relative;
	top: 0;
	margin: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
	background: url(../img/top_copy.png) no-repeat;
	background-size: cover;
	background-position: center center;
}

.backCopy{
	opacity: 0;
}

.showLine{
	border: #8a8a8a 1px solid;
	transition: all 600ms;
}



.banner{
	position: relative;
	max-width: 600px;
	margin: 0 auto 0 auto;
	width: calc(100% - 40px);
	border: #8a8a8a 1px solid;
	background: #ffffff;
	opacity: 0;
}

.banner .bannerBtn{
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	background-color: #3c3c3c;
	text-align: center;
}

.banner .bannerBtn img{
	display: block;
	width: 100%;
	max-width: 350px;
    margin: 0 auto;
}

#bannerCloseImage{
	display: block;
}

.banner .bannerMenu{
	display: none;
	height: calc(100vh - 58px);
    overflow-y: scroll;
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}

.banner .bannerMenu::-webkit-scrollbar {  /* Chrome, Safari 対応 */
        display:none;
    }

.banner .bannerMenu img{
	width: 100%;
}

.banner .bannerMenu .copyText{
	font-size: 0.75em;
    color: #525252;
    line-height: 1.8em;
	padding: 10px 20px;
}

.bannerFixed{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 100;
}

table{
	width: 100%;
    border: 1px #cccccc solid;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto 20px auto;
}

table td{
	padding: 5px 5px 5px 5px;
    border: 1px #cccccc solid;
    border-width: 0 0 1px 1px;
    background: #ffffff;
    text-align: left;
}

.custombt a{
    display: block;
    background: #0fbb3c;
    line-height: 0;
	margin: 0 auto 10px;
	border-radius: 50px;
	max-width: 300px;
}

footer{
	margin-top: 30px;
    margin-bottom: 100px;
	padding: 20px;
	text-align: center;
	font-size: 0.5em;
}

.tabs {
  margin: 30px auto;
  padding-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/4);
  height: 50px;
  border-bottom: 3px solid #f24a22;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 0.8em;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 20px 5px 0;
  clear: both;
  overflow: hidden;
  text-align: center;
}


/*選択されているタブのコンテンツのみを表示*/
#o12kai:checked ~ #o12kai_content,
#o10kai:checked ~ #o10kai_content,
#o6kai:checked ~ #o6kai_content,
#o3kai:checked ~ #o3kai_content{
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #f24a22;
  color: #fff;
}

.orico {
    position: fixed;
    bottom: 0;
    max-width: 120px;
    margin: 0 7px;
    right: 0;
}

.orico img {
    width: 100%;
}