@charset "UTF-8";
/* CSS Document */

/* ------------------------------
   Browser Reset
------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
}

html {
	-webkit-text-size-adjust: none;
}

img {
	vertical-align: bottom;
	max-width:100%;
	width: auto;
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}

a {
	-webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

strong {
	font-weight: bold;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

a:focus {
/*\*/
	overflow: hidden;
/**/
}

option {
	padding-right: 10px;
}
/*input_reset*/
input, select {
  -webkit-appearance: none;
  appearance: none;
}

/* HTML5 ELEMENTS
------------------------------ */
header,article,aside,section,footer,
nav,menu,details,hgroup,summary {
	display: block;
}

/* ------------------------------
   CLEARFIX ELEMENTS
------------------------------ */
.cfx:before,
.cfx:after {
	content: " ";
	display: table;
}
.cfx:after {clear: both;}
.cfx {*zoom: 1;}

/* gnav
----------------------------*/
#header{
    position: fixed;
    padding: 0;
    width: 100%;
    height: 55px;
    transition: 0.35s;
    z-index: 10;
    background: #fff;
}

h1{
    width: 200px;
    position: absolute;
    top: 12px;
    left: 10px;
    transition: 0.35s;
    z-index: 0;
}
h1 a{
    width: 200px;
    display: block;
    transition: 0.35s;
}
h1 a img{
    width: auto;
    display: block;
}
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
    padding: 25px;
}
nav .inner > ul {
  list-style: none;
  margin: 0;
  padding: 0;
    height: 200px;
}
nav .inner > ul li {
  position: relative;
  margin: 0;
}
nav .inner > ul li a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    padding: 1em;
    display: block;
}
nav .inner > ul li a::before {
    content: "▶︎";
    margin-right: 0.5em;
    color: #cc1100;
}
nav .inner .telephone{
    position: absolute;
    top: 225px;
    width: calc(100% - 50px);
    background: #cc1100;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 20px 0;
    font-size: 20px;
}
/*============
.toggle_btn
=============*/
.toggle_btn {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
}
.toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #cc1100;
    border-radius: 4px;
    transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #cc1100;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
@media print,screen and (min-width: 559px){
    h1,
    h1 a{
        width: 250px;
        top: 10px;
    }
}
@media print,screen and (min-width: 959px){
    .toggle_btn{
        display: none;
    }
    h1,
    h1 a{
        width: 350px;
        top: 15px;
    }
    #header{
        width: 100%;
        height: 90px;
        padding-top: 5px;
    }
    #navArea{
        width: 100%;
    }
    nav {
        position: static;
        width: 95%;
        margin: auto;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        overflow-x: hidden;
        overflow-y: hidden;
        opacity: 1;
        background: none;
    }
    nav .inner{
        height: auto;
        padding: 0;
    }
    nav .inner > ul{
        display: flex;
        align-items: center;
        height: auto;
        padding: 0;
    }    
    nav .inner > ul li {
        position: static;
    }
    nav .inner > ul li a {
        width: auto;
        padding: 0;
        display: block;
        transition: .35s;
        margin-left: 1.5em;
    }
    nav .inner .telephone{
        position: static;
        width: 100%;
        padding: 0;
        background: none;
        color: #cc1100;
        text-align: right;
        line-height: 1.3;
        margin-bottom: 10px;
        font-size: 25px;
    }
}

@media print,screen and (min-width: 1024px){
    #header{
        height: 95px;
    }
    h1,
    h1 a{
        width: 380px;
    }
    nav .inner .telephone{
        font-size: 27px;
    }
    nav .inner > ul li a {
        font-size: 15px;
    }
}
@media print,screen and (min-width: 1199px){
    h1,
    h1 a{
        width: 400px;
    }
    nav .inner > ul li a {
        font-size: 16px;
    }
}


/*----------------------
        全体
----------------------*/
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
	font-size: 13px;
	line-height: 1.6em;
}
#container,
#contents,
.container,
.contents2,
.contents{
    width: 100%;
    margin: auto;
}
#container{
    background: #fff;
}
.container{
    padding: 55px 0 30px;
}
.contents,contents2{
    padding: 25px 0;    
}
.wrapper{
    width: 90%;
    margin: auto;
}
.wrapper2{
    width: 90%;
    margin: auto;
}

