@charset "UTF-8";

body {
	margin: 0 auto;
}

body.bg-img {
	background-color: pink;
}

h1, h2, h3 {
	margin: 10px 0;
}

h2.head {
	color:#222;
}

@media screen and (max-width: 714px) {
	h2.head {
		border-bottom: 3px solid #222;
		color:#222;
		width: 60%;
		text-align: center;
		margin: 0 auto;
		padding-top: 40px;
		margin-bottom: 20px;
	}
}

h2.head2 {
	color:#222;
	padding-top: 60px;
  }
  
.container {
	overflow: hidden;
}

.container::after {
	content: "";
	clear: both;
	display: block;
}

@media screen and (max-width: 960px) {
	/* 959px以下に適用されるCSS（タブレット用）
     */
      main {
        float: left;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
      }
      h1, h2, h3 {
        margin: 10px 0;
        text-align: left;
      }
     
      .container {
        overflow: hidden;
      }
      .container::after {
        content: "";
        clear: both;
        display: block;
      }
    
}
@media screen and (max-width: 751px) {
   
      main {
        float: left;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
      }
      h1, h2, h3 {
        margin: 10px 0;
      }
    
}
/*----------ここまで----------*/

/*タイトルを真ん中に表示*/
.title-box {
  position: relative;
}

.title-box p {
  font-family: "Courier New","UD デジタル 教科書体 N-B";
  font-size:34px;
}

@media screen and (max-width: 540px) {
.title-box p {
  font-family: "Courier New","UD デジタル 教科書体 N-B";
  font-size:28px;
}
}


@media screen and (max-width: 440px) {
  .title-box p {
    font-family: "Courier New","UD デジタル 教科書体 N-B";
    font-size:22px;
  }
  }

.title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 45px;
  color: #ffffff;
  white-space: nowrap;
  -webkit-text-stroke: 1.5px #515254;
}

.headimage {
  height: 400px;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  padding: 30px;
}

@media (max-width: 1024px) {
  .title {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: #fff;
    white-space: nowrap;
    -webkit-text-stroke: 1.5px #515254;
  }
}

.subtitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
  -webkit-text-stroke: 1px #333;
}

@media (max-width: 1024px) {
  .subtitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
    -webkit-text-stroke: 1px #333;
  }
}

.margin {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .margin{
    width: 100%;
    margin: 0 auto;
  }
}

element.style {
  border: 0px gray solid;
}

/*全体のボタンcss*/
.readbtn {
	cursor: pointer;
    display: block;
    width: 20%;
    max-width: 300px;
    margin: 15px auto;
    padding: 5px;
    border: 0;
    border-radius: 30px;
    color: ghostwhite;
    font-size: 20px;
    background: #00afcc;
    box-shadow: 0 4px 0 hsl(200deg 35% 50%), 0 6px 0 rgba(0,0,0,.2);
    transition: color .3s, background .3s, box-shadow .3s, transform 0.3s;
    font-weight: bold;
}


.readbtn:hover {
	color: white;
	background: hsl(200deg 62% 75%);
	box-shadow: 0 3px 0 hsl(200deg 47% 60%), 0 6px 0 rgba(0,0,0,.2);
	transform: translateY(3px);
}
.readbtn:active {
	color: gainsboro;
	background: hsl(200deg 47% 60%);
	box-shadow: 0 0 0 hsl(200deg 37% 50%), 0 0 0 rgba(0,0,0,.2);
	transform: translateY(6px);
	transition-duration: .1s;
	
}

@media screen and (max-width: 960px) {
	.readbtn {
		width: 25%;
		font-size: 18px;
	}

}

@media screen and (max-width: 480px) {
	.readbtn {
		width: 25%;
		font-size: 14px;
	}
}


/*QRの位置調整*/
.qrbox {
  position: relative;
  bottom: 370px;
  right: 35px;
  float: right;
  width: 110px;
  height: 110px;
  background-color: white;
  border: 3px white solid;
  padding: 2px;
}

/*お問い合わせボタン*/
.button_info a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto;
  max-width: 330px;
  padding: 10px 20px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #6bb6ff;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 3px;
  border-radius: 50px;
  margin-top: 30px;
}

.button_info a:visited {
  color: #FFF;
}


.button_info a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 46%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button_info a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}


/*-----------------------------------------------PR文のcss--------------------------------------*/
.headline-about {
  margin: auto;
  font-size: 40px;
  border-bottom: 1.5px solid #000;
  width: 70%;
  text-align: center;
  margin-bottom: 75px;
  font-size: 35px;
}

