@charset "utf-8";

html,body {
	font-family: 'Noto Sans JP', sans-serif;
	height: 100%;
	scroll-padding-top: 80px; /* 固定ヘッダの高さ分 */
}
html {
  font-size: 62.5%;
}
body {
	margin: 0;
	padding: 0;
	height: 100%;
}
table {
  width: 100%;
  margin: 30px 0;
    /*
    border-top: 1px dashed #ccc;
	*/
    
}
table tr {
  border-bottom: 1px dashed #ccc;
}
table th {
  padding: 15px 0;
    font-weight: bold;
}
table td {
  padding: 15px;
}

a {
	color: #F11C6B;
}
a:hover {
	color: #F11C6B;
    text-decoration: none;
}
.alingcenter {
    display: block;
    margin: 0 auto;
}
p {
	font-size: 1.7rem;
	line-height: 2;
}
.container {
	width: 1100px;
	max-width: 100%;
}


/* --------------------------------------------
    グローバルナビゲーション
-------------------------------------------- */
#nav01 {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: fixed;
	z-index: 101;
	width: 100%;
	height: 80px;
	background-color: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
}

#drawer-checkbox {
  display: none;
}
.nav-wrap h1 {
    width: auto;
    max-width: 500px;
    display: inline-block;
    float: left;
    margin: 0;
    padding: 0;
}
.nav-wrap h1 a {
    color: #F11C6B;
	font-size: 1.4rem;
	letter-spacing: .2rem;
	font-weight: 100;
	display: block;/*
	z-index: 101;*/
}
.nav-wrap h1 a:focus, .nav-wrap h1 a:hover {
    text-decoration: none;
}
.nav-wrap label {
    display: none;
}
h1.hd-logo {
    margin: 18px 0 0 50px;
    padding: 0;
	position: relative;
	z-index: 101;
	/*
	*/
}
h1.hd-logo img {
    width: 220px;
    height: auto;
    margin: 0px 25px 0 0;
    vertical-align: middle;
	/*
    object-fit: contain;
	*/
}
/* --------------------------------------------
    ドロワー
-------------------------------------------- */
#drawer-icon {
	-moz-box-sizing: border-box;
	box-sizing: border-box;

  display: inline-block;
  width: 80px;
  height: 80px;
	/*
  background-color: #FFEDF4;
	*/
  margin: 0 auto;
  padding: 12px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  cursor: pointer;
}
#drawer-checkbox:checked ~ #drawer-icon {
  content: "";
  /*background-color: transparent;*/
}
#drawer-icon span {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  background:  #F11C6B;
  border-radius: 0px;
  display: block;
  height: 3px;
  margin: 0;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  width: 28px;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #F11C6B;
  border-radius: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
}
#drawer-icon span::before { margin-top: -12px; }
#drawer-icon span::after { margin-top: 22px; }
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
  top: 50%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  width: 105%;
  height: 100%;
  position: absolute;
  background-color: #F11C6B;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 0;
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 0;
}


/*--- メニューコンテンツ ---*/

#drawer-content {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    position: fixed;
    right: 0;
    z-index: 100;
    width: 0;
    max-width: 0;
    height: 0;
    background-color: #FFEDF4;
    display: none;
}
#drawer-content .menu-box {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    display: block;
    width: 100%;
}
#drawer-content .menu-box h4 a { color: #fff; }
#drawer-content .menu-box a:hover { text-decoration: none; opacity: 0.7; }
#drawer-content .menu-box .menu-list {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 60px;
}
#drawer-content .menu-box .menu-list li {
  display: block;
  width: 100%;
  position: relative;
  list-style-type: none;
  padding: 15px 0;
}
#drawer-content .menu-box .menu-list li a {
	padding: 10px 35px;
	color: #ED0E64;
}

