@charset "utf-8";
/*---------------------------------

【概要】
こちらのcssファイルは、PC用の記述をしています。

【変更が必要な色情報】
メインカラー（濃いオレンジ）：#ff4c15
サブカラー１（少し薄いオレンジ）：#ff8d1e -> #00135e
サブカラー２（少し濃いオレンジ）：#ff6633 -> #4472c4
背景色（薄いオレンジ１）：#fff6e7
マップボタン（薄いオレンジ２）：#ffe9d3

【変更が必須ではない色情報】
■黄緑：#00b300
使用箇所：
　トップページ
　　・チラシ

【色変更方法】
上記のカラー情報で検索し、一括置換してください。

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

@media print, screen and (min-width: 1031px) {
/*---------------------------------

  共通

---------------------------------*/
.sp,
.sp_only{
  display: none!important;
}
html{
  height: 100%;
}
body{
  height: calc(100% - 110px);
}
main{
  padding-top: 206px;
  min-height: calc(100% - 140px);
  overflow: hidden;
}
.article-header{
  background: #f4f6ff;
  padding: 0 0 40px;
  position: relative;
}
.article-header:before{
  content: "";
  position: absolute;
  background: #f4f6ff;
  height: 370px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.article-header__title{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  position: relative;
  text-align: center;
  letter-spacing: 2px;
  padding: 0 0 11px;
}
.article-header__title:before{
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background: #4472c4;
  bottom: 0;
  left: 50%;
  margin-left: -60px;
}
/* TODO: list_btn を共通化 */
.article-header__title .list_btn{
  position: absolute;
  right: 0;
  top: 10px;
}
.article-header__comment{
  margin: 30px 0 0;
  text-align: center;
  font-size: 15px;
  color: #606060;
}
.article-header__menu-list{
  letter-spacing: -.4em;
  text-align: center;
  margin: 30px 0 0;
}
.article-header__menu-item{
  letter-spacing: 0.5px;
  display: inline-block;
  width: 200px;
  margin: 0 5px 10px;
}
.article-header__menu-link{
  background: #fff url(../img/common/arrow_bottom1.png) right 20px center no-repeat;
  background-size: 6px;
  border: solid 1px #cdcdcd;
  display: block;
  font-size: 16px;
  padding: 10px 20px 10px 10px;
  box-sizing: border-box;
  color: #333;
}
.article-header__menu-link:hover{
  background: #4472c4 url(../img/common/arrow_bottom_white.png) right 20px center no-repeat;
  background-size: 6px;
  border: solid 1px #4472c4;
  color: #fff;
}
.content{
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  padding: 50px 3% 20px;
  box-sizing: border-box;
}
/*  
  見出し
--------------------------*/
.banner-detail__title,
.sotre-and-recruit-and-flyer-title,
.store-detail__title,
.recruit-detail__title,
.privacy-section__title,
.simple-detail__title{
  margin: 0 20px 20px;
  border-bottom: solid 2px #cbcbcb;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 12px 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  box-sizing: border-box;
}
.banner-detail__title:before,
.sotre-and-recruit-and-flyer-title:before,
.store-detail__title:before,
.recruit-part__title:before,
.recruit-detail__title:before,
.privacy-section__title:before,
.simple-detail__title:before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: calc(100% - 19px);
  background: linear-gradient(90deg,#00135e 0%,#00135e 50%,#4472c4 50%,#4472c4 100%); /* 小見出し左のオレンジとメインカラー */
}
.banner-detail__title:after,
.sotre-and-recruit-and-flyer-title:after,
.store-detail__title:after,
.recruit-part__title:after,
.recruit-detail__title:after,
.privacy-section__title:after,
.simple-detail__title:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 200px;
  height: 2px;
  background: #4472c4; /* 小見出し下線のメインカラー */
}
/*  
  パンくずリスト
--------------------------*/
.breadcrumb{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  overflow: hidden;
  margin-bottom: 25px;
}
.breadcrumb__item{
  float: left;
  margin: 0 5px 0 0!important;
  font-size: 13px;
  color: #555;
}
.breadcrumb__item:last-child{
  margin: 0;
}
.breadcrumb__item:before{
  content: "＞";
  color: #555;
  font-size: 12px;
  margin-right: 5px;
}
.breadcrumb__item:first-child:before{
  content: none;
}
.breadcrumb__link{
  color: #4472c4;
  text-decoration: underline;
  font-size: 13px;
}
.breadcrumb__link:hover{
  text-decoration: none;
}
/*  
  ページネーション
--------------------------*/
.paging{
  text-align: center;
  letter-spacing: -.4em;
  margin: 40px 0 50px;
}
.paging span,
.paging a{
  border: solid 1px #4472c4;
  background: #fff;
  width: 40px;
  height: 40px;
  color: #4472c4;
  line-height: 38px;
  display: inline-block;
  letter-spacing: 0;
  box-sizing: border-box;
  margin: 0 5px 0 0;
}
.paging .current,
.paging a:hover{
  background: #4472c4;
  color: #fff;
}
.paging .prev,
.paging .next{
  background: none!important;
  color: #4472c4!important;
  border: none;
}
.paging .prev:hover,
.paging .next:hover{
  opacity: 0.6;
}
/*  
  ページトップボタン
--------------------------*/
.pagetop{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #4472c4 url(../img/common/pagetop.png) left 23px center no-repeat;
  background-size: 8px;
  position: absolute;
  bottom: 4%;
  right: 3%;
  position: fixed;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
}
.pagetop:hover{
  opacity: 0.8;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

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

  ヘッダー（PC）

---------------------------------*/
.width1030{
  display: none!important;
}
.header{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
  background: #fff;
  border-bottom: solid 4px #00135e;
  min-height: 206px;
  height: 206px;
  box-sizing: border-box;
}
.header-nav,
.header__test-inner{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 10px;
}
.header__test{
  background: #00135e;
}
.header__logo{
  margin-bottom: 8px;
  margin-right: 8px;
  float: left;
  width: 300px;
  /* height: 70px; */
}
.header__logo:hover{
  opacity: 0.6;
}
.header__logo-img{
  width: 100%;
}
/*  
  サブリンク
--------------------------*/
.header__sub-list{
  float: right;
  overflow: hidden;
  margin-top: 14px;
}
.header__sub-item{
  float: left;
  margin-left: 30px;
}
.header__sub-link{
  color: #fff;
  font-size: 14px;
  display: inline-block;
}
.header__sub-link--topics{
  padding: 0 0 0 24px;
  background: url(../img/common/favicon.png) left center no-repeat;
  background-size: 20px;
}
.header__sub-link--okichi{
  padding: 0 0 0 24px;
  background: url(../img/common/header_okichi.png) left center no-repeat;
  background-size: 20px;
}
.header__sub-link--ec{
  padding: 0 0 0 24px;
  background: url(../img/common/header_ec.jpg) left center no-repeat;
  background-size: 20px;
}
.header__sub-link--company{
  padding: 0 0 0 16px;
  background: url(../img/common/header_company.png) left center no-repeat;
  background-size: 11px;
}
.header__sub-link:hover{
  /* color: #4472c4; */
  text-decoration: underline;
}
.header__sub-title{
  clear: both;
  font-family: serif;
  font-size: 16px;
  font-weight: bolder;
  color: #fff;
}
/*  
  メインメニュー
--------------------------*/
.header-nav{
  overflow: hidden;
  clear: both;
}
.header-nav__list{
  overflow: hidden;
}
.header-nav__item{
  width: 16.666%;
  float: left;
  border-left: solid 1px #00135e;
  box-sizing: border-box;
}
.header-nav ul li:last-child{
  border-right: solid 1px #00135e;
}
.header-nav__link{
  color: #000;
  font-size: 15px;
  text-align: center;
  display: block;
  height: 30px;
  line-height: 30px;
}
.header-nav__link:hover{
  color: #4472c4;
  text-decoration: none;
}

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

  フッター

---------------------------------*/
.footer{
  width: 100%;
  padding: 36px 0;
  clear: both;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: solid 10px #4472c4;
  background: #f4f6ff;
}
.footer__inner{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.footer__logo-link{
  width: 140px;
  display: block;
  float: left;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 0;
}
.footer__logo-img{
  width: 140px;
}
.footer__menu-list{
  text-align: center;
  letter-spacing: -.4em;
}
.footer__menu-item{
  letter-spacing: 0;
  display: inline-block;
  padding: 0 20px;
  position: relative;
}
.footer__menu-item:before{
  content: "";
  width: 1px;
  height: 15px;
  background: #555;
  position: absolute;
  left: 0;
}
.footer__menu-item:first-child:before{
  content: none;
}
.footer__menu-link{
  color: #555;
  font-size: 15px;
  display: inline-block;
}
.footer__menu-link:hover{
  color: #4472c4;
}
.footer__copyright{
  font-size: 15px;
  color: #4472c4;
  text-align: center;
  display: block;
  margin-top: 16px;
}

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

  トップページ

---------------------------------*/
.top__main-contents{
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  width: 94%;
}
.top-subtitle{
  font-size: 26px;
  font-weight: bold;
  color: #000;
  display: inline-block;
  padding: 40px 10px 20px;
  border-bottom: solid 2px #4472c4;
  letter-spacing: 1px;
  margin: 0 0 25px;
  line-height: 1;
}
/*  
  スライダー
--------------------------*/
.slider{
  margin: 0 0 65px!important;
}
.slick-dots li{
  margin: 0 5px;
  width: 60px;
  height: auto;
}
.slick-dots li button{
  width: 100%;
  height: 6px;
  background: #989898;
  padding: 0;
}
.slick-dots .slick-active button{
  background: #4472c4;
}
.slick-dots li button:before{
  content: none;
}
.slick-dots li button:before{
  content: none;
}
.top__sub-contents{
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  padding: 0 0 35px;
}
/*  
  チラシリンク
--------------------------*/
.flyer-link{
  width: 48%;
  float: left;
}
.flyer-link:hover{
  opacity: 0.8;
}
.flyer-link__inner{
  position: relative;
  z-index: -1;
  background: #00135e; /* 背景色 */
  overflow: hidden;
  padding: 4px;
  height: 200px;
  box-sizing: border-box;
}
.flyer-link__onepoint{
  position: absolute;
  width: 105px;
  height: 105px;
  border: solid 4px #00b300; /* 更新の丸 */
  background: #fff;
  border-radius: 50%;
  display: block;
  left: 10px;
  bottom: 10px;
  color: #00b300;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  z-index: 2;
  padding: 12px 0 0;
  box-sizing: border-box;
  letter-spacing: 1px;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}
.flyer-link__onepoint-strong{
  font-size: 20px;
}
.flyer-link__inner:before{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-bottom: 200px solid #4472c4; /* 右下のメインカラーの三角 */
  right: 0;
  top: 0;
  z-index: -1;
}
.flyer-link__flyer{
  width: 50%;
  float: left;
  line-height: 1;
  position: relative;
  box-sizing: border-box;
  padding: 10px;
  background: #fff;
  box-sizing: border-box;
  text-align: right;
  position: relative;
  z-index: -1;
}
.flyer-link__flyer:before{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-right: 100px solid transparent;
  border-top: 200px solid #00135e; /* 左上のオレンジ三角 */
  left: -4px;
  top: -4px;
  z-index: -1;
}
.flyer-link__content{
  width: 50%;
  float: left;
  line-height: 1;
  position: relative;
  box-sizing: border-box;
  padding: 25px 0 30px;
  background: url(../img/common/arrow_white.png) center bottom no-repeat;
  background-size: 24px;
}
.flyer-link__title{
  font-size: 24px;
  color: #fff;
  width: 80px;
  border-bottom: solid 2px #fff;
  margin: 0 auto;
  font-weight: bold;
}
.flyer-link__text{
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 15px;
}
/*  
  中バナー
--------------------------*/
.topics-link{
  display: block;
  float: left;
  width: 48%;
  text-align: center;
  margin: 0 4% 20px 0;
  box-sizing: border-box;
}
.topics-link:hover{
  opacity: 0.8;
}
.topics-link:nth-child(2n){
  margin-right: 0;
}
/*  
  バイヤーズセレクションリンク
--------------------------*/
.buyers-link{
  background: #f1f1f1;
  height: 200px;
  text-align: center;
  padding: 28px 30px 0;
  margin: 40px 0 0 0;
  box-sizing: border-box;
}
.buyers-link__title{
  color: #000;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  padding: 0 10px;
  border-bottom: solid 2px #00135e; /* 見出し下線 */
}
.buyers-link__text{
  color: #333;
  font-size: 14px;
  font-weight: bold;
  margin: 15px 0 20px;
}
.buyers-link__link{
  display: block;
  width: 50%;
  background: #4472c4 url(../img/common/arrow_white.png) right 8px bottom 10px no-repeat; /* ボタンのオレンジ＋矢印画像 */
  background-size: 24px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  height: 60px;
  line-height: 56px;
  position: relative;
  border: solid 2px #4472c4;
  margin: 0 auto;
}
.buyers-link__link-label{
  line-height: 1.4;
  display: inline-block;
  vertical-align: middle;
}
.buyers-link__link:hover{
  background: #fff url(../img/common/arrow2.png) right 8px bottom 10px no-repeat; /* ボタンホバー時の指定 */
  background-size: 24px;
  color: #4472c4;
}
/*  
  採用情報リンク
--------------------------*/
.recruit-link{
  background: #f4f6ff;
  height: 200px;
  text-align: center;
  padding: 28px 30px 0;
  box-sizing: border-box;
}
.recruit-link__title{
  color: #000;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  padding: 0 10px;
  border-bottom: solid 2px #00135e; /* 見出し下線 */
}
.recruit-link__text{
  color: #333;
  font-size: 14px;
  font-weight: bold;
  margin: 15px 0 20px;
}
.recruit-link__list{
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.recruit-link__item{
  width: 100%;
  float: left;
}
.recruit-link__item--row2{
  width: 48%;
  margin: 0 4% 0 0;
}
.recruit-link__item--row3{
  width: 30.6%;
  margin: 0 4% 0 0;
}
.recruit-link__item:last-child{
  margin: 0;
}
.recruit-link__link{
  display: block;
  background: #4472c4 url(../img/common/arrow_white.png) right 8px bottom 10px no-repeat; /* ボタンのオレンジ＋矢印画像 */
  background-size: 24px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  height: 60px;
  line-height: 56px;
  position: relative;
  border: solid 2px #4472c4;
}
.recruit-link__link[target="_blank"]:before{
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  display: block;
  background: url(../img/common/external_link1.png) center no-repeat; /* ボタンのオレンジ＋外部リンク用画像 */
  background-size: 15px;
  left: 2px;
  top: 2px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.recruit-link__link-label{
  line-height: 1.4;
  display: inline-block;
  vertical-align: middle;
}
.recruit-link__link:hover{
  background: #fff url(../img/common/arrow2.png) right 8px bottom 10px no-repeat; /* ボタンホバー時の指定 */
  background-size: 24px;
  color: #4472c4;
}
.recruit-link__link[target="_blank"]:hover:before{
  background: url(../img/common/external_link1_hover.png) center no-repeat; /* ボタンホバー時の指定 */
  background-size: 15px;
}
/*  
  お知らせ
--------------------------*/
.top-news{
  background: #f4f6ff;
  padding: 50px 0 100px;
  text-align: center;
}
.top-news__top-subtitle{
  background: url(../img/top/news.png) top center no-repeat;
  background-size: 36px;
}
.top-news__content{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.top-news__news-list{
  text-align: left;
  background: #fff;
  padding: 10px 50px 20px;
  box-sizing: border-box;
}
.top-news__cv{
  float: right;
  border: solid 1px #4472c4;
  width: 180px;
  padding: 0 30px 0 0;
}
/*  
  ピックアップ
--------------------------*/
.pickup{
  width: 94%;
  max-width: 1200px;
  margin: 45px auto;
  text-align: center;
}
.pickup__top-subtitle{
  background: url(../img/top/pickup.png) top center no-repeat;
  background-size: 27px;
  margin: 0 0 45px;
}
.pickup__list{
  overflow: hidden;
}
.pickup__item{
  width: 32%;
  margin: 0 2% 20px 0;
  float: left;
}
.pickup__item:nth-child(3n){
  margin: 0 0 20px 0;
}
.pickup__link{
  display: block;
  line-height: 1;
}
.pickup__link:hover{
  opacity: 0.6;
}
/*  
  SNS
--------------------------*/
.sns{
  width: 94%;
  max-width: 1200px;
  margin: 35px auto;
  text-align: center;
}
.sns__top-subtitle{
  background: url(../img/top/sns.png) top center no-repeat;
  background-size: 27px;
  margin: 0 0 45px;
}
.sns__contents{
  display: flex;
  justify-content: center;
}
.sns__item{
  overflow: hidden;
  border: 1px solid rgb(207, 217, 222);
  border-radius: 12px;
  width: 364px; /* 350px + スクロールバー14px */
  flex-shrink: 0;
}
.sns__item-inner{
  overflow-x: hidden;
  overflow-y: auto;
  height: 500px;
  margin: -1px;
}
.sns__instagram{
  overflow: hidden;
  margin-right: 32px;
}
.sns__link{
  display: block;
  padding: 8px;
}
.sns__link:hover{
  opacity: 0.6;
}
.sns__icon{
  width: 30px;
  vertical-align: top;
}
/*---------------------------------

  店舗情報

---------------------------------*/
.sotre-and-flyer-content--wip{
  padding: 0 20px 35px;
}
.sotre-and-recruit-and-flyer-title{
  margin: 0;
}
.sotre-and-recruit-and-flyer-section--wip{
  padding: 25px 0 35px;
}
.store__list{
  padding: 10px 10px 0;
}
.store__item{
  border-bottom: solid 1px #cbcbcb;
  padding: 23px 0;
  letter-spacing: -.4em;
}
section .nothing{
  font-size: 15px;
  letter-spacing: 0.5px!important;
  border: none!important;
  padding: 23px 0!important;
  margin: 0!important;
}
section .nothing:before{
  content: none!important;
}
.store__item-data{
  letter-spacing: 0.5px;
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
  box-sizing: border-box;
}
.store__name{
  width: 30%;
  padding: 0 10px 0 45px;
  background: url(../img/common/arrow1.png) left top 7px no-repeat;
  background-size: 24px;
}
.store__link{
  text-decoration: underline;
}
.store__link:hover{
  color: #4472c4;
}
.store__address{
  width: calc(70% - 372px);
  padding: 0 10px 0 20px;
  background: url(../img/store/map_btn.png) left top 1px no-repeat;
  background-size: 12px;
}
.store__tel{
  width: 190px;
  padding: 0 0 0 28px;
  background: url(../img/common/tel.png) left top 2px no-repeat;
  background-size: 18px;
}
.store__tel-link{
  pointer-events: none;
}
.store__hours{
  width: 180px;
  padding: 0 0 0 28px;
  background: url(../img/store/hours.png) left top 1px no-repeat;
  background-size: 18px;
}
.store-okichi{
  margin-top: 48px;
}
.store-okichi__link:hover{
  opacity: 0.7;
}
/*---------------------------------

  採用情報

---------------------------------*/
.recruit__list-btn{
  padding: 0 15px 0 0;
  background: url(../img/common/arrow_bottom1.png) right center no-repeat;
  background-size: 6px;
}
.recruit__content{
  padding: 60px 20px 35px;
}
.recruit__subtitle{
  font-size: 24px;
  color: #333;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  line-height: 1;
  padding: 0 0 17px;
  text-align: center;
  margin: 0 0 25px;
}
.recruit__subtitle:before{
  content: "";
  width: 40px;
  height: 2px;
  background: #4472c4;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}
.recruit__subtitle:first-letter{
  color: #4472c4;
}
.recruit-part__list{
  padding: 0 10px;
}
.recruit-part__item{
  padding: 20px 30px 20px 0;
  box-sizing: border-box;
  border: solid 1px #cbcbcb;
  position: relative;
  letter-spacing: -.4em;
  margin: 30px 0 0;
}
.recruit-part__item:before{
  content: "";
  background: #4472c4; /* 左枠線 */
  position: absolute;
  height: calc(100% + 2px);
  width: 6px;
  left: -1px;
  top: -1px;
  display: block;
}
.recruit-part__image{
  width: 240px;
  margin: 0 0 0 25px;
  vertical-align: top;
}
.recruit-part__content{
  width: calc(100% - 220px);
  padding: 0 30px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.5px;
}
.recruit-part__image + .recruit-part__content{
  width: calc(100% - 486px);
}
.recruit-part__link{
  display: inline-block;
}
.recruit-part__cv.cv,
.flyer-list__cv{
  width: 220px;
  vertical-align: middle;
  background: #4472c4 url(../img/common/arrow_white.png) right 20px top 22px no-repeat;
  background-size: 24px;
  height: 56px;
  line-height: 54px;
  display: inline-block;
}
.recruit-part__cv.cv:hover,
.flyer-list__cv:hover{
  background: #fff url(../img/common/arrow1.png) right 20px top 22px no-repeat;
  background-size: 24px;
}
.recruit-part__title{
  margin: 0 0 20px;
  border-bottom: solid 1px #cbcbcb;
  position: relative;
  font-size: 18px;
  padding: 0 0 9px 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  box-sizing: border-box;
}
.recruit-part__title:before{
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 4px;
  height: calc(100% - 10px);
  background: #4472c4;
}
.recruit-part__data-list{
  overflow: hidden;
}
.recruit-part__data-title{
  color: #4472c4;
  width: 70px;
  float: left;
  clear: both;
  font-size: 14px;
  margin: 0 0 6px;
  letter-spacing: 0;
}
.recruit-part__data-item{
  width: calc(100% - 70px);
  float: left;
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0;
}
.new-graduate__title{
  margin: 0 0 40px;
}
.new-graduate__comment{
  font-size: 15px;
  color: #606060;
  margin: 0 0 35px;
  text-align: center;
  line-height: 1.7;
}
.new-graduate__list{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -.4em;
}
.new-graduate__item{
  display: inline-block;
  letter-spacing: 0;
  width: 32%;
  margin: 0 2% 20px 0;
}
.new-graduate__item:last-child{
  margin: 0 0 20px 0;
}
.new-graduate__link{
  display: block;
}
.new-graduate__link:hover{
  opacity: 0.6;
}
/*---------------------------------

  チラシ

---------------------------------*/
.flyer-list__item{
  padding: 0 10px 30px;
  box-sizing: border-box;
  margin: 30px 0 0;
  overflow: hidden;
}
.flyer-list__image{
  width: 350px;
  border: solid 1px #cbcbcb;
  box-sizing: border-box;
  margin: 0 30px 0 0;
  float: left;
}
.flyer-list__image + .flyer-list__content{
  width: calc(100% - 380px);
  float: left;
}
.flyer-list__header{
  background: #f4f6ff;
  padding: 26px 30px;
  box-sizing: border-box;
  letter-spacing: -.4em;
}
.flyer-list__title{
  font-size: 18px;
  line-height: 1.7;
  width: calc(100% - 320px);
  padding: 0 15px 0 0;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}
.flyer-list__cv{
  width: 320px;
}
.flyer-list__data-list{
  padding: 25px 30px 0;
  box-sizing: border-box;
}
.flyer-list__data-title{
  width: 80px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  padding: 1px 5px;
  border-left: 5px solid #4472c4;
  background: #f4f4f4;
}
.flyer-list__data-item{
  font-size: 16px;
  font-weight: bold;
  color: #555;
  line-height: 1.8;
}

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

  店舗情報詳細
  採用情報詳細

---------------------------------*/
.store-detail__content,
.recruit-detail__content{
  padding: 25px 20px 65px;
}
.store-detail__title,
.recruit-detail__title{
  margin: 0 0 30px;
}
.recruit-detail__title--main{
  margin: 0 0 25px;
}
.store-detail__title-kana{
  font-weight: normal;
  font-size: 15px;
  color: #555;
  display: inline-block;
  margin-left: 20px;
}
.store-detail__subtitle,
.recruit-detail__subtitle{
  margin: 0 0 20px;
  border-bottom: solid 1px #cbcbcb;
  position: relative;
  font-size: 18px;
  font-weight: normal;
  padding: 12px 20px;
  line-height: 1;
  letter-spacing: 1px;
  box-sizing: border-box;
  background: #f4f6ff; /* 小見出し背景色 */
}
.recruit-detail__subtitle{
  margin: 0 0 15px;
}
.store-detail__subtitle:before,
.recruit-detail__subtitle:before{
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -11px;
  width: 4px;
  height: 22px;
  background: #4472c4; /* 小見出し左のメインカラー */
}
.store-detail__tel-link{
  pointer-events: none;
}
.recruit-detail__store-comment{
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 25px;
  padding: 0 10px;
}
#recruit_detail section section{
  clear: both;
}
/*  
  画像まわり
--------------------------*/
.store-detail__image-area{
  width: 43%;
  max-width: 500px;
  float: left;
  margin: 0 0 50px;
}
#recruit_detail .img_area{
  width: 34%;
  max-width: 400px;
  float: left;
  margin: 0 0 50px;
}
.store-detail__image-wapper,
#recruit_detail .img_area div{
  background: #cbcbcb;
  text-align: center;
  margin: 0 0 15px;
  line-height: 0;
}
.store-detail__image-wapper--no-image,
#recruit_detail .img_area .no_image{
  background: #cbcbcb url(../img/store/no_image.png) center no-repeat;
  background-size: 161px;
  height: 280px;
}
.store-detail__explanation{
  font-size: 15px;
  line-height: 1.7;
}
/*  
  店舗情報
  基本情報
--------------------------*/
.store-detail__info{
  width: 57%;
  max-width: 640px;
  float: left;
  padding: 0 0 0 20px;
  box-sizing: border-box;
  margin: 0 0 50px;
}
.recruit-detail__info{
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 50px;
}
#recruit_detail .img_area + .recruit-detail__info{
  width: 66%;
  max-width: 760px;
  float: left;
  padding: 0 0 0 30px;
}
.store-detail__flyer-link{
  height: 50px;
  line-height: 48px;
  background: #4472c4 url(../img/common/arrow_white.png) right 60px top 20px no-repeat;
  background-size: 24px;
  margin: 25px auto;
  display: block;
  padding: 0 10px 0 0;
}
.store-detail__flyer-link:hover{
  background: #fff url(../img/common/arrow1.png) right 60px top 20px no-repeat;
  background-size: 24px;
}
.detail-table{
  width: 100%;
  border-top: dashed 1px #cbcbcb;
}
.detail-table__header{
  width: 140px;
  padding: 12px 8px;
  font-size: 15px;
  background: #f4f6ff;
  border-bottom: dashed 1px #cbcbcb;
  line-height: 1.6;
}
.detail-table__item{
  padding: 12px 20px;
  font-size: 15px;
  border-bottom: dashed 1px #cbcbcb;
  line-height: 1.6;
}
.detail-table__item--tag-list{
  padding: 6px 20px;
}
.detail-table__item--address{
  padding: 12px 110px 12px 20px;
  position: relative;
}
.recruit-detail__store-link{
  text-decoration: underline;
}
.recruit-detail__store-link:hover{
  text-decoration: none;
}
.map-button{
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -18px;
  width: 80px;
  height: 36px;
  background: #ffe9d3 url(../img/store/map_btn.png) left 12px center no-repeat;
  background-size: 12px;
  line-height: 36px;
  color: #333;
  font-size: 14px;
  padding: 0 0 0 18px;
  text-align: center;
  display: block;
}
.map-button:hover{
  opacity: 0.8;
}
.detail-tag-list{
  letter-spacing: -.4em;
}
.detail-tag-list__item{
  display: inline-block;
  padding: 3px 5px;
  box-sizing: border-box;
  letter-spacing: 0.5px;
  background: #fffdf8;
  border: solid 1px #cbcbcb;
  margin: 5px 10px 5px 0;
  font-size: 15px;
}
/*  
  店長からのメッセージ
--------------------------*/
.store-detail__message{
  float: left;
  width: 100%;
  border-bottom: dashed 1px #cbcbcb;
  padding: 0 0 25px;
  margin: 0 0 50px;
}
.store-detail__message--row2{
  width: 43%;
  max-width: 500px;
}
.store-detail__manager-image{
  width: 130px;
  float: left;
}
.store-detail__manager-text{
  padding: 0 15px;
  box-sizing: border-box;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
.store-detail__manager-image + .store-detail__manager-text{
  width: calc(100% - 130px);
  float: left;
}
/*  
  イベント情報
--------------------------*/
.store-detail__event{
  float: left;
  width: 100%;
  border-bottom: dashed 1px #cbcbcb;
  padding: 0 0 25px;
  margin: 0 0 50px;
}
.store-detail__message + .store-detail__event{
  width: calc(57% - 20px);
  max-width: 620px;
  margin: 0 0 50px 20px;
}
.store-detail__event-text{
  padding: 0 15px;
  box-sizing: border-box;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
/*  
  その他リンクなど
--------------------------*/
.store-detail__button-list{
  clear: both;
  letter-spacing: -.4em;
  text-align: center;
}
.store-detail__button-link{
  font-size: 16px;
  color: #333;
  width: 45%;
  height: 60px;
  line-height: 58px;
  box-sizing: border-box;
  max-width: 400px;
  display: inline-block;
  margin: 0 10px;
  letter-spacing: 0.5px;
  border: solid 1px #cbcbcb;
  background: #fff url(../img/common/arrow1.png) right 10% center no-repeat;
  background-size: 24px;
  text-align: center;
}
.store-detail__button-link:hover{
  text-decoration: underline;
}
/*  
  仕事情報
--------------------------*/
.recruit-detail-works{
  margin: 0 0 70px;
}
.recruit-detail-works__text{
  font-size: 15px;
  padding: 0 20px 30px;
  line-height: 1.7;
}
.recruit-detail-works__text--free{
  padding: 20px 30px 30px;
  border: solid 1px #cbcbcb;
}
/*  
  応募方法
--------------------------*/
.recruit-detail-method{
  margin: 0 0 70px;
  border: solid 1px #cbcbcb;
  clear: both;
  padding: 30px;
  box-sizing: border-box;
}
.recruit-detail-method:last-of-type{
  margin: 0;
}
.recruit-detail-method__data-list{
  display: table;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}
.recruit-detail-method__data-header{
  vertical-align: middle;
  display: table-cell;
  font-size: 15px;
  background: #f4f6ff;
  width: 160px;
  text-align: center;
}
.recruit-detail-method__data-item{
  vertical-align: middle;
  display: table-cell;
  font-size: 15px;
  line-height: 1.7;
  padding: 10px 0 10px 25px;
}
.recruit-detail-method__button-list{
  text-align: center;
  letter-spacing: -.4em;
  margin: 20px 0 0;
}
.recruit-detail-method__link{
  width: 45%;
  max-width: 400px;
  height: 60px;
  line-height: 58px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: #4472c4 url(../img/common/arrow_white.png) right 50px top 25px no-repeat;
  background-size: 24px;
  margin: 0 15px;
  display: inline-block;
  padding: 0 10px 0 0;
  letter-spacing: 1px;
  border: solid 1px #4472c4;
  box-sizing: border-box;
}
.recruit-detail-method__link:hover{
  color: #4472c4;
  background: #fff url(../img/common/arrow1.png) right 50px top 25px no-repeat;
  background-size: 24px;
}
.recruit-detail-method__link--external{
  background: #00135e url(../img/common/arrow_white.png) right 50px top 25px no-repeat;
  background-size: 24px;
  position: relative;
  border: solid 1px #00135e;
}
.recruit-detail-method__link--external:hover{
  color: #00135e;
  background: #fff url(../img/common/arrow3.png) right 50px top 25px no-repeat;
  background-size: 24px;
}
.recruit-detail-method__link--external:before{
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  display: block;
  background: url(../img/common/external_link2.png) center no-repeat; /* ボタンのオレンジ＋外部リンク用画像 */
  background-size: 15px;
  left: 2px;
  top: 2px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.recruit-detail-method__link--external:hover:before{
  background: url(../img/common/external_link2_hover.png) center no-repeat; /* ボタンホバー時の指定 */
  background-size: 15px;
}


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

  お知らせ

---------------------------------*/
.news-category{
  color: #fff;
  background: #00135e;
  width: 140px;
  display: block;
  height: 22px;
  line-height: 22px;
  text-align: center;
  float: left;
}
.news-category.service{
  background: #4472c4; /* 種別カラーを個別で指定 */
}
.news-category.recruit{
  background: #4472c4; /* 種別カラーを個別で指定 */
}
.news-list__item{
  border-bottom: dashed 1px #989898;
}
.news-list__item:last-child{
  border-bottom: none;
}
.news-list__link,
.news-list__label{
  display: block;
  overflow: hidden;
  padding: 24px 0;
  box-sizing: border-box;
}
.news-list__time{
  font-size: 15px;
  padding: 0 0 0 80px;
  width: 200px;
  line-height: 22px;
  position: relative;
  float: left;
  box-sizing: border-box;
}
.news-list__time:before{
  content: "";
  width: 60px;
  height: 4px;
  background: #00135e; /* 左のオレンジ線 */
  left: 0;
  top: 50%;
  margin-top: -2px;
  position: absolute;
}
.news-list__title{
  font-size: 15px;
  padding: 0 20px;
  width: calc(100% - 345px);
  float: left;
  box-sizing: border-box;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.news-list__link h2:after,
.news-list__link h3:after{
  content: "";
  width: 35px;
  height: 21px;
  background: url(../img/common/arrow1.png) right top 6px no-repeat;
  background-size: 24px;
  display: inline-block;
  vertical-align: top;
}
.news-list__link:hover h2,
.news-list__link:hover h3{
  color: #4472c4; /* ホバー時文字色 */
}

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

  バイヤーズセレクション

---------------------------------*/
.buyers__content{
  padding: 40px 30px;
}
.buyers__list{
  overflow: hidden;
  letter-spacing: -.4em;
}
.buyers__item{
  display: inline-block;
  letter-spacing: 0;
  vertical-align: top;
  margin: 0 2% 50px 0;
  width: 32%;
}
.buyers__item:nth-child(3n){
  margin: 0 0 50px 0;
}
.buyers-item__link{
  display: block;
}
.buyers-item__link:hover{
  opacity: 0.8;
}
.buyers-item__image{
  box-sizing: border-box;
  border: solid 1px #cbcbcb;
  margin: 0 0 15px;
}
.buyers-item__title{
  position: relative;
  font-size: 16px;
  padding: 0 0 0 20px;
  line-height: 1.4;
  box-sizing: border-box;
}
.buyers-item__title:before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 8px;
  height: calc(100% - 3px);
  background: linear-gradient(90deg,#00135e 0%,#00135e 50%,#4472c4 50%,#4472c4 100%); /* 小見出し左のオレンジとメインカラー */
}

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

  スズキヤTOPICS

---------------------------------*/
.topics__wp-content p{
  line-height: 1.7;
}
.topics__wp-content::after {
  display: block;
  clear: both;
  content: '';
}

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

  チラシ詳細
  お知らせ詳細
  バイヤーズセレクション詳細

---------------------------------*/
/*  
  共通
--------------------------*/
.simple-detail__content{
  max-width: 700px;
  margin: 0 auto;
  line-height: 1;
}
.simple-detail__image{
  max-width: 100%;
  margin: 0 auto 55px;
  display: block;
}
.simple-detail__title + .simple-detail__image{
  max-width: 100%;
  padding: 0 30px 20px;
  margin: 0 auto;
  box-sizing: border-box;
  display: block;
}
.simple-detail__contents{
  margin: 0 20px 50px;
  padding: 0 10px;
  line-height: 1.7;
}
.simple-detail__button-list{
  margin: 0 0 35px;
  padding: 0 30px;
}
.simple-detail__button-item{
  margin: 0 0 10px;
}
.simple-detail__button-link,
.list_btn{
  background: url(../img/common/arrow1.png) left center no-repeat;
  background-size: 24px;
  display: inline-block;
  box-sizing: border-box;
  text-decoration: underline;
  padding: 0 0 0 30px;
  font-size: 14px;
  font-weight: normal;
  color: #333;
  letter-spacing: 0.5px;
}
.list_btn:hover{
  text-decoration: none;
}
.simple-detail__button-link{
  background: #ffe9d3 url(../img/common/arrow1.png) left 10px center no-repeat;
  background-size: 24px;
  padding: 0 20px 0 40px;
  line-height: 36px;
  height: 36px;
}
.simple-detail .list_btn{
  float: right;
  margin: 0 0 40px;
}
.detail a:hover{
  text-decoration: none;
}
/*  
  お知らせ詳細
--------------------------*/
.news-detail__category{
  float: right;
  margin: 0 0 28px 0;
}
.news-detail__time{
  float: right;
  color: #555;
  line-height: 22px;
  margin: 0 15px 28px 0;
}
.simple-detail__main-title{
  clear: both;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  text-align: center;
  border-bottom: solid 1px #cdcdcd;
  line-height: 1.8;
  padding: 0 0 32px;
  position: relative;
  margin: 0 0 35px;
  letter-spacing: 1px;
}
.simple-detail__main-title:first-letter{
  color: #4472c4; /* 見出し１文字目のメインカラー */
}
.simple-detail__main-title:before{
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: 22px;
  left: 50%;
  margin-left: -20px;
  background: #4472c4; /* 見出し下のメインカラー */
}

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

  企業情報

---------------------------------*/
.company__header{
  padding: 0 0 10px;
}
.company__now{
  text-align: right;
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
  color: #333;
}
.company__content{
  padding: 0 3% 20px;
}
.company__subtitle{
  font-size: 24px;
  color: #333;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  line-height: 1;
  padding: 0 0 17px;
  text-align: center;
  margin: 0 0 50px;
}
.company__subtitle:before{
  content: "";
  width: 40px;
  height: 2px;
  background: #4472c4; /* 見出し下のメインカラー */
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}
.company__subtitle:first-letter{
  color: #4472c4; /* 見出し１文字目のメインカラー */
}
/*  
  経営方針
--------------------------*/
.policy{
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 65px 0 0;
}
.policy__item-title{
  font-size: 18px;
  font-weight: bold;
  color: #000;
  padding: 40px 20px 12px 60px;
  background: #f4f6ff;
  position: relative;
}
.policy__item-title:first-letter{
  color: #4472c4; /* 見出し１文字目のメインカラー */
}
.policy__item-title:before{
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  left: 0;
  top: 50px;
  background: #4472c4; /* 見出し左のメインカラー */
}
.policy__item-contents{
  padding: 0 20px 40px 60px;
  background: #f4f6ff;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 30px;
}
/*  
  企業概要
--------------------------*/
.outline{
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 65px 0 60px;
}
.outline__table{
  width: 100%;
  table-layout: fixed;
  border-top: solid 1px #cbcbcb;
}
.outline__table-header{
  width: 170px;
  font-size: 15px;
  color: #333;
  background: #f4f6ff;
  border-bottom: solid 1px #cbcbcb;
  padding: 15px 20px;
  vertical-align: top;
  line-height: 1.5;
}
.outline__table-item{
  font-size: 15px;
  color: #333;
  border-bottom: solid 1px #cbcbcb;
  padding: 15px 20px;
  line-height: 1.5;
}
.history{
  background: #f4f6ff;
  padding: 60px 0;
}
.history__content{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 0;
}
.history__table{
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  table-layout: fixed;
}
.history__table-item{
  vertical-align: top;
  box-sizing: border-box;
}
.history__text{
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  position: relative;
  padding: 23px 30px;
}
.history__table-item:first-child{
  width: 270px;
}
.history__table-item:first-child .history__text{
  color: #4472c4;
}
.history__table-row:nth-child(2n-1) .history__table-item{
  background: #f4f6ff;
}
.history__table-item:first-child .history__text:before{
  content: "";
  width: 118px;
  height: 1px;
  background: #4472c4;
  position: absolute;
  right: 0;
  top: 35px;
}
.history__table-item:first-child .history__text:after{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4472c4;
  position: absolute;
  right: 116px;
  top: 32px;
}
.history__table-item:last-child .history__text:after{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4472c4;
  position: absolute;
  left: 0;
  top: 32px;
}

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

  お問い合わせ

---------------------------------*/
.contact-content{
  padding: 50px 3%;
}
/*  
  STEP
--------------------------*/
.contact-step{
  overflow: hidden;
  text-align: center;
}
.contact-step__list{
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin: 0 0 40px;
}
.contact-step__list:before{
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: solid 1px #4472c4; /* STEP間の線 */
  position: absolute;
  top: 18px;
  left: 0;
  display: block;
  z-index: -1;
}
.contact-step__item{
  width: 100px;
  margin: 0 200px 0 0;
  float: left;
  color: #555;
  text-align: center;
}
.contact-step__item:last-child{
  margin: 0;
}
.contact-step__step-title{
  width: 100%;
  display: block;
  height: 36px;
  line-height: 34px;
  border: solid 1px #4472c4; /* STEPの枠線 */
  margin: 0 0 10px;
  border-radius: 30px;
  box-sizing: border-box;
  background: #fff;
}
.contact-step__item--active .contact-step__step-title{
  background: #4472c4;
  color: #fff;
}
.contact-step__message{
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 40px;
  text-align: center;
}
/*  
  入力項目
--------------------------*/
.contact-form__table{
  width: 100%;
  border-top: solid 1px #cbcbcb;
  margin: 0 0 40px;
}
.contact-form__th{
  font-size: 15px;
  vertical-align: top;
  background: #f4f6ff;
  width: 270px;
  height: 70px;
  padding: 24px 20px;
  box-sizing: border-box;
  border-bottom: solid 1px #cbcbcb;
}
.contact-form__required{
  width: 50px;
  height: 20px;
  line-height: 20px;
  background: #4472c4;
  color: #fff;
  font-size: 14px;
  display: block;
  text-align: center;
  float: right;
}
.contact-form__td{
  font-size: 15px;
  vertical-align: middle;
  height: 70px;
  padding: 15px 20px;
  box-sizing: border-box;
  overflow: hidden;
  border-bottom: solid 1px #cbcbcb;
}
.contact-form__input,
.contact-form__textarea{
  max-width: 650px;
  width: calc(100% - 130px);
}
.contact-form__textarea{
  height: 120px;
}
.contact-form .select{
  width: 300px;
}
.contact-form__rule{
  float: right;
  color: #555;
  line-height: 40px;
}
.contact-form__input--phone{
  width: 300px;
}
.contact-form__agree-text{
  display: block;
  margin: 0 0 9px;
}
.contact-form__agree-link{
  color: #4472c4;
  text-decoration: underline;
}
.contact-form__agree-link:hover{
  text-decoration: none;
}
.contact-form .checkbox{
  padding: 23px 20px;
}
.contact-form__input--zip{
  width: 160px;
  float: left;
}
.contact-form__zip-btn{
  width: 130px;
  float: left;
  margin: 0 0 0 10px;
  border: solid 1px #cbcbcb;
  box-sizing: border-box;
  height: 40px;
  line-height: 38px;
  text-align: center;
}
.contact-form__zip-btn:hover{
  background: #cbcbcb;
}
/*  
  電話問い合わせ
--------------------------*/
.contact__text{
  border: solid 1px #cbcbcb;
  text-align: center;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  padding: 20px 30px;
  margin: 40px 0 50px;
}
.contact-tel{
  background: #f4f6ff;
  padding: 20px 30px;
  text-align: center;
  position: relative;
}
.contact-tel__nunber{
  color: #4472c4;
  font-weight: bold;
  font-size: 18px;
  padding: 0 0 0 18px;
  background: url(../img/common/tel.png) left center no-repeat;
  background-size: 18px;
  display: inline-block;
  pointer-events: none;
}
.contact-tel__to{
  color: #333;
}
.contact-tel__time{
  font-size: 13px;
  display: inline-block;
}
.contact-tel__comment{
  margin: 7px 0 0;
}
.contact-tel__link{
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.contact-form__zip-btn + .error{
  float: left;
  clear: both;
}
.contact-form__actions{
  text-align: center;
  letter-spacing: -.4em;
}
.contact-form__action-button{
  letter-spacing: 0.5px;
  margin: 0 10px;
  display: inline-block;
}
/*  
  確認ページ
--------------------------*/
.contact__conf-msg{
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 50px;
  color: red; /* エラーメッセージの赤 */
}
/*  
  完了ページ
--------------------------*/
.contact-end-content{
  padding: 50px 3% 60px;
}
.contact-end__title{
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 35px;
  text-align: center;
}
.contact-end__text{
  font-size: 15px;
  margin: 0 0 20px;
  line-height: 1.7;
  color: #555;
  text-align: center;
}
.contact--end .contact-tel{
  max-width: 800px;
  margin: 30px auto 50px;
}
.contact--end .contact-form__actions{
  border-top: solid 1px #cbcbcb;
  padding: 40px 0 0;
}

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

  プライバシーポリシー

---------------------------------*/
.privacy-section{
  max-width: 660px;
  margin: 0 auto;
  line-height: 1;
}
.privacy__title{
  clear: both;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  text-align: center;
  /* border-bottom: solid 1px #cdcdcd; */
  line-height: 1.8;
  padding: 0 0 32px;
  position: relative;
  margin: 0 0 35px;
  letter-spacing: 1px;
}
.privacy__title:before{
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: 22px;
  left: 50%;
  margin-left: -20px;
  background: #4472c4; /* 見出し下のメインカラー */
}
.privacy__message{
  max-width: 660px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.7;
}
.privacy-section__title{
  margin: 0;
}
.privacy-section__content{
  padding: 20px 10px 25px;
}
.privacy-section__text{
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 25px;
}
.privacy-section__link{
  text-decoration: underline;
}
.privacy-section__link:hover{
  text-decoration: none;
}
.privacy-section__list{
  margin: 0 0 25px;
}
.privacy-section__list-item{
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  padding: 0 0 0 15px;
}
.privacy-section__list-item:before{
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #4472c4; /* リスト左のメインカラー */
  left: 0;
  top: 11px;
}
/*---------------------------------

  サイトマップ

---------------------------------*/
.sitemap-list{
  overflow: hidden;
  padding: 0 0 100px;
}
.sitemap-list__item{
  width: 31%;
  margin: 0 3.5% 0 0;
  border-bottom: solid 1px #cbcbcb;
  padding: 44px 10px 44px 20px;
  box-sizing: border-box;
  float: left;
}
.sitemap-list__item:nth-child(3n){
  margin: 0;
}
.sitemap-list__link{
  text-decoration: underline;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  display: inline-block;
  padding: 0 0 0 20px;
  position: relative;
}
.sitemap-list__link:hover{
  color: #4472c4; /* ホバー時メインカラー */
}
.sitemap-list__link:before{
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 8px;
  height: calc(100% - 2px);
  background: linear-gradient(90deg,#00135e 0%,#00135e 50%,#4472c4 50%,#4472c4 100%); /* 小見出し左のオレンジとメインカラー */
}

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

  404ページ

---------------------------------*/
.not-found__content{
  padding: 120px 3% 20px;
}
.not-found__title{
  text-align: center;
  font-size: 40px;
  margin: 0 0 30px;
}
.not-found__text{
  text-align: center;
  font-size: 16px;
  margin: 0 0 50px;
}

}