@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap&family=Noto+Sans+JP:wght@100..900&display=swap');

html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	background: url(../images/body_bg.jpg) no-repeat;
	background-attachment: fixed;
}
html, body {
	overflow-x: hidden;
}
p {
	font-weight: 400;
	font-size: 14px;
}
main {
	display: block;
	position: relative;
	transition: all 0.5s;
}
.tx-center,
.has-text-align-center {
	text-align: center;
}
.txt_link {
	color: #333;
	text-decoration: underline;
}
.txt_link:hover {
	text-decoration: none;
}
.txt_right {
	text-align: right;
}
.txt_left {
	text-align: left !important;
}
.txt_blue {
	color: #00B9F2;
}
b {
	font-weight: bold;
}
.txt_red {
	color: #E5002D;
}
figure,div {
	line-height: 0;
}
p.annotation_indent {
	text-indent: -16px;
	padding-left: 16px;
}
#topback {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 60px;
    height: 60px;
    background: rgba(51,51,51, 0.8);
    z-index: 2;
    cursor: pointer;
    border: 1px solid #fff;
	border-radius: 50%;
	z-index: 101;
}
#topback::after {
    position: absolute;
    content: "";
    top: 26px;
    right: 0;
	left: 0;
	margin: auto;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.container {
	max-width: 640px;
	margin: auto;
	width: 100%;
}
header {
	background: #fff;
}
header .summary {
	padding: 0 20px 20px;
	margin-top: 15px;
}
header .summary .logo {
	max-width: 328px;
	position: relative;
	margin-top: 10px;
	margin-left: auto;
}
header .summary p {
	font-size: 16px;
	line-height: 1.58;
}
header .summary .wrap_img01 {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
header .summary .illust {
	max-width: 273px;
	margin-right: 20px;
}
main {
	padding-top: 0;
}
dl {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, dl dt, dl dd, td, th, ul li, ol li, figcaption, p {
	color: #333;
}
a {
	text-decoration: none;
}
p.f-14 {
	font-size: 14px;
	line-height: 1.71;
}
p.f-20 {
	font-size: 2rem;
	line-height: 1.5;
}
p.f-24 {
	font-size: 2.4rem;
	line-height: 1.5;
}
.f-w500 {
	font-weight: 500;
}
img {
	max-width: 100%;
}
.fadeIn {
	opacity: 0;
}
.fadeIn.add {
    animation-name: fadeIn;
    animation-duration: 1s;
	animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    transform: translateY(30px);
    opacity: 0;
}
#home .fadeInmain {
    opacity: 0;
}

#home .fadeInmain.add {
    animation-name: fadeIn;
    animation-delay: 1.5s;
    animation-duration: 1.5s;
	animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    transform: translateY(30px);
    opacity: 0;
}
#home .sec01 {
	height: clamp(546px, 40.625vw, 780px);
	position: relative;
	overflow: hidden;
}
#home .sec01 .bg_main {
	height: 100%;
	background: url(../images/main_img.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	animation-name: animationZoom;
	animation-delay: 2s;
	animation-duration: 7s;
	transform: scale(1.15);
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

@keyframes animationZoom {
	100% {
		transform: scale(1.0);
	}
}
#index main .sec01 {
	background: #fff;
}
#index main .sec01 h2 {
	font-weight: 900;
	line-height: 1.22;
	color: #fff;
	font-size: clamp(26px, 6.875vw, 44px);
	background: #000;
	text-align: center;
	padding: 20px;
	position: relative;
	font-feature-settings: "palt";
}
#index main .sec01 h2::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 23px 15px 0 15px;
	border-color: #000000 transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -21px;
	margin: auto;
}
#index main .sec01 h2 span {
	color: #f49c00;
	font-weight: 900;
	line-height: 1.22;
}
#index .sec01 dl {
	display: flex;
}
#index .sec01 dl dt {
	width: 42px;
	margin-right: 14px
}
#index .sec01 dl dd {
	width: calc(100% - 56px);
	font-size: 27px;
	font-weight: bold;
	line-height: 1.7;
	margin-top: -4px;
	font-feature-settings: "palt";
}
#index .sec01 .btn_conv {
	display: block;
	width: 100%;
	background: linear-gradient(360deg, rgba(200, 22, 26, 1) 0%, rgba(236, 28, 36, 1) 100%);
	color: #fff;
	font-size: clamp(25px, 5.625vw, 36px);
	font-weight: 900;
	text-align: center;
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 500px;
	margin: 30px auto 0;
	border-radius: 100px;
	position: relative;
	overflow: hidden;
}
#index .sec01 .btn_conv::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
	animation-name: shiny;
	animation-duration: 4s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}
