@charset "UTF-8";
/*標準ボタン
---------------------------------------------------------------*/
/*鍵フックボタン
---------------------------------------------------------------*/
/*カーテンボタン
---------------------------------------------------------------*/
/*ラインダッシュボタン
---------------------------------------------------------------*/
/*IE対応のグラデーション
========================================================================*/
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,600");
/*変数指定
=======================================================*/
/*メインカラー
--------------------------------------------*/
/*フォント
--------------------------------------------*/
/*body以下
=======================================================*/
body {
  word-wrap: break-word;
  margin: auto;
  padding: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4vw;
  line-height: 2;
  letter-spacing: .2rem;
  color: #333;
  margin-bottom: 75px;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-c {
  text-align: center;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/*更新画像
=================================================*/
/*更新イメージの調整
----------------------------------------------- */
.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: bottom";
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  transform: translateX(-50%) translateY(-50%);
}

/*共通テキスト
----------------------------------------------- */
.com-txt p {
  margin-bottom: 5%;
}

.com-txt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .com-txt p br {
    display: none;
  }
}

/*display flexキッド 
=================================================*/
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

/*折り返し
-----------------------*/
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  align-content: space-around;
}

/*=========================================================
	header
=========================================================*/
#header {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 100;
  width: 100%;
  height: 75px;
  padding: 0 0 0 3%;
  box-sizing: border-box;
}

#header .hd-wrp {
  height: 100%;
}

#header .hd-l {
  width: 20%;
}

#header .hd-r {
  width: 75%;
}

#header .hd-r .hd-info {
  width: 65%;
  margin-right: 5%;
}

#header .hd-r .mail-btn {
  width: 75px;
  height: 75px;
  padding: 0;
  border-radius: 0;
  background: #ea7160 url(../img/common/mail-icon.png) no-repeat center/30%;
  border: solid 1px #ea7160;
}

#header .hd-r .mail-btn span {
  display: none;
}

#header .hd-r .hd-worktime {
  justify-content: flex-end;
  margin-bottom: 3%;
  font-size: 2.5vw;
  letter-spacing: 0;
}

#header .hd-r .hd-worktime dt {
  width: 27%;
  margin-right: 3%;
}

#header .hd-r .hd-worktime .worktime {
  width: 40%;
  margin-right: 2%;
}

#header .hd-r .hd-worktime .holiday {
  width: 35%;
}

#header .hd-r .com-tel {
  text-align: right;
}

#header .hd-r .com-tel span {
  letter-spacing: 0;
  font-size: 5vw;
}

#header .hd-nav {
  background: #ecf9fd;
}

#header .hd-nav li {
  text-align: center;
  width: calc(100%/5);
  box-sizing: border-box;
}

#header .hd-nav li:last-child a span {
  border-right: 1px solid #999;
}

#header .hd-nav li a {
  padding: 15px 0;
  font-weight: 500;
  display: block;
  line-height: 1;
}

#header .hd-nav li a span {
  border-left: 1px solid #999;
  display: block;
  padding: 10px 0;
}

#header .hd-nav li a:hover {
  background: #13809e;
  color: #fff;
}

.com-workstime {
  line-height: 1;
  margin-bottom: 2%;
}

.com-workstime dt {
  padding-right: 3%;
  margin-right: 3%;
  border-right: 1px solid #333;
}

.com-workstime .worktime {
  margin-right: 5%;
}

/*Mainvisual
=========================================================*/
#mv {
  padding-right: 3%;
  box-sizing: border-box;
  height: 65vw;
  background: url(../img/mv/mv-bg.jpg) no-repeat center left 30%/cover;
  justify-content: flex-end;
}

#mv .catch {
  width: 60vw;
}

/*=========================================================
	トップページ
=========================================================*/
/*下層ボックス
=========================================================*/
#contents-u {
  padding: 15% 0 12%;
}

/*共通ボタン
=========================================================*/
.more-btn01 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn01:before, .more-btn01:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn01 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn01 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn01 {
    font-size: 3.5vw;
  }
}

.more-btn01:hover {
  background: #fff;
  border: solid #000 1px;
}

.more-btn01:hover span {
  color: #000;
}

.more-btn02 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn02:before, .more-btn02:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn02 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn02 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn02 {
    font-size: 3.5vw;
  }
}

.more-btn02:before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1, 0.1);
}

