@charset "utf-8";
/*
Theme Name: mon
Description:
Theme URI:
Author: yonetani
Version: 1.0
License: ライセンス
License URI: ライセンスの URL
*/
/* ----------------------------------------------------------------------
 user reset
---------------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}
table {
  border-collapse: collapse;
}
ul {
    list-style: none;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
h5 {
	font-weight: 500;
}

/* ----------------------------------------------------------------------
 base
---------------------------------------------------------------------- */
html {
    font-size: 50%;
}
@media (min-width: 1025px) {
	html {
		font-size: 62.5%;
	}
}

body {
    color: #231916;
    font-family: "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    font-size: 1.8rem;
	font-weight: 500;
    line-height: 1.7;
}
@media (min-width: 768px) {
	body {
		font-size: 1.8rem;
	}
}

a {
	text-decoration: none;
	outline:none;
	cursor: pointer;
}
a:hover {
    transition: .3s;
}

a[target="_blank"]::after {
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-size: 0.8em;
    margin-left: 9px;
	margin-right: 9px;
	margin-top: 12px;
    font-weight: 700;
}
/* 例外 */
.target-icon-non a[target="_blank"]::after {
	content: " ";
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
}
a img:hover {
  opacity: .8;
}

img.scale, img.responsive {
	max-width: 100%;
	height: auto;
}
img{
    -webkit-backface-visibility: hidden;
    vertical-align: bottom;
}
.border{
    border-top: 1px solid #C5C5C5;
}
.border-main-color {
    border: 3px solid #168352;
}
.border-radius-20 {
	border-radius: 20px;
}
.triangle {
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #168352;
}

/* ----------------------------------------------------------------------
 layout
---------------------------------------------------------------------- */
.flex{
    display: flex;
}

.fl-reverse {
	flex-direction: row-reverse;
}

.fl-wrap{
    flex-wrap: wrap;
}
.fl-column {
    flex-direction: column;
}
.fl-center{
    justify-content: center;
    align-items: center;
}
.fl-between {
    flex-wrap: wrap;
    justify-content: space-between;
}
.fl-justify{
    justify-content: center;
}
.fl-around{
    justify-content: space-around;
}
.fl-end{
	justify-content: flex-end;
}
.fl-start{
	justify-content: flex-start;
}
.fl-align-center {
    align-items: center;
}
.fl-align-start{
    align-items: flex-start;
}
.fl-align-self-start-only {
	align-self: flex-start;
}

.fl-align-self-end {
	align-self: center;
}
@media (min-width: 768px) {	
	.fl-align-self-end {
		align-self: flex-end;
	}
}

.fl-align-self-start {
	align-self: center;
}
@media (min-width: 768px) {	
	.fl-align-self-start {
		align-self: flex-start;
	}
}

/* 子要素の高さ揃える */
/* 親 */
.fl-stretch {
	align-items: stretch;
}

.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.grid-column{
    padding: 1.5rem 1rem;
}

/* 3つ */
.grid-3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
@media (min-width:768px) {
	.grid-3 {
		display: grid;
		gap: 3rem;
		grid-template-columns: repeat(auto-fit, minmax(29%, 1fr));
	}
}

.col-2 {
    width: 100%;
}
@media (min-width:768px) {
	.col-2 {
		width: 50%;
	}
}

.col-xs-2 {
    width: 50%;
}
.col-xs-2-sub {
    width: 48.5%;
}

.col-2-40 {
    width: 100%;
}
@media (min-width: 1025px) {
	.col-2-40 {
		width: 38%;
	}
}

.col-2-60 {
    width: 100%;
}
@media (min-width: 1025px) {
	.col-2-60 {
		width: 58%;
	}
}

.col-2-20 {
    width: 100%;
}
@media (min-width: 1025px) {
	.col-2-20 {
		width: 18%;
	}
}

.col-2-80 {
    width: 100%;
}
@media (min-width: 1025px) {
	.col-2-80 {
		width: 78%;
	}
}

.col-3 {
    width: 100%;
}
@media (min-width:768px) {
	.col-3 {
		width: 31%;
	}
}

.col-xs-3 {
    width: 48%;
}
@media (min-width:768px) {
	.col-xs-3 {
		width: 31%;
	}
}

.col-4{
    width: calc(48% - 1px);
}
@media (min-width:768px) {
	.col-4 {
		width: calc(24% - 1px);
	}
}

/* sub-page */
.col-2-sub {
    width: 100%;
}
@media (min-width:768px) {
	.col-2-sub {
		width: 48.5%;
	}
}

/* sub-page */
.col-2-contact-area {
    width: 100%;
}
@media (min-width:768px) {
	.col-2-contact-area {
		width: 46%;
	}
}

.col-4-sub {
    width: calc(50% - 10px);
}
@media (min-width:768px) {
	.col-4-sub {
		width: calc(25% - 10px);
	}
}
@media (min-width:1025px) {
	.col-4-sub {
		width: calc(25% - 20px);
	}
}

.contents-150,.contents-135,.contents,.contents-02{
	max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	
	margin-right: auto;
    margin-left: auto;
}
@media (min-width:768px) {
	.contents-150,.contents-135,.contents{
        width: 94%;
    }
    .contents-02{
        width: 90%;
    }
}

