@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
    --nav-color: #333;
}
html {
    scroll-behavior: smooth;/* スムーススクロール */
}
body {
    background: var(--white-color); 
    color: var(--base-color);
}


img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}
h2 {
    position: relative;
    margin: 4rem 0 1rem;
    text-align: center;
    font-weight: bold;
}


h2 .sub{
    font-size: 1em;
    position: relative;
    margin: 3rem;
    padding-bottom: 2rem;
    text-align: center;
}
.button {
    margin: 1rem;
    color: #fff;
}

.button1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #668ad8;/*ボタン色*/
    color: #FFF;
    border-bottom: solid 4px #627295;
    border-radius: 3px;
  }
  .button1:active {
    /*ボタンを押したとき*/
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
  }

/*ヘッダー
-------------------------------------*/
.headerbar {
    background-color: var(--base-color);
    color: var(--white-color);
    font-size: 12px;
    padding: 0.3rem 0;
}
.headerbar .col {
    margin-bottom: 0;
}
.header {
	display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
    margin-bottom: 2rem;
}
.sitetitle {
    font-size: 3.0rem;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-tel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none; 
}
.contact-tel:hover {
    opacity: 0.9;
    color: var(--base-color);
}
/*スマホ用メニュー
-------------------------------------*/	
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
    margin-bottom: 0
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 1rem;
    color: var(--nav-color);
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}

.FixedMenuSection {
    display: none !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    margin-bottom: 10px;
}
.header #open,#close  {
    position: absolute;
    top: 25px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 25px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 25px;
    right: 12px;
}
nav li a {
    border-bottom: 1px dashed var(--link-color);
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
/* ドロップダウンメニュー
-------------------------------------*/
.menu > li {
	display: block;
	position: relative;
}
.menu > li > ul {
	display: none;
}
.menu > li:hover ul {
	display: block;
	position: absolute;
    width: 250px;
    z-index: 100;
    background-color: var(--back-color);
    margin-left: 0;
    margin-top: 0;
}
.menu li ul, .menu li ul li   {
    margin: 0;
    padding: 0;
    border-bottom: 1px dashed var(--link-color);
} 
.menu li ul, .menu li ul li:last-child   {
    border-bottom: none;
}
/*メイン画像
-------------------------------------*/
#mainimg {
    width: 100%;
    margin: 0 auto;
}

#mainimg img{
    margin-bottom: 3px;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 0;
}
section {
	padding: 1rem 0 1rem;
}
.gray-back {
	background-color: var(--back-color);
    /*background: url('../img/gray-back.jpg'); gray-back.jpg背景画像を使用したい時にオンにしてください*/
    background-size: cover;
}

#intro {
    margin: -36px 0;
    width: 100%;
}

#mote {
    margin-top: -2.3rem;
}

#power-meter {
    margin: -12px 0 0;
    padding: 1em;
    background-color: #000;
}

#hikaku {
    margin: 0 auto
}

/*比較表
-------------------------------------*/
.comparison-table-wrap{
    width:100%;
    max-width:600px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    text-align: center;
  }
  .comparison-table-title{
    background : linear-gradient(90deg, rgba(71, 206, 255, 1) 0%, rgba(56, 224, 248, 1) 100%);
    text-align: center;
     color: #fff;
     font-weight: bold;
     padding: 1em;
     letter-spacing: 1px;
    margin: 0;
    font-size:20px;
    box-shadow: 0 2px 5px rgba(100,100,100,0.1);
  }
  .comparison-table{
    background:#f8f9fb;
    margin:0 auto;
    padding:0.3em 2em;
  }
  .comparison-table table{
    border-collapse: separate;
    border-spacing:5px 10px;
    border:none;
    margin-bottom: 0;
  }
  .comparison-table table th,.comparison-table table td {
    width:50%;
    text-align: center;
  }
  .comparison-table table thead th{
    background : #d1d1d1;
    border:none;
    color:#fff;
    box-shadow: 0 2px 5px rgba(100,100,100,0.1);
    padding: 0.8em 0.5em;
    line-height: 1.5;
    border-radius: 3px;
    font-size: 16px;
  }
  .comparison-table table tbody th{
    background : linear-gradient(90deg, rgba(71, 206, 255, 1) 0%, rgba(56, 224, 248, 1) 100%);
    text-align: center;
    color:#fff;
    border:none;
    border-radius:30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 0.4em 1em;
    font-size: 14px;
    line-height: 1.3;
  }
  .comparison-table table tbody td{
    background:#fff;
    box-shadow: 0 2px 5px rgba(100,100,100,0.1);
    border-radius:3px;
    border:none;
    padding:1.2em;
    color: #555;
    line-height: 1.8;
    text-align:justify;
    vertical-align:top;
  }
  .comparison-table table tbody td p{
    margin:0;
    padding:0;
    margin-bottom:1em;
    font-size: 14px;
  }
  .comparison-table table tbody td .td-h{
    font-weight:bold;
    color:#33ccff;
    font-size: 16px;
    margin-bottom:7px;
  }
  @media screen and (max-width: 768px){
    .comparison-table{
        padding:0 auto;
    }
    .comparison-table table{
      border-spacing:3px 10px;
    }
    .comparison-table table thead th{
      position: -webkit-sticky;
      position: sticky;
      top:0px;
      z-index:100;
    }
  }

