﻿@charset "utf-8";

/*
////////////////////////////////////////////////////////////////////////

	◆ General 共通

------------------------------------------------------------------------
*/

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
*:focus {
  outline: none;
}
html {
	font-size: 62.5%; /* 10px = 1rem */
	height: 100%;
}
body {
	color: #333;
	background: #fff;
	font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 16px; /* IE対応 */
	font-size: 1.6rem;
	font-style: normal;
 	font-weight: 300;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-overflow-scrolling: touch; 
	margin: 0;
	padding: 0;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}
a {
	color: #f56705;
	text-decoration: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}
p a[target="_blank"]:after {
font-family: ForkAwesome;
content: '\f2d2';
font-size: 1.4rem;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
	float: right;
	clear: both;
}
.sp_hide {
	display: none;
}
.wrap {
	margin: 7rem auto 2rem;
	padding: 0 1rem;
}

/*
////////////////////////////////////////////////////////////////////////

	◆ 装飾

------------------------------------------------------------------------
*/
.fade {
	animation: fadein 2s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
em {
	font-style: normal;
	font-weight: 700;
	color: #C30206;
}
.red {
	color: #BF171A;
}
.orange {
	color: #f56705;
}
.green {
	color: #73a10b;
}
.txtCenter {
	text-align: center;
}
.txtS {
	font-size: 1.4rem;
}
.txtXS {
	font-size: 1.2rem;
}
.txtLink a {
	text-decoration: underline;
}
.rounded {
	font-family: "M PLUS Rounded 1c";
}
.eng {
	font-family: "Oswald";
}
.arrow01 {
	padding: 0;
	margin: 1rem 0;
	list-style: none;
}
.arrow01 li {
	line-height: 1.6;
	padding-left: 1rem;
	text-indent: -1rem;
	margin: 0 0 0.7rem 0;
}
.arrow01 li:before {
	font-family: FontAwesome;
	content: "\f105";
	position: relative;
  margin: 0;
	padding-right: 0.5rem;
}
.arrow02 {
	padding: 0;
	margin: 0;
	list-style: none;
}
.arrow02 li {
	line-height: 1.6;
	padding-left: 1rem;
	text-indent: -1rem;
	margin: 0 0 0.7rem 0;
}
.arrow02 li:before {
	font-family: FontAwesome;
	content: "\f0da";
	position: relative;
    margin: 0;
	padding-right: 0.5rem;
}
.exclamation01 {
	padding: 0;
	margin: 0;
	list-style: none;
	color: #73a10b;
	font-size: 1.8rem;
}
.exclamation01 li {
	padding: 0 0 0.5rem 2rem;
	text-indent: -2.2rem;
	border-bottom: dotted 3px;
	margin-bottom: 0.5rem;
}
.exclamation01 li:before {
	font-family: ForkAwesome;
	content: "\f06a";
	position: relative;
	margin: 0;
	padding-right: 0.5rem;
	font-size: 2rem;
}
.check01 {
	padding: 0;
	margin: 0;
	list-style: none;
}
.check01 li {
	line-height: 1.4;
	padding: 0 0 0 2.8rem;
	text-indent: -3.3rem;
	margin: 0 0 1.5rem 0.7rem;
}
.check01 li:before {
	font-family: ForkAwesome;
	content: "\f058";
	position: relative;
	margin: 0;
	padding-right: 1rem;
	font-size: 2.5rem;
	color: #73a10b;
}
.check02 {
	padding: 0;
	margin: 0;
	list-style: none;
}
.check02 li {
	padding: 0 0 0 2rem;
	text-indent: -4.2rem;
	margin: 0 0 1rem 2rem;
	font-size: 2rem;
	line-height: 1.2;
}
.check02 li:before {
	font-family: ForkAwesome;
	content: "\f058";
	position: relative;
	margin: 0;
	padding-right: 1.5rem;
	font-size: 3.2rem;
	color: #f56705;
}
/* ナンバーリスト */
.numList01 {
	counter-reset: li; 
  list-style: none; 
}
.numList01 li {
	padding-left: 2.5rem;
	text-indent: -2.5rem;
	margin-bottom: 1rem;
}
.numList01 li:before {
  margin-right: 1rem;
  content:counter(li) ".";
  counter-increment: li;
  font-weight: bold;
}
.numList01 li:last-child {
	margin-bottom: 0;
}
.numList02 {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}
.numList02 li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.numList02 li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #f56705;
  color: #fff;
  display: block;
  float: left;
  font-size: 1.5rem;
  margin-left: -3rem;
  text-align: center;
  height: 2.2rem;
  width: 2.2rem;
  border-radius: 50%;
}
/* 背景 */
.bg_lattice {
  width:100%;
  background-size: 16px 16px;
  background-position: 50% 50%;
  background-image:repeating-linear-gradient( 90deg, rgba(0,0,0,.1) , rgba(0,0,0,.1) 1px, transparent 1px, transparent 16px),repeating-linear-gradient( 0deg, rgba(0,0,0,.1) , rgba(0,0,0,.1) 1px, #fff 1px, #fff 16px);
}
/* 見出し */
.cap01 { /* 大見出し */
  position: relative;
  padding: 1.5rem 2rem calc(1rem + 10px);
  background: #ffe236;
	font-size: 1.8rem;
	margin: 0 0 1.5rem 1rem;
}
.cap01:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 2px solid #8A8A8A;
}
.cap02 { /* 背景ボックス */
	background: #f49600;
	padding: 1rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	border-bottom: 7px double #fff;
	margin-bottom: 1.5rem;
}
.cap02g { /* 背景ボックス・緑 */
	background: #73a10b;
	padding: 1rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	border-bottom: 7px double #fff;
	margin-bottom: 1.5rem;
}
.cap03 { /* 2重線 */
	border-bottom: 4px double #f56705;
	font-size: 2rem;
	color: #f56705;
	margin-bottom: 1.5rem;
}
.cap04 { /* 線 */
	font-size: 2rem;
	border-bottom: 1px solid #f56705;
	margin-bottom: 1.5rem;
	color: #f56705;
}
.cap05 { /* 矢印・ドット */
	font-size: 2rem;
	border-bottom: 2px dotted #f56705;
	margin-bottom: 1.5rem;
	color: #f56705;
	padding-bottom: 0.5rem;
}
.cap05:before {
	font-family: ForkAwesome;
	content: "\f105";
	position: relative;
	margin: 0;
	padding-right: 1rem;
}
.cap06 { /* 外枠 */
	font-size: 2rem;
	border: 1px solid #f56705;
	border-bottom: 4px double #f56705;
	margin-bottom: 1.5rem;
	padding: 1rem;
	color: #f56705;
}
.cap07 { /* 矢印 */
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: #f56705;
	padding-bottom: 0.5rem;
}
.cap07:before {
	font-family: ForkAwesome;
	content: "\f061";
	position: relative;
	margin: 0;
	padding-right: 0.5rem;
}
/* flex */
.flexBox01 {
	display: flex;
	flex-direction: column-reverse;
}
.flexBox01 img {
	width: 100%;
	height: auto;
	margin-bottom: 2rem;
}
.flexImg50 img {
	margin-top: 1rem;
}
.textfloat {
	display: flex;
	flex-direction: column-reverse;
}
.textfloat img {
	width: 60%;
	margin: 2rem auto;
}
/* box */
.box01 {
	border: 10px solid #E5E5E5;
	padding: 2rem;
}
/* ボタン */
.btn_more01 {
	background: #f49600;
	border-radius: 10px;
	width: 70%;
	margin: 0 auto;
}
.btn_more01 a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 1rem;
	text-align: center;
	font-size: 2rem;
	text-decoration: none;
}
.btn_more01 a:before {
	font-family: ForkAwesome;
	content: "\f105";
	position: relative;
	margin: 0;
	padding-right: 1rem;
}
.btn_more01 a:hover {
	background: #f56705;
	border-radius: 10px;
}