#drawer-checkbox:checked ~ #drawer-content {
  transform: translateY(0);
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    animation: fadeIn 0.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 0.5s ease 0s 1 normal;
}
#drawer-close {
  display: none;
  position: fixed;
  /*z-index: 39;*/
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*background: #000;*/
  opacity: 1;
  transition: all 0.3s ease-in-out 0s;
}
  #drawer-checkbox:checked ~ #drawer-close {
    display: block;
    opacity: 1;
      margin: 0;
      background-color: transparent;
      z-index: 100;
  }

/*--- dropdown-menu ---*/
.dropdown-backdrop { z-index: -1; }

.dropdown-menu {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    position: fixed;
    width: 100vw;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    animation: slideIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 forwards;
}

/*
.nav-list {display: flex;}
*/

.dropdown-menu .menu-box .menu-txt {
    list-style: none;
}
.dropdown-menu {
    margin: 0 auto;
    position: relative;
    top: 0;
}
.dropdown-menu .menu-box .menu-txt {
	padding: 0 0 20px;
    background-color: #FFEDF4;
}
.dropdown-menu .menu-box .menu-txt li {
    display: block;
    width: 100%;
    margin: 0 0;
}
.dropdown-menu .menu-box .menu-txt li a {
	position: relative;
	display: block;
	margin: 0 20px;
    padding: 14px 0;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    color: #ED0E64;
    text-decoration: none;

}
.dropdown-menu .menu-box .menu-txt li a::before {
	/*
    font-family: "Font Awesome 5 Free";
    content: '\f0da';
	*/
    content: '-';
    font-weight: 900;
    font-size: 1.8rem;
    display: inline-block;
    margin-right: 8px;
}

#drawer-checkbox:checked ~ #drawer-content {
    display: block;
    transform: translateY(0);
    width: 100%;
    max-width: 100%;
	height: 500px;
    max-height: 100%;
    display: block;
    animation: fadeIn 0.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 0.5s ease 0s 1 normal;
    overflow-y: hidden;
	overflow-x: hidden;
}

.nav-list-pc {
	width: 100%;
    list-style: none;
    text-align: left;
	margin: 120px auto 0;
	padding-left: 0;
    display: flex !important;
    position: relative;
}
.nav-list-pc > li > h5 {
    position: relative;
    display: block;
    margin: 0 20px;
    padding: 20px 0;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1;
    color: #ED0E64;
    text-decoration: none;
}
.nav-list-pc > li {
    font-weight: 900;
    color: #ED0E64;
    font-size: 18px;
}
.nav-list-pc > li > a {
    position: relative;
    display: block;
    margin: 0 20px;
    padding: 20px 0;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1;
    color: #ED0E64;
    text-decoration: none;
}
.nav-list-pc .menu-box .menu-txt {
    list-style: none;
	padding: 0 0 20px;
    background-color: #FFEDF4;
}
.nav-list-pc .menu-box .menu-txt li {
    display: block;
    width: 100%;
    margin: 0 0;
}
.nav-list-pc .menu-box .menu-txt li a {
	position: relative;
	display: block;
	margin: 0 20px 0 30px;
    padding: 14px 0;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    color: #ED0E64;
    text-decoration: none;

}
.nav-list-pc .menu-box .menu-txt li a::before {
    content: '-';
    font-weight: 900;
    font-size: 1.8rem;
    display: inline-block;
    margin-right: 8px;
    margin-left: -12px;
}


.nav-list {
	width: 100%;
    list-style: none;
    text-align: left;
	margin-top: 120px;
	padding-left: 0;
}
.nav-list > li {
    display: block;
    border-right: none;
    margin: 0 auto 0;
}
.nav-list > li.dropdown { position: relative; }
.nav-list > li.dropdown::after {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*
	*/
    font-family: "Font Awesome 5 Free";
    content: '\f067';
    font-weight: 900;
    color: #ED0E64;
    font-size: 1.8rem;
    position: absolute;
    top: 20px;
    right: 20px;
}
.nav-list > li.open::after {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    font-family: "Font Awesome 5 Free";
    content: '\f068';
    font-weight: 900;
    color: #ED0E64;
    font-size: 18px;
    position: absolute;
    top: 20px;
    right: 20px;
}
.nav-list > li > a {
    position: relative;
    display: block;
    margin: 0 20px;
    padding: 20px 0;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1;
    color: #ED0E64;
    text-decoration: none;
}