.more-btn02:after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.more-btn02:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.more-btn02:hover:after {
  opacity: 0;
  transform: scale(1, 0.1);
}

.more-btn03 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn03:before, .more-btn03:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn03 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn03 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn03 {
    font-size: 3.5vw;
  }
}

.more-btn03:before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0.1, 0.1);
}

.more-btn03:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.more-btn03:hover:after {
  transform: scale(0, 0);
  opacity: 0;
}

.more-btn04 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn04:before, .more-btn04:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn04 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn04 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn04 {
    font-size: 3.5vw;
  }
}

.more-btn05 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn05:before, .more-btn05:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn05 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn05 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn05 {
    font-size: 3.5vw;
  }
}

.more-btn {
  display: block;
  position: relative;
  background: #13809e;
  border-radius: 50px;
  padding: 4% 0;
  width: 80%;
  text-align: center;
  font-weight: 700;
  transition: .1s all ease-in;
}

.more-btn span {
  color: #fff;
}

.more-btn:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 4%;
  bottom: auto;
  left: auto;
  width: 5vw;
  height: 5vw;
  background: url("../img/common/arw-wht.png") no-repeat center/contain;
  margin-top: -10.5px;
}

.more-btn 2.5vwhover {
  background: #ea7160;
}

.mail-btn {
  display: block;
  background: #13809e;
  border: solid 1px #13809e;
  border-radius: 50px;
  text-align: center;
  width: 60%;
  padding: 4% 0;
  transition: 0.1s all ease;
}

.mail-btn span {
  position: relative;
  padding-left: 10vw;
  color: #fff;
}

.mail-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 8vw;
  height: 4vw;
  background: url("../img/common/mail-icon.png") no-repeat center/contain;
  margin-top: -7px;
}

.others-btn {
  display: block;
  text-align: center;
  width: 60%;
  padding: 6% 0;
  box-sizing: border-box;
  border: solid 1px #13809e;
  border-radius: 50px;
}

.others-btn span {
  color: #13809e;
  position: relative;
  padding-right: 20px;
}

.others-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 12px;
  height: 12px;
  background: url("../img/common/others-btn-blue.png") no-repeat center/contain;
  margin-top: -6px;
}

.line-btn {
  width: 80%;
  display: block;
  background: #06c755;
  border-radius: 50px;
  padding: 4% 5%;
  margin: 0 auto;
  box-sizing: border-box;
}

.line-btn span {
  position: relative;
  padding-left: 12vw;
  color: #fff;
  font-weight: 700;
}

.line-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 10vw;
  height: 10vw;
  background: url("../img/common/line-icon.png") no-repeat center/contain;
  margin-top: -5vw;
}

.line-btn:hover {
  opacity: .8;
}

.com-tel {
  font-size: 5vw;
  color: #333;
  font-weight: 700;
  line-height: 1;
}

.com-tel span {
  position: relative;
  padding-left: 6vw;
}

.com-tel span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 4vw;
  height: 4vw;
  background: url("../img/common/tel-icon.png") no-repeat center/contain;
  margin-top: -2vw;
}

/*top-greeting
=========================================================*/
#top-greeting {
  padding: 15% 0;
  background: url(../img/top/top-greeting-bg.jpg) no-repeat bottom right 40%/cover;
}

#top-greeting .com-ttl {
  margin-bottom: 10%;
}

#top-greeting .top-greeting-txt {
  background: rgba(255, 255, 255, 0.8);
  padding: 6%;
  box-sizing: border-box;
  margin-bottom: 10%;
}

#top-greeting .top-greeting-txt p {
  margin-bottom: 4%;
}

#top-greeting .top-greeting-txt p:last-child {
  margin-bottom: 0;
}

/*top-trouble
=========================================================*/
#top-trouble {
  position: relative;
  z-index: 5;
  padding: 10% 0 15%;
  background: url(../img/top/top-trouble-bg.png) no-repeat center bottom/cover;
  text-align: center;
}

#top-trouble .top-trouble-ttl {
  text-align: center;
  margin-bottom: 50px;
}

#top-trouble .top-trouble-info figure {
  width: 46%;
  margin: 8% 8% 0 0;
}

#top-trouble .top-trouble-info figure:nth-child(2n) {
  margin-right: 0;
}