@media (min-width: 1025px) {
	.contents-150{
        width: 150rem;
    }
	.contents-135{
        width: 135rem;
    }
	.contents{
        width: 120rem;
    }
    .contents-02{
        width: 100rem;
    }
}

.text-c{
    text-align: center;
}
.text-r{
    text-align: right;
}
.text-lc,.text-l{
    text-align: left;
}
.text-cl{
    text-align: center;
}
.text-cr{
    text-align: center;
}
@media (min-width:768px) {
	.text-lc{
		text-align: center;
	}
	.text-cl{
		text-align: left;
	}
	.text-cr{
		text-align: right;
	}
}

/* ----------------------------------------------------------------------
 スマホ特例
---------------------------------------------------------------------- */
@media (max-width:767px) {
.sp-column {
    flex-direction: column;
}
.sp-center{
    text-align: center;
}
.sp-mgn {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
.sp-mt-1 {
	margin-top: 1rem;
}
.sp-mt-2 {
	margin-top: 2rem;
}
.sp-mt-3 {
	margin-top: 3rem;
}
.sp-mt-5 {
	margin-top: 5rem;
}
.sp-mt-7 {
	margin-top: 7rem;
}
.sp-mt-8 {
	margin-top: 8rem;
}
.sp-mt-10 {
	margin-top: 10rem;
}
}

/* ----------------------------------------------------------------------
 タブレット特例
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.tb-mt-3 {
		margin-top: 3rem;
	}
	.tb-mt-10 {
		margin-top: 10rem;
	}

	.tb-mt-m15 {
		margin-top: -15rem;
	}
}

/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.mtb-1{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.mtb-2{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mt-1{
    margin-top: 1rem;
}
.mt-2{
    margin-top: 2rem;
}

.mt-3{
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
	.mt-3{
	   	margin-top: 3rem;
	}
}

.mt-m3{
    margin-top: -3rem;
}

.mt-4{
    margin-top: 2rem;
}
@media (min-width: 768px) {
	.mt-4{
	   	margin-top: 4rem;
	}
}

.mt-5 {
	margin-top: 2.5rem;
}
@media (min-width: 768px) {
	.mt-5{
	   	margin-top: 5rem;
	}
}
.mt-6 {
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.mt-6{
	   	margin-top: 6rem;
	}
}

.mt-7 {
	margin-top: 3.5rem;
}
@media (min-width: 768px) {
	.mt-7{
	   	margin-top: 7rem;
	}
}

.mt-8 {
	margin-top: 4rem;
}
@media (min-width: 768px) {
	.mt-8{
	   	margin-top: 8rem;
	}
}

.mt-10{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-10{
	   	margin-top: 10rem;
	}
}

.mt-15{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-15{
	   	margin-top: 15rem;
	}
}

.mt-20{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-20{
	   	margin-top: 20rem;
	}
}

.mt-25{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-25{
	   	margin-top: 25rem;
	}
}

.mb-1{
    margin-bottom: 1rem;
}

.mb-5{
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.mb-5{
	   	margin-bottom: 5rem;
	}
}

.mb-10{
    margin-bottom: 5rem;
}
@media (min-width: 768px) {
	.mb-10{
	   	margin-bottom: 10rem;
	}
}

.mb-15{
    margin-bottom: 7.5rem;
}
@media (min-width: 768px) {
	.mb-15{
	   	margin-bottom: 15rem;
	}
}

.mb-20{
    margin-bottom: 10rem;
}
@media (min-width: 768px) {
	.mb-20{
	   	margin-bottom: 20rem;
	}
}

.ml-1{
    margin-left: 1rem;
}
.ml-2{
    margin-left: 2rem;
}
.ml-3{
    margin-left: 3rem;
}
.ml-4{
    margin-left: 4rem;
}
.ml-5{
    margin-left: 5rem;
}
.mr-03{
    margin-right: .3rem;
}

.mr-1{
    margin-right: 1rem;
}
.mr-2{
    margin-right: 2rem;
}
.mr-3{
    margin-right: 3rem;
}
.m-auto {
	margin-left : auto;
	margin-right: auto; 
}

.ml-auto {
	margin-left : auto;
	margin-right: auto; 
}
@media (min-width: 768px) {
	.ml-auto {
		margin-left : auto;
		margin-right: 0; 
	}
}

.mr-auto {
	margin-left : auto;
	margin-right: auto; 
}
@media (min-width: 768px) {
	.mr-auto {
		margin-left : 0;
		margin-right: auto; 
	}
}

.pt-10 {
	padding-top: 5rem;
}
@media (min-width: 768px) {
	.pt-10 {
		padding-top: 10rem;
	}
}

.pd-1 {
    padding: 1rem;
}

.pd-2 {
    padding: 2rem;
}

.pd-3 {
    padding: 3rem;
}

.pd-5 {
    padding: 5rem;
}

.pd-7 {
    padding: 5rem;
}
@media (min-width: 1025px) {
	.pd-7 {
		padding: 7rem;
	}
}

.pd-8 {
    padding: 5rem;
}
@media (min-width: 1025px) {
	.pd-8 {
		padding: 8rem;
	}
}
.pb-1{
    padding-bottom: 1rem;
}
.pb-20 {
	padding-bottom: 10rem;
}
@media (min-width: 1025px) {
	.pb-20 {
		padding-bottom: 20rem;
	}
}

.pd-lr-3 {
	padding-left: 3rem;
	padding-right: 3rem;
}

.pd-tb-6 {
	padding: 3rem 0;
}
@media (min-width: 1025px) {
	.pd-tb-6 {
		padding: 6rem 0;
	}
}

.pd-tb-15 {
	padding-top: 10rem;
	padding-bottom: 10rem;
}
@media (min-width: 1025px) {
	.pd-tb-15 {
		padding-top: 15rem;
		padding-bottom: 15rem;
	}
}

.pd-tb-2 {
	padding: 2rem 0;
}

.pd-tb-3 {
	padding: 3rem 0;
}

.pd-tb-4 {
	padding: 4rem 0;
}
.mg-lr-3 {
	margin-left: 3rem;
	margin-right: 3rem;
}

.mt-m1{
    margin-top: -1rem;
}

.height-100p {
	height: 100%;
}

.width-60p {
	width: 100%;
}
@media (min-width: 1025px) {
	.width-60p {
		width: 60%;
	}
}

.width-70p {
	width: 100%;
}
@media (min-width: 1025px) {
	.width-70p {
		width: 70%;
	}
}

.width-80p {
	width: 100%;
}
@media (min-width: 768px) {
	.width-80p {
		width: 80%;
	}
}

.width-86p {
	width: 86%;
}
.width-100p {
	width: 100%;
}

/* ----------------------------------------------------------------------
 フォント関連
---------------------------------------------------------------------- */
/* サイズ */
.fs-100{
    font-size: 7.5rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-100{
    	font-size: 10rem;
	}
}

.fs-90{
    font-size: 6.75rem;
}
@media (min-width: 768px) {
	.fs-90{
    	font-size: 9rem;
	}
}

.fs-75{
    font-size: 5.625rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-75{
    	font-size: 7.5rem;
	}
}

.fs-56 {
    font-size: 4.2rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-56 {
    	font-size: 5.6rem;
	}
}

.fs-46{
    font-size: 3.375rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-46{
    	font-size: 4.6rem;
	}
}

.fs-39 {
	font-size: 3rem;
	line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-39 {
		font-size: 3.9rem;
	}
}

.fs-30 {
	font-size: 2.25rem;
	line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-30 {
		font-size: 3rem;
	}
}

.fs-24 {
    font-size: 1.8rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-24 {
    	font-size: 2.4rem;
	}
}

.fs-20 {
    font-size: 1.5rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-20{
    	font-size: 2rem;
	}
}

.fs-18{
    font-size: 1.6rem;
    line-height: 2.1;
}
@media (min-width: 768px) {
	.fs-18{
    	font-size: 1.8rem;
	}
}

.fs-16{
    font-size: 1.5rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-16{
    	font-size: 1.6rem;
	}
}

.fs-15{
    font-size: 1.3rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-15{
    	font-size: 1.5rem;
	}
}


.fs-13{
    font-size: 1.2rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-13{
    	font-size: 1.3rem;
	}
}

.fs-12{
    font-size: 1.2rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-12{
    	font-size: 1.2rem;
	}
}

.fs-70p {
    font-size: 70%;
}
.fs-80p {
    font-size: 80%;
}
.fs-90p {
    font-size: 90%;
}
.fs-110p {
    font-size: 110%;
}
.fs-120p {
    font-size: 120%;
}

/* 見出し */
.heading-circle {
	position: relative;
	padding-left: 1.6em;
  }
.heading-circle::before {
	position: absolute;
	content: '●';
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #168352;
	font-size: 60%;
}

.heading-circle-list {
	position: relative;
	padding-left: 1.6em;
  }
.heading-circle-list::before {
	position: absolute;
	content: '●';
	top: 5px;
	left: 10px;	
	color: #168352;
	font-size: 60%;
}
@media (min-width: 768px) {
	.heading-circle-list::before {
		top: 10px;
	}
}

.heading-circle-list-bk {
	position: relative;
	padding-left: 1.6em;
  }
.heading-circle-list-bk::before {
	position: absolute;
	content: '●';
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #222;
	font-size: 60%;
}

.en {
	font-family: "Kanit", sans-serif;
}

.regular {
	font-weight: 400!important;
}
.normal {
	font-weight: 500!important;
}
.bold{
    font-weight: 700!important;
}
.f-black{
    font-weight: 900!important;
}
.underline {
	border-bottom: 2px solid;	
}
.underline-red {
	border-bottom: 1px solid #E22934;	
}
.maker {
	color: #168352;
	font-weight: 700;
	background: linear-gradient(transparent 0%, #d1d7e6 0%);
}
.line-15 {
	line-height: 1.5;
}
.line-16 {
	line-height: 1.6;
}
.line-20 {
	line-height: 2;
}
.line-27 {
	line-height: 2.7;
}

/* 色*/
.base-color{
    color: #d1d7e6;
}
.main-color{
    color: #168352;
}
.white{
    color: #fff;
}
.black{
    color: #231916;
}
.gray {
	color: #F7F7F7;
}
.red {
	color: #E22934;
}

/* インデント */
.indent-1 {
    padding-left:1em;
    text-indent:-1em;
}

/* position */
.p-relative {
	position: relative;
}

/* ----------------------------------------------------------------------
 背景色
---------------------------------------------------------------------- */
.bg {
    background: #ECF3FB;
}
.bg-base {
    background: #EDF5F1;
}
.bg-main {
    background: #168352;
}
.bg-black {
    background: #111;
}
.bg-gray {
	background: #F4F4F4;
}
.bg-white {
	background: #fff;
}

/* padding */
.bg-pd {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}
@media (min-width: 1025px) {
	.bg-pd {
		padding-top: 15rem;
		padding-bottom: 15rem;
	}
}

/* ----------------------------------------------------------------------
 ラベル
---------------------------------------------------------------------- */
.label {
	display: inline-block;
	padding: 0 2rem;
	vertical-align: middle;
}
@media (min-width: 768px) {
	.label {
		padding: 0 4rem;
	}
}

.label-border {
	border: 3px solid;
	vertical-align: middle;
}

/* ----------------------------------------------------------------------
 ボタン
---------------------------------------------------------------------- */
.btn {
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 600;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	border-radius: 50px;
}
@media (min-width: 1025px) {
	.btn {
		height: 60px;
		line-height: 60px;
		border-radius: 60px;
		font-weight: 700;
		width: 300px;
    }
}
.btn:hover {
  transition: all .2s;
}

/* PCで左よせボタン */
.btn-free {
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 600;
	width: 100%;
	border-radius: 50px;
}
@media (min-width: 1025px) {
	.btn-free {
		height: 60px;
		border-radius: 60px;
		line-height: 60px;
		width: 350px;
    }
}
.btn-free:hover {
	transition: all .2s;
}

/* メインカラー */
.btn-main-color {
	color: #fff;
	background: #168352;
	border: 1px solid #168352;	
}
.btn-main-color:hover {
  background: none;
  color: #168352;
}

.btn-gray {
	color: #222;
	background: #F4F4F4;
}
.btn-gray:hover {
  background: #168352;
  color: #fff;
}

/* 透明 */
.btn-tomei {
	color: #231916;
	background: none;
	border: 2px solid #231916;
}
.btn-tomei:hover {
	color: #fff;
	background: #168352;
	border: 1px solid #168352;
}
/* 透明白 */
.btn-tomei-white {
	color: #fff;
	background: none;
	border: 2px solid #fff;
}
.btn-tomei-white:hover {
	color: #2899D3;
	background: #fff;
}

/* ----------------------------------------------------------------------
 表示・非表示
---------------------------------------------------------------------- */
.sp-only-on {
    display: block;
   }
@media (min-width: 768px) {
	.sp-only-on {
        display: none;
    }
}

.sp-on {
    display: block;
   }
@media (min-width: 1025px) {
	.sp-on {
        display: none;
    }
}

.tab-on {
    display: none;
}
@media (min-width: 768px) {
.tab-on {
    display: block;
}

}
.pc-on {
    display: none;
}
@media (min-width: 1025px) {
.pc-on {
    display: block;
}
}
/* ----------------------------------------------------------------------
 サイト共通
---------------------------------------------------------------------- */
/* Header Styles */
header {
	position: relative;
	display: flex;
    width: 100%;
    height: 8rem;
    position: fixed;
    z-index: 99;
    background: #fff;
    box-shadow: 0 0 0.5rem rgba(0,0,0,0.2);
}

@media (min-width: 1280px) {
    header {
        height: 10rem;
    }
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 1rem 0 0;
}
@media (min-width: 1280px) {
	.header-logo {
		margin: .7rem 1.5rem 0;
	}
}

.header-logo img {
    height: 4rem;
}

@media (min-width: 1280px) {
    .header-logo img {
        height: 5rem;
    }
}

/* SEO用h1スタイル */
.seo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.seo a {
    color: #333;
    text-decoration: none;
}

@media (min-width: 1280px) {
    .seo {
        top: 0.5rem;
        left: 3rem;
        font-size: 1.1rem;
    }
}

header nav {
	margin-left: auto;
	margin-right: 2rem;
}

.pc-nav {
    display: none;
}
@media (min-width: 1280px) {
    .pc-nav {
        display: flex;
        align-items: center;
    }
}

.pc-nav li {
	margin: 0 .7rem;
}

.pc-nav li a {
	color: #231916;
	font-size: 1.3rem;
	font-weight: 500;
}
@media (min-width: 1280px) {
	.pc-nav li a {
		font-size: 14px;
	}
}

.pc-nav li a:hover {
	color: #168352;
}

.header-tel {
	display: none;
}
@media (min-width: 1500px) {
	.header-tel {
		display: flex;
		align-items: center;
		height: 100%;
		padding-left: 2rem;
		padding-right: 0;
	}
}

.header-contact-btn {
    display: none;
}
@media (min-width: 1280px) {
    .header-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 16rem;
        height: 100%;
        background: #168352;
        color: #fff;
        font-weight: 700;
    }

    .header-contact-btn:hover {
        background: #14683f;
    }
}

/* スマホメニュー */
.sp_nav{
	display: block;
}
@media (min-width: 1280px) {
	.sp_nav{
		display: none;
	}
}

.open #global-nav {
	z-index: 1000;
	visibility: visible;
}
#global-nav {
	visibility: hidden;
	position: fixed;
	display: table;
	vertical-align: middle;
	color: #fff;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	text-align: center;
	font-size: 16px;
}
#global-nav ul {
	display: table-cell;
	vertical-align: middle;
	list-style: none;
}
#global-nav a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 10px 0;
}
/*nav-list*/
#global-nav ul li {
	opacity: 0;
	-webkit-transform: scaleX(0) translateX(-260px);
	transform: scaleX(0) translateX(-260px);
	-webkit-transition: none;
	transition: none;
}
.open #global-nav ul li {
	opacity: 1;
	-webkit-transform: scaleX(1) translateX(0);
	transform: scaleX(1) translateX(0);
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}
.open #global-nav ul li:nth-child(2) {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
.open #global-nav ul li:nth-child(3) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}
.open #global-nav ul li:nth-child(4) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}
.open #global-nav ul li:nth-child(5) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}
.open #global-nav ul li:nth-child(6) {
	-webkit-transition-delay: .6s;
	transition-delay: .6s;
}
.open #global-nav ul li:nth-child(7) {
	-webkit-transition-delay: .7s;
	transition-delay: .7s;
}
.open #global-nav ul li:nth-child(8) {
	-webkit-transition-delay: .8s;
	transition-delay: .8s;
}
.open #global-nav ul li:nth-child(9) {
	-webkit-transition-delay: .9s;
	transition-delay: .9s;
}
.open #global-nav ul li:nth-child(10) {
	-webkit-transition-delay: 1.0s;
	transition-delay: 1.0s;
}
.open #global-nav ul li:nth-child(11) {
	-webkit-transition-delay: 1.1s;
	transition-delay: 1.1s;
}
.open #global-nav ul li:nth-child(12) {
	-webkit-transition-delay: 1.2s;
	transition-delay: 1.2s;
}
.open #global-nav ul li:nth-child(13) {
	-webkit-transition-delay: 1.3s;
	transition-delay: 1.3s;
}
.open #global-nav ul li:nth-child(14) {
	-webkit-transition-delay: 1.4s;
	transition-delay: 1.4s;
}
.open #global-nav ul li:nth-child(15) {
	-webkit-transition-delay: 1.5s;
	transition-delay: 1.5s;
}
.open #global-nav ul li:nth-child(16) {
	-webkit-transition-delay: 1.6s;
	transition-delay: 1.6s;
}