.nav-list > li > a:hover, .nav-list > li > a:focus {
    text-decoration: none;
    outline: none;
}
.nav-list > li > a:hover::after, .nav-list > li.open > a::after {
    transform-origin: left top;
    transform: scale(1, 1);
}


@keyframes rotation90 {
    0%{ transform:rotateZ(0);}
    100%{ transform:rotateZ(90deg); }
  }


#tpage {
	overflow-x: hidden;
	/*
	background-color: #333;
	color: #fff;
	*/
}
.hero-m-wrap {
	position: relative;
	width: 100%;
}
.hero-m-wrap:before {
	content: "";
	display: block;
	padding-top: 78px;
}
.hero-m {
	height: 95vh; /* 全画面表示 */
	max-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  background-image: url("../img/bg_topmain01-sp_img.png");
	/*
  background-size: contain;
  background-image: url("../img/bg_topmain01-sp.png");
	*/
}
.hero-m_footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  background-image: url("../img/bg_topmain01-sp_footer.png");
	
	position: absolute;
	bottom: 10px;

	height: 280px;
	width: 100vw;
	/*
	background-color: #999;
	z-index: 100;
	display: block;
	margin-top: 0;
	*/
}

.hero-tb-wrap {
	position: relative;
	width: 100%;
}
.hero-tb-wrap:before {
	content: "";
	display: block;
	padding-top: 78px;
}
.hero-tb {
	height: 100vh; /* 全画面表示 */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  background-image: url("../img/bg_topmain01.jpg");
}


.hero-wrap {
	position: relative;
	width: 100%;
}
.hero-wrap:before {
	content: "";
	display: block;
	padding-top: 56%;
}
.hero {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	background-image: url("../img/bg_topmain01.jpg");
}

.text-box {
  position: absolute;
  top: 70%;
  left: 45%;
  width: 50%;
  z-index: 100;
}

.btn_topmenu a {
	display: block;
	overflow: hidden;
	width: 260px;
	height: 100%;
	max-width: 100%;
	max-height: 270px;
}
.btn_topmenu a .off {
	position: absolute;
	top: 0;
}
.btn_topmenu a:hover .off {
	display: none;
}
.btn_topmenu a .on {
	display: none;
}
.btn_topmenu a:hover .on {
	display: block;
	position: absolute;
	top: 0;
}


#contents {
	padding-top: 80px;
	overflow-x: hidden;
}
#bnrarea {
	margin-top: 50px;
}
#bnrarea > div > div > div {
	padding: 0 5px;
}

.pagetit {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url("../img/bg_pagetit01.png");
	background-color: #FF8D2C;
	text-align: center;
	color: #fff;
	/*
	height: 280px;
	*/
	font-size: 5.0rem;
	font-weight: 700;
	padding: 60px 0;
	margin: 0;
	text-transform: uppercase;
}
.pagetit span {
	display: block;
	margin: auto;
	padding: 10px 0 0;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: none;
}

/* breadcramb */

.breadcrumb {
  position: relative;
  left: 0;
  list-style-type: none;
  margin: 20px 0 60px !important;
  padding: 0 !important;
	font-size: 1.6rem;
	background: none;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li:before {/*
  content: "\f105";
  font-family: FontAwesome;
  padding: 0 10px;
  color: #c7b299;*/
}
.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #000;
    content: '>';
}

/*　背景白*/
.bg00 {
	background-color: #fff;
}
/*　背景ピンク*/
.bg01 {
	background-color: #FFEDF4;
}