#top-trouble .top-trouble-info figure:nth-child(-n + 2) {
  margin-top: 0;
}

#top-trouble .top-trouble-info figure:last-child {
  margin-right: 0;
}

#top-trouble .top-trouble-info figure figcaption {
  margin-top: 10px;
  display: block;
  font-size: 25px;
  font-weight: 700;
  color: #13809e;
}

#top-trouble .top-trouble-info figure figcaption span {
  text-shadow: 0px 2px 2px #fff;
  padding: 0 15px 5px 15px;
}

/*top-solution
=========================================================*/
#top-solution {
  position: relative;
  z-index: 1;
  margin-top: -15vw;
  padding: 25vw 0 80px;
  background: url(../img/top/top-solution-bg.jpg) no-repeat center/cover;
}

#top-solution .top-solution-ttl {
  text-align: center;
  margin-bottom: 8%;
}

#top-solution .top-solution-txt {
  margin-bottom: 10%;
  font-weight: 500;
}

#top-solution .top-solution-iframe {
  padding-top: 56.25%;
  position: relative;
  background: #000;
  margin: 0 auto 10%;
}

#top-solution .top-solution-iframe video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#top-solution .more-btn {
  margin: 0 auto;
}

/*top-others
=========================================================*/
.top-others {
  background: #fff;
}

.top-others .top-com-others {
  display: block;
}

.top-others .top-com-others:last-child {
  margin-bottom: 0;
}

.top-others .top-com-others .top-others-ttl {
  box-sizing: border-box;
  padding: 6% 10% 6% 6%;
  margin-bottom: 0;
  position: relative;
}

.top-others .top-com-others .top-others-ttl:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 3%;
  bottom: auto;
  left: auto;
  width: 5vw;
  height: 5vw;
  background: url("../img/common/arw-blue.png") no-repeat center/contain;
  margin-top: -2.5vw;
}

.top-others .top-com-others .top-others-ttl .main {
  margin-bottom: 2%;
  font-size: 5vw;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.top-others .top-com-others .top-others-ttl .eng {
  font-size: 4vw;
  letter-spacing: .1rem;
}

/*top-contact-banner
=========================================================*/
#top-contact-banner {
  padding: 15% 0;
  background: url(../img/top/top-contact-banner-bg.jpg) no-repeat center/cover;
}

#top-contact-banner .top-contact-banner-ttl {
  text-align: center;
  margin-bottom: 10%;
}

#top-contact-banner .top-contact-banner-dl {
  text-align: center;
  display: block;
}

#top-contact-banner .top-contact-banner-dl .in-dl {
  margin-bottom: 15%;
}

#top-contact-banner .top-contact-banner-dl .in-dl:last-child {
  margin-bottom: 0;
}

#top-contact-banner .top-contact-banner-dl .in-dl > dt {
  color: #13809e;
  border-top: solid 1px #13809e;
  border-bottom: solid 1px #13809e;
  font-weight: 700;
  font-size: 4.5vw;
  padding: 2% 0;
  margin-bottom: 5%;
}

#top-contact-banner .top-contact-banner-dl .com-workstime {
  margin-bottom: 10px;
}

#top-contact-banner .mail-btn {
  margin: 0 auto;
}

/*top-news
=========================================================*/
#top-news {
  padding: 15% 0;
}

#top-news .com-ttl {
  text-align: center;
  margin-bottom: 10%;
}

#top-news .top-news-post {
  margin-bottom: 10%;
}

#top-news .top-news-post article {
  margin-bottom: 3%;
}

#top-news .top-news-post article:last-child {
  margin-bottom: 0;
}

#top-news .top-news-post article a {
  display: block;
  background: #ecf9fd;
  padding: 4% 8% 4% 4%;
  box-sizing: border-box;
  border-radius: 15px;
  position: relative;
}

#top-news .top-news-post article a:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 4%;
  bottom: auto;
  left: auto;
  width: 5vw;
  height: 5vw;
  background: url("../img/common/arw-blue.png") no-repeat center/contain;
  margin-top: -2.5vw;
}

#top-news .top-news-post article a:hover {
  background: #ea7160;
}

#top-news .top-news-post article a:hover:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 4%;
  bottom: auto;
  left: auto;
  width: 5vw;
  height: 5vw;
  background: url("../img/common/arw-wht.png") no-repeat center/contain;
  margin-top: -2.5vw;
}