/*----------------------------------------------------
  テーブル
----------------------------------------------------*/
.table_wrap {
	overflow: auto;
	white-space: nowrap;
}
.table01 {
	max-width: 100%;
	background: #fff;
	table-layout: fixed;
	word-break: break-all;
	border-collapse: collapse;
}
.table01 tr > th,
.table01 tr > td {
	border: 1px solid #cecece;
	padding: 1.5rem 1rem;
	text-align: left;
}
.table01 tr > th {
	background: #F1F1F1;
	font-weight: 700;
	/*width: 30%;*/
	text-align: center;
}
/* table02 */
.table02 {
	max-width: 100%;
	border-collapse: collapse;
	margin: 0;
	font-size: 1rem;
	border: 2px solid #cecece;
	margin-bottom: 1rem;
}
.table02 tr > th, .table02 tr > td {
	border: 1px dotted #cecece; 
	padding: 0.5rem;
	text-align: center;
	width: 10%;
}
.table02 tr > th {
	white-space: nowrap;
	background: #fff;
	font-weight: 700;
}
/* table03 */
.table03 {
	border-collapse: collapse;
	table-layout: fixed;
	word-wrap: break-word;
	background: #fff;
	letter-spacing: 1px;
}
.table03 tr > th,
.table03 tr > td {
  border: 1px solid #cecece;
	display: table-cell;
	padding: 1.5rem 0.5rem;
	text-align: center;
}
.table03 tr > th {
	background: #F1F1F1;
  width: 13rem;
	font-weight: 700;
	vertical-align: middle;
	white-space: nowrap;
}