.description01 {
    text-align: center;
    font-weight: 600;
}
.tit-baloon00 {
	position: relative;
	background:linear-gradient(to right, #FD8D3A, #F11C6B);
	border-radius: 30px;
	padding: 30px 30px 60px;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
	text-align: center;
	margin-bottom: 50px;
}
.tit-baloon00::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 50%;
  bottom: -30px;
  border-top: 30px solid #F75453;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
.tit-baloon00 h3 {
	color: #fff;
	font-size: 6.0rem;
	font-weight: 600;
}
.tit-baloon00 span {
	display: block;
	margin: auto;
	padding: 0 0 10px;
	font-size: 1.8rem;
	font-weight: 100;
	letter-spacing: .6rem;
}

.tit-baloon01 {
	position: relative;
	background: #ffffff;
	border: 6px solid #F11C6B;
	text-align: center;
	border-radius: 40px;
	margin-bottom: 50px;
}
.tit-baloon01 h4 {
	font-size: 3.0rem;
	font-weight: 700;
	padding-bottom: 10px;
}
.tit-baloon01 h4 .strong {
	color: #ED0E64;
}
.tit-baloon01 h4 .large01 {
	font-size: 4.0rem;
}


.tit-baloon02 {
	position: relative;
	background: #ffffff;
	border: 5px solid #F11C6B;
	text-align: center;
	border-radius: 30px;
	margin: 30px auto 40px;
}
.tit-baloon02:after, .tit-baloon02:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.tit-baloon02:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ffffff;
	border-width: 10px;
	margin-left: -10px;
}
.tit-baloon02:before {
	border-color: rgba(241, 28, 107, 0);
	border-top-color: #F11C6B;
	border-width: 16px;
	margin-left: -16px;
}
.tit-baloon02 h4 {
	font-size: 2.6rem;
	font-weight: 700;
}
.tit-baloon02 h4 .strong {
	color: #ED0E64;
}

.list-merit {
	display: flex;
}
.area-merit {
	background-color: #fff;
	margin: 0 20px 50px;
    padding: 30px 40px;
}
.area-merit .tagline,
.area-merit h5 {
	text-align: center;
	color: #ED0E64;
}
.area-merit .tagline {
	border-bottom: solid 1px #ED0E64;
	display: table;
    margin: auto;
}
.area-merit h5 {
	font-size: 1.9rem;
	font-weight: 700;
}


.area-tit {
	text-align: center;
	font-weight: 700;
	margin: 80px auto 50px;
}
.area-tit .tagline {
	font-size: 2.0rem;
	padding: 20px 0 10px;
}
.area-tit h3 {
	color: #ED0E64;
	font-size: 6.0rem;
	font-weight: 700;
	margin: 0 auto;
	padding: 0 0 30px;
}
.area-tit h3 span {
	display: block;
	color: #000;
	font-size: 2.0rem;
	margin-top: 10px;
}
.ptn01 {
	background-color: #fff;
}
.ptn02 {
	background-color: #FFEDF4;
}

.btn01 {
    text-align: center;
    padding-bottom: 20px;
    /*
    margin-left: -20px;
    */
}

.btn01 a {
}
.btn01 a:hover {
    padding: 0 0 0 5px;
}
.btn01 a div {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    background: #44A8B1;
    padding: 10px;
    display: table-cell;
    text-align: center;
    width: 400px;
    max-width: 90%;
    box-shadow: 6px 6px 0px rgb(0 0 0 / 20%);
    height: 80px;
    vertical-align: middle;
}

.btn01 a:hover div {
	text-decoration: none;
	box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
    opacity: 0.9;
    /*
    margin: 13px 7px 7px 13px;
    */
}
.btn01 .ico {
    padding-right: 10px;
    height: auto;
}
.btn01 .ico-jirei {
    width: 30px;
}
.btn01 .ico-mail {
    width: 40px;
}
.btn01 .ico-becal {
    width: 36px;
}
.btn01 .ico-web {
    width: 40px;
}