/*比較表イエロー
-------------------------------------*/
/* 大見出し背景 */
.comparison-table-yellow .comparison-table-title{
    background:#000000 !important;
  }
  /* 中見出し背景 */
  .comparison-table-yellow .comparison-table table tbody th{
    background:#5a5a5a !important;
  }
  /* 強調文字 */
  .comparison-table-yellow .comparison-table table tbody td .td-h{
    color:#ff8000 !important;
  }
  /* 全体背景 */
  .comparison-table-yellow .comparison-table{
  background:#fef9ed!important;
  }
  /* 比較名背景 */
  .comparison-table-yellow .comparison-table table thead th{
    background:#000000 !important;
  }

/*メディア
-------------------------------------*/
.media {
    background-image: url(../img/media-back.png);
    padding: .5em 1em;
    margin: -20px 0 0;
}


.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 20px auto 0;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.reservation-box {
    border: 2px solid #aaa;
    padding: 1em;
    margin: 10px;
    text-align: center;
}

.reservation-box img{
    margin: 0 auto;
    padding: 0 .1em;
}


.reservation{
    display: flex;
    flex-wrap:wrap;
    text-align: center;
}

.reservation li {
    width: calc(100%/2);/*←画像を横に2つ並べる場合*/
    box-sizing:border-box;
    list-style:none;
    text-align: center;
}

.reservation li img {
    max-width:100%; /*画像のはみだしを防ぐ*/
    height: auto; /*画像の縦横比を維持 */
}


#bnr {
    margin-top: -90px;
    text-align: center;
}

.reservation-image {
    margin: 0 auto;
    text-align: center;
}

@media screen and (min-width: 767px) {
.reservation-box {
    border: 2px solid #aaa;
    padding: 1em;
    margin: 10px auto;
    width:50%;
    text-align: center;
}

.reservation-image {
    display: none;
}  
}

#nayami {
    background-image: url(../img/nayami-back.jpg);
}

#nayami img {
    margin: -20px auto -10px;
}

.nayami {
    margin:.5em 0 30px;
}

#questionnaire {
    background-color: #000;
    margin: -10px auto -20px;
}

#questionnaire img {
    margin: -30px auto -15px;
}


/*5つのポイント
-------------------------------------*/
.reasonh2 {
    margin-top: 30px;
    color: #fff;
}


.reasonh3 {
    color: #000000;
    text-align: center;
  }

#reason {
    background-color: #363636;
    padding: 1em;
}

.reason-img {
    margin: 0 auto;
    padding: 1.5em .5em .1em;
    width: 90%;
    text-align: center;
}

.box-021 {
    position: relative;
    max-width: 400px;
    margin: 1em auto;
    padding: 1em 1.5em 0;
    border: 2px solid #ffffff;
    border-radius: 3px;
    color: #000000;
    background-color: #fff;
}

.box-021::before {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -.5em;
    left: -.5em;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    background-color: #ff6a00;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
    content: attr(data-number);
}