/*----------------------------------------------------
  スペース
----------------------------------------------------*/
.m-1{margin:1rem}.mt-1{margin-top:1rem}.mb-1{margin-bottom:1rem}.ml-1{margin-left:1rem}.mr-1{margin-right:1rem}.mv-1{margin:1rem 0}.mh-1{margin:0 1rem}.m-2{margin:2rem}.mt-2{margin-top:2rem}.mb-2{margin-bottom:2rem}.ml-2{margin-left:2rem}.mr-2{margin-right:2rem}.mv-2{margin:2rem 0}.mh-2{margin:0 2rem}.m-3{margin:3rem}.mt-3{margin-top:3rem}.mb-3{margin-bottom:3rem}.ml-3{margin-left:3rem}.mr-3{margin-right:3rem}.mv-3{margin:3rem 0}.mh-3{margin:0 3rem}.m-4{margin:4rem}.mt-4{margin-top:4rem}.mb-4{margin-bottom:4rem}.ml-4{margin-left:4rem}.mr-4{margin-right:4rem}.mv-4{margin:4rem 0}.mh-4{margin:0 4rem}.mt-5{margin-top:5rem}.mb-5{margin-bottom:5rem}.ml-5{margin-left:5rem}.mr-5{margin-right:5rem}.mv-5{margin:5rem 0}.mh-5{margin:0 5rem}.mt-6{margin-top:5rem}.mb-6{margin-bottom:6rem}.mt-7{margin-top:7rem}.mb-7{margin-bottom:7rem}

/*
////////////////////////////////////////////////////////////////////////

	◆ TOP / header ヘッダー

------------------------------------------------------------------------
*/

header {
	border-bottom: 5px solid #f49600;
}
header .inner {
	margin: 0;
	padding: 1rem 2rem;
}
header h1 {
	margin: 0;
}
header h1 img {
	width: 50%;
}
header #right {
	display: none;
}

/*
////////////////////////////////////////////////////////////////////////

	◆ TOP / main　メイン・共通コンテンツ

------------------------------------------------------------------------
*/
#contents {
	margin: 4rem 0;
	padding: 0 1.5rem;
}
/* 保険適応 */
.insurance > div {
	border: 7px solid #cecece;
	padding: 2rem;
	margin-top: -9px;
}
.insurance ul {
	list-style-type: none;
	font-size: 1.6rem;
	font-weight: 700;
}
.insurance li {
	background: linear-gradient(transparent 60%, #ffe236 0%);
	margin-bottom: 1.7rem;
}
.insurance li:last-child {
	margin-bottom: 0;
}
.insurance li em {
	text-decoration: none;
}
.insurance > div ul {
	text-align: center;
}

/*
////////////////////////////////////////////////////////////////////////

	◆ TOP / aside　サイドメニュー

------------------------------------------------------------------------
*/
#sideMenu dl, #sideMenu .contact {
	display: none;
}
#sideMenu {
	margin-top: 5rem;
}
#sideMenu img {
	width: 80%;
	height: auto;
	display: block;
	margin: 3rem auto 0;
}