/*
.btn01 a.jirei:before {
    content: '';
    display: inline-block;
    width: 5rem;
    background: url(../img/ico_works.png) no-repeat;
    background-size: contain;
    background-position: center center;
    height: 5rem;
    position: absolute;
    left: 120px;
    top: 1.4rem;
}
*/


.specarea {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 10px;
    padding: 0 0 15px;
}
.specarea .spec-tit01 {
    padding: 0;
}
.specarea .spec-tit01 p {
    background: #ED0E64;
    text-align: center;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    padding: 1.4rem 20px;
    line-height: 1.2;
}
.specarea .spec-tit01 p span {
    font-size: 1.6rem;
    font-weight: 400;
}
.specarea .spec-listarea01 {
    padding: 20px 30px 0;
}
.specarea .spec-subtit01 {
    display: inline-block;
    background: #ED0E64;
    color: #fff;
    padding: 0 1rem;
}
.specarea .spec-subtit01 span {
    font-weight: 400;
    font-size: 1.0rem;
}
.specarea .spec-subtit02 {
    font-size: 3.4rem;
    font-weight: 700;
    padding: 4rem 0;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 30px;
}
.specarea .spec-subtit02 span {
    font-size: 130%;
    color: #ED0E64;
}
.specarea .spec-list01 {
    list-style: none;
    padding: 0;
}
.specarea .spec-list01 li {
    text-indent: -1em;
    margin-left: 1em;
    padding-bottom: 10px;
}
.specarea .spec-list01 li:before {
    content: '●';
    display: inline-block;
    width: 1em;
    text-indent: 0;
    color: #ED0E64;
    margin-right: .3em;
}
.specarea .spec-cap01 {
    line-height: 1.6;
    font-size: 1.3rem;
    padding: 0 0 20px 0;
}



.area-imgbtn {
	padding: 50px 0;
}
.img-btn01 {
}
.img-btn01 img {
	width:480px;
	max-width: 100%;
	margin: auto;
}
.img-btn01:hover img {
	opacity: .8;
}


.post-wrap .worksitem {
	padding: 5px 5px 20px;
	/*
	min-height: 280px;
	*/
}
.post-wrap .thumbimg {
	/*
	width: auto;
	height: 210px;
	overflow: hidden;
	*/
	margin: 0 0 5px;
}
.post-wrap .thumbimg img {
	/*
    min-height: 300px;
    object-fit: cover;
	*/
	margin: 0;
}

.workslist {
    display: flex;
    flex-wrap: wrap;
}

.workslist .worksitem a:hover img {
	/*
	transform: scale(1.02,1.02);
	transition-duration: 0.5s;
	*/
	opacity: .8;
}

.worksitem .text h6 {
	padding: 5px 0 0;
	color: #000;
	font-size: 1.6rem;
}

/* singleページ用 */
.work-exp {
}
.work-exp .work-img {
	text-align: center;
	padding: 30px 0;
}
.work-exp .work-img img {
	margin: auto;
	width: 800px;
	max-width: 90%;
	height: auto;
}
.work-exp h3 {
	text-align: center;
	overflow: hidden;
}
.work-exp p {
	text-align: center;
}

table.table01 {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;/*
  width: 650px;
  table-layout: fixed;*/
}

table.table01 tr {
  background-color: #fff;
  padding: .35em;
	border-bottom: none;
}
table.table01 th,
table.table01 td {
  padding: 10px 20px;/**/
  border: 1px solid #707070;
}
table.table01 td {
	background: #fff;
}
table.table01 tr:nth-child(odd) td {
	background: #F7F7F5;
}

/************************************
** お問い合わせフォームの入力
************************************/
#cf-tbl{
	/*
width: 800px;
	*/
}