/*#nav-bg*/
#nav-bg {
	content: "";
	width: 45px;
	height: 45px;
	top: 8px;
	right: 10px;
	display: block;
	position: fixed;
	background: #168352;
	box-shadow: 0 0.5rem 3rem rgba(153, 153, 153, 0.3);
	box-sizing: border-box;
	z-index: 999;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.open #nav-bg {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .6s ease-out;
	transition: all .6s ease-out;
	background: #168352;
	width: 3000px;
	height: 3000px;
	margin-right: -1200px;
	margin-top: -1200px;
}

/*#nav-toggle*/
#nav-toggle {
	display: block;
	position: fixed;
	right: 18px;
	top: 2px;
	width: 25px;
	height: 30px;
	cursor: pointer;
	padding: 10px 11px;
	z-index: 1001;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 20px;
	background: #fff;
	left: 11px;
	zoom: 1;
	-webkit-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 12px;
}
#nav-toggle span:nth-child(2) {
	top: 19px;
}
#nav-toggle span:nth-child(3) {
	top: 26px;
}
.open #nav-toggle {
	background: transparent;
}
.open #nav-toggle span {
	background: #fff;
}
.open #nav-toggle span:nth-child(1) {
	top: 25px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	zoom: 1;
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 25px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	zoom: 1;
}