.wrapper-bg{
    width: calc(90% - 40px);
    margin: 20px auto;
    padding: 20px;
    background: #cc1100;
}
.wrapper-half{
    width: 100%;
    margin: auto;
    padding: 25px 0;
}
.wrap{
    width: 100%;
    margin: auto;
    padding: 10px 0;
}
.wrap2{
    width: 100%;
    margin: auto;
    padding: 10px;
    padding-right: 20px;
}
.wrap2 ul{
    padding-inline-start: 20px;
    list-style-position: inside;
    line-height: 2.0;
}
.wrapinner{
    width: 90%;
    margin: auto;
}
.wrapinner2{
    width: 45%;
    margin: auto;
    margin-left: 20px;
}

.wrap-white{
    width: 100%;
    padding: 20px 0;
}
.wrap-white:last-of-type{
    background: #cc1100;
}
.halfwrap{
    width: 100%;
    padding: 20px 0;
}
.halfwrap:last-of-type{
    background: #cc1100;
}
@media print,screen and (min-width: 559px){
    body {
        font-size: 14px;
    }
    .wrapper-half{
        display: flex;
    }
    .halfwrap{
        width: 50%;
    }
    .contents{
        padding: 30px 0;
    }
    .contents2{
        padding: 30px 0;
        padding-bottom: 0px;
    }

    .wrapper-bg{
        width: calc(90% - 50px);
        padding: 25px;
    }
    .halfwrap,.wrap-white{
        padding: 30px 0;
    }
.wrapinner2 img{
    width: 100%;
    margin: auto;
}
.wrapinner2{
    width: 45%;
    margin: auto;
}
}
@media print,screen and (min-width: 959px){
    body {
        font-size: 15px;
    }
    .container{
        padding: 95px 0 35px;
    }
    .contents{
        padding: 40px 0;
    }
    .contents2{
        padding: 40px auto;
        padding-bottom: 0px;
    }

    .wrapper-bg{
        width: calc(90% - 60px);
        padding: 30px;
    }
    .halfwrap,.wrap-white{
        padding: 40px 0;
    }

}
@media print,screen and (min-width: 1024px){
    body {
        font-size: 16px;
    }
    .container{
        padding: 100px 0 40px;
    }
    .contents{
        padding: 45px 0;
    }
    .contents2{
        padding: 30px 0;
        padding-bottom: 0px;

    }

    .wrapper-bg{
        width: calc(90% - 70px);
        padding: 35px;
    }
    .halfwrap,.wrap-white{
        padding: 50px 0;
    }
}
@media print,screen and (min-width: 1199px){
    .contents{
        padding: 50px 0;
    }
    .contents2{
        padding: 40px 0;
        padding-bottom: 0px;

    }

    .wrapper,
    .wrapper2,
    .wrapper-bg{
        max-width: 1200px;    
    }
    .wrapper-bg{
        width: calc(90% - 80px);
        padding: 40px;
    }
    .halfwrap,.wrap-white{
        padding: 60px 0;
    }
}

/*    位置のスタイル
------------------------------ */
.center{
  text-align: center;
}
.right{
  text-align: right;
}
.left{
  text-align: left;
}
.indent{
    text-indent: 1em;
}
.weight400{
    font-size: 400;
}
.weight500{
    font-size: 500;
}
.weight700{
    font-size: 700;
}
.weight900{
    font-size: 900;
}

.mad-l-0{
    margin-left:0px;
}

@media print,screen and (min-width: 559px){
    .pc-center{
        text-align: right;
    }
    .pc-right{
        text-align: center;
    }
}

/*   改行のスタイル
------------------------------ */
.b-b-l,.b-l-b,.b-l-l{
    display: block;
}
.l-b-b,.l-b-l,.l-l-b{
    display: inline;
}
@media print,screen and (min-width: 559px){
    .b-b-l,.l-b-b,.l-b-l{
        display: block;
    }
    .b-l-b,.b-l-l,.l-l-b{
        display: inline;
    }
}
@media print,screen and (min-width: 1024px){
    .b-l-b,.l-b-b,.l-l-b{
        display: block;
    }
    .b-b-l,.b-l-l,.l-b-l{
        display: inline;
    }
}