#cf-tbl table{
width: 100%;
border-collapse: collapse;
border: solid #CCC;
border-width: 1px;
color: #444;
	margin: 0 auto 20px;
}
#cf-tbl table tr th,
#cf-tbl table tr td{
padding: 0.5em;
text-align: left;
vertical-align: top;
border: solid #CCC;
border-width: 1px;
vertical-align: middle;
}
#cf-tbl table tr th{
width: 35%;
background: #eee;
}
@media screen and (max-width:768px){
#cf-tbl{
width: 100%;
}

#cf-tbl table,
#cf-tbl table tbody,
#cf-tbl table tr,
#cf-tbl table tr th,
#cf-tbl table tr td{
display: block;
}

#cf-tbl table{
width: 100%;
border-width: 0 0 1px 0;
}

#cf-tbl table tr th,
#cf-tbl table tr td{
width: 100%;
padding: 3% 5%;
}

#cf-tbl table tr td{
border-width: 0px 1px 0px 1px;
}
}
/*「必須」文字デザイン*/
.required{
font-size:.8em;
padding: 5px;
background: #F57500;
color: #fff;
border-radius: 3px;
margin-right: 5px;
}

/*「任意」文字デザイン*/
.optional{
font-size:.8em;
padding: 5px;
background: #000080;
color: #fff;
border-radius: 3px;
margin-right: 5px;
}

/* 入力項目を見やすく */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 8px 15px;
	margin-right: 10px;
	margin-top: 10px;
	border: 1px solid #d0d5d8;
	border-radius: 3px;
	background-color: #eff1f5;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}

/* 「送信する」ボタン */
#cf7-btn {
    display: block;
    padding: 15px;
    width: 400px;
    background: #44A8B1;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border: none;
    box-shadow: 6px 6px 0px rgb(0 0 0 / 20%);
    margin: 15px auto 0
    /*
    border-radius: 2px;
       height: 80px;
    vertical-align: middle;
	text-decoration: none;
	

    */
}
@media screen and (max-width:768px) {
    #cf7-btn {
        width: 250px;
    }
}

#cf7-btn:hover {
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
    padding: 16px 15px 14px;
    /*
    background: #fff280;
    color: #ffaa56;
    border: 2px solid #ffaa56
    */
}
/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	font-weight: 600;
}

/* -------------------------------------------------------
   Sidebtn
------------------------------------------------------- */

#sidebtn {
	position: fixed;
	bottom: 50px;
	right: 0;
	z-index: 100;
}
#sidebtn ul {
	list-style:none;
}
#sidebtn li {
	padding: 0 0 10px;
}

#sidebtn li a {
	padding: 0;
}
#sidebtn a:hover img {
    opacity: 0.9;
	/*
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0,0,0,.4));
  filter: drop-shadow(0px 0px 3px rgba(0,0,0,.4));
	*/
}

/*-------------------- ページ上部へ --------------------*/
#pagetop {
    position: fixed;
    right: 60px;
    bottom: 100px;
    cursor: pointer;
    z-index: 101;
	color: #333;
	font-size: 30px;
}
#pagetop img {
	width: 50px;
	height: auto;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
	
}


.pager{
	text-align:center;
}
a.page-numbers,
.pager .current{
	background: #fff;
	border:solid 1px #707070;
	border-radius:5px;
	padding:5px 8px;
	margin:0 2px;
}
.pager .current{
	background:#ED0E64;
	border:solid 1px #ED0E64;
	color:rgba(255,255,255,1);
}



footer {
    margin: 20px 0px;
    padding: 35px 10px 50px;
}
footer .row {
	margin: 0;
}
footer .footlogo01 {
    width: 59px;
    height: auto;
    margin-left: 50px;
}
footer .footlogo01 img {
	width: 40px;
}
footer .cp {
	font-size: 16px;
	text-align: center;
	padding-top: 20px;
}