.widget-container-about {
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
  padding:0px 30px
}

.h2-widget-container3 {
  text-align: center;
  margin-top: 75px;
  margin-bottom: 75px;
  margin: auto;
  font-size: 15pt;
}

@media screen and (max-width: 480px) {
.h2-widget-container3 {
  text-align: center;
  margin-top: 75px;
  margin-bottom: 75px;
  margin: auto;
  font-size: 15pt;
  font-weight: 500;
  text-align: left;
}
}
  /*-----------------------------------------------ここまで--------------------------------------*/

/*-----------------------------------------------メニューのcss--------------------------------------*/
.headline-menu {
  margin: auto;
  font-size: 40px;
  border-bottom: 1.5px solid #000;
  width: 70%;
  text-align: center;
  margin-top: 150px;
  margin-bottom: 75px;
  font-size: 35px;
}

.menuimage {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.menuimages1 {
  width: 25%;
  position: relative;
  margin: 20px;
  z-index: 1;
  box-sizing: border-box;
}

.menuimages2 {
  width: 25%;
  position: relative;
  margin: 20px;
  z-index: 1;
  box-sizing: border-box;
}

.menuimages3 {
  width: 25%;
  position: relative;
  margin: 20px;
  z-index: 1;
  box-sizing: border-box;
}

.menuimages4 {
  width: 25%;
  position: relative;
  margin: 20px;
  z-index: 1;
  box-sizing: border-box;
}

.menuimages5 {
  width: 25%;
  position: relative;
  margin: 20px;
  z-index: 1;
  box-sizing: border-box;
}

.menuimages6 {
  width: 25%;
  position: relative;
  margin: 20px;
  z-index: 1;
  box-sizing: border-box;
}

.menuimages7 {
  width: 25%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  margin: 20px;
}

.menuimages8 {
  width: 25%;
  position: relative;
  margin: 20px;
  z-index: 1;
  box-sizing: border-box;
}

.menuimages9 {
  width: 25%;
  position: relative;
  margin: 20px;
  z-index: 1;
  box-sizing: border-box;
}

@media screen and (max-width: 751px) {
  .menuimages1 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }

  .menuimages2 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }
  .menuimages3 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }
  .menuimages4 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }
  .menuimages5 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }
  .menuimages6 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }
  .menuimages7 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }
  .menuimages8 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }
  .menuimages9 {
    width: 38%;
    position: relative;
    margin: 20px;
    z-index: 1;
    box-sizing: border-box;
  }
}
/*-----------------------------------------------ここまで--------------------------------------*/

/*---------------------------------------------pectinateのcss--------------------------------------*/
.pictImgBox{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 96%;
  margin: 0 auto;
}

.pictimgsize{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 300px;
  object-fit: cover;
  padding: 10px;
}


@media screen and (max-width: 751px) {
  .pictImgBox{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .pictImgBox{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .pictimgsize{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 180px;
    object-fit: cover;
    padding: 12px;
  }

}




.

.widget-container-menu{
  padding: auto;
}



/*-----------------------------------------------ここまで--------------------------------------*/

/*-----------------------------------------------タブ形式メニューのcss--------------------------------------*/

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 30px;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/4);
  height: 50px;
  border-bottom: 3px solid #333;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
}


/*選択されているタブのコンテンツのみを表示*/
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content,
#tab4:checked ~ #tab4_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #333;
  color: #fff;
}



/*モバイルファースト*/

.card-container{
  color: #333;
  display: flex;
  width: 100%;
}
.card-container a{
  text-decoration: none;
  color: #333;
}

.card-text{
  width:100%;
}
.card-text h2{
  padding-top: 10px;
  font-size: 1em;
  text-align: left;
}
.card-text p{
  font-size: 1em;
  text-align: right;
  margin: 5px;
}
.card-img{
}

.tabimg{
  width:100px;
  height:100px;
  object-fit: cover;
  margin: 10px;
}

/*PCサイズ*/

@media screen and (min-width:650px) {
  .card-container{
  }

  .card-text h2{
      font-size: 1.3em;
      text-align: left;
  }
  .card-text p{
      font-size: 1em;
      text-align: right;
      margin: 5px;
  }
  

  

}


.tabpr {
  font-size: 10pt;
  /* margin: 4px; */
  padding-right: 20px;
}