.box-021 p {
    padding: 1em;
}


/*サロン紹介*/
.contents {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.contents img {
    width: 100%;
    margin: 0 auto;
    padding: 1em;
}
.text-center {
    margin: 10px 30px 30px;
}
.flexbox {
    display: flex;
}
.box1 {
    width: 55%;
    margin: auto;
}
.box2 {
    width: 45%;
}

.box2 h3 {
    font-size: 1.1em;
    margin: 2em 1em 0;
    font-weight: bold;
    text-align: center;
}



@media screen and (max-width: 767px) {
    .flexbox {
        display: block;
    }
    .flexbox .box1 {
        width: 100%;
        margin: 0 auto;
    }
    .flexbox .box2 {
        width: 100%;
        margin: 0 auto;
    }
}

/*脱毛可能部位*/
.datsumou-area {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.datsumou-area img {
    width: 100%;
}
.text-center {
    text-align: center;
}
.flexbox {
    display: flex;
}
.box1 {
    width: 55%;
    margin: auto;
}
.box2 {
    width: 45%;
    margin: auto .5rem;
}
@media screen and (max-width: 767px) {
    .flexbox {
        display: block;
    }
    .flexbox .box1 {
        width: 100%;
        margin: 0 auto;
    }
    .flexbox .box2 {
        width: 100%;
        margin: 0 auto;
    }
}

/*詳しい行き方*/
.modal-002__wrap input {
    display: none;
}

.modal-002__open-label,
.modal-002__close-label {
    cursor: pointer;
}

.modal-002__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    margin:10px 10px 0;
    padding: .8em;
    border: none;
    border-radius: 5px;
    background-color: #f98c07;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
}

.modal-002__open-label:hover {
    background-color: #fff;
    color: #000000;
    outline: 1px solid #000000;
}

.modal-002 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-002__open-input:checked + label + input + .modal-002 {
    display: block;
    animation: modal-002-animation .6s;
}

.modal-002__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 650px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}

.modal-002__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

.modal-002__content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 30px 20px 40px;
}

.modal-002__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-002-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 520px) {
    .modal-002__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-002__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-002__content-wrap {
        width: 90vw;
    }

    .modal-002__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

.modal-003__wrap input {
    display: none;
}

.modal-003__open-label,
.modal-003__close-label {
    cursor: pointer;
}

.modal-003__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    margin:10px 10px 0;
    padding: .8em;
    border: none;
    border-radius: 5px;
    background-color: #f98c07;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
}

.modal-003__open-label:hover {
    background-color: #fff;
    color: #000000;
    outline: 1px solid #000000;
}

.modal-003 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-003__open-input:checked + label + input + .modal-003 {
    display: block;
    animation: modal-002-animation .6s;
}

.modal-003__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 650px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}

.modal-003__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

.modal-003__content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 30px 20px 40px;
}

.modal-003__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-003-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 520px) {
    .modal-003__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-003__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-003__content-wrap {
        width: 90vw;
    }

    .modal-003__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}



/* ページネーションの余白 */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 20px 20px;
}
/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  height: 30px;
  width: 30px;
}
/* 画像サイズ調整 */
.swiper-slide img {
  margin: 1em 0 2em;
  width: 100%;
}

@media only screen and (min-width: 768px) {
.swiper {
    width: 70%;
}
}

/*ニュース
-------------------------------------*/
.news {
    margin: 0 auto;
    max-width: 980px;
    padding: 2rem;
}
.news-list{
    list-style: none;
  }
.news-list .item, .item p {
    margin-bottom: 0;
  }