#top-news .top-news-post article a:hover time,
#top-news .top-news-post article a:hover .top-news-post-ttl {
  color: #fff;
}

#top-news .top-news-post article .top-news-post-time-tags {
  margin-bottom: 10px;
  font-size: 3vw;
  line-height: 1;
  display: block;
}

#top-news .top-news-post article .top-news-post-time-tags time {
  display: block;
  text-align: right;
  box-sizing: border;
  margin-bottom: 1%;
}

#top-news .top-news-post article .top-news-post-time-tags .tag-list li {
  padding: 3px 5px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
}

#top-news .top-news-post article .top-news-post-ttl {
  font-weight: 500;
  font-size: 3.5vw;
}

#top-news .news-btn {
  text-align: center;
}

#top-news .news-btn .more-btn {
  margin: 0 auto;
}

/*=========================================================
	footer
=========================================================*/
#footer {
  background: #f5f3f4;
}

#footer .ft-wrp {
  display: block;
  padding: 10% 0 15%;
  position: relative;
}

#footer .ft-l {
  display: block;
  margin-bottom: 3%;
}

#footer .ft-l .ft-logo {
  width: 35%;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10%;
}

#footer .ft-l .ft-address {
  font-size: 3vw;
}

#footer .ft-r .ft-contact-info {
  margin-bottom: 5%;
}

#footer .ft-r .ft-contact-info .ft-contact-info-bx {
  display: block;
}

#footer .ft-r .ft-contact-info .ft-contact-worktime {
  margin-bottom: 10%;
}

#footer .ft-r .ft-contact-info .ft-worktime {
  margin-bottom: 2%;
}

#footer .ft-r .mail-btn {
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  position: absolute;
  padding: 0;
  right: 0;
  top: 5%;
  background: #13809e url(../img/common/mail-icon.png) no-repeat center/50%;
}

#footer .ft-r .mail-btn span {
  display: none;
}

#footer .ft-banner-sns {
  display: block;
}

#footer .ft-banner-sns .ft-banner-list {
  display: block;
  margin-bottom: 10%;
  text-align: center;
}

#footer .ft-banner-sns .ft-banner-list li {
  width: 60%;
  margin: 0 auto 5%;
}

#footer .ft-banner-sns .ft-banner-list li a {
  width: 100%;
}

#footer .ft-banner-sns .ft-banner-list li:last-child {
  margin-bottom: 0;
}

#footer .ft-banner-sns .ft-sns {
  justify-content: center;
}

#footer .ft-banner-sns .ft-sns li {
  margin-right: 5%;
}

#footer .ft-banner-sns .ft-sns li:last-child {
  margin-right: 0;
}

#footer .ft-nav .inbox {
  justify-content: start;
  flex-wrap: wrap;
}

#footer .ft-nav li {
  width: 45%;
  border-left: 1px solid #13809e;
  margin: 4% 4% 0 0;
  padding-left: 3%;
  box-sizing: border-box;
  line-height: 1.5;
}

#footer .ft-nav li:nth-child(2n) {
  margin-right: 0;
}

#footer .ft-nav li:nth-child(-n + 2) {
  margin-top: 0;
}

#footer .ft-nav li:last-child {
  margin-right: 0;
}

#footer .ft-nav li a {
  font-size: 3vw;
  font-weight: 500;
  color: #333;
}

#footer #copyright {
  margin-top: 10%;
  text-align: center;
  padding: 3% 0;
  background: #13809e;
  letter-spacing: .1rem;
}

#footer #copyright small {
  color: #fff;
  font-size: 2.5vw;
}

#footer #copyright small a {
  color: #fff;
}

/*=========================================================
	下層ページ
=========================================================*/
/*下層サブビジュアル
=========================================================*/
#sv {
  height: 40vw;
}

#sv .inbox {
  width: 90%;
  height: 100%;
}

#sv .sv-ttl {
  color: #ea7160;
  font-weight: 700;
  line-height: 1;
  padding: 20px 15px;
  background: #fff;
  border-radius: 10px;
  font-size: 4vw;
  box-shadow: 0 0 8px 2px rgba(51, 51, 51, 0.1);
}

#sv.sv-contact-bg {
  background: url(../img/contact/sv-contact-bg.jpg) no-repeat center/cover;
}