/*    配置
---------------------------------*/
.center-70,.center-65,.center-60,.center-61,
.center-55,.center-50,.center-45,
.center-40,.center-35,.center-30,
.top-70,.top-65,.top-60,
.top-55,.top-50,.top-45,
.top-40,.top-35,.top-30,
.half,.third,.quota,
.center-70 > div,.center-65 > div,.center-61 > div,.center-60 > div,
.center-55 > div,.center-50 > div,.center-45 > div,
.center-40 > div,.center-35 > div,.center-30 > div,
.top-70 > div,.top-65 > div,.top-60 > div,
.top-55 > div,.top-50 > div,.top-45 > div,
.top-40 > div,.top-35 > div,.top-30 > div,
.half > div,.third > div,.quota > div{
    width: 100%;
    margin: auto;
}
@media print,screen and (min-width: 959px){
    .center-70,.center-65,.center-60,/*.center-61,*/
    .center-55,.center-50,.center-45,
    .center-40,.center-35,.center-30{
        display: flex;
        align-items: center;
    }
    .center-61{
        display: flex;
    }
    .top-70,.top-65,.top-60,
    .top-55,.top-50,.top-45,
    .top-40,.top-35,.top-30,
    .half,.third,.quota{
        display: flex;
        align-items: stretch;
    }
    .center-70 > div:first-of-type,
    .top-70 > div:first-of-type{
        width: 70%;
        margin: auto;
    }
    .center-70 > div:last-of-type,
    .top-70 > div:last-of-type{
        width: 30%;
        margin: auto;
    }
    
    .center-65 > div:first-of-type,
    .top-65 > div:first-of-type{
        width: 65%;
        margin: auto;
    }
    .center-65 > div:last-of-type,
    .top-65 > div:last-of-type{
        width: 35%;
        margin: auto;
    }
    
    .center-60 > div:first-of-type,
    .top-60 > div:first-of-type{
        width: 60%;
        margin: auto;
    }
    .center-60 > div:last-of-type,
    .top-60 > div:last-of-type{
        width: 40%;
        margin: auto;
    }
    
    .center-55 > div:first-of-type,
    .top-55 > div:first-of-type{
        width: 55%;
        margin: auto;
    }
    .center-55 > div:last-of-type,
    .top-55 > div:last-of-type{
        width: 45%;
        margin: auto;
    }
    
    .center-50 > div:first-of-type,
    .top-50 > div:first-of-type,.half > div,
    .center-50 > div:last-of-type,
    .top-50 > div:last-of-type{
        width: 50%;
        margin: auto;
    }
    
    .center-45 > div:first-of-type,
    .top-45 > div:first-of-type{
        width: 45%;
        margin: auto;
    }
    .center-45 > div:last-of-type,
    .top-45 > div:last-of-type{
        width: 55%;
        margin: auto;
    }
    
    .center-40 > div:first-of-type,
    .top-40 > div:first-of-type{
        width: 40%;
        margin: auto;
    }
    .center-40 > div:last-of-type,
    .top-40 > div:last-of-type{
        width: 60%;
        margin: auto;
    }
    
    .center-35 > div:first-of-type,
    .top-35 > div:first-of-type{
        width: 35%;
        margin: auto;
    }
    .center-35 > div:last-of-type,
    .top-35 > div:last-of-type{
        width: 65%;
        margin: auto;
    }
    
    .center-30 > div:first-of-type,
    .top-30 > div:first-of-type{
        width: 30%;
        margin: auto;
    }
    .center-30 > div:last-of-type,
    .top-30 > div:last-of-type{
        width: 70%;
        margin: auto;
    }
    .third > div{
        width: calc(100% / 3);
        margin: auto;
    }
    .quota > div{
        width: 25%;
        margin: auto;
    }
}


/*　テーブル
------------------------------*/
.table{
    width: 100%;
    margin: auto;
}
.table th,
.table td{
    display: block;
}
@media print,screen and (min-width: 559px){
    .table th,
    .table td{
        display: table-cell;
    }
    .table th{
        width: 150px;
    }
}
@media print,screen and (min-width: 959px){
}

/*　タイトル
------------------------------*/
.page-title{
    width: 90%;
    margin: auto;
    padding: 30px 0;
}
.page-title h2{
    width: 300px;
    padding: 25px 0;
    background: #cc1100;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: auto;
    letter-spacing: 0.15em;
}
.page-title h2 span{
    padding-left: 0.15em;
}
#about .page-title{
    background: url("../img/about/title.jpg") no-repeat;
    background-size: cover;
}
#service .page-title{
    background: url("../img/service/title.jpg") no-repeat;
    background-size: cover;
}
.contents-title,
.border-title h3{
    font-weight: 700;
    font-size: 25px;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}
.contents-title2{
    font-weight: 700;
    font-size: 25px;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}
.contents-title span{
    padding-left: 0.2em;
}

.contents-title ul{
    margin-left: 1em;
}
.onepoint::first-letter{
    color: #cc1100;
}
.white,.wrap-white{
    color: #fff;
}
.border-title{
    border-bottom: 1px solid #000;
    margin-bottom: 15px;
}
.white .border-title {
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
}
.wrap-white .border-title{
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
}