.news-list .item a{
    display: flex;
    flex-wrap: wrap;
    color: var(--nav-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}
.news-list .item:first-child a{
    border-top: 1px solid var(--border-color);
}
.news-list .item .date{
    min-width: 120px;
    color: var(--link-color);
}
.news-list .item a:hover .title{
    color: var(--base-color);
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/* マウスホバーで画像を拡大
-------------------------------------*/
.hoverbox{
    overflow: hidden;
}
.hoverbox-img{
    transition-duration: 0.3s;
}
.hoverbox-img:hover{
    transform: scale(1.3);
    transition-duration: 0.3s;
}

/* 未成年の方へ
-------------------------------------*/
.gakuwari img{
    margin-bottom: -19px;
}
#underage {
    background-color: rgb(255, 236, 185);
    padding: 1px 1em 3em;
}



.box-003 {
    max-width: 400px;
    margin: 0 auto;
    padding: 1em 1.5em;
    box-shadow: 0 4px 4px rgb(0 0 0 / 5%), 0 2px 3px -2px rgb(0 0 0 / 1%);
    background-image: linear-gradient(transparent calc(100% - 1px), #e6edf3 50%, #e6edf3), linear-gradient(90deg, transparent calc(100% - 1px), #e6edf3 50%, #e6edf3);
    background-size: 15px 15px;
    background-repeat: repeat;
    background-color: #ffffff;
    color: #333333;
}

.button-055 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    margin: 1em auto;
    padding: 2em 2em;
    border: none;
    border-radius: 5px;
    background-color: #ff7300;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-055::after {
    width: .9em;
    height: .9em;
    margin-left: 10px;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.2%2015h-1.5c-.4%200-.8.3-.8.8V21H3V6h6.8c.4%200%20.8-.3.8-.8V3.8c0-.4-.3-.8-.8-.8H2.2C1%203%200%204%200%205.2v16.5C0%2023%201%2024%202.2%2024h16.5c1.2%200%202.2-1%202.2-2.2v-6c.1-.5-.2-.8-.7-.8zm2.7-15h-6c-1%200-1.5%201.2-.8%201.9l1.7%201.7L6.3%2015c-.4.4-.4%201.2%200%201.6l1.1%201.1c.4.4%201.2.4%201.6%200L20.4%206.2l1.7%201.7c.7.7%201.9.2%201.9-.8v-6c0-.6-.5-1.1-1.1-1.1z%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
    content: '';
}

.button-055:hover {
    background-color: #ef6300;
}



/* 施術の流れ
-------------------------------------*/
#flow {
    margin: 0 auto;
    padding: .1rem 2rem;
}


.timeline-002__section {
    position: relative;
    padding: 0 1.5em 1.5em 2em;
}

.timeline-002__section:not(:last-child)::before,
.timeline-002__section::after {
    position: absolute;
    content: '';
}

.timeline-002__section:not(:last-child)::before {
    bottom: 0;
    left: 11px;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: #d6dde3;
}

.timeline-002__section::after {
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border: 4px solid #fff;
    border-radius: 50%;
    background-color: #000000;
}

.timeline-002__label {
    margin-bottom: .1em;
    color: #bcbfc7;
    font-size: .85em;
}

.timeline-002__title {
    color: #333333;
    font-size: 1.05em;
    font-weight: 600;
    margin: 0 auto .5em;
}

.timeline-002__content {
    padding-bottom: 1.5em;
}

.timeline-002__img-wrap {
    max-width: 100%;
}

.timeline-002__img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.timeline-002__balloon {
    justify-content: center;
    align-items: center;
    position: relative;
    padding: .7em;
    border: 3px solid #d6dde3;
    border-radius: 10px;
    font-size: .95em;
}

.timeline-002__balloon span{
    color: rgb(255, 136, 0);
    font-weight: bold;
}



.timeline-002__balloon::before,
.timeline-002__balloon::after {
    position: absolute;
    top: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: '';
}

.timeline-002__balloon::before {
    background-color: #d6dde3;
}



@media only screen and (min-width: 521px) {
    .timeline-002__content {
        display: flex;
        align-items: center;
        gap: 0 15px;
    }

    .timeline-002__img-wrap,
    .timeline-002__balloon {
        flex-basis: 50%;
    }

    .timeline-002__balloon::before,
    .timeline-002__balloon::after {
        top: unset;
        left: -15px;
        width: 15px;
        height: 30px;
        clip-path: polygon(0 50%, 100% 0, 100% 100%);
    }

    .timeline-002__balloon::after {
        top: unset;
        left: -11px;
    }
}