@keyframes shiny {
	0% {
		left: -20%;
		}
	10% {
		left: 120%;
	}
	100% {
		left: 120%;
	}
}
#index .sec01 .btn_conv span,
#index .menu_follow span {
	display: flex;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent #FFFFFF;
	margin-right: 15px;
}
a.menu_follow {
	background: linear-gradient(360deg, rgba(200, 22, 26, 1) 0%, rgba(236, 28, 36, 1) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(25px, 5.625vw, 36px);
	font-weight: 900;
	position: fixed;
	bottom: 0;
	padding: 20px;
	width: 100%;
	z-index: 100;
	max-width: 640px;
	transition: .5s ease-in-out;
	box-shadow: 0px -7px 20px 0px rgba(0, 0, 0, 0.3);
}
#index .sec01 dl dd span {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.13;
	position: relative;
	top: 4px;
}
#index .sec02 {
	background: #333;
	padding-bottom: 15px;
}
#index .sec02 ul {
	position: relative;
	padding: 20px 20px 0;
}
#index .sec02 ul li {
	line-height: 0;
}
#index .sec02 ul li:not(:last-child) {
	margin-bottom: 20px;
}
#index .sec02 ul li:nth-child(1) {
	margin-bottom: 3px;
}
#index .sec02 ul li:nth-child(2) {
	margin-bottom: -10px;
}
#index .sec02 p.chushaku {
	position: relative;
	margin-top: 15px;
	color: #fff;
}
#index .sec03 {
	background: #fff;
}
#index footer {
	padding-top: 20px;
	padding-bottom: 124px;
	background: #eee;
}