@media screen and (max-width:649px){
/*タブのスタイル*/
.tab_item {
  width: calc(100%/4);
  height: 50px;
  border-bottom: 3px solid #333;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 10px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.card-text h2{
  font-size: 14pt;
  text-align: left;
}

.tabprnoimg{
  font-size: 10pt;
  margin: 10px;
}


.tabpr{
  font-size: 10pt;
  margin-top: 4px;
}

}


.tabprnoimg{
  font-size: 10pt;
  margin: 10px;
}

hr.tab{
  width: 100%;
  border-top: 2px dotted #333;
}
/*-----------------------------------------------ここまで--------------------------------------*/



/*-----------------------------------------------店舗情報のcss--------------------------------------*/
.headline-access {
  margin: auto;
  font-size: 40px;
  border-bottom: 1.5px solid #000;
  width: 70%;
  text-align: center;
  margin-top: 150px;
  margin-bottom: 75px;
  font-size: 35px;
}

.widget-container-access {
  margin: auto;
  padding: 30px;
  background-color: #FFF;
}

.infoth,
.infotd {
  border: solid 1.5px; /* 枠線指定 */
}

.infotable {
  border-collapse: collapse; /* セルの線を重ねる */
  margin: auto;
  width: 100%;
  background-color: #FFF;
}

.infoth {
  width: 300px; /* 幅指定 */
  height: 50px; /* 高さ指定 */
  text-align: center;
  background-color: #FFF;
  color: #333;
}

.infotd {
  width: 1000px; /* 幅指定 */
  height: 40px; /* 高さ指定 */
  padding: 8px;
  word-break: break-all;
  text-align: left;
}

.infotr{
  max-width: 10px;
}


@media screen and (min-width: 1000px) {
	.infoA{
		width: 70%;
		margin: 15px;
	}

	.infoB {
		width: 70%;
		margin: 15px;
    z-index: 1;
    padding-top: 50px;
	}

  .info-conteiner{
    display: flex;
    width: 97%;
    margin: 0 auto;
  }

  .infoimg{
        width: 130%;
    }


    .widget-container-access {
      margin: auto;
      padding: 30px;
      box-shadow: 0 0 8px gray;
      background-color: #FFF;
    }

}

@media screen and (max-width: 999px) {

  .infoimg{
        width: 100%;
        padding: 24px;
    }
}

.infotitle{
  text-align: center;
  font-size: 30px;
}



/*-----------------------------------------------ここまで--------------------------------------*/

/*-----------------------------------------------地図のcss--------------------------------------*/

.map {
  position: relative;
  padding-top: 20px;
  margin: 30px;
}

.map iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
}
/*-----------------------------------------------ここまで--------------------------------------*/

/*-----------------------------------------------動画のcss--------------------------------------*/
.tenantvideo{
  width: 60%;
}



@media screen and (max-width: 740px) {
  .tenantvideo{
    width: 90%;
  }
}  


@media screen and (max-width: 480px) {
  .tenantvideo{
    width: 86%;
  }
}  



.videobox{
  text-align: center;
}

/*-----------------------------------------------ここまで--------------------------------------*/


/*-----------------------------------------------NEWSのcss--------------------------------------*/

/*新しいニュースのcss*/

.news-list {
	list-style-type: none;
	padding: 0;
  }

  .news-item {
	border-bottom: 1px solid #222;
	border-top:1px solid #222;
	background-color: #FFF;
	padding: 10px;
	width: 90%;
	margin: 0 auto;
  margin-top:15px
  }

  .news-item-even{
	background-color:#FBE4C7
  }

 


.news-list a{
	text-decoration: none;
	color:#222;
}



  .news-p1 {
	margin: 0;
	text-align: left;
	font-size: 10pt;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
  }

  .news-p2 {
	margin: 0;
	text-align: left;
	padding-left: 5%;
	font-size:12pt;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 8px;
  }

  @media (max-width: 600px) {
	.news-item {
	  padding: 5px;
	}
  }

  .news-city{
	background-color:#FFC666;
	color:#FFF;
	border-radius: 10px;
    padding: 0px 10px;
}

.news-item+.news-item {
	border-top:none;
}

/*---------ここまで------------*/




.headline-news {
  margin: auto;
  font-size: 40px;
  border-bottom: 1.5px solid #000;
  width: 70%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 75px;
  font-size: 35px;
}

.widget-container-news {
}
.msr_newslist01 {
  border-top: 1px solid #aaaaaa;
  width: 100%;
}
.msr_newslist01 li {
  border-bottom: 1px solid #aaaaaa;
  font-size: 14px;
}
.msr_newslist01 li a {
  box-sizing: border-box;
  color: #000000;
  display: table;
  padding: 10px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  width: 100%;
}
.msr_newslist01 li a:hover {
  background: #eeeeee;
  text-decoration: none;
}
.msr_newslist01 li div {
  display: table-cell;
  width: 144px;
}
.msr_newslist01 li p {
  display: table-cell;
  padding-left: 20px;
  vertical-align: middle;
}