/* Footer Styles */
footer {
    max-width: 100%;
    height: auto;
    padding: 6rem 0;
    color: #fff;
    background: #168352;
    font-weight: 400;
}

@media (min-width: 1025px) {
    footer {
        height: 60rem;
    }
}

.footer-con-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .footer-con-1 {
        width: 94%;
    }
}

@media (min-width: 1025px) {
    .footer-con-1 {
        width: 120rem;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1500px) {
    .footer-con-1 {
        width: 150rem;
    }
}

.footer-pref {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 1025px) {
    .footer-pref {
        text-align: left;
        margin-bottom: 0;
    }
}

.footer-pref img {
    height: 4rem;
    margin-bottom: 2rem;
}

.footer-nav-con {
    display: none;
}

@media (min-width: 1025px) {
    .footer-nav-con {
        display: flex;
        margin-left: auto;
    }
}

@media (min-width: 1025px) {
    .footer-nav {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        display: block;
    }
    .footer-nav li {
        margin-right: 2rem;
        margin-bottom: 1rem;
        line-height: 2;
    }
    .footer-nav a {
        color: #fff;
        font-size: 1.6rem;
        text-decoration: none;
    }

    .footer-nav a:hover {
        padding-bottom: 0.1rem;
        border-bottom: 2px solid #168352;
    }
}

.copyright {
	margin-top: 5rem;
	text-align: center;
	font-size: 12px;
	color: #fff;
}
@media (min-width: 1025px) {
	.copyright{
		margin-top: 28em;
	}
}

.copyright a {
    color: #fff;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* お問い合わせエリア */
.contact-area {
    width: 100%;
    padding: 8rem 0;
	background: url("images/contact-area.jpg") center center;
    background-size: cover;
	height: auto;
	color: #fff;
}
@media (min-width: 1025px) {
    .contact-area{
		background: url("images/contact-area.jpg") center center;
		height: 34rem;
    }
}
	
.pagetop {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: .5rem;
  z-index: 999;
}

@media (min-width: 768px) {
	.pagetop {
		right: 0rem;
	}
}
@media (min-width: 1025px) {
	.pagetop {
		right: 1rem;
	}
}
.pagetop img {
	width: 48px;
}
@media (min-width: 768px) {
	.pagetop img {
		width: 60px;
	}
}

/* ----------------------------------------------------------------------
 動画埋め込み
---------------------------------------------------------------------- */
.movie-wrap {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}
.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 1025px) {
	.movie-wrap {
		width: 100%;
	}
}
/* ----------------------------------------------------------------------
 GoogleMap埋め込み
---------------------------------------------------------------------- */
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

/* ----------------------------------------------------------------------
 table 横スクロール
---------------------------------------------------------------------- */
/* 横スクロール */
.scroll-area {
  overflow: auto;
  white-space: nowrap;
}
.scroll-area::-webkit-scrollbar {
  height: 7px;
}
.scroll-area::-webkit-scrollbar-track {
  background: #efefef；
}
.scroll-area::-webkit-scrollbar-thumb {
	background: #eee;
}
/*tb-type-01*/
.tb-type-01 {
	table-layout: fixed;
	width: 100%;
	min-width: 100%;
	border-top: 2px solid #168352;
    border-bottom: 2px solid #168352;
}

.tb-type-01 tr {
    
}
.tb-type-01 tr:nth-child(even) {
	background: #F4F4F4;
}
.tb-type-01 th {
	width: 11rem;
	vertical-align: middle;
	text-align: center;
	font-weight: 700;
	color: #168352;
	/*background: #d1d7e6;*/
	font-size: 13px;
	line-height: 1.5;
	padding: .5rem;
}
@media only screen and (min-width: 768px) {
	.tb-type-01 th {
		width: 18rem;
		font-size: 16px;
	}
}
@media only screen and (min-width: 1025px) {
	.tb-type-01 th {
		width: 25rem;
		font-size: 18px;
		padding: 3rem 1rem;
	}
}

.tb-type-01 td {
	width: 22rem;
	font-size: 12px;
	line-height: 1.8;
	padding: 2rem;
	text-align: left;
	vertical-align: middle;	
}
@media only screen and (min-width: 768px) {
	.tb-type-01 td {
		width: 25rem;
		font-size: 14px;
		padding: 2rem;
	}
}
@media only screen and (min-width: 1025px) {
	.tb-type-01 td {
		font-size: 18px;
	}
}

/* ----------------------------------------------------------------------
 top-page
---------------------------------------------------------------------- */
@media (max-width: 767px) {
	.hero-space {
		padding-top: 8rem;
	}
}
.hero-area {
    position: relative;
    width: 100%;
    height: calc(100vh - 10rem);
	padding-top: 10rem;
    overflow: hidden;
}
@media (max-width: 767px) {
	.hero-area {
		height: auto;
        padding-top: 56.25%; /* 16:9のアスペクト比（9 / 16 = 0.5625） */
	}
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: none;
    }
}

