@charset "UTF-8";
/* CSS Document */
/*------------------------------------
progress bar
--------------------------------------*/
.pg {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  width: 1%;
  height: 6px;
  background-color: #ccc;
  -webkit-transition: width 300ms cubic-bezier(0, 0, 1, 1);
  -moz-transition: width 300ms cubic-bezier(0, 0, 1, 1);
  -ms-transition: width 300ms cubic-bezier(0, 0, 1, 1);
  -o-transition: width 300ms cubic-bezier(0, 0, 1, 1);
  transition: width 300ms cubic-bezier(0, 0, 1, 1); }

/*------------------------------------
common layout
--------------------------------------*/
.l-inner {
  max-width: 1280px;
  margin: 0 auto; }

.l-inner__small {
  max-width: 960px;
  margin: 0 auto 50px; }

.l-row {
  display: flex;
  justify-content: space-between; }

.l-col {
  max-width: 100%; }

/*------------------------------------
header
--------------------------------------*/
.p-Header {
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.c-Header__inner {
  padding: 30px 0; }

.c-Header__link {
  display: block;
  margin: 0;
  padding: 0;
  width: 308px;
  height: 25px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-size: 100%; }

.c-Header__navList {
  position: relative; }

.c-Header__navList:after {
  -webkit-transition: .2s ease;
  transition: .2s ease; }

.c-Header__navLists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #999;
  list-style: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end; }

.c-Header__navList {
  display: inline-block;
  margin-right: 40px;
  position: relative; }

.c-Header__navList:not(:last-child):after {
  content: "/";
  display: inline-block;
  position: absolute;
  right: -22px; }

.c-Header__navList::before {
  content: "";
  display: block;
  top: 25px;
  width: 0;
  height: 1px;
  background: #eb5505;
  box-sizing: content-box;
  position: absolute;
  transition: width 0.3s, padding 0.3s, left 0.3s;
  left: 50%; }

.c-Header__navList:hover::before {
  width: 100%;
  padding: 0 5px;
  left: -5px; }

.c-Header__navList a {
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 500;
  color: #565252;
  text-decoration: none; }

.h_btn_border {
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #bb342e;
  border-radius: 1px;
  width: 100%;
  height: 3px; }