/* 時間の設定 */
.msr_newslist01 li time {
  display: table-cell;
  vertical-align: top;
  width: 90px;
}

/* カテゴリの設定 */
.msr_newslist01 li .cat01,
.msr_newslist01 li .cat02 {
  background-color: #1b73ba;
  border-radius: 1px;
  color: #ffffff;
  font-size: 9px;
  padding: 0 2px;
  text-align: center;
  width: 50px;
}
.msr_newslist01 li .cat02 {
  background-color: #0e3a5f;
}

.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  padding: 10px 10px;
}
.news-list .item:first-child a {
}
.news-list .item .date {
  margin: 0;
  min-width: 140px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .category {
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
  text-align: left;
}
.news-list .item .category span {
  background: #999;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}
.news-list .item .newstitle {
  margin: 0;
  width: 100%;
  text-align: left;
}
.news-list .item a:hover .title {
  color: #00f;
}

@media screen and (max-width: 767px) {
  .news-list .item a {
    flex-wrap: wrap;
  }
  .news-list .item .date {
    min-width: 100px;
  }
  .news-list .item .title {
    margin-top: 10px;
  }
}

/* 装飾 */

* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}


.info dl {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  }
  .info dt {
  padding-bottom: 6px;
  text-align: left;
  }
  .info dt span{
  padding-left: 12px;
  }
  
  .info dd{
    text-align: left;
    margin-inline-start: 1px;
  }

  @media screen and (min-width: 768px) {
  .info dt {
  clear: left;
  float: left;
  width: 20%;
  text-align: left;
  }
  .info dd {
  margin-left: 1%;
  }
  }


/*-----------------------------------------------ここまで--------------------------------------*/

/*----------coupon css----------*/
.Cpcontainer {
	position: relative;
	width: 48%; /* 画像の幅に合わせて調整 */
	margin: 0 auto;
  margin-top: 20px;
  }
  
  .Cpimage {
	display: block;
	max-width: 100%;
  }
  
  .Cptext {
	position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #222;
    font-size: 16px;
    width: 90%;
	font-weight:bold;
	white-space: nowrap;
  }

  .CpTname{
	position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #222;
    font-size: 18px;
    width: 90%;
    font-weight: bold;
	white-space: nowrap;

  }

  .Cptitle{
	position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #222;
    font-size: 18px;
    width: 90%;
    font-weight: bold;
	white-space: nowrap;

  }

  @media screen and (max-width: 1080px) {
	.Cptext {
		font-size:14px;
	}

	}


	@media screen and (max-width: 960px) {
		.Cptext {
			font-size:14px;
		}
	
		.Cptitle{
			font-size:14px;
		}
	
		.CpTname{
			font-size:14px;
		}
		}


  @media screen and (max-width: 751px) {
	.Cptext {
		font-size:24px;
	}

	.Cptitle{
		font-size:24px;
	}

	.CpTname{
		font-size:24px;
	}

  .Cpcontainer {
    position: relative;
    width: 90%; /* 画像の幅に合わせて調整 */
    margin: 0 auto;
    margin-top: 20px;
    }

	}

	@media screen and (max-width: 480px) {
		.couponbox{
			display: contents;
			flex-wrap: wrap;
			width: 100%;
			margin: 0 auto;
		}

		.Cpcontainer {
			position: relative;
			width: 90%;
			margin: 0 auto;
      margin-top: 20px;

		  }

		  .Cptext {
			font-size:14px;
			top: 75%;
		}
	
		.Cptitle{
			font-size:18px;
			top: 55%;

		}
	
		.CpTname{
			font-size:18px;
			top: 35%;

		}


		}

		.couponbox{
			display: flex;
			flex-wrap: wrap;
			width: 100%;
			margin: 0 auto;
		}

/*新しいのここまで*/



.headline-coupon {
	margin: auto;
	font-size: 40px;
	border-bottom: 1.5px solid #000;
	width: 70%;
	text-align: center;
	margin-top: 100px;
	margin-bottom: 75px;
	font-size: 35px;
}

.couponwidget {
	margin-bottom: 30px;
}


h2.bannar {
  border-bottom: 6px double #333;
    width: 50%;
    margin: 20px auto 0px;
    text-align: center;
}

.headline-coupon {
	margin: auto;
	font-size: 40px;
	border-bottom: 1.5px solid #000;
	width: 70%;
	text-align: center;
	margin-top: 100px;
	margin-bottom: 75px;
	font-size: 35px;
}

.coupon-widget {
	margin-bottom: 30px;
}





@media screen and (max-width: 1479px) {
	.widget-container-coupon {
		padding: 30px;
	}
}
@media screen and (min-width: 1480px) {
	.widget-container-coupon {
		padding: 50px;
	}
}

.coupon {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 0 auto;
	width: 100%;
	max-width: 620px;
	background: #eee;
	padding: 40px 20px;
	float: left;
}
.price {
	font-size: 30px;
	font-weight: 900;
	color: #f56359;
	text-align: center;
}
.date {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

/* circle-css */

.coupon::before,
.coupon::after {
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background: #fff;
	left: -15px;
	width: 30px;
	height: 30px;
}
.coupon::before {
	top: -15px;
}
.coupon::after {
	bottom: -15px;
}
.coupon-inner::before,
.coupon-inner::after {
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background: #fff;
	right: -15px;
	width: 30px;
	height: 30px;
}
.coupon-inner::before {
	top: -15px;
}
.coupon-inner::after {
	bottom: -15px;
}

@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.btn,
a.btn,
button.btn {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 10px 50px 10px 50px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #212529;
	border-radius: 0.5rem;
}

/*ボタン周りの余白用*/
a.btn-coupon {
	line-height: 1.2;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	width: px;
	height: 120px;
	margin: 0 auto;
	padding: 0;
}

a.btn-coupon .left {
	width: 100%;
	padding-top: 20px;

	-webkit-transition: all 0.6s;

	transition: all 0.6s;
	-webkit-transform-origin: top left;
	transform-origin: top left;

	border: 2px solid #222;
	border-right: 0;
	background: #fff;

	-webkit-transform-style: preserve-3d;

	transform-style: preserve-3d;
}

a.btn-coupon .left span {
	font-size: 1rem;
}

a.btn-coupon .left span.txt1 {
	font-size: 1rem;
	color: #222;
}

a.btn-coupon .left em {
  font-size: 14pt;
  font-style: normal;
  display: block;
  color: #e94919;
  margin: 10px 0px;
}

a.btn-coupon .right {
	position: relative;

	width: 20%;
	height: 100%;

	-webkit-transition: all 0.6s;

	transition: all 0.6s;
	-webkit-transform-origin: top left;
	transform-origin: top left;

	color: #fff;
	border-left: 2px dotted #fff;
	background: #222;

	-webkit-transform-style: preserve-3d;

	transform-style: preserve-3d;
}

a.btn-coupon .right span {
	font-size: 1.4rem;
	line-height: 1;

	position: absolute;
	top: -0.8rem;
	left: calc(50% - 0.8rem);

	display: inline-block;

	-webkit-transform: rotate(90deg);

	transform: rotate(90deg);
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
}

a.btn-coupon:hover .left {
	-webkit-transform: rotateX(-20deg);
	transform: rotateX(-20deg);
}

a.btn-coupon:hover .right {
	-webkit-transform: rotateX(-20deg) rotateY(75deg);
	transform: rotateX(-20deg) rotateY(75deg);
}

@media screen and (min-width: 900px) {
	.coupon-content {
		width: 50%;
		height: 100px;
		margin: 15px;
	}
    
   .coupon-flex {
		display: flex;
	}
}

/*-----------------------------------------------ここまで--------------------------------------*/

/*-----------------------------------------------求人のcss--------------------------------------*/
.headline-recruit {
  margin: auto;
  font-size: 40px;
  border-bottom: 1.5px solid #000;
  width: 70%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 75px;
  font-size: 35px;
}

.widget-container-recruit {
  margin: auto;
  text-align: center;
  padding:30px;
}

/* 装飾 */

* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}



.oshirase {
  width: 90%;
  margin: 0 auto;
}
.oshirase table {
  margin: 0 auto;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-spacing: 0;
  border: 1px gray solid;
}
.oshirase td {
  padding: 10px;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 1px gray solid;
}
.oshirase tr:last-child td {
  border: none !important;
}
.oshirase a {
  /*text-decoration: none;*/
  color: #000000;
}
.oshirase a:visited {
  color: #000000;
}

.sns-icon {
	border: none;
	margin-top: 5px;
	width: 30px;
}

/*-----------------------------------------------ここまで--------------------------------------*/