/*
////////////////////////////////////////////////////////////////////////

	◆ TOP / footMenu

------------------------------------------------------------------------
*/
.bottomMenu ul {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "M PLUS Rounded 1c";
	font-weight: bold;
	display: flex;
	justify-content: space-between;
}
.bottomMenu li {
	width: 50%;
	list-style-type: none;
	text-align: center;
	font-size: 16px;
	letter-spacing: 1px;
}
.bottomMenu li.tel {
	background: #ff6d00;
}
.bottomMenu li.line {
	background: #048b3b;
}
.bottomMenu li img {
	width: 40px;
	height: auto;
	vertical-align: middle;
	margin-right: 1rem;
}
.bottomMenu li a {
	display: block;
	width: 100%;
	padding: 2rem 1rem;
	color: #fff;
}

/*
////////////////////////////////////////////////////////////////////////

	◆ TOP / footer フッター

------------------------------------------------------------------------
*/
footer {
	padding: 0 0 88px;
	margin: 0;
	text-align: center;
}
footer a {
	color: #fff;
}
footer .inner {
	padding: 4rem 2rem 1rem;
	background: #f49600;
	color: #fff;
}
footer address, footer strong {
	font-style: normal;
	font-weight: normal;
}
footer .info {
	display: flex;
	flex-direction: column;
	font-size: 1.8rem;
	margin-bottom: 3rem;
}
footer .info img {
	width: 60%;
	margin: 0 auto 1rem;
}
footer .menu {
	display: none;
}
footer .contact div {
	background: #fff;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 2rem;
}
footer .contact .btnTel a {
	width: 100%;
	padding: 1rem;
	color: #f56705;
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer .contact .btnTel p {
	display: flex;
	margin: 0;
	vertical-align: middle;
	font-size: 2rem;
	font-weight: 700;
}
footer .contact .btnTel span {
	font-size: 1.2rem;
}
footer .contact .btnTel strong {
	font-size: 4.5rem;
	font-weight: 700;
	font-family: "Oswald";
	line-height: 1;
}
footer .contact i {
	font-size: 4rem;
	margin: 0 1rem 0.5rem 0;
}
footer .contact .btnMail p {
	vertical-align: middle;
	font-size: 2rem;
	font-weight: 700;
	margin: 1rem 0;
}
footer .contact .btnMail a {
	display: block;
	width: 100%;
	padding: 1rem;
	color: #f56705;
}
footer .copyright {
	color: #fff;
	background: #f49600;
	padding: 1rem 0;
	margin: 0;
	text-align: center;
}

/* ページトップ */
.pageTop {
	position: fixed;
	bottom: 10rem;
	right: 2rem;
	font-size: 3.5rem;
	opacity: 0.9;
	z-index: 1;
}
.pageTop a {
	background: #73a10b;
	text-decoration: none;
	color: #fff;
	width: 6rem;
	height: 6rem;
	line-height: 1.7;
	text-align: center;
	display: block;
}
.pageTop a:hover {
	text-decoration: none;
	background: #f46101;
	transition: background .25s linear;
	opacity: 1;
}

/*----------------------------------------------------
  問合わせボックス
----------------------------------------------------*/
.contactBox .btnTel {
	background: #ff6d00;
	border-radius: 10px;
	text-align: center;
}
.contactBox .btnTel a, .contactBox .btnMail a {
	width: 100%;
	height: 100%;
	padding: 2rem 1rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}
.contactBox .btnTel p {
	display: flex;
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
}
.contactBox .btnTel span {
	font-size: 1.2rem;
}
.contactBox .btnTel strong {
	font-size: 4.5rem;
	font-weight: 700;
	font-family: "Oswald";
	line-height: 1;
}
.contactBox i {
	font-size: 4rem;
	margin: 0 1rem 0.5rem 0;
}
/* メールバナー */
.contactBox .btnMail {
	background: #f29700;
	border-radius: 10px;
	text-align: center;
	margin-top: 3rem;
}
.contactBox .btnMail p {
	vertical-align: middle;
	font-size: 2rem;
	font-weight: 700;
	margin: 1rem 0;
}