﻿@charset "utf-8";

/*
  File Name   : content.css
  Description : 各コンテンツ用CSS
*/


/* PC Layout ******************************************************************************************* */

/* Contents ここから
============================================================ */
body {
	color: #231815;
    font-family: "GenJyuu Gothic", sans-serif;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 1;
	margin: 0;
}

.mb20 {
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

/* header */
.header {
	background-color: #fff;
}
.header__inner {
	padding: 20px 50px;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
	width: 240px;
}

.header__right {
    width: 274px;
}

#lp_contents {
	margin: 0;
    padding: 0;
    width: 100%;
    vertical-align: bottom;
    line-height: 0;
}

.banner_contents {
    width: 90%;
    margin: 40px auto 50px;
}

.banner_contents1 ul {
    width: 90%;
    margin: 30px auto;
}

.banner_contents1 ul {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

.banner_contents1 ul li {
    width: 47%;
    margin: 0 0 20px;
}

.banner_contents1 ul li:nth-child(5) {
    width: 47%;
    margin: 0;
}

.banner_contents1 ul li a img:nth-child(1) {
    margin-bottom: 10px;
}

/* footer */
.footer {
	background-color: #fff;
	padding: 50px 0 40px;
}
.wrapper {
    max-width: 1120px;
    padding: 0 2%;
    margin: 0 auto;
}
.info-list {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.info-list li {
	padding: 10px;
	font-size: 14px;
    font-weight: 700;
}

.copyright {
	font-size: 11px;
    font-weight: 700;
}

/* Contents ここまで
============================================================ */


/* tablet Layout ******************************************************************************************* */
@media screen and (min-width: 768px) and (max-width: 1023px) {

}

/* SP Layout ******************************************************************************************* */

/* Index
============================================================ */
@media screen and (max-width: 767px) {
	.header__inner {
		padding: 5%;
	}
	.header__logo {
		width: 36%;
	}
	.header__right {
		width: 36%;
	}
	.wrapper {
		max-width: 94%;
	}
	.info-list li {
		padding: 20px;
		font-size: 13px;
	}
	.footer {
		padding-top: 0;
		padding-bottom: 20px;
	}
	.footer .logo {
		margin: 30px auto 10px;
	}
}

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

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

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

@media screen and (max-width: 325px) {
	
}
	
/*** hypertext ***/

a:link {
	color: #231815;
    text-decoration: none;
}

a:hover,
a:active {
	color: #000;
	text-decoration: none;
}

a:visited {
  color: #000;
}

a img {
  border: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
	border-style: none;
}

*, ::after, ::before {
    box-sizing: border-box;
}

a:hover,
a:hover img,
input:hover {
  filter: alpha(opacity=70);
  -moz-opacity: .7;
  opacity: .7;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

figure {
  margin: 0;
}


/*** pc-only / sp-only ***/

@media screen and (min-width: 750px) {
	.sp-only {
		display: none !important;
	}
	.pc-only {
		display: block !important;
	}
}

@media screen and (max-width: 749px) {
	.pc-only {
		display: none !important;
	}
	.sp-only {
		display: block !important;
	}
}