/*------------------------------------
footer
--------------------------------------*/
.p-Footer {
  background: #fafafa; }

.c-Footer__inner {
  position: relative;
  max-width: 1280px;
  margin: auto;
  padding: 40px; }

.c-Footer__top {
  text-align: center; }

.c-Footer__top a {
  display: inline-block;
  border: #ccc 1px solid;
  border-radius: 35px;
  background: #fff;
  padding: 15px 30px;
  position: relative;
  color: #666; }

.c-Footer__top a:before {
  display: block;
  content: "";
  vertical-align: middle;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.c-Footer__top a:hover:before {
  top: 3px;
  position: relative; }

.c-Footer__navLists {
  margin: 32px 0 0;
  text-align: center; }

.c-Footer__navLists li {
  margin: 0 0 4px;
  list-style-type: none;
  display: inline-block; }

.c-Footer__navLists li:not(:last-child):after {
  content: "/";
  margin: 0 5px; }

.c-Footer__navLists a {
  display: inline-block;
  font-size: 1.2rem;
  text-decoration: none;
  color: #666;
  line-height: 1; }

.c-Footer__navLists a:hover {
  color: #eb5505;
  text-decoration: underline; }

.c-Footer__group {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  display: block;
  width: 108px;
  height: 108px;
  background-image: url(../images/logo_au_fg2.png);
  background-repeat: no-repeat;
  background-size: 100%; }

.c-Footer__group a {
  display: block;
  width: 108px;
  height: 108px; }

.c-Footer__copyright {
  background: #fff;
  padding: 15px; }

/*------------------------------------
common parts
--------------------------------------*/
/* パンくず */
.p-Bread {
  margin: 15px auto; }

.c-BreadList {
  display: inline; }

.c-BreadList:not(:last-child):after {
  content: ">";
  margin: 0 5px; }

.c-BreadList a {
  color: #eb5505; }

.c-BreadList a:hover {
  text-decoration: underline; }

/* 見出し */
.c-Content__titleLv1 {
  font-size: 3rem;
  font-weight: normal;
  padding: 30px;
  position: relative;
  margin: 80px 0 50px; }

.c-Content__titleLv1 span {
  position: relative;
  display: inline-block; }

.c-Content__titleLv1 span:before {
  content: "";
  width: 3px;
  height: 100%;
  background: #eb5505;
  -moz-transform: skew(5deg);
  -webkit-transform: skew(5deg);
  transform: skew(5deg);
  position: absolute;
  left: -10px; }

.c-Content__titleLv1:before {
  content: "";
  height: 1px;
  width: 90%;
  position: absolute;
  top: 0;
  left: 0;
  background: #cccccc;
  background: -moz-linear-gradient(left, #cccccc 0%, #ffffff 100%);
  background: -webkit-linear-gradient(left, #cccccc 0%, #ffffff 100%);
  background: linear-gradient(to right, #cccccc 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#ffffff',GradientType=1 ); }

.c-Content__titleLv1:after {
  content: "";
  height: 1px;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #cccccc;
  background: -moz-linear-gradient(left, #cccccc 0%, #ffffff 100%);
  background: -webkit-linear-gradient(left, #cccccc 0%, #ffffff 100%);
  background: linear-gradient(to right, #cccccc 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#ffffff',GradientType=1 ); }

.c-Content__titleLv2 span {
  border-bottom: #ccc 3px solid;
  display: inline-block;
  padding: 15px;
  position: relative;
  margin: 30px auto;
  left: 0;
  right: 0; }

.c-Content__titleLv2 span:before {
  content: "";
  width: 50px;
  height: 3px;
  background: #eb5505;
  position: absolute;
  left: 0;
  bottom: -3px; }

.c-Content__titleLv3 {
  border-left: #eb5505 5px solid;
  padding: 0 0 0 10px;
  margin: 20px auto;
  font-weight: bold; }

.c-Content__titleLv4 {
  font-weight: bold; }

.c-Content__titleLv5 {
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  margin: 80px 0;
  color: #eb5505;
  text-align: center;
  letter-spacing: 14px;
}

.c-Content__titleLv5:after {
  content: "";
  height: 6px;
  width:100%;
  max-width: 700px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #eb5505;
}

.c-Content__titleLv6 {
  font-size: 3.4rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
  color: #eb5505;
  text-align: center;
  letter-spacing: 4px;
  overflow: visible;
}

.c-Content__titleLv6:after {
  content: "";
  height: 1px;
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #cccccc;
  transform: translateX(-50%);
}

/* 画像 */
.c-Content__image img {
  max-width: 100%;
  height: auto; }

/* テーブル表示 */
.c-Content__table {
  margin: 50px 0;
  width: 100%;
  border-bottom: #ccc 1px dotted;
  border-collapse: collapse;}
.c-Content__must {
  font-size: 1.2rem;
  float: right;
  background: #dc143c;
  border-radius: 5px;
  color: #fff;
  padding: 3px;}
.c-Content__table dt {
  float: left;
  padding: 14px;
  width: 250px;
  margin: 1px 2% 1px 0;
  border-top: #fff 1px solid; }

.c-Content__table dd {
  padding: 15px;
  border-top: #ccc 1px dotted;
  border-bottom: #fff 1px solid;
  background: #fff;
  border-left: #fff 250px solid; }
.c-Content__table th {
  padding: 14px;
  margin: 1px 2% 1px 0;
  font-weight: normal;
  border-top: #ccc 1px dotted;
  border-bottom: #ccc 1px dotted;
  width: 30%; }

.c-Content__table td{
  padding: 15px;
  border-top: #ccc 1px dotted;
  border-bottom: #ccc 1px dotted;
  background: #fff; }
.c-Content__table dd.gray {
  border-left-color: #efefef; }
.c-Content__table th.gray {
  background: #efefef; }

.c-Content__table2 {
  width: 100%;
  border-bottom: #ccc 1px dotted;
  border-collapse: collapse;
  margin: 15px 0 50px;
}
.c-Content__table2 th {
  padding: 14px;
  margin: 1px 2% 1px 0;
  font-weight: normal;
  border:#ccc 1px solid;
  background: #efefef;}
.c-Content__table2 th:nth-child(1){
  width: 20%;
}
.c-Content__table2 th:nth-child(2){
  width: 65%;
}
.c-Content__table2 th:nth-child(3){
  width: 15%;
}
.c-Content__table2 td{
  padding: 15px;
  border:#ccc 1px solid;
  background: #fff; 
}


.c-Content__table3 {
  width: 100%;
  border-bottom: #ccc 1px dotted;
  border-collapse: collapse;
  margin: 15px 0 50px;
}
.c-Content__table3 tr:nth-child(1){
  width: 50%;
}
.c-Content__table3 tr:nth-child(2){
  width: 50%;
}
.c-Content__table3 td{
  padding: 5px;
  border:#ccc 1px solid;
  background: #fff; 
}

  
/* pager */
.p-Pager {
  text-align: center;
  margin: 50px auto; }

.p-Pager li {
  display: inline-block;
  margin: 0 5px; }

.p-Pager li a,
.p-Pager li span {
  padding: 5px 8px;
  color: #eb5505;
  border: solid 1px #eb5505;
  text-align: center;
  display: block; }

.p-Pager li span.current {
  color: #fff;
  background: #eb5505; }

/* 親ページのヘッダー */
.p-PageHead {
  position: relative; }

.c-PageHead {
  padding: 19.44% 0 0 0; }

.c-PageHead__title {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
  padding: 10% 8%;
  margin-bottom: 0;
  color: #FFF;
  font-size: 2.5rem;
  letter-spacing: 4px;
  font-weight: 900;
  text-align: center; }

.c-PageHead__title span {
  font-weight: normal;
  font-size: 1.5rem;
  position: relative; }

.c-PageHead__title span:before, .c-PageHead__title span:after {
  content: '';
  z-index: 1;
  display: inline-block;
  width: 100px;
  height: 1px;
  background: #fff;
  position: relative;
  margin: 5px 1%; }

.c-PageHead__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

/* 子ページへの誘導ボタン */
.p-Conductor {
  margin: 30px 0; }

.c-Conductor__title {
  border-left: #eb5505 5px solid;
  padding: 0 0 0 10px;
  margin: 80px 0 20px; }

.p-Conductor__txt {
  margin: 25px 20px; }

.c-Conductor__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.c-Conductor__list {
  width: 50%; }

.c-Conductor__link {
  display: block;
  border: #efefef 5px solid;
  border-radius: 10px;
  margin: 10px;
  padding: 30px;
  position: relative;
  font-weight: 900;
  font-size: 2rem; }

.c-Conductor__link:before {
  background: #efefef;
  content: '';
  position: absolute;
  z-index: -1;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s; }

.c-Conductor__link:hover:before {
  width: 100%; }

.c-Conductor__link span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal; }

.c-Conductor__link:after {
  display: block;
  content: "";
  vertical-align: middle;
  margin: auto;
  right: 30px;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  transition: all 0.3s; }

.c-Conductor__link:hover:after {
  right: 25px; }

.c-Conductor__box {
  border: #ccc 1px solid;
  border-radius: 5px;}

/*------------------------------------
top
--------------------------------------*/
.p-Top h2 {
  font-size: 3rem;
  font-weight: bold; }

.p-Top h2 span {
  font-size: 1.5rem;
  margin: 0 0 0 10px;
  font-weight: normal; }

/* key visual */
.js-kv-div {
  visibility: hidden;
  filter: alpha(opacity=0);
  -moz-opacity: 0.00;
  opacity: 0.00; }

.c-kv {
  position: relative;
  overflow: hidden; }

.c-kv__img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: alpha(opacity=0);
  -moz-opacity: 0.0;
  opacity: 0.0;
  -webkit-transition: opacity 4200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
  -moz-transition: opacity 4200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
  -ms-transition: opacity 4200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
  -o-transition: opacity 4200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
  transition: opacity 4200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms; }

.c-kv__img img {
  -moz-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2); }

.js-slider {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0; }

.js-fade {
  -webkit-transition: -webkit-transform 8800ms cubic-bezier(0, 0, 1, 1);
  -moz-transition: -moz-transform 8800ms cubic-bezier(0, 0, 1, 1);
  -ms-transition: -ms-transform 8800ms cubic-bezier(0, 0, 1, 1);
  -o-transition: -o-transform 8800ms cubic-bezier(0, 0, 1, 1);
  transition: transform 8800ms cubic-bezier(0, 0, 1, 1);
  -moz-transform: scale(1, 1) !important;
  -webkit-transform: scale(1, 1) !important;
  -o-transform: scale(1, 1) !important;
  -ms-transform: scale(1, 1) !important;
  transform: scale(1, 1) !important; }

.c-kv__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.c-kv__caption {
  z-index: 0;
  width: 367px;
  height: 200px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto; }

.c-kv__caption__title {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Lato-Bold", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS P Gothic",Verdana,sans-serif;
  line-height: 1.5;
  letter-spacing: 12px; }

.c-kv__caption__txt01 {
  color: #fff;
  font-size: 12px;
  font-family: "AvenirLTStd-Medium", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS P Gothic",Verdana,sans-serif;
  letter-spacing: 1px; }

.c-kv__caption__txt02 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
  font-family: "Lato-Bold", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS P Gothic",Verdana,sans-serif;
  letter-spacing: 1px; }

.c-kv__caption__txt03 {
  color: #fff;
  font-size: 10px;
  font-family: "AvenirLTStd-Medium", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS P Gothic",Verdana,sans-serif;
  letter-spacing: 1px;
  line-height: 1.4; }

.c-kv__caption__arrow-outer {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 90px;
  margin: auto;
  z-index: 5;
  width: 60px;
  height: 60px; }

.c-kv__caption__arrow {
  z-index: 1;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border: solid #fff 4px;
  border-radius: 30px;
  line-height: 59px;
  background: url(../images/overlay_transparent.png);
  cursor: pointer;
  -webkit-transition: 0.20s ease-out;
  -moz-transition: 0.20s ease-out;
  -ms-transition: 0.20s ease-out;
  -o-transition: 0.20s ease-out;
  transition: 0.20s ease-out; }

.c-kv__caption__arrow:after {
  display: block;
  content: "";
  vertical-align: middle;
  margin: auto;
  right: 0;
  top: -5px;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute; }

.c-kv__caption__arrow-outer img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }

.c-kv__caption__arrow:hover {
  border: solid #fff 2px;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2); }

.c-kv__caption__arrow:hover img {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8); }

/* news */
.p-TopNews {
  border: #efefef 10px solid;
  border-right: #efefef 5px solid;
  background: #fff;
  box-sizing: content-box;
  flex: 1; }

.c-TopNews__inner {
  padding: 7%;
  position: relative; }
.c-TopNews__titleBox {
  position: relative;
  border-bottom: #ccc 1px solid;}
.c-TopNews__titleLink {
  position: absolute;
  right: 0;
  top: 40%; }

.c-TopNewsLists li {
  border-bottom: #ccc 1px dotted;
  padding: 15px 0; }

.c-TopNewsLists li:last-child {
  border-bottom: none;
  padding: 15px 0 0; }

.c-TopNewsList__link {
  display: block;
  padding: 10px; }

.c-TopNewsList__link:hover {
  background: #efefef;
  opacity: 0.7; }

.c-TopNewsList__link:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }

.c-TopNewsList__thum {
  margin: 0 15px 0 0;
  width: 41%;
  float: left;
  overflow: hidden; }

.c-TopNewsList__thum img {
  max-width: 100%;
  -webkit-transition: 0.20s ease-out;
  -moz-transition: 0.20s ease-out;
  -ms-transition: 0.20s ease-out;
  -o-transition: 0.20s ease-out;
  transition: 0.20s ease-out; }

.c-TopNewsList__title {
  font-size: 1.8rem;
  margin: 15px 0 0; }

.c-TopNewsList__time {
  color: #999; }

/* top banner */
.p-TopBanner {
  border: #efefef 10px solid;
  border-left: #efefef 5px solid;
  border-bottom: none;
  flex: 1; }

.p-TopBanner h2 span {
  display: block; }

.p-TopBanner h2 {
  display: table-cell;
  vertical-align: middle; }

.p-TopBanner li a {
  display: table;
  width: 100%;
  color: #666;
  padding: 15%;
  border-bottom: #efefef 10px solid; }

.p-TopBanner li a:hover {
  opacity: 0.7; }

.p-TopBanner li a {
  background-size: cover; }

.c-TopBanner__service a {
  background: #fff url("../images/c-MvService.png") center; }

.c-TopBanner__company a {
  background: #fff url("../images/c-MvCompany.png") right; }

.c-TopBanner__recruit a {
  background: #fff url("../images/c-MvRecruit.png") center; }

/*------------------------------------
news
--------------------------------------*/
/* list */
.p-News .c-PageHead__image {
  background-image: url("../images/c-MvNews.png"); }

.c-NewsLists {
  margin: 0 0 30px; }

.c-NewsList__link {
  display: block;
  padding: 15px;
  border-bottom: #ccc 1px dotted; }

.c-NewsList__link:hover {
  color: #eb5505; }
.p-NewsDetail{
  font-size: 1.7rem;
}
/* detail */
.p-NewsDetail a{
  color:#eb5505;
}
.p-NewsDetail p{
  margin: 15px 0;
  /* font-size: 1.7rem; */
}
.c-NewsDetail__title {
  margin: 50px 10px 0;
  font-size: 3rem; }

.c-NewsDetail__time {
  border-bottom: #ccc 1px solid;
  display: block;
  padding: 5px 15px 10px; }

.c-NewsDetail__txt {
  padding: 25px;
  line-height: 2; }

.c-NewsDetail__txt img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 15px;
  display: block; }

/*------------------------------------
service
--------------------------------------*/
.p-Service .c-PageHead__image {
  background-image: url("../images/c-MvService.png"); }

.c-Service__title {
  margin: 50px 0;
  font-size: 3rem; }

.c-Service__message {
  line-height: 2;
  font-size: 1.5rem; }

/*------------------------------------
Shop
--------------------------------------*/
.c-ShopList__navLists {
  border-left: #eb5505 1px solid;
  margin: 50px 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.c-ShopList__navList {
  border-right: #eb5505 1px solid;
  position: relative;
  width: 100%;
  text-align: center;
}
.c-ShopList__navList:before {
  content: "";
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border: solid #eb5505;
  border-width: 2px 2px 0 0;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  transform: rotate(135deg);
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
.c-ShopList__navList:hover:before {
  bottom: 5px;
}

.c-ShopList__navList a{
  display: block;
  padding: 15px 15px 20px;
}

.c-ShopList__area {
  border-left: #eb5505 5px solid;
  padding: 0 0 0 10px;
  margin: 50px 0 0;
  font-size: 2rem; }

.c-ShopList {
  margin: 20px 0; }

.c-ShopLists a {
  color: #666;
  display: block;
  padding: 20px 40px 20px 20px;
  position: relative; }

.c-ShopLists a:after {
  content: "";
  background: url("../images/icon_blank.svg") no-repeat;
  position: absolute;
  right: 15px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px; }

.c-ShopLists a:hover {
  box-shadow: 0 0 5px 0px #ccc; }
.c-ShopList__detail {
  width: 50%;
  font-size: 1.2rem;
  color:#999;
  padding: 5px;}
.c-ShopList__detail dt {
  width: 100px;
  float: left; }

.c-ShopList__detail dd {
  width: calc(100% - 105px);
  margin: 5px 0 5px 105px; }

/*------------------------------------
company
--------------------------------------*/
.p-Company .c-PageHead__image {
  background-image: url("../images/c-MvCompany.png"); }

.p-Notice .c-Content__table a {
  color: #eb5505;
  text-decoration: underline;
  position: relative; }

.p-Notice .c-Content__table a:after {
  content: "";
  background: url(../images/icon_pdf.svg) no-repeat;
  position: absolute;
  right: -30px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px; }


/*------------------------------------
term
--------------------------------------*/
.c-Term__txt {
  margin: 0 0 20px; }

.c-Term__lists {
  counter-reset: count;
  margin: 0 5px; }

.c-Term__list {
  padding-left: 1.8rem;
  text-indent: -1.8rem;
  margin: 7px 0; }

.c-Term__lists.num > .c-Term__list:before {
  counter-increment: count;
  content: counter(count) ". ";
  font-weight: bold; }

.c-Term__lists.dot > .c-Term__list:before {
  content: "・ ";}

.c-Term__textLink {
  color: #eb5505 !important;
  text-decoration: underline;
}

.c-Term__textLink:hover {
  text-decoration: none;
}

.c-Term__link {
  position: relative;
  margin: 0 0 0 14px;
  color: #eb5505 !important;}

.c-Term__link:before {
  content: "";
  width: 6px;
  height: 6px;
  border: solid #eb5505;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  position: absolute;
  top: 6px; 
  left: -14px;}

.c-Term__address {
  height: 18px;
}

.c-Term__lists2 {
  margin: 120px 124px 0;
}

.c-Term__list2 {
  font-size: 2.1rem;
  text-align: center;
}

/*------------------------------------
recruit
--------------------------------------*/

.p-RecruitDetail{
  font-size: 1.7rem;
}

.p-RecruitDetail a {
  color: #eb5505;
  font-size: 15px;
}

.p-RecruitDetail p {
  margin: 15px 0;
}

/*------------------------------------
recruit
--------------------------------------*/

.p-fiduciaryDetail a {
  color: #eb5505;
}

/*------------------------------------
contact
--------------------------------------*/

.p-contactDetail li {
  color: #ff0000;
}

.p-contactDetail li::before {
 content: "※";
 margin-right: 0.2rem;
}

.alignC{ text-align: center; }

/*フェイドイン*/
.fadeIn_right {
    opacity: 0;
    transform: translate(80px, 0);
    transition: 1.5s;
}
.fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
}
.fadeIn {
    opacity: 0;
    transition: 1.5s;
}
.fadeIn.is-show {
    opacity: 1;
}

/*PC*/
@media only screen and (min-width: 751px) {

    .Mt01{ margin-top: 1px!important; }
    .Mt02{ margin-top: 2px!important; }
    .Mt03{ margin-top: 3px!important; }
    .Mt04{ margin-top: 4px!important; }
    .Mt05{ margin-top: 5px!important; }
    .Mt06{ margin-top: 6px!important; }
    .Mt07{ margin-top: 7px!important; }
    .Mt08{ margin-top: 8px!important; }
    .Mt09{ margin-top: 9px!important; }
    .Mt10{ margin-top: 10px!important; }
    .Mt11{ margin-top: 11px!important; }
    .Mt12{ margin-top: 12px!important; }
    .Mt13{ margin-top: 13px!important; }
    .Mt14{ margin-top: 14px!important; }
    .Mt15{ margin-top: 15px!important; }
    .Mt16{ margin-top: 16px!important; }
    .Mt17{ margin-top: 17px!important; }
    .Mt18{ margin-top: 18px!important; }
    .Mt19{ margin-top: 19px!important; }
    .Mt20{ margin-top: 20px!important; }
    .Mt25{ margin-top: 25px!important; }
    .Mt30{ margin-top: 30px!important; }
    .Mt35{ margin-top: 35px!important; }
    .Mt40{ margin-top: 40px!important; }
    .Mt45{ margin-top: 45px!important; }
    .Mt50{ margin-top: 50px!important; }
    .Mt55{ margin-top: 55px!important; }
    .Mt60{ margin-top: 60px!important; }
    .Mt70{ margin-top: 70px!important; }
    .Mt80{ margin-top: 80px!important; }
    .Mt90{ margin-top: 90px!important; }
    .Mt130{ margin-top: 130px!important; }

    .smp-only{ display: none!important; }

    div.header_wrapper{
        overflow: hidden;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
    }
    div.header{
        width: 960px;
        height: 460px;
        margin: 0 auto;
        background: url(../images/header_pc.jpg) no-repeat center;
        background-size: 960px;
    }
    div.header>div{
        padding: 268px 0 0 158px;
        width: 412px;
    }
    div.header>h1{
        color: #595757;
        font-size: 46px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
        padding: 10px 0 0 158px;
    }

    div.logo_common{
        width: 254px;
        margin: 36px auto 0;
    }
    p.article_common{
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -.5px;
        width: 578px;
        margin: 18px auto 0;
    }
    span.note{
	display: inline-block;
	color: #fff;
	background-color: #eb5505;
	border-radius: 20px;
	width: 100px;
	height: auto;
	padding: auto 0;
	margin: 0 10px;
	text-align: center;
	vertical-align: middle;
	line-height: 1.2em;
    }
    div.video_outline{
	width: 600px;
	margin: 10px auto;
    }
    video#player{
	width: 100%;
    }
    div.title_banner{
        background-color: rgba(228, 85, 5, 15%);
        margin-top: 50px;
    }
    div.title_banner>img{
        display: block;
        width: 750px;
        margin: 0 auto;
    }

    h2.title01{
        margin-top: 35px;
        display: inline-block;
        font-size: 32px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
        padding-bottom: 9px;
        background: linear-gradient(transparent 50%, rgba(228, 85, 5, 30%) 0%);
    }
    h2.title02{
        margin-top: 78px;
        font-size: 24px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
    }
    h2.title02>span{
        color: #e45505;
    }
    ul.item_list01{
        width: 660px;
        margin: 24px auto 0;
    }
    ul.item_list01>li{
        background: url(../images/tick01.svg) no-repeat 0 center;
        background-size: 20.5761px;
        width: 312px;
        display: inline-block;
        padding: 22px 0 22px 28px;
        font-size: 18px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: -.25px;
    }
    ul.item_list01>li:nth-child(2n){
        margin-left: 24px;
    }

    div.btn01{
        margin-top: 34px;
    }
    div.btn01>a{
        color: #fff;
        background-color: #eb5505;
        display: inline-block;
        font-size: 30px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 76px;
        letter-spacing: 4px;
        position: relative;
        padding: 0 91px 0 44px;
        border: 2px solid #eb5505;
        border-radius: 40px;
        transition: all 0.4s;
        /* box-shadow: 5px 5px 10px rgba(0,0,0,0.3);   */
        margin-bottom: 20px;
    }
    div.btn01>a:hover{
        background-color: #fff;
        color: #eb5505;
        transition: all 0.4s;
    }
    div.btn01>a::after{
        content: "";
        position: absolute;
        top: 25px;
        right: 50px;
        width: 20px;
        height: 20px;
        transition: all 0.4s;
	border-top: 5px solid #fff;
	border-right: 5px solid #fff;
	transform: rotate(45deg);
    }
    div.btn01>a:hover::after{
        border-top: 5px solid #eb5505;
	border-right: 5px solid #eb5505;
        right: 45px;
        transition: all 0.4s;
    }
    div.btn01_cstm .btn_wrap{
        background-color: #eb5505;
        max-width: 400px;
        margin: 0 auto;
        box-shadow: 5px 5px 10px rgba(0,0,0,0.3);  
        margin-top: 45px;
        border-radius: 20px;
        border:1px solid #eb5505;
        transition: all 0.3s;

    }
    div.btn01_cstm a{
        display: flex;
        align-items: center;
        padding: 10px 20px;
        letter-spacing: 0.05em;
        transition: all 0.3s;
        color: white;
        
    }
    div.btn01_cstm a:hover{
        color: #eb5505;

    }
    div.btn01_cstm .btn_wrap:hover{
        background-color: white;
    }
    div.btn01_cstm a span.small{
        font-size: 11px;
        text-align: center;
        margin-right: 10px;
    }
    div.btn01_cstm a span.normal{
        font-size: 18px;
        text-align: center;
        line-height: 1;
        font-weight: bold;
    }
    .script01{
        margin: 12px auto 0;
        width: 486px;
        font-size: 12px;
        font-weight: 400;
        line-height: 21px;
        letter-spacing: -.5px;
    }

    div.point_block{
        width: 700px;
        margin: 45px auto 0;
    }
    div.point_block>div{
        display: flex;
    }
    div.point_block>div:first-child{
        align-items: center;
    }
    div.point_block>div:first-child>div{
        color: rgba(228, 85, 5, 70%);
        font-size: 16.8px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        letter-spacing: 1.5px;
        line-height: .9;
    }
    div.point_block>div:first-child>div>span{
        font-size: 46px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        letter-spacing: 0;
    }
    div.point_block>div:first-child>h2{
        font-size: 21px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
        margin-left: 25px;
    }
    div.point_block>div:nth-child(2){
        margin-top: 28px;
    }
    div.point_block>div:nth-child(2)>div{
        margin-top: 5px;
        width: 350px;
    }
    div.point_block>div:nth-child(2)>p{
        margin-left: 20px;
        width: 335px;
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -.5px;
    }
    div.point_block.first_block{
        margin-top: 60px;
    }

    div.customer_voice{
        width: 700px;
        margin: 35px auto 0;
        border-radius: 25px;
        background-color: #fff;
        box-shadow: 0 0 20px 0px rgb(0 0 0 / 10%);
        padding: 35px 35px 32px 44px;
        display: flex;
        justify-content: space-between;
    }
    div.customer_voice>div{
        width: 70px;
    }
    div.customer_voice>div>p{
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
    }
    div.customer_voice>p{
        width: 522px;
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -.5px;
    }
    p.script02{
        margin: 25px auto 0;
        width: 700px;
        text-align: right;
        font-size: 12px;
        font-weight: 400;
        line-height: 1;
    }

    div.faq_block.first{
        margin-top: 60px;
    }
    div.faq_block{
        margin: 30px auto 0;
        width: 640px;
    }
    div.faq_block>div.question{
        cursor: pointer;
        position: relative;
        border: 2px solid#e45505;
        border-radius: 5px;
    }
    div.faq_block>div.question.close::before, div.faq_block>div.question.close::after, div.faq_block>div.question.open::before, div.faq_block>div.question.open::after{
        display: block;
        content: "";
        position: absolute;
        top: 30px;
        right: 32px;
        width: 16px;
        height: 2px;
        background: #e45505;
        transition: all 0.4s;
    }
    div.faq_block>div.question.close::before{
        transform: rotate(90deg);
    }
    
    /* プラスアイコンクリック後、マイナスにする */
    .icon.open:before {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    div.faq_block>div.question>p{
        background: url(../images/q.svg) no-repeat;
        background-size: 40px;
        background-position-x: 28px;
        background-position-y: 11px;
        width: 562px;
        padding: 18px 0 19px 82px;
        color: #e45505;
        font-size: 18px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 27px;
        letter-spacing: -.5px;
    }
    div.faq_block>div.question.multi_line_pc>p{
        background-position-y: 25px;
    }
    div.faq_block>div.answer>p{
        background: url(../images/a.svg) no-repeat;
        background-size: 40px;
        background-position-x: 30.45px;
        background-position-y: 29px;
        width: 610px;
        padding: 32px 0 10px 80px;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        line-height: 27px;
        letter-spacing: -.5px;
    }
    div.faq_block>div.answer>p>a{
        pointer-events: none;
    }

    div.attention{
        width: 640px;
        padding: 35px 0 63px;
        margin: 55px auto 0;
        border: 2px solid#dfdfdf;
        border-radius: 5px;
    }

    div.attention>h2{
        text-align: center;
        font-size: 21px;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
    }
    div.attention>ul{
        margin-top: 22px;
        padding: 0 52px;
    }
    div.attention>ul>li{
        margin: 10px 0;
        list-style-type: none;
        text-indent: -23.5px;
        font-size: 14px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -.5px;
    }
    div.attention>ul>li:before{
        white-space: pre-wrap;
        display: inline;
        content: "※    ";
    }

    div.attention>ul>ul{
        margin: 14px 0 16px;
        padding-left: 40px;
    }
    div.attention>ul>ul>li{
        text-indent: -14.5px;
        list-style-type: none;
        font-size: 14px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -.5px;
    }
    div.attention>ul>ul>li:before{
        white-space: pre-wrap;
        display: inline;
        content: "・";
    }
    div.attention>ul>ul>p{
        margin-left: -13px;
        font-size: 14px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -.5px;
    }

    div.contact{
        text-align: right;
        width: 640px;
        margin: 10px auto 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 27px;
        letter-spacing: -.25px;
    }
    div.contact>p>a{
        pointer-events: none;
    }
    div.footer{
        margin-top: 22px;
        text-align: center;
        padding: 24px 0 80px;
        background-color: rgba(197, 197, 197, 0.15);
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
    }
}

/*SMP*/
@media only screen and (max-width: 750px) {

    .mt1{ margin-top: 1rem!important; }
    .mt15{ margin-top: 1.5rem!important; }
    .mt2{ margin-top: 2rem!important; }
    .mt25{ margin-top: 2.5rem!important; }
    .mt3{ margin-top: 3rem!important; }
    .mt35{ margin-top: 3.5rem!important; }
    .mt4{ margin-top: 4rem!important; }
    .mt45{ margin-top: 4.5rem!important; }
    .mt5{ margin-top: 5rem!important; }
    .mt55{ margin-top: 5.5rem!important; }
    .mt6{ margin-top: 6rem!important; }
    .mt65{ margin-top: 6.5rem!important; }
    .mt7{ margin-top: 7rem!important; }
    .mt75{ margin-top: 7.5rem!important; }
    .mt8{ margin-top: 8rem!important; }

    .pc-only{ display: none!important; }

    html{ font-size: 2.1333vw; }
    div.header{
        width: 100%;
        height: 38.9375rem;
        margin: 0 auto;
        background: url(../images/header_smp.jpg) no-repeat center;
        background-size: 100%;
        overflow: hidden;
    }
    div.header>div{
        padding: 22.875rem 0 0 2.5rem;
        width: 23.75rem;
    }
    div.header>h1{
        color: #595757;
        font-size: 4.3125rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
        padding: 1rem 0 0 2.5rem;
    }

    div.logo_common{
        width: 23.75rem;
        margin: 3.25rem auto 0;
    }
    p.article_common{
        font-size: 1.75rem;
        font-weight: 400;
        line-height: 3rem;
        letter-spacing: -.1rem;
        width: 42.5rem;
        margin: 2.25rem auto 0;
    }
    span.note{
	display: inline-block;
	color: #fff;
	background-color: #eb5505;
	border-radius: 40px;
	width: 25%;
	height: auto;
	padding: auto 0;
	margin: 0 10px;
	text-align: center;
	vertical-align: middle;
	line-height: 1.2em;
    }
    div.video_outline{
	width: 80%;
	margin: 10px auto;
    }
    video#player{
	width: 100%;
    }
    div.title_banner{
        background-color: rgba(228, 85, 5, 15%);
        margin-top: 4.375rem;   
    }
    div.title_banner>img{
        display: block;
        width: 42.5rem;
        margin: 0 auto;
    }

    h2.title01{
        margin-top: 3.25rem;
        display: inline-block;
        font-size: 3rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
        padding-bottom: .875rem;
        background: linear-gradient(transparent 50%, rgba(228, 85, 5, 30%) 0%);
    }

    h2.title02{
        margin-top: 5.25rem;
        font-size: 2.25rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
        letter-spacing: -.0625rem;
    }
    h2.title02>span{
        color: #e45505;
    }
    ul.item_list01{
        width: 35.125rem;
        margin: 2.25rem auto 0;
    }
    ul.item_list01>li{
        background: url(../images/tick01.svg) no-repeat 0 center;
        background-size: 2.31481rem;
        padding: 2rem 0 2rem 3.25rem;
        font-size: 2rem;
        font-weight: 400;
        line-height: 1;
        letter-spacing: -.1125rem;
    }

    div.btn01{
        margin-top: 2.25rem;
    }
    div.btn01>a{
        color: #fff;
        background-color: #eb5505;
        display: inline-block;
        font-size: 2.5rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 6.5rem;
        letter-spacing: .125rem;
        position: relative;
        padding: 0 6.5rem 0 3.5rem;
        border-radius: 3.25rem;
    }
    div.btn01>a::after{
        content: "";
        position: absolute;
        top: 2.3rem;
        right: 3.5625rem;
        width: 1.2rem;
        height: 1.2rem;
        border-top: 5px solid #fff;
	border-right: 5px solid #fff;
	transform: rotate(45deg);
    }

    .script01{
        margin: 1.125rem auto 0;
        width: 39.5rem;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.365;
        letter-spacing: -.1rem;
    }

    div.point_block{
        width: 42.5rem;
        margin: 3.75rem auto 0;
    }
    div.point_block>div:first-child{
        display: flex;
        align-items: center;
    }
    div.point_block>div:first-child>div{
        color: rgba(228, 85, 5, 70%);
        font-size: 1.625rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        letter-spacing: .175rem;
        line-height: 1;
    }
    div.point_block>div:first-child>div>span{
        font-size: 4.3125rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        letter-spacing: 0;
    }
    div.point_block>div:first-child>h2{
        font-size: 2rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1.5;
        margin-left: 1rem;
    }
    div.point_block>div:nth-child(2){
        margin-top: 1.875rem;
    }
    div.point_block>div:nth-child(2)>div{
        width: 100%;
    }
    div.point_block>div:nth-child(2)>p{
        margin-top: 1.325rem;
        width: 100%;
        font-size: 1.75rem;
        font-weight: 400;
        line-height: 3rem;
        letter-spacing: -.1rem;
    }
    div.point_block.first_block{
        margin-top: 5rem;
    }

    div.customer_voice.first_block{
        margin-top: 3.25rem;
    }
    div.customer_voice{
        width: 43.25rem;
        margin: 2.25rem auto 0;
        border-radius: 1.5625rem;
        background-color: #fff;
        box-shadow: 0 0 1.25rem 0px rgb(0 0 0 / 10%);
        padding: 2.75rem 3rem;
        display: flex;
        justify-content: space-between;
    }
    div.customer_voice>div{
        width: 6.5625rem;
    }
    div.customer_voice>div>p{
        text-align: center;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
    }
    div.customer_voice>p{
        width: 26.875rem;
        font-size: 1.75rem;
        font-weight: 400;
        line-height: 3rem;
        letter-spacing: -.1rem;
    }
    p.script02{
        margin: 2.25rem auto 0;
        text-align: center;
        font-size: 1.5rem;
        transform: scale(0.8333);
        font-weight: 400;
        line-height: 1;
    }

    div.faq_block.first{
        margin-top: 2.625rem;
    }
    div.faq_block{
        margin: 2.5rem auto 0;
        width: 100%;
    }
    div.faq_block>div.question{
        cursor: pointer;
        position: relative;
        border: .1875rem solid#e45505;
        border-radius: .46875rem;
    }
    div.faq_block>div.question.close::before, div.faq_block>div.question.close::after, div.faq_block>div.question.open::before, div.faq_block>div.question.open::after{
        display: block;
        content: "";
        position: absolute;
        top: 2.875rem;
        right: 1.75rem;
        width: 1.5rem;
        height: .125rem;
        background: #e45505;
        transition: all 0.4s;
    }
    div.faq_block>div.question.close::before{
        transform: rotate(90deg);
    }
    
    /* プラスアイコンクリック後、マイナスにする */
    .icon.open:before {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    div.faq_block>div.question>p{
        background: url(../images/q.svg) no-repeat;
        background-size: 3.75rem;
        background-position-x: 1.3125rem;
        background-position-y: 1.0625rem;
        width: 100%;
        padding: 2.0625rem 38px 2rem 6.625rem;
        color: #e45505;
        font-size: 1.6875rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1.45;
        letter-spacing: -.1rem;
    }
    div.faq_block>div.question.multi_line>p{
        background-position-y: 1.875rem;
    }
    div.faq_block>div.answer>p{
        background: url(../images/a.svg) no-repeat;
        background-size: 3.75rem;
        background-position-x: 1.75rem;
        background-position-y: 2.75rem;
        width: 100%;
        padding: 2.875rem 18px .625rem 6.625rem;
        color: #333;
        font-size: 1.625rem;
        font-weight: 500;
        line-height: 3rem;
        letter-spacing: -.1rem;
    }

    div.attention{
        width: 42.5rem;
        padding: 2.5rem 0 2.75rem;
        margin: 5.75rem auto 0;
        border: .125rem solid#dfdfdf;
        border-radius: .3125rem;
    }

    div.attention>h2{
        text-align: center;
        font-size: 1.96875rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 1;
    }
    div.attention>ul{
        margin-top: 1.625rem;
        padding: 0 2rem 0 4.75rem;
    }
    div.attention>ul>li{
        margin: 1.125rem 0;
        list-style-type: none;
        text-indent: -2.625rem;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1.625;
        letter-spacing: -.05rem;
    }
    div.attention>ul>li:before{
        white-space: pre-wrap;
        display: inline;
        content: "※    ";
    }

    div.attention>ul>ul{
        margin: 1.375rem 0 2rem;
        padding-left: 2.5rem;
    }
    div.attention>ul>ul>li{
        text-indent: -1.4375rem;
        list-style-type: none;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1.625;
    }
    div.attention>ul>ul>li:before{
        white-space: pre-wrap;
        display: inline;
        content: "・";
    }
    div.attention>ul>ul>p{
        margin-left: -1.4375rem;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1.625;
        letter-spacing: -.05rem;
    }

    div.contact{
        text-align: center;
        margin: 1.325rem auto 0;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 2;
        letter-spacing: -.1rem;
    }
    div.footer{
        margin-top: 3rem;
        text-align: center;
        padding: 2rem 0 14.25rem;
        background-color: rgba(197, 197, 197, 0.15);
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1;
    }

    div#bottom_float{
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #fff;
    }
    div#bottom_float>div>div{
        margin: 0;
        padding: 2rem 0;
        text-align: center;
    }
    div#bottom_float>div>div>a{
        color: #fff;
        background-color: #eb5505;
        display: inline-block;
        font-size: 2.5rem;
        font-family: 'NotoSans_b', 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,Roboto,'Droid Sans',sans-serif;
        line-height: 6.5rem;
        letter-spacing: .125rem;
        position: relative;
        padding: 0 6.5rem 0 3.5rem;
        border-radius: 3.25rem;
    }
    div#bottom_float>div>div>a::after{
        content: "";
        position: absolute;
        top: 2.3rem;
        right: 3.5625rem;
        width: 1.2rem;
        height: 1.2rem;
    }
}


.point_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  
.head_point{
    border-left: none;
    border: 5px solid var(--main-color);
    display: block;
    padding: 22px 20px 10px;
    width: 100%;
    position: relative;
    border-radius: 16px;
  }
  .head_point .point{
    position: absolute;
    top: 0;
    left: -5px;
    transform: translate(0 , -50%);
    padding: 5px 20px;
    background-color: var(--main-color);
    color: white;
    font-size: 24px;
    border-radius: 8px 8px 8px 0px;
  }
  .head_point_img{
    margin-right: 20px;
  }
  .point_wrap .head_point .flex{
    align-items: center;
  }


  
@media only screen and (max-width: 750px) {
    .head_point .point {
        position: absolute;
        top: 0;
        left: -5px;
        transform: translate(0 , -50%);
        padding: 5px 15px;
        background-color: var(--main-color);
        color: white;
        font-size: 20px;
        border-radius: 8px 8px 8px 0px;
    }
    .head_point {
      border-left: none;
      border: 3px solid var(--main-color);
      display: inline-block;
      padding: 20px 10px 15px;
      position: relative;
      border-radius: 16px;
    }
    .head_point_text{
        font-size: 2.0rem;
    }
    .head_point_img {
        margin-right: 20px;
        max-width: 50px;
    }
    div.btn01_cstm{
        
    width: 42.5rem;
    margin: 2.25rem auto 0;
    }
    div.btn01_cstm .btn_wrap{
        background-color: #eb5505;
        max-width: 400px;
        margin: 0 auto;
        box-shadow: 5px 5px 10px rgba(0,0,0,0.3);  
        margin-top: 25px;
        border-radius: 20px;
        border:1px solid #eb5505;
        transition: all 0.3s;

    }
    
    div.btn01_cstm a{
        display: flex;
        align-items: center;
        padding: 10px 20px;
        letter-spacing: 0.05em;
        transition: all 0.3s;
        color: white;
        
    }
    div.btn01_cstm a:hover{
        color: #eb5505;

    }
    div.btn01_cstm .btn_wrap:hover{
        background-color: white;
    }
    div.btn01_cstm a span.small{
        font-size: 11px;
        text-align: center;
        margin-right: 10px;
    }
    div.btn01_cstm a span.normal{
        font-size: 14px;
        text-align: center;
        line-height: 1;
        font-weight: bold;
    }
}