.bg-scale {
    position: relative;
    overflow: hidden;
    display: block;
}
.bg-scale:after{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.bg-scale:hover:after {
    opacity: .8;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.range{
	display: flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.back-img {
	position: relative;
    display: flex;
	align-items: center;
	justify-content: center;
	height: 25rem;
}

@media only screen and (min-width: 768px) {
	.back-img {
		height: 38rem;
	}
}
@media only screen and (min-width: 1025px) {
	.back-img {
		height: 38rem;
	}
}

.company-back::after{
	position: absolute;
	display: inline-block;
	content: "";
	top: 0;
	left: 0;
    background: url("images/top-img-08.png")no-repeat center center;
    background-size: cover;
}

.contact-back::after{
	position: absolute;
	display: inline-block;
	content: "";
	top: 0;
	left: 0;
    background: url("images/top-img-09.png")no-repeat center center;
    background-size: cover;
}

/* ----------------------------------------------------------------------
 サブページ共通
---------------------------------------------------------------------- */
.wrapper {
    width: 100%;
    padding-top: 8rem;
}

/* お問い合わせエリア */
.contact-area-con {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    align-items: center;
	max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	
	margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
	.contact-area-con{
		max-width: 90rem;
		justify-content: space-between;
	}
}

.contact-area-col-2 {
    width: 100%;
	display: flex;
	justify-content: center;
}
@media (min-width:768px) {
	.contact-area-col-2 {
		width: 48%;
	}
}

.btn-contact {
	display: block;
	text-align: center;
    font-weight: 600;
	border-radius: 50px;
    height: 50px;
	line-height: 50px;
	width: 100%;
}
@media (min-width: 1024px) {
	.btn-contact {
		height: 60px;
		line-height: 60px;
	}
}

.btn-contact:hover {
  transition: all .2s;
}

.fs-contact-area {
    font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 768px) {
	.fs-contact-area {
    	font-size: 24px;
	}
}

/* ----------------------------------------------------------------------
 faq
---------------------------------------------------------------------- */
.accordionbox{
	width: 100%;
	margin: 5rem auto 10rem;
}
/* 質問 */
.accordionlist dt{
    display: flex;
    align-items: center;
	border-bottom: 1px solid #C0C0C0;
    margin: 0;
    padding: .5rem 0;
	cursor: pointer;
}
@media screen and (min-width: 768px) {
	.accordionlist dt{
		margin: 0;
	}
}

.accordionlist dt .title{
    padding-left: 1rem;
}

/* 回答 */
.accordionlist dd{
    display: none;
	color: #222;
	padding: 1rem;
}
@media screen and (min-width: 768px) {
	.accordionlist dd{
		padding: 1rem 4rem 1rem 3rem;
	}
}

/* ＋ */
.accordion_icon,
.accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
    padding: 0 1rem;    
}
@media screen and (min-width: 768px) {
	.accordion_icon,
	.accordion_icon span {
		padding: 0 1.5rem;    
	}
}
.accordion_icon {
	position: relative;
	width: 50px;
    text-align: center;
    margin-left: auto;
    margin-right: 2rem;
}
@media screen and (min-width: 768px) {
	.accordion_icon {
		margin-right: 4rem;
	}	
}
.accordion_icon span {
	position: absolute;
    width: 10px;
    right: 5px;
	height: 2px;
    background-color: #168352; /* ＋の色 */
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}
.accordion_icon span:nth-of-type(1) {
    top: 0px;
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
    top: 0px;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

/*＋、－切り替え*/
.accordion_icon.active span:nth-of-type(1) {
	display:none;
}
.accordion_icon.active span:nth-of-type(2) {
	top: 0px;
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/* Q&A画像 */
.question{
	background: url("images/faq-q.png") 1.5rem center no-repeat;
    background-size: 15px;
	padding: 1.5rem 1.5rem 1.5rem 6rem;
    color: #222;
    font-size: 16px;
	font-weight: 500;
    line-height: 1.4;	
}
@media screen and (min-width: 768px) {
	.question{
		background: url("images/faq-q.png") 4rem center no-repeat;
		background-size: 25px;
		padding: 2.2rem 2.2rem 2.2rem 11rem;
		font-size: 20px;
	}
}

.answer{
	/*background: url("../images/faq-a.png") 0 center no-repeat;*/
    background-size: 15px;
	padding: 1.5rem 1.5rem 1.5rem 6rem;
    font-size: 14px;
    line-height: 1.8;
}
@media screen and (min-width: 768px) {
	.answer{
		background: url("images/faq-a.png") 2rem center no-repeat;
		background-size: 25px;
		padding: 2.5rem 2.5rem 2.5rem 9rem;
		font-size: 18px;
	}
}

/* ----------------------------------------------------------------------
 レベラー
---------------------------------------------------------------------- */
.rental_size_table_box{
	overflow-x: scroll;
	width: 100%;
}
@media screen and (min-width:800px){
	.rental_size_table_box{
		overflow-x:visible;
	}
}

/* スクロールの幅の設定 */
.rental_size_table_box::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* スクロールの背景の設定 */
.rental_size_table_box::-webkit-scrollbar-track {
	border-radius: 5px;
	box-shadow: 0 0 4px #F4F4F4 inset;
}

/* スクロールのつまみ部分の設定 */
.rental_size_table_box::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #168352;
}

.rental_size_table{
	margin: 2rem 0;
	width: 800px;
	text-align: center;
	border-bottom: 3px solid #168352;
	border-top: 3px solid #168352;
}
@media (min-width: 768px){
	.rental_size_table{
		width: 118rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.rental_size_table tr {
	border-bottom: 2px dashed #168352;
}

.rental_size_table th,td {
	padding: 10px 0;
}

.rental_size_table td {
	background: #FFFFFF;
	border-left: 2px solid #168352;
}

.rental_size_table th {
	background: #EDF5F1;
}
	
.point-icon {
	width: 160px;
}
@media (min-width: 768px){
	.point-icon {
		width: 222px;
	}
}
/* ----------------------------------------------------------------------
 company
---------------------------------------------------------------------- */
.tb-type-03 {
	table-layout: auto;
	width: 100%;
	min-width: 100%;
	border-collapse: collapse;
	border-top: none;
	border-bottom: none;	
}

@media only screen and (min-width: 768px) {
	.tb-type-03 {
		table-layout: fixed;
		border-top: 1px solid #C5C5C5;
		border-bottom: 1px solid #C5C5C5;
	}
}
.tb-type-03 tr {
    border-top: none;
    border-bottom: none;
}
@media only screen and (min-width: 768px) {
	.tb-type-03 tr {
    	border-top: 3px solid #F4F4F4;
    	border-bottom: 3px solid #F4F4F4;
	}
}
.tb-type-03 th {
	display: block;
	vertical-align: middle;
	text-align: center;
	font-weight: 700;
	color:#168352;
	background: #F7F7F7;
	width: 100%;
	font-size: 1.8rem;
	padding: 10px 0px;
}
@media only screen and (min-width: 768px) {
.tb-type-03 th {
	display: table-cell;
	width: 25%;
	padding: 20px 10px;
	background: none;
}

}
.tb-type-03 td {
	display: block;
	font-size: 1.8rem;
	line-height: 2;
	padding: 20px;
	text-align: left;
	vertical-align: middle;	
}
@media only screen and (min-width: 768px) {
.tb-type-03 td {
	line-height: 2.7;
	padding: 20px 10px 20px 50px;
}
}

/* ----------------------------------------------------------------------
 link
---------------------------------------------------------------------- */
.link-area a {
	color: #168352;
}

/* ----------------------------------------------------------------------
 mailform pro
---------------------------------------------------------------------- */
button {
	font-family: "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	text-shadow: none!important;
	cursor: pointer;
    transition: .3s;
	font-size: 1.6rem;
	font-weight: 400;
}
button:hover{
    background: none;
}

/* ----------------------------------------------------------------------
 contact-form7
---------------------------------------------------------------------- */
input, button, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input, textarea {
  padding: 15px 15px !important;
  background: none;
  border: 1px solid #848587;
  font-size: 16px;
}
textarea {
	min-width: 100%;
	min-height: 200px;
}
@media only screen and (min-width: 1025px) {
	textarea {
		min-height: 400px;
	}
}

input:focus,
textarea:focus {
  outline: none;
  background: #F7F7F7;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F7F7F7 inset;
}

input::placeholder, textarea::placeholder {
  color: #999999;
  font-family: 'Noto Sans JP', sans-serif;
}

input[type=radio] {
	padding: 4px !important;
	background: none;
	border: none;
}
@media only screen and (min-width: 1025px) {
input[type=radio] {
		padding: 6px !important;
		background: none;
	}
}

.contact-head {
	display: flex;
	align-items: center;
	margin: 2em 0 1rem 0;
	font-weight: 700;
}
  @media only screen and (min-width: 1025px) {
    .contact-head {
      margin: 5rem 0 1.5rem 0;
	  }
}

.contact-name {
	font-size: 16px;
	color: #231916;
	font-weight: 700;
}
@media only screen and (min-width: 1025px) {
    .contact-name {
      font-size: 25px;
	 }
}

.required {
	margin-left: 15px;
	padding: 0px 15px 0 15px;
	border: 1px solid;
	color: #fff;
	background: #168352;
	font-size: 13px;
	font-weight: 400;
	vertical-align: middle;
	height: 25px;
	line-height: 2;
}

.form-s {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  @media only screen and (min-width: 1025px) {
    .form-s {
      width: 100%;
	  }
}

.form-m {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
  @media only screen and (min-width: 1025px) {
    .form-m {
      width: 70%;
	  }
}

.form-l, .form-xl {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.form-xl {
  height: 250px; }
  @media only screen and (min-width: 1025px) {
    .form-xl {
      height: 300px;
	  }
}

input[type=submit] {
	padding: 0!important;
}
.submit-btn {
	display: block;
	cursor: pointer;
	margin: 3rem auto 3rem;  
	font-size: 17px;
	min-width: 280px;
}
  @media only screen and (min-width: 1025px) {
    .submit-btn {
		margin: 7rem auto 10rem;
	  }
}

/* radio */
.cp_ipradio05 {	
	margin: 0rem auto;
	text-align: left;
}
.cp_ipradio05 ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0.5rem 0.5rem 2rem 0.5rem;
	padding: 0.5rem 1rem;
	list-style: none;	
}
.cp_ipradio05 .list_item {
	margin: 0 3rem 0.5rem 0;
	padding: 0;
	font-size: 15px;
}
@media only screen and (min-width: 1025px) {
.cp_ipradio05 .list_item {
	font-size: 18px;
}
}
.cp_ipradio05 label {
	line-height: 135%;
	position: relative;
	margin: 0.5rem;
	cursor: pointer;
}
.cp_ipradio05 .option-input {
	position: relative;
	margin: 0 1rem 0 0;
	cursor: pointer;
}
.cp_ipradio05 .option-input:before {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0.125rem;
	width: 0.75rem;
	height: 0.75rem;
	content: '';
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	        transition:         transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: scale(0, 0);
	        transform: scale(0, 0);
	border-radius: 50%;
	background: #168352;
}
.cp_ipradio05 .option-input:checked:before {
	-webkit-transform: scale(1, 1);
	        transform: scale(1, 1);
}
.cp_ipradio05 .option-input:after {
	position: absolute;
	top: -0.25rem;
	left: -0.125rem;
	width: 1rem;
	height: 1rem;
	content: '';
	border: 2px solid #f2f2f2;
	border-radius: 50%;
	background: #ffffff;
}
/* ----------------------------------------------------------------------
 IE11
---------------------------------------------------------------------- */
@media all and (-ms-high-contrast: none){
body{
    font-family: "メイリオ", Meiryo, Osaka, "sans-serif";    
}
.footer{
    box-shadow: 0px 1px #848587;
    
}
.wrapper{
    box-shadow: 0px 1px #848587;
    margin-bottom: 0!important;
}
.grid,.grid-3{
    overflow: hidden;
	display: flex;
	justify-content: space-between;
}
.grid-column {
	width: 150px;
}	
}