#sv.sv-complete-bg {
  background: url(../img/complete/sv-complete-bg.jpg) no-repeat center/cover;
}

#sv.sv-site-bg {
  background: url(../img/site/sv-site-bg.jpg) no-repeat center/cover;
}

#sv.sv-privacy-bg {
  background: url(../img/privacy/sv-privacy-bg.jpg) no-repeat center/cover;
}

#sv.sv-notfound-bg {
  background: url(../img/notfound/sv-notfound-bg.jpg) no-repeat center/cover;
}

/*下層共通タイトル
=========================================================*/
.ttl01 {
  font-weight: 700;
  color: #13809e;
  font-size: 5vw;
  border-top: 1px solid #13809e;
  border-bottom: 1px solid #13809e;
  padding: 4% 0;
  line-height: 1.5;
  margin-bottom: 6%;
}

.ttl02 {
  font-weight: 700;
  color: #ea7160;
  border-bottom: 2px solid #ea7160;
  font-size: 4.5vw;
  margin-bottom: 5%;
  padding-bottom: 2%;
  line-height: 1.5;
}

.com-ttl {
  margin-bottom: 8%;
  letter-spacing: .3rem;
}

.com-ttl span {
  line-height: 1.5;
  font-weight: 700;
  display: block;
}

.com-ttl .eng {
  line-height: 1;
  color: #ea7160;
  font-size: 4vw;
  margin-bottom: 5px;
}

.com-ttl .main {
  color: #13809e;
  font-size: 5.5vw;
}

.line-bg {
  background: url(../img/common/ywl-line.jpg) repeat-x bottom left/50px;
}

.com-ttl-u {
  text-align: center;
  margin-bottom: 10%;
  font-weight: 700;
  color: #13809e;
  font-size: 5vw;
  letter-spacing: .3rem;
}

/*下層共通パーツ
=========================================================*/
/*パンくず
=========================================================*/
#bread-clumb {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  padding: 10px 0 50px;
}

#bread-clumb li {
  position: relative;
  color: #333;
  font-size: 14px;
  float: left;
  margin-right: 20px;
}

#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
}

#bread-clumb li:last-child {
  margin-right: 0;
}

#bread-clumb li:last-child:after {
  display: none;
}

#bread-clumb li a {
  color: #333;
}

/*共通テーブル
=========================================================*/
.com-dl > .in-dl dt,
.com-dl > .in-dl dd {
  padding: 4% 3%;
}

.com-dl > .in-dl > dt {
  background: #f2f2f2;
}

.com-dl > .in-dl > dd {
  vertical-align: top;
}

.com-dl > .in-dl > dd a {
  color: #333;
}

.com-list {
  background: #ecf9fd;
  border-radius: 10px;
  padding: 6%;
  box-sizing: border-box;
}

.com-list li {
  border-bottom: 1px dotted #a6a6a6;
  padding: 0 0 3% 7vw;
  margin-bottom: 3%;
  font-weight: 700;
  position: relative;
}

.com-list li:before {
  content: "";
  position: absolute;
  display: block;
  top: 1.5vw;
  right: auto;
  bottom: auto;
  left: 0;
  width: 5vw;
  height: 5vw;
  background: url("../img/common/com-check.png") no-repeat center/contain;
}

.com-list li:last-child {
  margin-bottom: 0;
}

.com-list li small {
  display: block;
}

/*さくら施術院について
=========================================================*/
#sv.sv-about-bg {
  background: url(../img/about/sv-about-bg.jpg) no-repeat center/cover;
}

#concept {
  padding: 15% 0;
  background: #e5f6ff;
}

#concept .concept-wrp {
  display: block;
}

#concept .concept-wrp .concept-img {
  text-align: center;
  margin-bottom: 5%;
}

#feature {
  padding: 15% 0;
}

#feature .feature-info article {
  display: block;
  margin-bottom: 15%;
}

#feature .feature-info article:last-child {
  margin-bottom: 0;
}

#feature .feature-info article .feature-img {
  text-align: center;
  margin-bottom: 5%;
}

#feature .feature-info article .feature-txtbx .com-ttl {
  letter-spacing: .1rem;
}

#feature .feature-info article .feature-txtbx .com-ttl .eng {
  font-size: 3.5vw;
}

#feature .feature-info article .feature-txtbx .com-ttl .main {
  font-size: 5vw;
}