/*ホットペッパービューティーリンクボタン
-------------------------------------*/
.hotpepper-reserve {
    width: 100%;
    background-color: #000;
    padding: 2.5em;
    text-align: center;
    border-bottom: solid 1px #fff;
}

.hotpepper-reserve p {
    color: #fff;
    font-size: 1.2em;
}

.hotpepper-buttons ul {
    width: 100%;
}

.hotpepper-buttons li {
    padding: .5em 0;
}









/*よくある質問
-------------------------------------*/
.qa dt,
.qa dd {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 1em 2em 1em 3.1em;
    color: var(--base-color);
}
.qa dt {
    font-weight: 600;
}
.qa dd {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2em;
}
.qa dd + dt {
    margin-top: 1em;
}
.qa dt::before,
.qa dd::before {
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    border-radius: 50%;
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.1em;
    line-height: 40px;
    text-align: center;
}

.qa dt::before {
    background-color: var(--base-color);
    content: 'Q';
}

.qa dd::before {
    background-color: var(--link-color);
    content: 'A';
}
/*お問い合わせ
-------------------------------------*/
.tel-banner, .mail-banner {
    border: 1px solid var(--base-color);
    padding: 2rem 3rem;
    text-align: center;
}
/*フッター
-------------------------------------*/
footer {
    background-color: #000; 
    /*background: url('../img/gray-back.jpg'); gray-back.jpg背景画像を使用したい時にオンにしてください*/
    background-size: cover;
    padding: 5rem 0;
    color: #fff;
}
footer h4 {
    position: relative;
    padding-bottom: 1rem;
    width: 100%;
    border-bottom: 2px solid var(--border-color);
}
footer h4::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 70px;
    height: 2px;
    background-color: var(--link-color);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2em;
}
/*電話
-------------------------------------*/
a.tel {
    display: inline-block;
}
@media screen and (min-width: 768px){
a[href*="tel:"] { /* PC時は電話番号無効 */
    pointer-events: none;
    cursor: default;
}
}
/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 150px;
}
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea { 
    background-color: var(--white-color);
}
/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0 6em;
    background-color: var(--base-color);
}
.copyright a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 75px;
    right: 25px;
    display: block;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    background: var(--white-color);
    border: 1px solid var(--linkhover-color);
    padding-top: 30px;
    text-align: center;
    text-decoration: none;
    opacity: 0.8;
}
#pagetop::after{
    content: "";
    display: block;
    border-top: 2px solid var(--base-color);
    border-right: 2px solid var(--base-color);
    width: 25%;
    height: 25%;
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
#pagetop:hover{
    opacity: 0.5;
}

/* 下層ページヘッダー
-------------------------------------*/
.subimg {
    height: 350px;
    background: url('../img/subimg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2rem;
}
.subimg h1 {
    height: 350px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    text-shadow: 1px 2px 3px var(--link-color); 
    margin: 0;
}
/* パンくずリスト
-----------------------------------*/
.breadcrumb {
    margin: 0 0 1em 0;
    padding: 0;	
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.headerbar {
    display: none;
}
.header-box {
    display: none;
}	
/* ドロップダウンメニュー
-------------------------------------*/
#navi ul ul {
    position: static;
    width: 100%;
    z-index: 100;
    background-color: var(--white-color);
}
#navi li ul {
    display: block;
    background-color: var(--white-color);
}
.menu li ul, .menu li ul li   {
    border-bottom: none;
}
/*メイン画像
-------------------------------------*/
#mainimg h1 {
    height: 350px;
}
/*ニュース
-------------------------------------*/
.news-list .item .title{
    margin-top: 1em;
}

.FixedMenuSection {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #00000086;
    z-index: 9999;
    text-align: center;
  }

.FixedMenuSection p {
    margin: 5px 0 -7px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 1em;
}
  .FixedMenu-Inner-List {
    display: flex;
  }
  .FixedMenu-Inner-List-Item {
    width: calc((100% - 4px) / 2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    margin: 10px 3px;
  }
  @media screen and (max-width: 540px) {
    .FixedMenu-Inner-List-Item {

      font-size: 16px;
    }
  }
  .FixedMenu-Inner-List-Item:not(:first-child) {
    margin-left: 2px;
  }

}