.border-title h3 {
    text-align: center;
}
.leftImg,.photo{
    position: relative;
    height: 3em;
}
.leftImg h3,.photo h3 {
    position: absolute;
    bottom: 0;
    left: 0;
}
.leftImg img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
}
.photo img{
    position: absolute;
    bottom: 0;
    left: 11rem;
    width: 120px;
}

@media print,screen and (min-width: 559px){
    .contents-title,
    .border-title h3{
        font-size: 28px;
    }
    .contents-title2{
        font-size: 18px;
    }

    .leftImg{
        height: 3.5em;
    }
    .leftImg img{
        width: 150px;
    }
    .photo img{
        left: 12rem;
        width: 150px;
    }
    .page-title{
        padding: 35px 0;
    }
    .page-title h2{
        width: 350px;
        padding: 28px 0;
        font-size: 32px;
    }
}
@media print,screen and (min-width: 959px){
    .contents-title,
    .border-title h3{
        font-size: 30px;
    }
    .contents-title2{
        font-size: 20px;
    }

    .leftImg img{
        width: 200px;
    }
    .photo img{
        left: 13rem;
        width: 160px;
    }
    .page-title{
        padding: 40px 0;
    }
    .page-title h2{
        width: 400px;
        padding: 30px 0;
        font-size: 35px;
    }
}
@media print,screen and (min-width: 1024px){
    .contents-title,
    .border-title h3{
        font-size: 32px;
    }
    .contents-title2{
        font-size: 22px;
    }

    .leftImg img{
        width: 220px;
    }
    .photo img{
        left: 15rem;
        width: 180px;
    }
    .page-title{
        padding: 42px 0;
    }
    .page-title h2{
        width: 420px;
        padding: 35px 0;
        font-size: 38px;
    }
}
@media print,screen and (min-width: 1199px){
    .contents-title,
    .border-title h3{
        font-size: 35px;
    }
    .contents-title2{
        font-size: 25px;
    }

    .leftImg img{
        width: 250px;
    }
    .photo img{
        left: 18rem;
        width: 200px;
    }
    .page-title{
        padding: 45px 0;
    }
    .page-title h2{
        width: 450px;
        padding: 38px 0;
        font-size: 40px;
    }
}
@media print,screen and (min-width: 1299px){
    .contents-title,
    .border-title h3{
        font-size: 38px;
    }
    .content-title2{
        fotnt-size:28px;
    }

    .leftImg img{
        width: 300px;
    }
}
@media print,screen and (min-width: 1399px){
    .contents-title,
    .border-title h3{
        font-size: 40px;
    }
    .content-title2{
        fotnt-size:30px;
    }
}

/*　リンクボタン
------------------------------*/
.btnWrap{
    width: 250px;
    margin: 15px auto;
}
.btnWrap a{
    display: block;
    width: 248px;
    border: 1px solid #cc1100;
    background: #cc1100;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}
.btnWrapWhite{
    width: 250px;
    margin: 15px auto;
}
.btnWrapWhite a{
    display: block;
    /*width: 248px;*/
    border: 1px solid #fff;
    background: #cc1100;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}
@media print,screen and (min-width: 959px){
    .btnWrap a,
    .btnWrapWhite a{
        /*width: 298px;*/
        padding: 20px 0;
        transition: 0.35s;
    }
    .btnWrap a:hover{
        border: 1px solid #cc1100;
        background: none;
        color: #cc1100;
    }
    .btnWrapWhite a:hover{
        border: 1px solid #fff;
        background: #fff;
        color: #cc1100;
    }
}

/*　お問い合わせ
------------------------------*/
#contact{
    width: 100%;
    margin: auto;
    padding: 30px 0;
    background: linear-gradient(45deg,rgba(227, 150, 150, 0.5), rgba(255, 242, 199, 0.5)),url("../img/contact.jpg");
    background-size: cover;
    position: relative;
}
#contact img{
    display: block;
    width: 110px;
    position: absolute;
}
#contact img:first-of-type{
    bottom: 0;
    left: 0;
}
#contact img:last-of-type{
    bottom: 0;
    right: 0;
}
.contact h3{
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,.3);
}
.contact .contactInner{
    width: calc(90% - 40px);
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.contact .contactInner div{
    width: calc(100% - 4px);
    margin: auto;
    padding: 20px 0;
    border: 2px solid #cc1100;
}
.contact .contactInner div p,
.contact .contactInner div h4{
    color: #cc1100;
    text-align: center;
}
.contact .contactInner div h4{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}
.contact .contactInner div h4 span{
    font-size: 50%;
    font-weight: 500;
    display: block;
}

@media print,screen and (min-width: 559px){
    #contact{
        padding: 50px 0;
    }
    .contact h3{
        font-size: 30px;
    }
    .contact .contactInner{
        width: calc(90% - 60px);
        max-width: 1100px;/*1000pxから更新*/
        margin: 25px auto;
        padding: 30px;
    }
    .contact .contactInner div{
        width: 396px;
        padding: 20px 0;
    }
    .contact .contactInner div h4{
        font-size: 32px;
        margin-top: 10px;
    }
    #contact img:first-of-type{
        width: 200px;
    }
    #contact img:last-of-type{
        width: 230px;
    }
}
@media print,screen and (min-width: 959px){
    .contact h3{
        font-size: 32px;
    }
    .contact .contactInner div h4{
        font-size: 35px;
    }
    .contact .contactInner div{
        width: 596px;
        padding: 20px 0;
    }
    #contact img:first-of-type{
        width: 240px;
    }
    #contact img:last-of-type{
        width: 280px;
    }
}
@media print,screen and (min-width: 1024px){
    .contact h3{
        font-size: 33px;
    }
    .contact .contactInner div h4{
        font-size: 36px;
    }
    .contact .contactInner div{
        width: 696px;
    }
    #contact img:first-of-type{
        width: 260px;
    }
    #contact img:last-of-type{
        width: 300px;
    }
}
@media print,screen and (min-width: 1199px){
    .contact h3{
        font-size: 36px;
    }
    .contact .contactInner div h4{
        font-size: 38px;
    }
    .contact .contactInner div{
        width: 696px;
    }
    #contact img:first-of-type{
        width: 280px;
    }
    #contact img:last-of-type{
        width: 320px;
    }
}
@media print,screen and (min-width: 1299px){
    .contact h3{
        font-size: 40px;
    }
    #contact img:first-of-type{
        width: 310px;
        left: 10%;
    }
    #contact img:last-of-type{
        width: 360px;
        right: 10%;
    }
}