#feature .feature-info article .feature-txtbx .com-list {
  margin: 5% 0;
}

/*スポーツ障がい・疾患
=========================================================*/
#sv.sv-service-bg {
  background: url(../img/service/sv-service-bg.jpg) no-repeat center right 25%/cover;
}

#recommend {
  background: #e5f6ff;
  padding: 15% 0 0;
  position: relative;
}

#recommend:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: -63px;
  left: 0;
  width: 100%;
  height: 63px;
  background: url("../img/service/recommend-arw.png") no-repeat center/contain;
  background-position: bottom center;
  background-size: cover;
}

#recommend .recommend-list-info {
  display: block;
}

#recommend .recommend-list-info .recommend-list {
  margin-bottom: 10%;
  background: #fff;
  padding: 8% 6%;
  border-radius: 10px;
}

#recommend .recommend-list-info .recommend-list:last-child {
  margin-bottom: 0;
}

#recommend .recommend-list-info .recommend-list .recommend-list-ttl {
  text-align: center;
  margin-bottom: 5%;
  color: #13809e;
  font-weight: 700;
  font-size: 4vw;
}

#recommend .recommend-list-info .recommend-list .recommend-list-ttl em {
  font-size: 5vw;
  background: url(../img/common/pink-line.jpg) repeat-x bottom;
}

#recommend .recommend-list-info .recommend-list .com-list {
  padding: 0;
  background: #fff;
  display: block;
}

#recommend .recommend-list-info .recommend-list .com-list li {
  line-height: 1.8;
  box-sizing: border-box;
  font-size: 4vw;
}

#recommend .recommend-list-info .etc-txt {
  text-align: right;
  font-size: 4vw;
  margin-top: 5%;
}

#recommend .recommend-solution-txt {
  text-align: center;
  font-weight: 700;
  font-size: 4.5vw;
  color: #13809e;
  display: block;
  margin-top: 10%;
}

#recommend .recommend-solution-txt em {
  display: inline-block;
  vertical-align: middle;
  color: #ea7160;
  padding: 3px;
  font-size: 5vw;
  background: url(../img/service/recommend-solution-txt-bg.png) no-repeat center/contain;
}

#slowing-down {
  padding: 15% 0 10%;
}

#slowing-down .slowing-down-wrp {
  margin-bottom: 12%;
  display: block;
}

#slowing-down .slowing-down-wrp .slowing-down-img {
  margin-bottom: 5%;
}

#slowing-down .slowing-down-wrp .slowing-down-txtbx .slowing-down-ttl {
  color: #13809e;
  font-weight: 700;
  font-size: 4.2vw;
  margin-bottom: 4%;
  padding-bottom: 3%;
  line-height: 1.5;
  border-bottom: 1px solid #ea7160;
}

#slowing-down .com-slowing-down {
  margin-bottom: 10%;
}

#slowing-down .com-slowing-down:last-of-type {
  margin-bottom: 0;
}

#slowing-down .com-slowing-down .com-slowing-down-ttl {
  font-weight: 700;
  font-size: 4.2vw;
  color: #13809e;
  margin-bottom: 5%;
  text-align: center;
  padding: 4% 0;
  border-top: 1px solid #13809e;
  border-bottom: 1px solid #13809e;
}

#slowing-down .com-slowing-down .benefit-ttl,
#slowing-down .com-slowing-down .benefit-txt {
  text-align: center;
}

#slowing-down .com-slowing-down .benefit-txt {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 2;
  letter-spacing: .2rem;
}

#slowing-down .com-slowing-down .com-list {
  display: block;
}

#slowing-down .com-slowing-down .skill-txtbx {
  display: block;
}

#slowing-down .com-slowing-down .skill-img {
  text-align: center;
  margin-bottom: 10%;
}

/*出張施術/料金
=========================================================*/
#sv.sv-price-bg {
  background: url(../img/price/sv-price-bg.jpg) no-repeat center/cover;
}

#business-trip {
  padding: 15% 0;
  background: #e5f6ff;
}

#business-trip .business-trip-wrp {
  margin-bottom: 10%;
  display: block;
}

#business-trip .business-trip-wrp .business-trip-img {
  text-align: center;
  margin-bottom: 5%;
}