.mb0 {
	margin-bottom: 0 !important;
}
.mt0 {
	margin-top: 0 !important;
}
.mt5 {
	margin-top: 5px !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt12 {
	margin-top: 12px !important;
}
.mt15 {
	margin-top: 15px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt25 {
	margin-top: 25px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt35 {
	margin-top: 35px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt45 {
	margin-top: 45px !important;
}
.mt50 {
	margin-top: 50px !important;
}
.mt55 {
	margin-top: 55px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt65 {
	margin-top: 65px !important;
}
.mt70 {
	margin-top: 70px !important;
}
.mt75 {
	margin-top: 75px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mt85 {
	margin-top: 85px !important;
}
.mt90 {
	margin-top: 90px !important;
}
.mt95 {
	margin-top: 95px !important;
}
.mt100 {
	margin-top: 100px !important;
}
.mt105 {
	margin-top: 105px !important;
}
.mt110 {
	margin-top: 110px !important;
}
.mt115 {
	margin-top: 115px !important;
}
.mt120 {
	margin-top: 120px !important;
}
.mt125 {
	margin-top: 125px !important;
}
.mt130 {
	margin-top: 130px !important;
}
.mt135 {
	margin-top: 135px !important;
}
.mt140 {
	margin-top: 140px !important;
}
.mt145 {
	margin-top: 145px !important;
}
.mt150 {
	margin-top: 150px !important;
}
.mt155 {
	margin-top: 155px !important;
}
.mt160 {
	margin-top: 160px !important;
}
.mt180 {
	margin-top: 180px !important;
}
.mt200 {
	margin-top: 200px !important;
}
.mr3 {
	margin-right: 3px !important;
}
.mr10 {
	margin-right: 10px !important;
}
.mr20 {
	margin-right: 20px !important;
}
.mr30 {
	margin-right: 30px !important;
}
.mr40 {
	margin-right: 40px !important;
}
.mr55 {
	margin-right: 55px !important;
}
.mr60 {
	margin-right: 60px !important;
}
.mr70 {
	margin-right: 70px !important;
}
.mr75 {
	margin-right: 75px !important;
}
.mr80 {
	margin-right: 80px !important;
}
.mr90 {
	margin-right: 90px !important;
}
.mr110 {
	margin-right: 110px !important;
}
.mb3 {
	margin-bottom: 3px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb25 {
	margin-bottom: 25px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb70 {
	margin-bottom: 70px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.mb90 {
	margin-bottom: 90px !important;
}
.mb100 {
	margin-bottom: 100px !important;
}
.mb120 {
	margin-bottom: 120px !important;
}
.mb130 {
	margin-bottom: 130px !important;
}
.mb150 {
	margin-bottom: 150px !important;
}
.ml10 {
	margin-left: 10px !important;
}
.ml20 {
	margin-left: 20px !important;
}
.ml100 {
	margin-left: 100px !important;
}
.ml40 {
	margin-left: 40px !important;
}
.pt0 {
	padding-top: 0 !important;
}
.pt30 {
	padding-top: 30px !important;
}
.pt40 {
	padding-top: 40px !important;
}
.pt50 {
	padding-top: 50px !important;
}
.pt55 {
	padding-top: 55px !important;
}
.pt60 {
	padding-top: 60px !important;
}
.pt70 {
	padding-top: 70px !important;
}
.pt75 {
	padding-top: 75px !important;
}
.pt80 {
	padding-top: 80px !important;
}
.pt85 {
	padding-top: 85px !important;
}
.pt90 {
	padding-top: 90px !important;
}
.pt95 {
	padding-top: 95px !important;
}
.pt100 {
	padding-top: 100px !important;
}
.pt110 {
	padding-top: 110px !important;
}
.pt120 {
	padding-top: 120px !important;
}
.pt130 {
	padding-top: 130px !important;
}
.pt135 {
	padding-top: 135px !important;
}
.pt140 {
	padding-top: 140px !important;
}
.pt145 {
	padding-top: 145px !important;
}
.pt150 {
	padding-top: 150px !important;
}
.pt160 {
	padding-top: 160px !important;
}
.pt170 {
	padding-top: 170px !important;
}
.pt185 {
	padding-top: 180px !important;
}
.pr55 {
	padding-right: 55px !important;
}
.pr80 {
	padding-right: 80px !important;
}
.pr150 {
	padding-right: 150px !important;
}
.pb30 {
	padding-bottom: 30px !important;
}
.pb40 {
	padding-bottom: 40px !important;
}
.pb50 {
	padding-bottom: 50px !important;
}
.pb55 {
	padding-bottom: 55px !important;
}
.pb60 {
	padding-bottom: 60px !important;
}
.pb70 {
	padding-bottom: 70px !important;
}
.pb75 {
	padding-bottom: 75px !important;
}
.pb80 {
	padding-bottom: 80px !important;
}
.pb85 {
	padding-bottom: 85px !important;
}
.pb100 {
	padding-bottom: 100px !important;
}
.pb110 {
	padding-bottom: 110px !important;
}
.pb120 {
	padding-bottom: 120px !important;
}
.pb125 {
	padding-bottom: 125px !important;
}
.pb130 {
	padding-bottom: 130px !important;
}
.pb140 {
	padding-bottom: 140px !important;
}
.pb150 {
	padding-bottom: 150px !important;
}
.pb160 {
	padding-bottom: 160px !important;
}
.pb200 {
	padding-bottom: 200px !important;
}
.pb220 {
	padding-bottom: 220px !important;
}
.pl45 {
	padding-left: 45px !important;
}
.pl80 {
	padding-left: 80px !important;
}
.pl150 {
	padding-left: 150px !important;
}


@media screen and (min-width: 1367px) {
	.minw1367none {
		display: none;
	}
}
@media screen and (min-width: 1366px) {
	.minw1366none {
		display: none;
	}
}
@media screen and (max-width: 1366px) {
	.max1366none {
		display: none;
	}
}
@media screen and (max-width: 1366px) and (min-width: 769px) {
	.maxw1366minw769none {
		display: none;
	}
}
@media screen and (max-width: 1365px) {
	.maxw1365none {
		display: none;
	}
}

@media screen and (min-width: 1200px) {
	.minw1200none {
		display: none;
	}
	.wrap,
	.wrap01,
	.wrap03 {
		width: 1200px;
		margin: auto;
	}
	.wrap05 {
		max-width: 1200px;
		margin: auto;
	}
}

@media screen and (max-width: 1199px) {
	html,
	body {
		overflow-x: hidden;
	}
	.maxw1199none {
		display: none;
	}
	.wrap {
		padding-left: 40px;
		padding-right: 40px;
	}
	address {
		margin-right: 40px;
		margin-left: 40px;
	}
}
@media screen and (max-width: 1599px) and (min-width: 1025px) {
	.maxw1599min1025none {
		display: none;
	}
}
@media screen and (min-width: 1025px) {
	.pcnone,
	.minw1025none {
		display: none;
	}
}
@media screen and (max-width: 1024px) {
	html {
		font-size: 60%;
	}
	.mt15 {
		margin-top: 10px !important;
	}
	.mt20 {
		margin-top: 15px !important;
	}
	.mt25 {
		margin-top: 18px !important;
	}
	.mt30 {
		margin-top: 20px !important;
	}
	.mt35 {
		margin-top: 25px !important;
	}
	.mt40 {
		margin-top: 30px !important;
	}
	.mt45 {
		margin-top: 30px !important;
	}
	.mt50 {
		margin-top: 35px !important;
	}
	.mt55 {
		margin-top: 35px !important;
	}
	.mt60 {
		margin-top: 40px !important;
	}
	.mt65 {
		margin-top: 40px !important;
	}
	.mt70 {
		margin-top: 40px !important;
	}
	.mt75 {
		margin-top: 50px !important;
	}
	.mt80 {
		margin-top: 55px !important;
	}
	.mt95 {
		margin-top: 65px !important;
	}
	.mt100 {
		margin-top: 70px !important;
	}
	.mt110 {
		margin-top: 75px !important;
	}
	.mt115 {
		margin-top: 80px !important;
	}
	.mt120 {
		margin-top: 80px !important;
	}
	.mt125 {
		margin-top: 80px !important;
	}
	.mt130 {
		margin-top: 80px !important;
	}
	.mt135 {
		margin-top: 80px !important;
	}
	.mt140 {
		margin-top: 85px !important;
	}
	.mt145 {
		margin-top: 90px !important;
	}
	.mt150 {
		margin-top: 100px !important;
	}
	.mt155 {
		margin-top: 100px !important;
	}
	.mt160 {
		margin-top: 100px !important;
	}
	.mt180 {
		margin-top: 100px !important;
	}
	.mt200 {
		margin-top: 100px !important;
	}
	.mt85 {
		margin-top: 60px !important;
	}
	.mr55 {
		margin-right: 35px !important;
	}
	.mr70 {
		margin-right: 45px !important;
	}
	.mr90 {
		margin-right: 60px !important;
	}
	.mr110 {
		margin-right: 75px !important;
	}
	.mb40 {
		margin-bottom: 30px !important;
	}
	.mb60 {
		margin-bottom: 40px !important;
	}
	.ml20 {
		margin-left: 15px !important;
	}
	.pt50 {
		padding-top: 35px !important;
	}
	.pt55 {
		padding-top: 35px !important;
	}
	.pt60 {
		padding-top: 40px !important;
	}
	.pt70 {
		padding-top: 45px !important;
	}
	.pt75 {
		padding-top: 50px !important;
	}
	.pt80 {
		padding-top: 55px !important;
	}
	.pt85 {
		padding-top: 60px !important;
	}
	.pt90 {
		padding-top: 60px !important;
	}
	.pt95 {
		padding-top: 65px !important;
	}
	.pt100 {
		padding-top: 70px !important;
	}
	.pt110 {
		padding-top: 80px !important;
	}
	.pt120 {
		padding-top: 80px !important;
	}
	.pt130 {
		padding-top: 80px !important;
	}
	.pt135 {
		padding-top: 80px !important;
	}
	.pt140 {
		padding-top: 80px !important;
	}
	.pt145 {
		padding-top: 90px !important;
	}
	.pt150 {
		padding-top: 100px !important;
	}
	.pt160 {
		padding-top: 100px !important;
	}
	.pt170 {
		padding-top: 100px !important;
	}
	.pt185 {
		padding-top: 100px !important;
	}
	.pr80 {
		padding-right: 55px !important;
	}
	.pb50 {
		padding-bottom: 30px !important;
	}
	.pb55 {
		padding-bottom: 35px !important;
	}
	.pb60 {
		padding-bottom: 40px !important;
	}
	.pb70 {
		padding-bottom: 50px !important;
	}
	.pb75 {
		padding-bottom: 50px !important;
	}
	.pb40 {
		padding-bottom: 30px !important;
	}
	.pb80 {
		padding-bottom: 50px !important;
	}
	.pb85 {
		padding-bottom: 55px !important;
	}
	.pb110 {
		padding-bottom: 75px !important;
	}
	.pb120 {
		padding-bottom: 80px !important;
	}
	.pb125 {
		padding-bottom: 80px !important;
	}
	.pb130 {
		padding-bottom: 80px !important;
	}
	.pb140 {
		padding-bottom: 90px !important;
	}
	.pb150 {
		padding-bottom: 100px !important;
	}
	.pb160 {
		padding-bottom: 100px !important;
	}
	.pb200 {
		padding-bottom: 100px !important;		
	}
	.pl80 {
		padding-left: 50px !important;
	}
	.md_pt30 {
		padding-top: 30px !important;
	}
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
	.minw769maxw1024none {
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.minw768maxw1024none {
			display: none;
	}
}
@media screen and (min-width: 769px) {
	.minw769none {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	.minw768none {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	html {
		font-size: 50%;
	}
	.maxw768none {
		display: none;
	}
}
@media screen and (max-width: 1024px) and (min-width: 481px) {
	.maxw1024minw481none {
		display: none;
	}
}
@media screen and (max-width: 641px) and (min-width: 481px) {
	#topback {
		bottom: 120px;
	}
}
@media screen and (max-width: 767px) and (min-width: 481px) {
}
@media screen and (max-width: 767px) and (min-width: 375px) {
	.maxw767minw375none {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.maxw640none {
		display: none;
	}
}

@media screen and (min-width: 481px) {
	.minw481none {
		display: none;
	}
	.wrap {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
	.wrap02 {
		width: 100%;
	}
	header .summary .logo {
		width: 51.25%;
	}
	header .summary p {
		line-height: 2;
	}
}

@media screen and (max-width: 480px) {
	.maxw480none {
		display: none;
	}
	p {
		font-size: 13px;
	}
	.wrap {
		padding-left: 15px;
		padding-right: 15px;
	}
	header .summary {
		padding: 0 15px 10px;
	}
	header .summary .logo {
		max-width: 192px;
		margin-left: auto;
		top: 0;
		margin-left: 3px;
	}
	header .summary p {
		margin-top: 8px;
		font-size: 13px;
	}
	header .summary {
		margin-top: 0;
	}
	#index .sec01 dl dt {
		width: 30px;
		margin-right: 10px;
	}
	#index .sec01 dl dd {
		width: calc(100% - 40px);
		font-size: 18px;
		margin-top: 0;
		letter-spacing: 0.05em;
	}
	#index .sec01 dl dd span {
		font-size: 24px;
		top: 2px;
		line-height: 0.9;
	}
	#index .sec01 .btn_conv {
		padding: 8px;
		margin-top: 20px;
	}
	#index main .sec01 h2::after {
		border-width: 13px 9px 0 9px;
		bottom: -13px;
	}
	#index main .sec01 h2 {
		padding: 10px;
	}
	#index footer {
		padding-top: 15px;
		padding-bottom: 85px;
	}
	a.menu_follow {
		padding: 12.5px;
	}
	#topback {
		width: 50px;
		height: 50px;
		bottom: 85px;
	}
	#topback::after {
		top: 22px;
	}
	#index .sec02 ul {
		padding: 20px 15px 0;
	}
	#index .sec02 ul li:not(:last-child) {
		margin-bottom: 15px;
	}
	#index .sec02 ul li:nth-child(1) {
		margin-bottom: 8px;
	}
	#index .sec02 ul li:nth-child(2) {
		margin-bottom: 7px;
	}
	#index .sec02 ul li:nth-child(3) {
		margin-bottom: 13px;
	}













	.mt10 {
		margin-top: 5px !important;
	}
	.mt12 {
		margin-top: 6px !important;
	}
	.mt15 {
		margin-top: 7px !important;
	}
	.mt20 {
		margin-top: 10px !important;
	}
	.mt25 {
		margin-top: 10px !important;
	}
	.mt30 {
		margin-top: 15px !important;
	}
	.mt35 {
		margin-top: 15px !important;
	}
	.mt40 {
		margin-top: 20px !important;
	}
	.mt45 {
		margin-top: 20px !important;
	}
	.mt50 {
		margin-top: 25px !important;
	}
	.mt55 {
		margin-top: 25px !important;
	}
	.mt60 {
		margin-top: 30px !important;
	}
	.mt65 {
		margin-top: 30px !important;
	}
	.mt70 {
		margin-top: 35px !important;
	}
	.mt75 {
		margin-top: 35px !important;
	}
	.mt80 {
		margin-top: 40px !important;
	}
	.mt85 {
		margin-top: 40px !important;
	}
	.mt90 {
		margin-top: 45px !important;
	}
	.mt95 {
		margin-top: 45px !important;
	}
	.mt100 {
		margin-top: 50px !important;
	}
	.mt110 {
		margin-top: 50px !important;
	}
	.mt115 {
		margin-top: 50px !important;
	}
	.mt120 {
		margin-top: 50px !important;
	}
	.mt125 {
		margin-top: 50px !important;
	}
	.mt130 {
		margin-top: 50px !important;
	}
	.mt135 {
		margin-top: 50px !important;
	}
	.mt140 {
		margin-top: 50px !important;
	}
	.mt150 {
		margin-top: 50px !important;
	}
	.mt155 {
		margin-top: 50px !important;
	}
	.mt160 {
		margin-top: 50px !important;
	}
	.mt180 {
		margin-top: 50px !important;
	}
	.mt200 {
		margin-top: 80px !important;
	}
	.mr55 {
		margin-right: 25px !important;
	}
	.mb10 {
		margin-bottom: 5px !important;
	}
	.mb20 {
		margin-bottom: 10px !important;
	}
	.mb30 {
		margin-bottom: 15px !important;
	}
	.mb40 {
		margin-bottom: 20px !important;
	}
	.mb50 {
		margin-bottom: 25px !important;
	}
	.mb60 {
		margin-bottom: 30px !important;
	}
	.mb70 {
		margin-bottom: 35px !important;
	}
	.mb80 {
		margin-bottom: 40px !important;
	}
	.mb90 {
		margin-bottom: 45px !important;
	}
	.mb100 {
		margin-bottom: 50px !important;
	}
	.mb120 {
		margin-bottom: 60px !important;
	}
	.mb150 {
		margin-bottom: 70px !important;
	}
	.ml20 {
		margin-left: 10px !important;
	}
	.ml100 {
		margin-left: 50px !important;
	}
	.pt30 {
		padding-top: 20px !important;
	}
	.pt50 {
		padding-top: 25px !important;
	}
	.pt55 {
		padding-top: 25px !important;
	}
	.pt60 {
		padding-top: 30px !important;
	}
	.pt70 {
		padding-top: 35px !important;
	}
	.pt75 {
		padding-top: 35px !important;
	}
	.pt80 {
		padding-top: 40px !important;
	}
	.pt90 {
		padding-top: 45px !important;
	}
	.pt100 {
		padding-top: 50px !important;
	}
	.pt110 {
		padding-top: 50px !important;
	}
	.pt120 {
		padding-top: 50px !important;
	}
	.pt130 {
		padding-top: 50px !important;
	}
	.pt135 {
		padding-top: 50px !important;
	}
	.pt140 {
		padding-top: 50px !important;
	}
	.pt145 {
		padding-top: 50px !important;
	}
	.pt150 {
		padding-top: 50px !important;
	}
	.pt160 {
		padding-top: 50px !important;
	}
	.pt185 {
		padding-top: 50px !important;
	}
	.pb30 {
		padding-bottom: 20px !important;
	}
	.pb40 {
		padding-bottom: 20px !important;
	}
	.pb55 {
		padding-bottom: 25px !important;
	}
	.pb50 {
		padding-bottom: 25px !important;
	}
	.pb60 {
		padding-bottom: 30px !important;
	}
	.pb70 {
		padding-bottom: 35px !important;
	}
	.pb75 {
		padding-bottom: 35px !important;
	}
	.pb80 {
		padding-bottom: 40px !important;
	}
	.pb85 {
		padding-bottom: 45px !important;
	}
	.pb100 {
		padding-bottom: 50px !important;
	}
	.pb110 {
		padding-bottom: 50px !important;
	}
	.pb120 {
		padding-bottom: 50px !important;
	}
	.pb125 {
		padding-bottom: 50px !important;
	}
	.pb130 {
		padding-bottom: 50px !important;
	}
	.pb140 {
		padding-bottom: 50px !important;
	}
	.pb150 {
		padding-bottom: 50px !important;
	}
	.pb160 {
		padding-bottom: 50px !important;
	}
	.pb200 {
		padding-bottom: 80px !important;
	}
	.pb220 {
		padding-bottom: 110px !important;
	}
	.sp_mb0 {
		margin-bottom: 0 !important;
	}
	main nav.pankuzu ol li span {
		font-size: 13px;
		line-height: 1.3;
		display: inline-block;
	}
}
@media screen and (min-width: 376px) {
	.minw376none {
		display: none;
	}
}
@media screen and (max-width: 375px) {
	.maxw375none {
		display: none;
	}
}
@media screen and (max-width: 374px) {
	.maxw374none {
		display: none;
	}
	header .summary .logo {
		max-width: 140px;
	}
	header .summary p {
		font-size: 12px;
	}
}
@media screen and (max-width: 349px) {
	.maxw349none {
		display: none;
	}
}
@media screen and (max-width: 320px) {
}