/*　footer
------------------------------*/
#footer{
    background: #cc1100;
    padding: 20px 0 0;
}
.footer{
    width: 90%;
    margin: auto;
    border-bottom: 1px solid #fff;
}
.copyright{
    padding: 5px 0 10px;
    text-align: center;
}
#footer h2{
    font-weight: 700;
    font-size: 22px;
}
#footer h2,
#footer p,
#footer li a{
    color: #fff;
}

.add span{
    font-size: 80%;
    margin-right: 0.5em;
}
.tel,
.fax,
.mail{
    /*height: 1.5em;修正*/
    line-height: 1.5em;
}

.tel a{
    color: #FFF;
    text-decoration:none;
}

.fax a{
    color: #FFF;
    text-decoration:none;
}

h4 a{
    color: #CC1100;
    text-decoration:none;
}

.telephone p a{
    color: #FFF;
    text-decoration:none;
}


.tel::before{
    content: "TEL";
}
.fax::before{
    content: "FAX";
}
.mail::before{
    content: "MAIL";
}
.tel::before,
.fax::before,
.mail::before{
    font-size: 80%;
    width: 3em;
    text-align: center;
    background: #fff;
    color: #cc1100;
    display: inline-block;
    margin-right: 0.5em;
}
.footer div{
    width: 100%;
    margin: 15px auto;
}
div .tel,
div .fax,
div .mail{
    float: left;
    margin-right: 1em;
}
.footer div .add{
    clear: both;
}

.footer ul{
    width: 100%;
    margin: 5px auto;
    display: flex;
    justify-content: flex-end;
}
.footer li a{
    font-size: 80%;
    margin-left: 1em;
}
.footer li a::before{
    content: "▶︎";
    margin-right: 0.3em;
}

@media print,screen and (min-width: 959px){
    #footer{
        padding: 30px 0 0;
    }
    #footer h2{
        font-size: 24px;
    }
}
@media print,screen and (min-width: 1024px){
    #footer{
        padding: 35px 0 0;
    }
    #footer h2{
        font-size: 25px;
    }
}
@media print,screen and (min-width: 1199px){
    #footer{
        padding: 40px 0 0;
    }
    #footer h2{
        font-size: 27px;
        width: 300px;
        height: 2.2em;
    }
    .footer{
        display: flex;
        align-items: flex-end;
    }
    .footer div{
        width: calc(100% - 700px);
    }
    .footer ul{
        width: 400px;
        margin: 10px auto;
    }
}

/*枠線*/
.border-r{
    border-width: 2px;
    border-style: solid;
    border-color: red;
    padding: 20px;
}

.wrapinner li{
    padding-left: 20px;
    font-size: 18px;
    line-height: 2.0em;

}

.text-bx span{
    color: #FFB100;
} 