.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center !important;
    font-size: 11px !important;
    color: #444 !important;
}
.recaptcha_policy a {
  font-size: 11px !important;
  color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }



@media (min-width:769px) {
    .nav-list {
        display: none;
    }
    .sidebtn-yokonaga {
        display: none;        
    }
}
@media (min-width:768px) {
}

@media (max-width:768px) {
    .nav-list-pc {
        display: none !important;
    }
    .sidebtn-tatenaga {
        display: none;        
    }

}


@media (max-width:768px) {
    h1.hd-logo {
        margin: 15px 0 0 20px;
    }
.pagetit {
    font-size: 3.4rem;
    font-weight: 700;
    padding: 30px 0;
}
.pagetit span {
    padding: 4px 0 0;
    font-size: 1.8rem;
    font-weight: 600;
}
.description01 {
    text-align: left;
    line-height: 1.9;
    padding: 0 25px;
}
    .tit-baloon00 span {
	font-size: 1.2rem;
    letter-spacing: .1rem;
}
.tit-baloon00 h3 {
	font-size: 2.4rem;
    margin-top: 10px;
    margin-bottom: 5px;
}
.tit-baloon00 {
	padding: 15px 10px 30px;
}
.tit-baloon01 {
    border-radius: 80px;
    margin-bottom: 30px;
}
.tit-baloon01 h4 {
    font-size: 2.6rem;
    padding-bottom: 0px;
}
.tit-baloon01 h4 .large01 {
    font-size: 3.6rem;
}
.tit-baloon02 {
    border-radius: 60px;
}
.tit-baloon02 h4 {
    font-size: 2.0rem;
}
    .pointarea01 {
        padding-bottom: 50px;
    }
    .pointarea01 p {
        margin: 0 auto;
        line-height: 1.7;
        text-align: center;
    }
    .pointarea01 .t1 {
        font-weight: 700;
        font-size: 2.1rem;
    }
    .pointarea01 .t1 .large {
        font-size: 2.8rem;
    }
    .pointarea01 .p1 {
        font-size: 1.5rem;
        padding: 0px 0 30px;
    }
    
    .pointarea01 .i1 img {
        width: 240px;
        max-width: 100%;
        margin: 0 auto 10px;
    }
    .pointarea01 .i2 img {
        width: 80px;
        max-width: 100%;
        margin: 0 auto 30px;
    }
    .pointarea01 .i3 img {
        width: 260px;
        max-width: 100%;
        margin: 0 auto 30px;
    }
     .pointarea01 .i4 img {
        width: 270px;
        max-width: 100%;
        margin: 0 auto 30px;
    }
.list-merit {
    display: block;
}
.area-tit {
    margin: 50px auto 30px;
}
.area-tit h3 {
    font-size: 4.0rem;
    padding: 0 0 20px;
}
.area-tit h3 span {
    font-size: 1.6rem;
    margin-top: 0px;
}
.area-tit .tagline {
    font-size: 1.6rem;
    padding: 10px 0 0px;
}
    
    .specarea .spec-tit01 p {
    font-size: 2.2rem;
}
    
    
    
    
    #sidebtn {
    display: inline-table;
    top: auto;
    bottom: 0px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  #sidebtn ul { margin: 0 auto; padding: 0; display: flex;}
  #sidebtn li { float: left; }
  #sidebtn li:first-child { margin-right: 15px; }
  #sidebtn a {
    writing-mode: horizontal-tb;
    padding: 0px;
  }
  #sidebtn li {
    padding: 0;
  }
	#pagetop {
		right: 20px;
		bottom: 10px;
	}
	footer {
		font-size: 13px;
		padding: 20px 0px 60px;
		margin: 0;
	}

	footer .footlogo01 {
		margin-left: 20px;
	}
	footer .footlogo01 img {
		width: 30px;
	}
	footer .cp {
	padding-top: 0px;
}

}


	
	