#business-trip .business-trip-wrp .business-trip-txtbx .business-trip-ttl {
  font-weight: 700;
  color: #13809e;
  font-size: 4.2vw;
  margin-bottom: 5%;
  border-bottom: 1px solid #13809e;
}

#business-trip .area {
  padding: 5vw;
  position: relative;
  box-sizing: border-box;
  background: #bfddad url(../img/price/sp-map.png) no-repeat left -30vw top -30vw;
}

#business-trip .area .osaka-txt {
  width: 30%;
  box-sizing: border-box;
}

#business-trip .area .area-ttl {
  color: #13809e;
  font-weight: 700;
  font-size: 6vw;
  position: relative;
  margin-bottom: 5%;
}

#business-trip .area .area-ttl span {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10vw 1vw 0;
  border-bottom: 1px solid #13809e;
}

#business-trip .area .area-txt {
  padding: 6%;
  box-sizing: border-box;
  font-size: 3.5vw;
  background: rgba(255, 255, 255, 0.7);
}

#price {
  padding: 10% 0;
}

#price .price-info article {
  margin-bottom: 10%;
}

#price .price-info article:last-of-type {
  margin-bottom: 0;
}

#price .price-info article .ttl01 {
  font-size: 4.2vw;
}

#price .price-info article .sub-txt {
  text-align: center;
  margin-bottom: 5%;
}

#price .price-info article .price-info-dl .in-dl {
  background: #ecf9fd;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

#price .price-info article .price-info-dl .in-dl:nth-of-type(even) {
  background: #f5f5f5;
}

#price .price-info article .price-info-dl .in-dl dt,
#price .price-info article .price-info-dl .in-dl dd {
  font-size: 3.5vw;
  padding: 5% 5%;
  box-sizing: border-box;
  letter-spacing: .1rem;
}

#price .price-info article .price-info-dl .in-dl dt {
  font-weight: 700;
  width: 50%;
}

#price .price-info article .price-info-dl .in-dl dd {
  text-align: right;
  width: 50%;
}

#price .price-info article .caution-txt {
  font-size: 3.5vw;
  margin-top: 5%;
}

/*下層ページ
=========================================================*/
/*店舗概要
=========================================================*/
#sv.sv-shop-info-bg {
  background: url(../img/shop-info/sv-shop-info-bg.jpg) no-repeat center/cover;
}

#message {
  padding: 15% 0;
  background: #e5f6ff;
}

#message .message-wrp {
  display: block;
}

#message .message-img {
  margin-bottom: 10%;
}

#store-info {
  padding: 15% 0;
}

#store-info .store-dl .in-dl {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #fff;
}

#store-info .store-dl .in-dl:last-child {
  border-bottom: none;
}

#store-info .store-dl .in-dl dt,
#store-info .store-dl .in-dl dd {
  font-size: 3.2vw;
  padding: 5% 3%;
  box-sizing: border-box;
}

#store-info .store-dl .in-dl dt {
  font-weight: 700;
  background: #ecf9fd;
  width: 35%;
  text-align: center;
}

#store-info .store-dl .in-dl dd {
  background: #f5f5f5;
  width: 65%;
}

#access {
  padding-top: 5%;
}

#access .com-ttl-u {
  margin-bottom: 6%;
}

#access .map-iframe {
  height: 300px;
  background: #ccc;
}

#access .map-iframe iframe {
  width: 100%;
  height: 100%;
}

/*お知らせ一覧
=========================================================*/
/*タグ一覧
----------------------------------------------------*/
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 0 0 20px auto;
  max-width: 230px;
}

.tag-select-box:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}

.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
  border-bottom: 2px solid #333;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #333;
  font-weight: 700;
  appearance: none;
}

.tag-select-box #tag-select option {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
}

.post-wrp .tag-change li a {
  border: solid 1px #13809e;
  color: #13809e;
  background: #fff;
}

.post-wrp .tag-change .current a {
  background: #13809e;
}

.post-wrp .tag-change .current a span {
  color: #fff;
}

.post-wrp .all-post-list article {
  border-bottom: 1px solid #13809e;
}

.post-wrp .all-post-list article a {
  color: #333;
}

.post-wrp .all-post-list article a .tag-name {
  margin: 3px 5px 0 0;
  border: solid 1px #13809e;
}

.post-wrp .all-post-list article a .tag-name span {
  color: #13809e;
}

.post-wrp .all-post-list article a time span {
  color: #13809e;
}

/*お知らせ個別
=========================================================*/
/*お問い合わせ
=========================================================*/
.cont-dl .in-dl dt .hissu {
  background: #ea7160;
  color: #fff;
}

.cont-dl .in-dl dd input[type="text"],
.cont-dl .in-dl dd input[type="num"] {
  border: solid #ccc 1px;
  background: #fff;
}

.cont-dl .in-dl dd textarea {
  border: solid #ccc 1px;
  background: #fff;
}

.contact-btn ul li #form-btn {
  border: solid 1px #13809e;
  background-color: #13809e;
}

.contact-btn ul li:hover #form-btn {
  color: #13809e;
  background: #fff;
}

/*pagenation
--------------------------------------------*/
/*page-btn
--------------------------------------------*/
/*サイトマップ
=========================================================*/
#site-map ul li {
  border-bottom: 1px solid #13809e;
}

#site-map ul li a {
  color: #333;
}

#site-map ul li a:before {
  border-left: 8px solid #13809e;
}

#site-map ul li a:hover {
  color: #13809e;
}

#site-map ul li a:hover:before {
  left: 10px;
}

/*404
=========================================================*/
.not-found-txt p a {
  color: #13809e;
}

/*リキャプチャ---------------*/
.recap-inwrap {
  width: 300px;
  margin: 0 auto 50px;
}

/*送信完了---------------*/
.send-comp {
  text-align: center;
}

.send-comp p {
  line-height: 1.5em;
}

.send-comp-ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}

/*ドロワーメニュー
------------------------------------------------------*/
.drawer-nav {
  text-align: left;
  padding: 15% 6% 10% !important;
  box-sizing: border-box;
}

.drawer-nav .drawer-logo {
  width: 30%;
  margin-bottom: 10%;
}

.drawer-nav .drawer-menu {
  margin-bottom: 10%;
}

.drawer-nav .drawer-menu > li {
  border-bottom: 1px solid #ea7160;
}

.drawer-nav .drawer-menu > li:last-child {
  margin-bottom: 0;
}

.drawer-nav .drawer-menu > li a {
  font-size: 4vw;
  display: block;
  padding: 3% 5%;
  box-sizing: border-box;
  font-weight: bold;
  color: #13809e;
  position: relative;
}

.drawer-nav .drawer-menu > li a:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 3%;
  bottom: auto;
  left: auto;
  width: 5vw;
  height: 5vw;
  background: url("../img/common/arw-blue.png") no-repeat center/contain;
  margin-top: -2.5vw;
}

.drawer-nav .drawer-info {
  text-align: center;
}

.drawer-nav .drawer-info .drawer-sns {
  margin-bottom: 10%;
}

.drawer-nav .drawer-info .drawer-sns li {
  margin-right: 5%;
}

.drawer-nav .drawer-info .drawer-sns li:last-child {
  margin-right: 0;
}

.drawer-nav .drawer-info .drawer-contact-worktime {
  margin-bottom: 5%;
  font-size: 3.5vw;
}

.drawer-nav .drawer-info .drawer-contact-worktime .drawer-address {
  margin-bottom: 3%;
}

.drawer-nav .drawer-info .drawer-contact-worktime .drawer-worktime {
  margin-bottom: 5%;
}

.drawer-dropdown-menu {
  padding: 10% 0 5% !important;
  background: none !important;
}

.drawer-dropdown-menu li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  padding-left: 30px;
  box-sizing: border-box;
}

.drawer-dropdown-menu li:last-child {
  margin-bottom: 0;
}

.drawer-dropdown-menu li a {
  position: relative;
}

.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-nav,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  z-index: 100000 !important;
}

.drawer--right.drawer-open .drawer-hamburger {
  top: 1%;
  right: 3% !important;
  z-index: 1000000 !important;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #fff !important;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent !important;
}

.drawer-toggle.drawer-hamburger {
  background: #13809e !important;
  right: 3% !important;
  top: 1%;
}

.drawer-hamburger {
  width: 45px;
  box-sizing: border-box;
  padding: 18px .75rem 24px;
}

.drawer-hamburger-icon {
  margin-top: 5px;
}

.drawer-hamburger-icon:before {
  top: -8px;
}

.drawer-hamburger-icon:after {
  top: 8px;
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
