/* @import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Zen Maru Gothic", sans-serif; */
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  margin: auto;
  font-size: 24px;
	color: #505A64;
	letter-spacing: 1px;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
	transition: 0.3s all;
}
a:hover {
	opacity: 0.7;
}
button {
	transition: 0.3s all;
}
button:hover {
	opacity: 0.7;
}


img {
  max-width: 100%;
}

.w550 {
  max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}
.w800 {
  max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.w1000 {
  max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.w1200 {
  max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.w1400 {
  max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
.w1500 {
  max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}
.w1920 {
  max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}

.mt-50 {
	margin-top: 50px;
}
.h-20 {
	line-height: 2;
}
.red-under {
	text-decoration: underline;
	text-decoration-color: #eb466e;
	text-underline-offset: 5px;
	color: #eb466e;
}

.pad-1rem {
	padding-left: 1rem;
	padding-right: 1rem;
}

.inblock {
  display: inline-block;
}
.bold {
  font-weight: bold;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

div.space-foot {
	display: block;
	width: 100%;
	height: 100px;
}
div.space-top {
	display: block;
	width: 100%;
	height: 50px;
}

section {
	padding: 90px 1rem;
}
.cmn-ttl {
	position: relative;
	margin-bottom: 60px;
}
.cmn-ttl .en {
	font-size: 120px;
	color: #FCE7EB;
	text-align: center;
	line-height: 1;
	/* letter-spacing: 3rem; */
	letter-spacing: 3vw;
	padding-left: 3vw;
}
.cmn-ttl .en.narrow {
	letter-spacing: 0.4vw;
}
.cmn-ttl .jp {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	color: #F0879B;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 54px;
	padding-top: 10px;
	font-weight: bold;
	letter-spacing: 1.7rem;
}
.cmn-ttl2 {
	position: relative;
	text-align: center;
	padding-bottom: 25px;
	margin-bottom: 40px;
}
.cmn-ttl2 .jp {
	font-size: 42px;
	color: #EB466E;
	font-weight: 500;
	letter-spacing: 0.5rem;
}
.cmn-ttl2 .jp .rei {
	font-size: 36px;
	font-weight: 500;
}
.cmn-ttl2 .en {
	font-size: 16px;
	letter-spacing: 0.1rem;
}
.cmn-ttl2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 60px;
	height: 5px;
	background-color: #EB466E;
}
.cmn-ttl3 {
	font-size: 72px;
	color: #EB466E;
	font-weight: bold;
	text-align: center;
	margin-bottom: 45px;
}
.cmn-ttl3 span {
	font-weight: bold;
}
.cmn-ttl4 {
	font-size: 42px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 60px;
	font-family: 'Noto Serif JP', serif;
}
.cmn-ttl4 span {
	font-weight: 500;
}
.cmn-ttl5 {
	text-align: left;
	margin-top: 200px;
	margin-bottom: 160px;
}
.cmn-ttl5 .en {
	font-size: 16px;
}
.cmn-ttl5 .jp {
	position: relative;
	font-size: 42px;
	color: #EB466E;
	padding-top: 5px;
	padding-bottom: 25px;
}
.cmn-ttl5 .jp::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 5px;
	background-color: #EB466E;
}


.maru-rb::after {
	border-radius: 0 0 200px 0;
}
.maru-lb::after {
	border-radius: 0 0 0 200px;
}
.bg-white {
	position: relative;
	overflow: hidden;
}
.bg-white::before,
.bg-white::after {
	position: absolute;
	content: '';
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.bg-white::before{
	background-color: #FDF2F9;
}
.bg-white::after {
	background-color: white;
}
.bg-pink {
	position: relative;
	overflow: hidden;
}
.bg-pink::before,
.bg-pink::after {
	position: absolute;
	content: '';
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.bg-pink::before{
	background-color: white;
}
.bg-pink::after {
	background-color: #FDF2F9;
}
.pink {
	background-color: #FDF2F9;
}
.table1 {
	width: 100%;
}
.table1 tr:first-child {
	border-top: dashed 1px #A7ACB1;
}
.table1 tr {
	border-bottom: dashed 1px #A7ACB1;
}
.table1 th {
	width: 25%;
	padding: 20px 10px 20px 30px;
	vertical-align: middle;
}
.table1 td {
	width: 75%;
	padding: 20px 10px 20px 30px;
}

.table2 {
	width: 100%;
}
.table2 tr:first-child {
	border-top: dashed 1px #A7ACB1;
}
.table2 tr {
	border-bottom: dashed 1px #A7ACB1;
}
.table2 th {
	width: 200px;
	padding: 20px 10px 20px 30px;
	vertical-align: middle;
	text-align: left;
}
.table2 td {
	width: calc(98% - 200px);
	padding: 20px 10px 20px 30px;
}

.table3 {
	width: 100%;
}
.table3 tr:first-child {
	border-top: dashed 1px #A7ACB1;
}
.table3 tr {
	border-bottom: dashed 1px #A7ACB1;
}
.table3 th {
	width: 280px;
	padding: 20px 10px 20px 30px;
	vertical-align: middle;
	text-align: left;
}
.table3 td {
	width: calc(98% - 280px);
	padding: 20px 10px 20px 30px;
}
.table3.last tr:last-child th,
.table3.last tr:last-child td {
	color: #EB466E;
	font-weight: 500;
	background-color: white;
}

.table4 {
	width: 100%;
	margin-bottom: 30px;
}
.table4 tr:first-child {
	border-top: dashed 1px #A7ACB1;
}
.table4 tr {
	border-bottom: dashed 1px #A7ACB1;
}
.table4 th {
	width: 240px;
	padding: 20px 10px 20px 20px;
	vertical-align: middle;
	text-align: left;
}
.table4 td {
	width: calc(98% - 240px);
	padding: 20px 10px 20px 20px;
	letter-spacing: 0;
}
.table4 td p {
	font-size: 18px;
}
.table4.last tr:last-child th,
.table4.last tr:last-child td {
	color: #EB466E;
	font-weight: 500;
	background-color: white;
}

.link-box {
	position: relative;
	width: 250px;
	height: 65px;
	padding-left: 10px;
	padding-right: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #EB466E;
	border: solid 1px #EB466E;
	border-radius: 50px;
	color: white;
	font-size: 18px;
}
.link-box::before {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	background-image: url(img/common/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.link-box:hover {
	opacity: 1;
	color: #EB466E;
	background-color: white;
}

@media screen and (max-width: 1500px) {
	.maru-rb::after {
		border-radius: 0 0 80px 0;
	}
	.maru-lb::after {
		border-radius: 0 0 0 80px;
	}
	.cmn-ttl .en.narrow {
		font-size: 90px;
	}
}
@media screen and (max-width: 1100px) {
	.cmn-ttl5 {
		margin-top: 150px;
		margin-bottom: 100px;
	}
}
@media screen and (max-width: 1000px) {
	.anchor {
		padding-top: 100px;
		margin-top: -100px;
	}
	.cmn-ttl .jp {
		font-size: 38px;
		letter-spacing: 1rem;
	}
	.cmn-ttl .en {
		font-size: 90px;
		letter-spacing: 2.5vw;
	}
	.cmn-ttl .en.narrow {
		font-size: 90px;
	}
	.cmn-ttl3 {
		font-size: 60px;
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 21px;
	}
	section {
		padding: 70px 1rem;
	}
	.cmn-ttl {
		margin-bottom: 50px;
	}
	.cmn-ttl .en {
		font-size: 70px;
		left: 2vw;
	}
	.cmn-ttl .en.narrow {
		font-size: 60px;
		letter-spacing: 0.1vw;
	}
	.cmn-ttl .jp {
		font-size: 34px;
		letter-spacing: 1.6vw;
	}
	.cmn-ttl2 .jp {
		font-size: 34px;
	}
	.cmn-ttl2 .jp .rei {
		font-size: 26px;
	}
	.cmn-ttl2::before {
		height: 3px;
	}
	.cmn-ttl3 {
		font-size: 42px;
	}
	.cmn-ttl4 {
		font-size: 32px;
	}
	.cmn-ttl4 br.pc {
		display: none;
	}
	.cmn-ttl5 {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	.cmn-ttl5 .jp {
		font-size: 36px;
	}
	.table1 tr {
		display: block;
	}
	.table1 tr th {
		display: block;
		width: 100%;
		text-align: left;
		padding-left: 15px;
	}
	.table1 tr td {
		display: block;
		padding: 0 10px 10px 25px;
		width: 100%;
	}
	.table2 tr {
		display: block;
	}
	.table2 tr th {
		display: block;
		width: 100%;
		text-align: left;
		padding-left: 15px;
		font-weight: 500;
	}
	.table2 tr td {
		display: block;
		padding: 0 10px 10px 25px;
		width: 100%;
	}
	.table3 tr {
		display: block;
	}
	.table3 th {
		display: block;
		width: 100%;
		padding-bottom: 0;
		padding-left: 15px;
		font-weight: 500;
	}
	.table3 td {
		display: block;
		width: 100%;
		padding-top: 10px;
	}
	.table4 tr {
		display: block;
	}
	.table4 th {
		display: block;
		width: 100%;
		padding-bottom: 0;
		padding-left: 15px;
		font-weight: 500;
	}
	.table4 td {
		display: block;
		width: 100%;
		padding-top: 10px;
	}
	.table4 td p {
		font-size: 16px;
	}
	.maru-rb::after {
		border-radius: 0;
	}
	.maru-lb::after {
		border-radius: 0;
	}
}
@media screen and (max-width: 480px) {
	body {
		font-size: 18px;
	}
	section {
		padding: 60px 1rem;
	}
	.cmn-ttl .en {
		font-size: 48px;
		letter-spacing: 1.5vw;
		padding-left: 1vw;
	}
	.cmn-ttl .en.narrow {
		font-size: 38px;
	}
	.cmn-ttl .jp {
		font-size: 28px;
	}
	.cmn-ttl2 .jp {
		font-size: 30px;
		letter-spacing: 0.3rem;
	}
	.cmn-ttl2 .jp .rei {
		font-size: 24px;
	}
	.cmn-ttl2 .en {
		font-size: 15px;
	}
	.cmn-ttl3 {
		font-size: 28px;
	}
	.cmn-ttl4 {
		font-size: 24px;
		margin-bottom: 40px;
	}
	.cmn-ttl5 .jp {
		font-size: 32px;
	}
}

/**********************************************************
* ヘッダー
**********************************************************/
.header {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	max-width: 1920px;
	height: 150px;
	margin: auto;
	padding: 10px 1.5rem;

	z-index: 150;
	background-color: white;
	/* position: sticky;
	top: 0; */
}
.h-logo {
	display: block;
	margin-right: auto;
}
.h-list {
	width: calc(95% - 970px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	max-width: 620px;
}
.h-list a,
.h-list button {
	color: #505A64;
	font-size: 21px;
	font-weight: 500;
}
.h-list button {
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
  /* font-family: "Zen Maru Gothic", sans-serif; */
	font-family: "Noto Sans JP", sans-serif;
}
.h-busBtn {
	position: relative;
}
.h-busBtn::before {
	content: url(img/common/down.png);
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
}

.h-insta {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: solid 1px #EB466E;
	margin-right: 20px;
}
.h-insta:hover {
	opacity: 1;
	background-color: #fcdfe4;
}

.h-recBtn {
	cursor: pointer;
	width: 240px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #EB466E;
	background-color: #FDECF0;
	border: solid 1px #EB466E;
	border-radius: 50px;
	font-size: 21px;
	letter-spacing: 4px;
	margin-right: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
}
.h-recBtn:hover {
	opacity: 1;
	background-color: #EB466E;
	color: #FDECF0;
}
.h-contact {
	width: 260px;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 50px;
	background-color: #EB466E;
	font-size: 21px;
	color: white;
	letter-spacing: 1.5px;
	padding: 0 35px 0 10px;
	border: solid 1px #EB466E;
}
.h-contact:hover {
	opacity: 1;
	background-color: white;
	color: #EB466E;
}
.h-contact span {
	font-weight: 500;
}
.h-contact .mail {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.h-ttl {
	position: relative;
	max-width: 1920px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	height: 400px;
	text-align: center;
	border-radius: 100px 100px 0 0;
	margin: auto;
}
.h-ttl h2 {
	font-size: 60px;
	color: white;
	font-weight: bold;
	letter-spacing: 5px;
}
.h-ttl .en {
	color: #505A64;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 3px;
}
.h-icon {
	position: absolute;
	bottom: -75px;
}

.pop-bus {
	position: absolute;
	max-width: 1400px;
	width: 85%;
	top: 170px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 20;
	padding: 2%;
	background-color: white;
	border-radius: 20px;
	box-shadow: 5px 5px 15px #e9e7f0;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s all;
}
.pop-bus.active {
	opacity: 1;
	pointer-events: auto;
}
.pop-busList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pop-busList > li {
	width: 49%;
	border: solid 1px #CACDD0;
	margin-bottom: 2%;
}
.pop-busList > li:last-child {
	margin-bottom: 0;
}
.pop-busList > li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2% 2% 2% 4%;
	min-height: 300px;
}
.pop-busList > li a:hover {
	opacity: 0.5;
}
.pop-busList > li figure {
	width: 120px;
}
.pop-busList > li .txt {
	width: calc(95% - 120px);
}
.pop-busList > li .txt .red {
	color: #EB466E;
	font-size: 21px;
	margin-bottom: 15px;
}
.pop-busList > li .txt .ttl {
	color: #505A64;
	font-size: 28px;
}

.pop-rec {
	position: absolute;
	display: flex;
	justify-content: space-between;
	max-width: 1730px;
	width: 90%;
	top: 170px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 20;
	padding: 90px 2%;
	background-color: #FDF2F9;
	border-radius: 20px;
	box-shadow: 5px 5px 15px #e9e7f0;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s all;
}
.pop-rec.active {
	opacity: 1;
	pointer-events: auto;
}
.pop-rec .back-ttl {
	position: absolute;
	top: 0;
	left: 20px;
	font-size: 120px;
	color: #FBE1E6;
	line-height: 1;
	z-index: -1;
	letter-spacing: 3rem;
}
.pop-rec .left {
	width: 300px;
}
.pop-rec .right {
	width: calc(98% - 300px);
}
.pop-recList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pop-recList > li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}
.pop-recList > li:last-child a {
	margin-bottom: 0;
}
.pop-recList > li figure {
	width: 320px;
}
.pop-recList > li .ttl {
	width: calc(98% - 320px);
	color: #EB466E;
	font-weight: 500;
}
.pop-recList > li .ttl span {
	font-weight: 500;
}
.pop-recList > li:nth-child(odd) {
	width: 550px;
}
.pop-recList > li:nth-child(even) {
	width: calc(98% - 550px);
}
.pop-rec .maru-ttl {
	width: 300px;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	text-align: center;
	color: #EB466E;
	border-radius: 50%;
	border: solid 1px #EB466E;
	letter-spacing: 0.5rem;
	margin-top: 115px;
	margin-left: auto;
	margin-right: auto;
}
.pop-rec .sns-ttl {
	font-size: 18px;
	color: #EB466E;
	text-align: center;
	border-bottom: solid 1px #EB466E;
	margin-top: 40px;
	padding-bottom: 10px;
	margin-bottom: 30px;
	letter-spacing: 3px;
}
.pop-rec .left .flex {
	max-width: 170px;
	margin: auto;
}
.pop-rec .ent-link {
	width: 100%;
	max-width: 280px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #EB466E;
	background-color: white;
	border-radius: 50px;
	font-size: 21px;
	padding: 10px 15px;
	margin-top: 45px;
	margin-left: auto;
	margin-right: auto;
}
.pop-rec .ent-link span {
	display: block;
	width: calc(100% - 60px);
	text-align: center;
}

@media screen and (max-width: 1700px) {
	.pop-recList > li figure {
		width: 240px;
	}
	.pop-recList > li:nth-child(odd) {
		width: 450px;
	}
	.pop-recList > li:nth-child(even) {
		width: calc(98% - 450px);
	}
	.pop-recList > li .ttl {
		width: calc(98% - 240px);
	}
}
@media screen and (max-width: 1500px) {
	.h-list {
		width: calc(97% - 780px);
	}
	.h-insta {
		width: 60px;
		height: 60px;
		margin-right: 10px;
	}
	.h-recBtn {
		width: 150px;
		height: 60px;
		margin-right: 10px;
		letter-spacing: 2px;
	}
	.h-contact {
		width: 210px;
		height: 60px;
		letter-spacing: 0;
		padding-right: 20px;
	}
	.h-contact .mail {
		width: 45px;
		height: 45px;
	}
	.h-contact .mail img {
		display: block;
		width: 30px;
	}
	.pop-rec .left {
		width: 240px;
	}
	.pop-rec .right {
		width: calc(98% - 240px);
	}
	.pop-rec .maru-ttl {
		width: 240px;
		height: 240px;
		margin-top: 80px;
	}
	.pop-rec .ent-link {
		height: 60px;
	}
	.pop-rec .ent-link img {
		width: 40px;
	}
	.pop-recList > li .ttl {
		font-size: 21px;
	}
	.pop-recList > li figure {
		width: 210px;
	}
	.pop-recList > li .ttl {
		width: calc(98% - 210px);
	}
	.pop-recList > li:nth-child(odd) {
		width: 380px;
	}
	.pop-recList > li:nth-child(even) {
		width: calc(98% - 380px);
	}
}
@media screen and (max-width: 1400px) {
	.pop-busList > li a {
		min-height: 250px;
	}
	.pop-busList > li .txt .red {
		font-size: 19px;
	}
	.pop-busList > li .txt .ttl {
		font-size: 25px;
	}
	.pop-busList > li br.pc {
		display: none;
	}
}
@media screen and (max-width: 1300px) {
	.h-logo img {
		width: 300px;
	}
	.h-list a, .h-list button,
	.h-recBtn,
	.h-contact {
		font-size: 19px;
	}
	.h-list {
		width: calc(98% - 700px);
	}
	.h-contact {
		width: 200px;
	}
	.h-recBtn {
		width: 120px;
		letter-spacing: 0;
	}
	.pop-rec .left {
		width: 200px;
	}
	.pop-rec .right {
		width: calc(98% - 200px);
	}
	.pop-rec .maru-ttl {
		width: 200px;
		height: 200px;
		letter-spacing: 0.2rem;
		margin-top: 60px;
	}
	.pop-rec .ent-link {
		margin-top: 25px;
	}
	.pop-recList > li figure {
		width: 180px;
	}
	.pop-recList > li .ttl {
		width: calc(98% - 180px);
	}
	.pop-recList > li:nth-child(odd) {
		width: 340px;
	}
	.pop-recList > li:nth-child(even) {
		width: calc(98% - 340px);
	}
	.h-ttl {
		height: 350px;
		background-size: cover;
	}
}
@media screen and (max-width: 1200px) {
	.pop-busList > li figure {
		width: 90px;
	}
	.pop-busList > li .txt {
		width: calc(95% - 90px);
	}
}
@media screen and (max-width: 1100px) {
	.h-list, .h-recBtn, .h-contact {
		display: none;
	}
	.h-insta {
		margin-right: 45px;
    width: 45px;
    height: 45px;
	}
	.h-insta img {
		width: 25px;
		height: 25px;
	}
	.header {
		height: 80px;
		position: sticky;
		top: 0;
		transition: 0.3s all;
	}
	.header.scroll {
		box-shadow: 3px 3px 5px #cfcfcf;
	}
	.pop-bus, .pop-rec {
		display: none;
	}
	.h-ttl {
		height: 31.8181vw;
	}
}
@media screen and (max-width: 768px) {
	.header {
		height: 70px;
	}
	.h-logo img {
		width: 230px;
	}
	.h-ttl {
		height: 250px;
		border-radius: 30px 30px 0 0;
	}
	.h-ttl h2 {
		font-size: 45px;
		letter-spacing: 3px;
	}
	.h-icon {
		width: 120px;
	}
}
@media screen and (max-width: 600px) {
	.h-ttl {
		border-radius: 0;
		height: 180px;
	}
}
@media screen and (max-width: 480px) {
	.h-ttl h2 {
		font-size: 35px;
		letter-spacing: 1.5px;
		line-height: 1.2;
		margin-bottom: 5px;
	}
	.h-icon {
		width: 80px;
		bottom: -45px;
	}
	.h-insta {
		margin-right: 35px;
	}
}


/**********************************************************
* footer フッター
**********************************************************/
.footer {
	background-color: #F58CAA;
	color: white;
	padding: 65px 1rem 60px;
}
.f-contact {
	max-width: 1000px;
	margin: auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.f-contact .left,
.f-contact .right {
	width: 49.5%;
}
.f-contact .ttl {
	font-size: 34px;
	font-weight: bold;
	margin-bottom: 20px;
}

.f-contact .right .tel-link,
.f-contact .right .mail-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 380px;
	color: white;
	padding: 10px 20px 10px 60px;
	margin: auto;
	border-radius: 50px;
	background-color: #505A64;
	border: solid 1px #505A64;
}
.f-contact .right .tel-link {
	margin-bottom: 15px;
	font-family: cursive;
	font-weight: bold;
}
.f-contact .right .mail-link {
	font-size: 18px;
}
.f-contact .right .tel-link img,
.f-contact .right .mail-link img {
	margin-right: 20px;
}
.f-contact .right .tel-link:hover,
.f-contact .right .mail-link:hover {
	background-color: white;
	color: #505A64;
	opacity: 1;
}

.footer hr {
	max-width: 1200px;
	margin: 70px auto 65px;
}

.f-list {
	width: 100%;
	max-width: 1150px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.f-list a {
	color: white;
}
.f-list > li {
	width: 17%;
}
.f-list > li:nth-child(3),
.f-list > li:nth-child(5) {
	width: 23%;
}
.f-list > li > a,
.f-list > li > p {
	font-weight: 500;
	font-size: 18px;
}
.f-inList {
	margin-top: 10px;
}
.f-inList > li {
	padding-left: 13px;
	line-height: 1.2;
	margin-bottom: 10px;
	letter-spacing: 0;
	font-size: 16px;
}

.f-bot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 1200px;
	width: 100%;
	margin: 30px auto 0;
}
.f-bot .left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;	
	padding-top: 20px;
	font-size: 16px;
}
.f-bot .right {
	margin-left: auto;
	padding-top: 20px;
}
.f-logo {
	display: block;
	margin-right: 25px;
}
.f-insta {
	display: block;
	margin-left: 20px;
}
.f-bot .right a {
	color: white;
	font-size: 16px;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #EB466E;
  text-decoration: none;
  color: #fff;
  width: 60px;
	height: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 50%;
	opacity: 1;
  transition: all .3s ease;
	border: solid 1px #EB466E;
}
#page-top a::after {
	content: "";
	position: absolute;
	top: 6px;
	bottom: 0;
	margin: auto;
	right: 24px;
	width: 12px;
	height: 12px;
	border-right: 3px solid white;
	border-bottom: 3px solid white;
	transform: rotate(-135deg);
	transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
	background-color: white;
  /* opacity: .7; */
}
#page-top a:hover::after {
	border-color: #EB466E;
}



@media screen and (max-width: 768px) {
	.footer {
		padding: 55px 1rem 40px;
	}
	.f-contact {
		flex-wrap: wrap;
	}
	.f-contact .left {
		max-width: 450px;
		margin: auto;
		text-align: center;
		margin-bottom: 30px;
	}
	.f-contact .ttl {
		font-size: 26px;
	}
	.f-contact .txt {
		font-size: 21px;
	}
	.f-contact .left br.pc {
		display: none;
	}
	.f-contact .left, .f-contact .right {
		width: 100%;
	}
	.f-contact .right {
		margin-bottom: 20px;
	}
	.footer hr {
		display: none;
	}
	.f-list {
		display: none;
	}
	.f-bot,
	.f-bot .left,
	.f-bot .right {
		display: block;
		text-align: center;
	}
	.f-logo {
		margin: 0 auto 20px;
	}
	.f-insta {
		/* display: none; */
		margin: 30px auto 0;
	}
}
@media screen and (max-width: 480px) {
	.f-contact .right .tel-link,
	.f-contact .right .mail-link {
		max-width: 310px;
		padding-left: 15px;
	}
	.f-contact .right .tel-link img,
	.f-contact .right .mail-link img {
		width: 40px;
	}
	.f-contact .txt {
		font-size: 18px;
	}
	#page-top {
		bottom: 85px;
    right: 10px;
	}
	#page-top a {
		width: 45px;
    height: 45px;
    padding: 0;
	}
	#page-top a::after {
		right: 16px;
    width: 10px;
    height: 10px;
	}
}


/**********************************************************
* トップページ top
**********************************************************/
.main-img {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	animation-name: fadein-Normal;
  animation-duration: 2.0s;
}
.main-img img {
	display: block;
	margin: auto;
	border-radius: 100px 100px 0 0;
}
.main-img .sp {
	display: none;
}
.top-txt {
	font-size: 28px;
	text-align: center;
	line-height: 1.8;
}
.movie-wrap {
	margin: 70px auto;
	max-width: 960px;
}
.movie {
	display: block;
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9のアスペクト比 */
	height: 0;
}
.movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.top-1 .link-box {
	margin: auto;
}
.top-news .left {
	width: 250px;
}
.top-news .left .ttl {
	text-align: left;
	margin-bottom: 60px;
}
.top-news .left .ttl .jp {
	font-size: 50px;
	color: #EB466E;
	font-weight: bold;
}
.top-news .left .ttl .en {
	font-size: 16px;
	letter-spacing: 2px;
	padding-top: 5px;
}
.top-news .left .link-list {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #505A64;
}
.top-news .left .link-list .arrow {
	display: inline-block;
	width: 72px;
	height: 72px;
	margin-right: 20px;
	background-image: url(img/top/arrow.png);
}
/* .top-news .left .link-list img {
	margin-right: 20px;
} */
.top-news .right {
	max-width: 890px;
	width: calc(97% - 250px);
}
.news-table {
	width: 100%;
}
.news-table tr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.news-table tr {
	border-bottom: dashed 1px #A7ACB1;
	padding: 17px 0;
}
.news-table tr td.date {
	width: 110px;
	font-size: 16px;
	text-align: left;
	padding: 10px 10px 10px 20px;
}
.news-table tr td.cate {
	width: 125px;
	font-size: 16px;
	text-align: center;
	padding: 10px;
}
.news-table tr td.cate span {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #EB466E;
	border: solid 1px #EB466E;
	max-width: 100px;
	width: 100%;
	margin: auto;
	border-radius: 30px;
	background-color: white;
}
.news-table tr th {
	width: calc(100% - 235px);
	text-align: left;
	padding-left: 4%;
	font-size: 21px;
	color: #505A64;
}
.news-table tr th a {
	color: #505A64;
}

.top3-ttl {
	font-size: 42px;
	font-weight: 500;
	writing-mode: vertical-rl;
	color: #EB466E;
	letter-spacing: 8px;
}
.top3-bigttl {
	display: flex;
	justify-content: space-around;
	width: 100%;
	font-size: 120px;
	color: #FCE7EB;
	text-align: center;
	line-height: 1;
}
.top-3 .left {
	width: 52%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.top-3 .right {
	width: 41%;
}
.more-link {
	position: relative;
	display: block;
	width: 250px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	background-color: #EB466E;
	border: solid 1px #EB466E;
	border-radius: 40px;
	font-size: 16px;
	padding: 10px 65px 10px 10px;
}
.more-link:hover {
	opacity: 1;
	background-color: white;
	color: #EB466E;
}
.top-3 .more-link {
	margin-top: 50px;	
	margin-bottom: 50px;
}
.more-link img {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.top-3 .right .img {
	margin-left: 12%;
}
.top4-list {
	width: 100%;
	max-width: 1330px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: auto;
}
.top4-list li {
	position: relative;
	width: 47.5%;
	padding-left: 30px;
	margin-bottom: 100px;
}
.top4-list li .pict {
	position: relative;
}
.top4-list li .pict > img {
	width: 100%;
	border-radius: 30px;
	display: block;
}
.top4-list li .pict .more-link {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 50px 50px 50px 0;
}
.top4-list li .icon {
	position: absolute;
	left: 0;
	bottom: -15px;
}
.top4-list li p {
	padding-top: 20px;
	padding-left: 150px;
}
.top-5 {
	padding:0;
	max-width: 1920px;
	margin: auto;
}
.top-5 .flex {
	align-items: center;
}
.top-5 .map {
	width: 62.5%;
}
.top-5 .map .gmap-wrap {
	padding-bottom: 580px;
	margin-bottom: 0;
}
.top-5 .txtarea {
	width: 37.5%;
	text-align: left;
	padding: 40px 1rem;
	padding-left: 3%;
}
.top-5 .ttl {
	margin-bottom: 60px;
}
.top-5 .ttl .jp {
	color: #EB466E;
	font-size: 50px;
	font-weight: bold;
}
.top-5 .ttl .en {
	font-size: 16px;
}
.top-5 .address {
	margin-bottom: 40px;
	font-size: 21px;
}
.top-5 .way {
	margin-bottom: 20px;
	font-size: 18px;
}
.top-5 .way .flex {
	justify-content: flex-start;
	align-items: center;
}
.top-5 .way .flex img {
	display: block;
	margin-right: 10px;
}

@media screen and (max-width: 1300px) {
	.top-3 .right br.pc {
		display: none;
	}
	.top3-txt {
		line-height: 2;
	}
	.top3-ttl {
		font-size: 36px;
		writing-mode: unset;
		letter-spacing: 4px;
		padding-left: 30px;
	}
}
@media screen and (max-width: 1000px) {
	.top-news .left {
		width: 100%;
	}
	.top-news .right {
		width: 100%;
	}
	.top-news .left .ttl {
		float: left;
		margin-bottom: 30px;
	}
	.top-news .left .link-list {
		float: right;
		margin-right: 4%;
	}
	.top3-txt br {
		display: none;
	}
	.top3-ttl {
		font-size: 30px;
		letter-spacing: 2px;
	}
	.top4-list li {
		width: 49%;
		margin-bottom: 60px;
	}
	.top4-list li .icon {
		width: 100px;
		bottom: 0;
	}
	.top4-list li p {
		padding-left: 90px;
	}
	.top-5 .map {
		width: 50%;
	}
	.top-5 .txtarea {
		width: 50%;
	}
	.top-5 .map .gmap-wrap {
		padding-bottom: 500px;
	}
}
@media screen and (max-width: 768px) {
	.top-txt {
		font-size: 22px;
	}
	.main-img img {
		border-radius: 60px 60px 0 0;
	}
	.news-table tr {
		justify-content: flex-start;
	}
	.news-table tr th {
		width: 100%;
		font-size: 20px;
	}
	.news-table tr td.cate {
		font-size: 15px;
	}
	.top-news .left .link-list .arrow {
		width: 50px;
		height: 50px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}
	.top-news .left .ttl .jp {
		font-size: 40px;
	}
	.top-3 .left {
		width: 100%;
		justify-content: center;
		align-items: center;
	}
	.top-3 .right {
		width: 100%;
		margin-top: 60px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.top3-txt {
		/* line-height: 1.7; */
		max-width: 550px;
		margin: auto;
	}
	.top3-ttl {
		writing-mode: vertical-rl;
		letter-spacing: 4px;
	}
	.top-3 .left img {
		width: 60%;
	}
	.top3-bigttl {
		font-size: 60px;
		max-width: 400px;
		width: 80%;
	}
	.top-3 .right .img {
		margin: auto;
		margin-top: 20px;
		width: 80%;
	}
	.top-3 .more-link {
		order: 2;
		margin-bottom: 0;
	}
	.top4-list li {
		width: 100%;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
	}
	.top4-list li .icon {
		position: relative;
		float: left;
	}
	.top4-list li p {
		padding-left: 120px;
	}
	.top4-list li .pict {
		margin-bottom: 10px;
	}
	.top4-list li .pict .more-link {
		width: 200px;
	}
	.top-5 .map {
		width: 100%;
	}
	.top-5 .txtarea {
		width: 100%;
	}
	.top-5 .map .gmap-wrap {
		padding-bottom: 48.333%;
	}
	.top-5 .ttl {
		margin-bottom: 40px;
	}
	.top-5 .ttl .jp {
		font-size: 40px;
	}
	.top-5 .address {
		font-size: 18px;
	}
	.top-5 .way {
		font-size: 17px;
	}
}
@media screen and (max-width: 600px) {
	.main-img .pc {
		display: none;
	}
	.main-img .sp {
		display: block;
		border-radius: 0;
	}
	.top3-ttl {
		font-size: 24px;
	}
}
@media screen and (max-width: 480px) {
	.top-txt {
		line-height: 1.6;
		font-size: 20px;
	}
	.top-news .left .ttl .jp {
		font-size: 34px;
	}
	.top3-txt {
		line-height: 1.7;
	}
	.top3-bigttl {
		font-size: 40px;
		max-width: 200px;
	}
	.top4-list li .icon {
		width: 80px;
	}
	.top4-list li:last-child {
		margin-bottom: 0;
	}
	.top4-list li p {
		padding-left: 90px;
		padding-top: 14px;
	}
	.more-link {
		height: 55px;
	}
	.more-link img {
		width: 40px;
	}
	.top-5 .ttl .jp {
		font-size: 34px;
	}
}


/**********************************************************
* 法人紹介 about us
**********************************************************/
.vision-ttl {
	font-size: 72px;
	font-weight: 500;
	/* letter-spacing: 0.7rem; */
	letter-spacing: 0;
	text-align: center;
	color: #505A64;
	font-family: 'Noto Serif JP', serif;
}
.abo-2 .flex .txt {
	width: 59%;
	line-height: 1.8;
}
.abo-2 .flex figure {
	width: 34%;
}
.abo-2 .flex figure p {
	text-align: center;
	margin-top: 30px;
}
.abo-1 br.sp {
	display: none;
}

@media screen and (max-width: 1000px) {
	.vision-ttl {
		font-size: 60px;
	}
}
@media screen and (max-width: 768px) {
	.vision-ttl { 
		font-size: 45px;
		line-height: 1.3;
	}
	.abo-1 br.sp {
		display: block;
	}
	.abo-2 .flex .txt {
		width: 100%;
	}
	.abo-2 .flex figure {
		width: 100%;
		text-align: center;
		margin-top: 20px;
	}
	.abo-2 .flex figure img {
		display: block;
		max-width: 60%;
		margin: auto;
	}
}
@media screen and (max-width: 480px) {
	.vision-ttl {
		font-size: 30px;
	}
}


/**********************************************************
* for-elderly サービス付き高齢者向け住宅愛西ガーデン
**********************************************************/
.ser-mokuzi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 80px;
}
.ser-mokuzi li {
	position: relative;
	padding: 0 25px;
	margin-bottom: 10px;
}
.ser-mokuzi li::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 1px;
	background-color: #EB466E;
}
.ser-mokuzi li::after {
	content: '';
	position: absolute;
	right: -1px;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 1px;
	background-color: #EB466E;
}
.ser-mokuzi li a {
	color: #EB466E;
	letter-spacing: 0.2rem;
	font-weight: bold;
}

.ser-lead {
	line-height: 1.7;
	/* letter-spacing: 0.5px; */
	letter-spacing: 0;
}
.slider-ser .slick-slide img {
	padding: 0 3%;
}
.section-ser1 {
	margin-top: 90px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-bottom: 140px;
}
.section-ser1.mb-short {
	margin-bottom: 70px;
}
.section-ser1.allshort {
	padding-top: 0;
	margin-top: 90px;
	margin-bottom: 90px;
}
.section-ser1 .inner {
	max-width: 1400px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	margin: auto;
}
.section-ser1.allshort .inner {
	max-width: 750px;
}
.section-ser1 .box {
	width: 100%;
	border: solid 1px #F58CAA;
	padding: 30px 40px;
	margin-bottom: 30px;
}
.section-ser1 .box.second {
	margin-top: 30px;
}
.section-ser1 .ttl {
	width: 100%;
	font-size: 42px;
	color: #EB466E;
	font-weight: bold;
	text-align: center;
	padding-bottom: 25px;
	border-bottom: solid 1px #F58CAA;
	letter-spacing: 2px;
}
.section-ser1 .txt {
	display: flex;
	justify-content: center;
	padding: 25px 5px;
	letter-spacing: 1px;
	line-height: 1.7;
}
.section-ser1 .txt.block {
	display: block;
}
.section-ser1.allshort .txt {
	text-align: center;
}
.section-ser1 .txt .lead {
	text-align: center;
	margin-bottom: 20px;
}
.section-ser1 .kome {
	text-align: left;
	padding-left: 40px;
	width: 100%;
}
.section-ser1 .flex {
	letter-spacing: 0;
}
.section-ser1 .flex .left {
	width: 49%;
}
.section-ser1 .flex .right {
	width: 49%;
}
.section-ser1 .dot {
	padding-left: 15px;
	position: relative;
	display: inline-block;
}
.section-ser1 .dot::before {
	content: '';
	position: absolute;
	top: 19px;
	left: 0;
	width: 5px;
	height: 5px;
	background-color: #505A64;
	border-radius: 50%;
}
@media screen and (max-width: 480px) {
	.section-ser1 .dot::before {
		top: 13px;
	}
}
.eld-2 .cmn-ttl .jp {
	color: #EB466E;
}
.eld2-flex {
	max-width: 1400px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.eld2-flex .box1 {
	width: 520px;
	background-color: white;
	border-radius: 18px;
	padding: 15px 10px;
}
.eld2-flex .plus {
	margin-left: -10px;
	margin-right: -10px;
	position: relative;
	z-index: 2;
}
.eld2-flex .box2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 800px;
	background-color: white;
	border-radius: 18px;
	padding: 15px 10px;
}
.eld2-flex .box2 .left {
	max-width: 300px;
	width: 50%;
}
.eld2-flex .box2 .right {
	max-width: 300px;
	width: 50%;
}
.eld2-flex .ttl {
	font-size: 36px;
	color: #EB466E;
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}
.eld2-flex .wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F6F7F7;
	border-radius: 18px;
	text-align: center;
}
.eld2-flex .box1 .wrap {
	max-width: 400px;
	width: 100%;
	margin: auto;
	line-height: 1.7;
	padding: 10px 5px;
}
.eld2-flex .box2 .wrap {
	max-width: 300px;
	width: 100%;
	line-height: 1.7;
	padding: 10px 5px;
	min-height: 224px;
}
.eld2-flex .box2 .plus {
	margin-top: 40px;
}
.eld2-flex .txt {
	width: 100%;
	text-align: center;
	font-weight: 500;
	padding-top: 10px;
}
.eld2-bot {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}
.eld2-bot .txt {
	width: 49%;
	max-width: 570px;
}
.eld2-bot .txt .ttl {
	font-size: 36px;
	letter-spacing: 10px;
	color: #EB466E;
	font-weight: bold;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: dashed 1px #A7ACB1;
}
.eld2-bot .txt p {
	line-height: 1.7;
	margin-bottom: 40px;
}
.eld2-bot .txt p:last-of-type {
	margin-bottom: 0;
}
.eld2-bot figure {
	width: 49%;
	max-width: 550px;
}
.eld2-bot figure img {
	border-radius: 20px;
}

.feature {
	padding: 100px 1rem 150px;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.feature .cmn-ttl .en {
	color: #FCE7EB;
	opacity: 0.4;
}
.feature .cmn-ttl .jp {
	color: white;
}

.feat-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.feat-list li {
	position: relative;
	width: 46%;
	padding-top: 120px;
	margin-bottom: 60px;
}
.feat-list li .txt {
	background-color: white;
	border-radius: 10px;
	padding: 50px 12%;
	min-height: 520px;
}
.feat-list li .ttl {
	font-size: 36px;
	color: #EB466E;
	font-weight: 500;
	text-align: center;
	margin-bottom: 20px;
}
.feat-list li .txt p {
	line-height: 2;
	letter-spacing: 1.5px;
}
.feat-list li .num {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 150px;
	height: 150px;
}
.eld-3 {
	overflow: hidden;
}
.white-wrap {
	position: relative;
	width: 100%;
	background-color: white;
	border-radius: 35px;
}
.white-wrap .img1 {
	position: absolute;
	right: -7%;
	top: -1%;
}
.white-wrap .img2 {
	position: absolute;
	right: 12%;
	z-index: -1;
}
.white-wrap .img3 {
	position: absolute;
	right: -9%;
	z-index: -1;
}

.sche-list {
	position: relative;
	display: block;
	padding: 70px 4% 70px 8%;
	z-index: 1;
}
.sche-list::before {
	content: '';
	position: absolute;
	left: calc(8% + 60px);
	top: 75px;
	bottom: 75px;
	margin: auto;
	width: 1px;
	border-left: dashed 1px #F9C7D3;
	z-index: -1;
}
.sche-list > li {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 50px;
}
.sche-list > li:first-child {
	margin-top: 0;
}
.sche-list > li:last-child::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 60px;
	z-index: -1;
	margin: auto;
	width: 2px;
	background-color: white;
}
.sche-list .time {
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FCF4F9;
	border-radius: 30px;
	width: 120px;
	height: 50px;
}
.sche-list li.none {
	margin-top: 20px;
}
.sche-list li.none .time {
	background-color: unset;
}
.sche-list .do {
	padding-top: 5px;
	color: #EB466E;
	line-height: 1.7;
	width: calc(95% - 120px);
	font-weight: 500;
}
.sche-list .do .comment::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 10px;
	background-color: white;
	z-index: 3;
}
.sche-list .do .comment::after {
	content: '';
	position: absolute;
	width: 21px;
	height: 26px;
	top: 0;
	bottom: 0;
	left: -10px;
	margin: auto;
	background-image: url(img/elderly/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 2;
}
.sche-list .do .comment {
	position: relative;
	display: inline-block;
	font-size: 21px;
	color: #505A64;
	padding: 5px 25px;
	margin-left: 20px;
	z-index: 1;
	border: solid 1px #EB466E;
	border-radius: 10px;
}
.sche-list .do .comment span {
	position: relative;
	z-index: 5;
}
.sche-list .do p {
	color: #505A64;
	font-size: 21px;
}
.oneweek {
	margin-top: 50px;
	padding: 35px 2%;
}
.eld3-ttl {
	font-size: 36px;
	color: #EB466E;
	text-align: center;
	font-weight: 500;
	margin-bottom: 30px;
}
.oneweek .week1 {
	display: block;
	margin: auto;
}
.oneweek .week2,
.oneweek .week3 {
	display: none;
	margin: auto;
}
.eld4-ttl {
	text-align: center;
	font-weight: 500;
	font-size: 36px;
	margin-bottom: 40px;
}
.zumen {
	margin-top: 100px;
	padding: 60px 2%;
}
.eld4-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 70px;
}
.eld4-list li {
	width: 30%;
	margin-top: 60px;
}
.eld4-list li .ttl {
	text-align: center;
	padding: 10px 0;
}
.eld4-list li p {
	font-size: 21px;
	line-height: 1.7;
}
.eld4-txt {
	font-size: 18px;
	text-align: right;
	margin-top: 50px;
}

.eld-5 {
	padding-top: 30px;
}
.qa_box .qa_q {
    padding: 30px 60px 40px 0;
    position: relative;
    cursor: pointer;
		color: #EB466E;
		border-top: dashed 1px #A7ACB1;
}
.qa_box:last-child {
	border-bottom: dashed 1px #A7ACB1;
}
.toggle_icon {
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 40px;
	height: 40px;
	margin-top: -20px;
}
.toggle_icon:before{
	position: absolute;
	content: "＋";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	font-size: 40px;
	line-height: 1;
	color: #EB466E;
}
.qa_q.open .toggle_icon:before{
    position: absolute;
    content: "－";
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
}
.qa_box .qa_a {
    display: none;
    padding: 0 0 40px;
    box-sizing: border-box;
}
.q_txt{
    display: block;
    position: relative;
		padding-left: 70px;
}
.q_txt::before {
	content: "Q.";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: flex;
	align-items: center;
	font-size: 54px;
	margin-right: 7px;
	line-height: 1;
}
.a_txt {
    display: block;
    position: relative;
    line-height: 1.5;
		padding-left: 70px;
}
.a_txt .center {
	display: block;
	text-align: center;
}
.a_txt .img-table {
	display: block;
	margin: 10px auto;
}
.eld6-txt {
	font-size: 21px;
	margin-top: 40px;
}
.eld6-txt2 {
	margin-top: 30px;
	font-weight: 500;
}

.sec-download {
	padding-left: 1rem;
	padding-right: 1rem;
}
.dl-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	border-left: 1px solid #F58CAA;
	border-top: 1px solid #F58CAA;
}
.dl-list li {
	width: 50%;
	min-height: 300px;
	padding: 0 20px 40px;
	text-align: center;
	border-right: 1px solid #F58CAA;
	border-bottom: 1px solid #F58CAA;
}
.dl-list li a {
	position: relative;
	background-color: #EB466E;
	border-radius: 50px;
	width: 230px;
	height: 70px;
	display: flex;
	align-items: center;
	padding-left: 80px;
	color: white;
	font-size: 18px;
	margin-left: auto;
	margin-right: auto;
	border: solid 1px #EB466E;
}
.dl-list li a::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url(img/common/download.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.dl-list li a:hover {
	opacity: 1;
	background-color: white;
	color: #EB466E;
}
.dl-list .ttl-wrap {
	height: 190px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.dl-list .ttl {
	font-size: 24px;
	font-weight: 500;
}
.dl-list .ttl span {
	font-weight: 500;
}


@media screen and (max-width: 1450px) {
	.eld2-flex {
		display: block;
		text-align: center;
	}
	.eld2-flex .box1,
	.eld2-flex .box2 {
		margin: auto;
	}
	.eld2-flex .box2 {
		max-width: 800px;
		width: 100%;
	}
	.eld2-flex .plus {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 1000px) {
	.eld2-flex .ttl {
		font-size: 28px;
	}
	.eld2-flex .plus {
		width: 60px;
		height: 60px;
	}
	.feat-list li .num {
		width: 120px;
		height: 120px;
	}
	.feat-list li {
		padding-top: 80px;
	}
	.feat-list li .txt {
		padding: 50px 6% 30px;
		min-height: 470px;
	}
	.feat-list li .ttl {
		font-size: 30px;
	}
	.feat-list li .txt p {
		line-height: 1.7;
		letter-spacing: 1px;
	}
	.eld-3 .white-wrap .img1,
	.eld-3 .white-wrap .img2,
	.eld-3 .white-wrap .img3 {
		transform: scale(0.6);
	}
}
@media screen and (max-width: 768px) {
	.section-ser1 {
		margin-top: 20px;
		margin-bottom: 30px;
	}
	.section-ser1.mb-short {
		margin-bottom: 0;
	}
	.section-ser1 .flex .left {
		width: 100%;
	}
	.section-ser1 .flex .right {
		width: 100%;
	}
	.section-ser1 .kome {
		padding-left: 10px;
	}
	.ser-mokuzi li {
		padding: 0 15px;
	}
	.section-ser1 .box {
		padding: 25px;
	}
	.section-ser1 .ttl {
		font-size: 28px;
		padding-bottom: 20px;
	}
	.section-ser1 .txt {
		padding: 20px 5px;
	}
	.eld2-flex .box1 {
		max-width: 520px;
		width: 100%;
	}
	.eld2-flex .box2 {
		display: block;
		text-align: center;
		max-width: 520px;
		margin: auto;
	}
	.eld2-flex .box2 .left,
	.eld2-flex .box2 .right {
		max-width: 400px;
		width: 100%;
		margin: auto;
	}
	.eld2-flex .box2 .wrap {
		max-width: 400px;
	}
	.eld2-flex .ttl {
		font-size: 24px;
	}
	.feature {
		background-size: auto;
		padding: 80px 1rem 100px;
	}
	.feat-list li {
		padding-top: 50px;
		width: 48%;
		margin-bottom: 30px;
	}
	.feat-list li .num {
		width: 80px;
		height: 80px;
	}
	.feat-list li .txt {
		padding: 40px 6% 30px;
	}
	.feat-list li .ttl {
		font-size: 26px;
		margin-bottom: 10px;
	}
	.eld-3 .white-wrap .img1,
	.eld-3 .white-wrap .img2,
	.eld-3 .white-wrap .img3 {
		transform: scale(0.4);
	}
	.q_txt::before {
		font-size: 34px;
	}
	.toggle_icon {
		width: 30px;
		height: 30px;
		right: 1rem;
	}
	.toggle_icon:before {
		font-size: 30px;
	}
	.qa_box .qa_q {
		padding-right: 50px;
	}
	.q_txt {
		padding-left: 50px;
	}
	.a_txt {
		padding-left: 50px;
	}
	.eld6-txt {
		font-size: 18px;
	}
	.section-ser1.allshort {
		margin-top: 40px;
		margin-bottom: 0;
	}
	.dl-list .ttl br.pc {
		display: none;
	}
	.dl-list li {
		width: 100%;
		min-height: auto;
		padding-top: 30px;
		padding-bottom: 25px;
	}
	.dl-list .ttl-wrap {
		height: auto;
	}
	.dl-list .ttl {
		font-size: 20px;
		margin-bottom: 25px;
	}
	.dl-list li a {
		height: 60px;
		padding-left: 75px;
	}
	.dl-list li a::after {
		width: 40px;
		height: 40px;
	}
}
@media screen and (max-width: 768px) {
	.slider-ser .slick-slide img {
		padding: 0 1.5%;
	}
	.eld2-bot {
		flex-wrap: wrap;
	}
	.eld2-bot .txt .ttl {
		font-size: 28px;
		padding-bottom: 10px;
	}
	.eld2-bot figure {
		width: 80%;
		margin: auto;
	}
	.eld2-bot .txt {
		width: 100%;
		margin: 0 auto 50px;
	}
	.white-wrap {
		border-radius: 15px;
	}
	.sche-list {
		padding: 50px 2% 50px 4%;
	}
	.sche-list::before {
		left: calc(4% + 60px);
	}
	.sche-list .do .comment {
		font-size: 18px;
		padding: 3px 12px;
	}
	.sche-list .do p {
		font-size: 18px;
	}
	.eld-3 .white-wrap .img1 {
		right: -15%;
	}
	.eld-3 .white-wrap .img2 {
		right: -8%;
	}
	.eld-3 .white-wrap .img3 {
		top: 50px;
		right: -19%;
	}
	.eld3-ttl {
		font-size: 30px;
	}
	.eld4-ttl {
		font-size: 30px;
	}
	.eld4-list {
		padding-top: 50px;
	}
	.eld4-list li {
		width: 48%;
	}
}
@media screen and (max-width: 600px) {
	.feat-list li {
		width: 100%;
	}
	.feat-list li .txt {
		min-height: auto;
	}
	.oneweek .week1 {
		display: none;
	}
	.oneweek .week2 {
		display: block;
	}
	.eld-3 .white-wrap .img1,
	.eld-3 .white-wrap .img2,
	.eld-3 .white-wrap .img3 {
		opacity: 0.4;
	}
}
@media screen and (max-width: 480px) {
	.ser-mokuzi {
		justify-content: flex-start;
		margin-bottom: 50px;
	}
	.ser-mokuzi li {
		width: 50%;
		text-align: center;
		padding: 0;
	}
	.ser-mokuzi li a {
		letter-spacing: 0.1rem;
	}
	.section-ser1 .box {
		padding: 20px 12px;
	}
	.section-ser1 .ttl { 
		font-size: 22px;
	}
	.section-ser1 .txt {
		font-size: 17px;
		letter-spacing: 0;
	}
	.eld2-flex .plus {
		width: 40px;
		height: 40px;
	}
	.eld2-flex .box2 .plus {
		margin-top: 20px;
	}
	.eld2-flex .box2 .wrap {
		min-height: auto;
	}
	.eld2-bot .txt .ttl {
		font-size: 24px;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	.feature {
		padding: 60px 1rem 70px;
	}
	.feat-list li .num {
		width: 50px;
		height: 50px;
	}
	.feat-list li {
		padding-top: 30px;
	}
	.feat-list li .txt {
		padding: 25px 4%;
	}
	.sche-list::before {
		left: calc(4% + 45px);
	}
	.sche-list > li {
		flex-wrap: wrap;
	}
	.sche-list .time {
		width: 90px;
		height: 35px;
	}
	.sche-list .do {
		padding-top: 2px;
		width: calc(98% - 90px);
	}
	.sche-list .do .comment {
		margin-top: 10px;
		line-height: 1.5;
	}
	.sche-list > li:last-child::before {
		left: 45px;
	}
	.eld3-ttl {
		font-size: 24px;
	}
	.oneweek .week2 {
		display: none;
	}
	.oneweek .week3 {
		display: block;
	}
	.eld-4 span.inblock {
		display: inline;
	}
	.eld4-ttl {
		font-size: 24px;
	}
	.zumen {
		padding: 40px 2%;
	}
	.eld4-list {
		padding-top: 0;
	}
	.eld4-list li {
		width: 100%;
		margin-top: 40px;
	}
	.eld4-list li img {
		display: block;
		width: 80%;
		margin: auto;
	}
	.eld4-list li p {
		font-size: 17px;
		line-height: 1.5;
	}
	.eld4-txt {
		font-size: 15px;
		margin-top: 40px;
	}
	.q_txt::before {
		font-size: 30px;
	}
	.qa_box .qa_q {
		padding-top: 20px;
		padding-bottom: 30px;
	}
	.q_txt {
		padding-left: 42px;
	}
	.a_txt {
		padding-left: 10px;
	}
	.eld6-txt {
		font-size: 17px;
	}
	.sche-list .do .comment span {
		font-size: 17px;
	}
}

/**********************************************************
* visiting 訪問看護事業所
**********************************************************/
.vis-2 .lead {
	font-size: 28px;
	text-align: center;
}
.vis-2 .white-wrap {
	margin: 50px auto;
	padding: 60px 4%;
}
.vis-2 .white-wrap .left span {
	display: inline-block;
	transform: translateY(-7px);
}
.vis-2 .white-wrap .left {
	width: 61%;
	line-height: 1.8;
	letter-spacing: 0;
}
.vis-2 .white-wrap figure {
	width: 37.5%;
}
.feature.common .white-wrap {
	padding: 60px 6%;
}
.feature.common .ttl {
	text-align: center;
	font-size: 36px;
	color: #EB466E;
	font-weight: bold;
	margin-bottom: 45px;
}
.feature.common .left {
	width: 46%;
	line-height: 1.8;
	letter-spacing: 2px;
}
.feature.common figure {
	width: 46%;
}
.vis-5 {
	padding-top: 50px;
}
.ser-contact .ttl {
	text-align: center;
	margin-bottom: 40px;
}
.ser-contact .ttl .jp {
	font-size: 42px;
	letter-spacing: 0.5rem;
	color: #EB466E;
	font-weight: bold;
	margin-bottom: 10px;
}
.ser-contact .ttl .en {
	font-size: 16px;
	letter-spacing: 0.1rem;
}
.ser-contact .white-wrap {
	padding: 60px 4%;
	text-align: center;
}
.ser-contact .txt1 {
	margin-bottom: 35px;
}
.ser-contact .link {
	width: 95%;
	max-width: 450px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	background-color: #EB466E;
	border: solid 1px #EB466E;
	border-radius: 50px;
}
.ser-contact .link img {
	margin-right: 25px;
}
.ser-contact .link span{
	font-size: 32px;
	color: white;
	font-weight: bold;
	transition: 0.3s all;
}
.ser-contact .link:hover {
	opacity: 1;
	background-color: white;
}
.ser-contact .link:hover span {
	color: #EB466E;
}
.ser-contact .fax {
	color: #EB466E;
	font-weight: bold;
	margin-bottom: 20px;
}
.ser-contact .txt2 {
	font-size: 21px;
}

.vis-4 .white-wrap {
	margin-top: 90px;
	padding: 60px 4%;
}
.vis4-ttl {
	font-size: 36px;
	color: #EB466E;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}
.vis4-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.vis4-list li {
	width: 31%;
	margin-top: 25px;
}
.vis4-list li .ttl {
	text-align: center;
	padding: 10px 0;
}
.vis4-list li p {
	font-size: 21px;
}

@media screen and (max-width: 768px) {
	.vis-2 .lead {
		font-size: 22px;
	}
	.vis-2 .white-wrap {
		padding: 30px 4%;
	}
	.vis-2 .white-wrap .left {
		width: 100%;
	}
	.vis-2 .white-wrap figure {
		width: 80%;
		margin: 30px auto 0;
	}
	.vis-2 .white-wrap figure img {
		display: block;
		margin: auto;
	}
	.vis4-list li p {
		font-size: 18px;
	}
	.vis4-list li {
		width: 100%;
	}
	.vis4-list li img {
		display: block;
		margin: auto;
		width: 80%;
	}
	.feature.common .white-wrap {
		padding: 40px 4%;
	}
	.feature.common .ttl {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.feature.common .left {
		width: 100%;
		line-height: 1.7;
	}
	.feature.common figure {
		width: 80%;
		margin: 30px auto 0;
	}
	.feature.common figure img {
		display: block;
		margin: auto;
	}
	.ser-contact .txt2 {
		font-size: 18px;
	}
}
@media screen and (max-width: 480px) {
	.feature.common .ttl {
		font-size: 24px;
	}
	.ser-contact .white-wrap {
		padding: 40px 3%;
	}
	.ser-contact .ttl {
		margin-bottom: 25px;
	}
	.ser-contact .ttl .jp {
		font-size: 30px;
		letter-spacing: 0.3rem;
		margin-bottom: 0;
	}
	.ser-contact .link {
		height: 65px;
	}
	.ser-contact .link img {
		width: 40px;
		margin-right: 10px;
	}
	.ser-contact .link span {
		font-size: 28px;
	}
	.ser-contact .txt1 {
		margin-bottom: 25px;
	}
	.ser-contact .txt2 {
		font-size: 15px;
	}
	.vis4-list li p {
		font-size: 16px;
	}
}

/**********************************************************
* day-service デイサービス
**********************************************************/
.day-3 {
	overflow: hidden;
}
.day-4 .white-wrap {
	margin-top: 90px;
	padding: 65px 4%;
}
@media screen and (max-width: 1000px) {
	.day-3 .white-wrap .img1,
	.day-3 .white-wrap .img2,
	.day-3 .white-wrap .img3 {
		transform: scale(0.5);
	}
	.day-3 .white-wrap .img1 {
		top: 0;
	}
	.day-3 .white-wrap .img2 {
		top: -65%;
		right: -10%;
	}
	.day-3 .white-wrap .img3 {
		right: -17%;
		margin-top: 90px;
	}
}
@media screen and (max-width: 768px) {
	.sche-list .do p br.pc {
		display: none;
	}
	.day-3 .white-wrap .img1,
	.day-3 .white-wrap .img2,
	.day-3 .white-wrap .img3 {
		transform: scale(0.4);
	}
	.day-3 .white-wrap .img1 {
		top: 38px;
	}
}
@media screen and (max-width: 600px) {
	.day-3 .white-wrap .img1,
	.day-3 .white-wrap .img2,
	.day-3 .white-wrap .img3 {
		opacity: 0.4;
	}
}
@media screen and (max-width: 480px) {
	.sche-list .do p {
		font-size: 17px;
	}
	.day-3 .white-wrap .img1 {
		right: -26%;
	}
	.day-3 .white-wrap .img2 {
		top: -90%;
		right: -23%;
	}
	.day-3 .white-wrap .img3 {
		right: -34%;
		margin-top: 100px;
	}
}


/**********************************************************
* ma-maison 認知症対応型デイサービス
**********************************************************/
.ma-3 {
	overflow: hidden;
}

@media screen and (max-width: 1000px) {
	.ma-3 .white-wrap .img1,
	.ma-3 .white-wrap .img2,
	.ma-3 .white-wrap .img3 {
		transform: scale(0.6);
	}
}
@media screen and (max-width: 768px) {
	.ma-3 .white-wrap .img1,
	.ma-3 .white-wrap .img2,
	.ma-3 .white-wrap .img3 {
		transform: scale(0.4);
	}
}
@media screen and (max-width: 600px) {
	.ma-3 .white-wrap .img1,
	.ma-3 .white-wrap .img2,
	.ma-3 .white-wrap .img3 {
		opacity: 0.4;
	}
}
@media screen and (max-width: 480px) {
	.ma-3 .white-wrap .img1 {
		right: -17%;
    top: 2%;
	}
	.ma-3 .white-wrap .img2 {
    right: -13%;
    margin-top: 25px;
	}
	.ma-3 .white-wrap .img3 {
		right: -32%;
		top: 50%;
	}
}

/**********************************************************
* nursing-care 訪問介護事業所
**********************************************************/
.nur-2 .lead {
	text-align: center;
	margin-bottom: 50px;
}
.nur2-ttl {
	font-size: 36px;
	color: #EB466E;
	text-align: center;
	letter-spacing: 0.5rem;
	font-weight: bold;
	margin-bottom: 30px;
}
.nur-2 .white-wrap {
	padding: 60px 4%;
}
.nur-2 .table2,
.nur-2 .table3 {
	letter-spacing: 0;
}
.nur-2 .white-wrap.second {
	margin-top: 90px;
}

.sche-list.nursing {
	padding-bottom: 40px;
}
.sche-list.nursing .time {
	font-size: 18px;
}
.sche-list.nursing .time span {
	font-size: 24px;
	font-weight: 500;
}
.sche-list.nursing .do {
	color: #505A64;
}
.nur4-txt {
	padding: 0 8% 70px 8%;
}

.nur-4 .white-wrap {
	padding: 50px 3% 70px;
}
.nur4-ttl {
	font-size: 24px;
	text-align: center;
	margin-bottom: 40px;
}
.nur4-tel {
	font-family: cursive;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 450px;
	color: white;
	padding: 10px 20px 10px 50px;
	margin: auto;
	border-radius: 50px;
	background-color: #eb466e;
	border: solid 1px #eb466e;
	font-size: 32px;
}
.nur4-tel img {
	margin-right: 20px;
}
.nur4-tel:hover {
	opacity: 1;
	background-color: white;
	color: #eb466e;;
}
@media screen and (max-width: 768px) {
	.nur4-ttl {
		font-size: 24px;
	}
	.nur4-tel {
		font-size: 26px;
		max-width: 380px;	
	}
	.nur4-tel img {
		width: 50px;
	}
}
@media screen and (max-width: 480px) {
	.nur-4 .white-wrap {
		padding-bottom: 60px;
	}
	.nur4-ttl {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.nur4-tel {
		max-width: 310px;
		font-size: 21px;
		padding-left: 20px;
	}
	.nur4-tel img {
		width: 40px;
	}
}


/* グーグルマップ・レスポンシブレイアウト */
.gmap-wrap {
	position: relative;
	height: 0;
  width: 100%;
	padding-bottom: 48.333%;
	overflow: hidden;
	margin-bottom: 60px;
}

.gmap-wrap iframe,
.gmap-wrap object,
.gmap-wrap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/**********************************************************
* access アクセス
**********************************************************/
.acc-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	margin-top: 80px;
}
.acc-flex .left,
.acc-flex .right {
	width: 47%;
	border: solid 1px #F58CAA;
	padding: 35px 3% 60px;
}
.acc-flex figure {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: auto;
}
.acc-flex figure img {
	display: block;
	margin: auto;
}
.acc-flex .ttl {
	color: #EB466E;
	font-size: 28px;
	font-weight: bold;
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: solid 1px #EB466E;
}

@media screen and (max-width: 768px) {
	.acc-flex .left,
	.acc-flex .right {
		width: 100%;
		max-width: 500px;
		margin: auto;
	}
	.acc-flex .left {
		margin-bottom: 40px;
	}
	.acc-flex .ttl {
		font-size: 24px;
	}
}

/**********************************************************
* privacy_policy プライバシーポリシー
**********************************************************/
.pri-section {
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0;	
  overflow-wrap:  break-word;
}
.pri-section .ttl {
	font-size: 21px;
}
.fs-18 {
	font-size: 18px;
}
.pt-10 {
	padding-top: 7px;
}
.pri-last {
	text-align: right;
	margin-top: 30px;
}


/**********************************************************
* contact お問い合わせ
**********************************************************/
.con1-lead {
	font-size: 28px;
	text-align: center;
	margin-bottom: 90px;
	line-height: 1.8;
}
.con1-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FDF2F9;
	border-radius: 25px;
	padding: 35px 2%;
}
.con1-wrap .maru {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 280px;
	font-size: 28px;
	color: #EB466E;
	background-color: white;
	border-radius: 50%;
	text-align: center;
	margin-right: 30px;
	font-weight: bold;
}
.con1-wrap .txt {
	padding-right: 200px;
}
.con1-wrap .txt li {
	line-height: 1.7;
	padding-bottom: 15px;
}
.con1-wrap .txt li:last-child {
	padding-bottom: 0;
}
.con1-wrap .img {
	position: absolute;
	right: 4%;
	bottom: 8%;
	z-index: -1;
}
.con1-box {
	max-width: 750px;
	width: 100%;
	border: solid 1px #F58CAA;
	padding: 40px 40px;
	margin-bottom: 30px;
	text-align: center;
	margin: 80px auto 0
}
.con1-box .ttl {
	font-size: 28px;
	color: #EB466E;
	font-weight: bold;
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: solid 1px #F58CAA;
}
.con1-box .p1 {
	font-weight: 500;
}
.con1-box .time {
	font-weight: bold;
	font-size: 38px;
	margin-bottom: 10px;
}
.con1-box .p2 {
	font-size: 21px;
}
.con-2 {
	text-align: center;
}
.con2-ttl {
	font-size: 36px;
	font-weight: bold;
	color: #EB466E;
}
.con2-ttl:last-of-type {
	margin-top: 80px;
}
.con2-link {
	position: relative;
	width: 100%;
	min-height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: #505A64;
	background-color: white;
	border-radius: 50px;
	margin: 15px auto 10px;
}
.con2-link .address {
	max-width: 90%;
}
.con2-link span {
	font-weight: bold;
}
.con2-link.tel {
	max-width: 560px;
}
.con2-link.mail {
	max-width: 770px;
}
.con2-txt {
	font-size: 21px;
}
.con3-ttl {
	font-size: 42px;
	color: #EB466E;
	font-weight: bold;
	text-align: center;
	padding: 50px 0;
}
.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
}
.contact-table {
	width: 100%;
}
.contact-table tr:first-of-type {
	border-top: dashed 1px #A7ACB1;
	padding-top: 30px;
}
.contact-table tr {
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 40px 4%;
	border-bottom: dashed 1px #A7ACB1;
}
.contact-table tr.start {
	align-items: flex-start;
}
.contact-table tr th {
	width: 190px;
	font-size: 21px;
	text-align: left;
}
.contact-table tr.start th,
.contact-table tr.start td:first-of-type {
	margin-top: 20px;
}
.contact-table tr td:first-of-type {
	width: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-table tr td:first-of-type p {
	width: 100%;
}
.contact-table tr td span.hissu {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #EB466E;
	color: #EB466E;
	font-size: 18px;
}
.contact-table tr td:last-of-type {
	width: calc(95% - 245px);
	font-size: 21px;
}
.contact-table input[type="text"],
.contact-table input[type="email"],
.contact-table textarea {
	width: 100%;
	background-color: #EDEEEF;
	font-family: "Zen Maru Gothic", sans-serif;
	padding: 20px;
	border: none;
	border-radius: 10px;
	font-size: 21px;
}
.purpose .wpcf7-list-item {
	padding-left: 2%;
	margin-left: 0	;
	min-height: 70px;
	display: flex;
	align-items: center;
}
.purpose .wpcf7-list-item:nth-child(odd) {
	width: 200px;
}
.purpose .wpcf7-list-item:nth-child(even) {
	width: calc(100% - 200px);
}
.purpose .wpcf7-list-item.last {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.purpose .wpcf7-list-item.last input[type="text"] {
	width: calc(100% - 110px);
}
.accept {
	text-align: center;
	font-size: 21px;
	margin: 60px auto 35px;
}
.submit input {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 70px;
	background-color: #EB466E;
	border-radius: 50px;
	color: white;
	font-size: 21px;
	letter-spacing: 2px;
	margin: auto;
	transition: 0.3s all;
}
.submit input:hover {
	opacity: 0.7;
}

/* ラジオボタンカスタマイズ */
.purpose .wpcf7-list-item input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.purpose .wpcf7-list-item .wpcf7-list-item-label {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 35px;
  position: relative;
}
.purpose .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}
.purpose .wpcf7-list-item .wpcf7-list-item-label::before {
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #777;
  border-radius: 50%;
}
.purpose .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #EB466E;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 0;
}

/* チェックボックスカスタマイズ */
.accept input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.accept .wpcf7-list-item-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 1px solid #777;
}
.accept .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin: center right;
  border-right: 2px solid #EB466E;
  border-bottom: 2px solid #EB466E;
  opacity: 0;
}
.accept .wpcf7-list-item-label {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
}
.accept input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
	.con1-wrap .maru {
		width: 220px;
		height: 220px;
		font-size: 24px;
		margin-right: 15px;
	}
	.con1-wrap .txt {
		padding-right: 150px;
	}
	.con1-wrap .img {
		transform: scale(0.6);
		right: -2%;
		bottom: 0;
	}
}
@media screen and (max-width: 900px) {
	.contact-table tr.start th, .contact-table tr.start td:first-of-type {
		margin-top: 0;
	}
	.contact-table tr {
		justify-content: flex-start;
		flex-wrap: wrap;
		padding: 20px 2%;
	}
	.contact-table tr td:last-of-type {
		width: 100%;
	}
	.purpose .wpcf7-list-item:nth-child(odd),
	.purpose .wpcf7-list-item:nth-child(even) {
		width: 100%;
	}
	.contact-table tr td:last-of-type {
		margin-top: 15px;
	}
}
@media screen and (max-width: 768px) {
	.con1-lead {
		font-size: 22px;
		line-height: 1.7;
	}
	.con1-wrap {
		flex-wrap: wrap;
	}
	.con1-wrap .maru {
		width: 100%;
		height: auto;
		border-radius: 0;
		margin-bottom: 20px;
	}
	.con1-box .ttl {
		font-size: 24px;
	}
	.con1-box .p2 {
		font-size: 18px;
	}
	.con1-wrap .maru br {
		display: none;
	}
	.con1-wrap .txt li {
		padding-bottom: 5px;
	}
	.con2-ttl {
		font-size: 30px;
	}
	.con3-ttl {
		font-size: 34px;
	}
	.contact-table tr th {
		width: auto;
		margin-right: 30px;
		font-size: 18px;
	}
	.contact-table tr td span.hissu {
		font-size: 16px;
	}
	.contact-table tr td:last-of-type {
		font-size: 18px;
	}
	.purpose .wpcf7-list-item {
		min-height: 60px;	
	}
	.purpose .wpcf7-list-item .wpcf7-list-item-label::before {
		width: 20px;
		height: 20px;
	}
	.purpose .wpcf7-list-item .wpcf7-list-item-label::after {
		width: 14px;
    height: 14px;
		left: 9px;
	}
	.contact-table input[type="text"],
	.contact-table input[type="email"],
	.contact-table textarea {
		font-size: 18px;
	}
	.submit input {
		font-size: 18px;
	}
	.accept {
		font-size: 20px;
	}
}
@media screen and (max-width: 600px) {
	.con1-wrap .img {
		transform: scale(0.4);
		right: -10%;
		bottom: -10%;
	}
	.con1-wrap .txt {
		padding-right: 100px;
	}
	.con2-ttl {
		font-size: 24px;
	}
	.con2-ttl:last-of-type {
		margin-top: 40px;
	}
	.con2-link {
		min-height: 70px;
	}
	.con2-link .icon {
		max-width: 60px;
	}
	.con2-txt {
		font-size: 18px;
	}
	.con3-ttl {
		font-size: 26px;
	}
}
@media screen and (max-width: 480px) {
	.con1-lead {
		font-size: 19px;
	}
	.con1-wrap .maru {
		margin-right: 0;
	}
	.con1-wrap .img {
		opacity: 0.4;
		right: -15%;
		bottom: -15%;
	}
	.con1-wrap .txt {
		padding-right: 0;
	}
	.con1-box .ttl {
		font-size: 22px;
	}
	.con1-box .time {
		font-size: 32px;
	}
	.con1-box .p2 {
		font-size: 17px;
	}
	.con2-txt {
		font-size: 17px;
	}
	.contact-table tr td:last-of-type {
		font-size: 17px;
	}
	.purpose .wpcf7-list-item {
		min-height: 50px;	
	}
	.purpose .wpcf7-list-item .wpcf7-list-item-label {
		padding-left: 30px;
	}
	.purpose .wpcf7-list-item .wpcf7-list-item-label::before {
		width: 18px;
		height: 18px;
	}
	.purpose .wpcf7-list-item .wpcf7-list-item-label::after {
		width: 12px;
		height: 12px;
		left: 9px;
	}
	.contact-table input[type="text"],
	.contact-table input[type="email"],
	.contact-table textarea {
		padding: 10px;
	}
}

/**********************************************************
* news ニュース
**********************************************************/
.news-1 {
	padding-top: 0;
}
.cate-select {
	text-align: center;
	max-width: 450px;
	width: 100%;
	margin: 0 auto 70px;
}
.cate-select .ttl {
	font-size: 36px;
	color: #EB466E;
	margin-bottom: 40px;
	font-weight: bold;
	letter-spacing: 4px;
}
.cate-select a {
	width: 48%;
	max-width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: solid 1px #EB466E;
	color: #EB466E;
	font-size: 28px;
	letter-spacing: 2px;
}
.cate-select a:hover,
.cate-select a.current {
	opacity: 1;
	color: white;
	background-color: #EB466E;
}
.news-list {
	max-width: 1400px;
	width: 100%;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
}
.news-list li {
	border-top: dashed 1px #A7ACB1;
}
.news-list li:last-child {
	border-bottom: dashed 1px #A7ACB1;
}
.news-list li a {
	position: relative;
	padding: 40px 2%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #505A64;
}
.news-list li a::before {
	content: '';
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 70px;
	height: 70px;
	background-image: url(img/news/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.news-list li .post-image {
	width: 330px;
}
.news-list li .post-image img {
	display: block;
	width: 100%;
}
.news-list li .txtarea {
	width: calc(97% - 330px);
	padding-right: 70px;
}
.news-list li .post {
	padding-top: 10px;
}
.news-list li .post-data {
	font-size: 21px;
	margin-right: 40px;
}
.news-list li .post-cate {
	display: inline-block;
	text-align: center;
	width: 120px;
	font-size: 21px;
	color: #EB466E;
	padding: 0;
	border: solid 1px #EB466E;
	border-radius: 20px;
	padding: 0 10px;
}
.news-list li .post-title {
	font-size: 32px;
	margin-top: 60px;
}
.single-section {
	padding-top: 150px;
}
.back-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 90px;
}
.back-btn button {
	position: relative;
	padding-left: 70px;
	color: #EB466E;
	font-size: 21px;
	border: none;
	background: none;
	cursor: pointer;
}
.back-btn button img {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
} 
.single-section .post-data {
	font-size: 21px;
	margin-right: 30px;
}
.single-section .post-cate {
	font-size: 21px;
	border: solid 1px #EB466E;
	padding: 0 20px;
	border-radius: 20px;
	color: #EB466E;
}
.entry-title {
	font-size: 36px;
	font-weight: 500;
	padding: 35px 0;
	margin-bottom: 60px;
	border-bottom: dashed 1px #A7ACB1;
}
.entry-content {
	line-height: 1.7;
}
.wp-pagenavi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}
.wp-pagenavi a,
.wp-pagenavi span {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: none !important;
	margin-left: 10px !important;
	margin-right: 10px !important;
	color: #505A64;
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
	font-size: 0;
	position: relative;
	width: 40px;
	height: 40px;
	border: solid 1px #EB466E !important;
}
.wp-pagenavi a.previouspostslink::before,
.wp-pagenavi a.nextpostslink::before {
	content: url(img/news/navi-next.png);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wp-pagenavi a.previouspostslink::before {
	transform: scale(-1, 1);
}
.wp-pagenavi a.previouspostslink {
	margin-left: 0 !important;
}
.wp-pagenavi a.nextpostslink {
	margin-right: 0 !important;
}
.wp-pagenavi a.current,
.wp-pagenavi span.current {
	background-color: #F8AEC3 !important;
	color: white;
}

@media screen and (max-width: 900px) {
	.news-list li .post-image {
		width: 250px;
	}
	.news-list li a {
		padding: 30px 1%;
	}
	.news-list li .txtarea {
		width: calc(97% - 250px);
		padding-right: 60px;
	}
	.news-list li .post-data {
		font-size: 20px;
	}
	.news-list li .post-cate {
		font-size: 18px;
	}
	.news-list li .post-title {
		font-size: 26px;
		margin-top: 40px;
	}
	.news-list li a::before {
		width: 55px;
		height: 55px;
	}
}

@media screen and (max-width: 768px) {
	.news-list li .post-image {
		width: 200px;
	}
	.news-list li .txtarea {
		width: calc(97% - 200px);
		padding-right: 50px;
	}
	.news-list li .post-data {
		font-size: 19px;
		margin-right: 20px;
	}
	.news-list li .post-cate {
		font-size: 17px;
		width: 110px;
	}
	.news-list li .post-title {
		font-size: 22px;
		margin-top: 30px;
	}
	.news-list li a::before {
		width: 45px;
		height: 45px;
	}
	.wp-pagenavi a,
	.wp-pagenavi span {
		width: 38px;
		height: 38px;
		margin-left: 2px !important;
		margin-right: 2px !important;
	}
	.wp-pagenavi a.previouspostslink,
	.wp-pagenavi a.nextpostslink {
		width: 35px;
		height: 35px;
	}
}
@media screen and (max-width: 600px) {
	.cate-select .ttl {
		font-size: 26px;
		margin-top: 15px;
		margin-bottom: 15px;
		letter-spacing: 2px;
	}
	.cate-select a {
		font-size: 22px;
		letter-spacing: 1px;
	}
	.news-list li a {
		flex-wrap: wrap;
		padding: 5px 2% 15px;
	}
	.news-list li .txtarea {
		width: 100%;
	}
	.news-list li .post-image {
		order: 2;
	}
	.news-list li .post-title {
		margin-top: 15px;
		margin-bottom: 10px;
		font-size: 20px;
	}

	.single-section .post-data {
		font-size: 19px;
	}
	.single-section .post-cate {
		font-size: 17px;
	}
	.entry-title {
		font-size: 28px;
		padding: 20px 0;
		margin-bottom: 30px;
	}
	.entry-content {
		line-height: 1.6;
	}
}



/**********************************************************
* recruit 採用情報
**********************************************************/
.foot-entry {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(img/recruit/foot-entry.jpg?v2);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 500px;
	padding-right: 40%;
}
.foot-entry a {
	position: relative;
	width: 90%;
	max-width: 500px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: #EB466E;
	font-weight: 500;
	background-color: white;
	border-radius: 50px;
	padding: 10px 110px 10px 20px;
}
.foot-entry a:hover {
	opacity: 1;
	background-color: #EB466E;
	color: white;
}
.foot-entry a img {
	position: absolute;
	right: 25px;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
	pointer-events: none;
}
.rec-1 {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 190px;
	background-image: url(img/recruit/bg-1.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: auto;
}
.rec1-ttl {
	color: #EB466E;
	max-width: 1440px;
	text-align: left;
	margin: auto;
}
.rec1-ttl .en {
	font-size: 120px;
	letter-spacing: 2.2vw;
	line-height: 1;
	margin-bottom: 20px;
}
.rec1-ttl .jp {
	font-size: 38px;
	font-weight: 500;
	letter-spacing: 0.5vw;
}
.rec-slider1 {
	margin-top: 70px;
	margin-bottom: 28px;
}
.rec-slider1 .slick-slide img {
	display: block;
	padding: 0 15px;
}
.rec-slider1 .slick-track .slick-slide:nth-child(odd) {
	padding-bottom: 30px;
}
.rec-slider1 .slick-track .slick-slide:nth-child(even) {
	padding-top: 30px;
}
.rec-slider2 .slick-slide img {
	display: block;
	padding: 0 15px;
}
.rec-slider2 .slick-track .slick-slide:nth-child(even) {
	padding-bottom: 30px;
}
.rec-slider2 .slick-track .slick-slide:nth-child(odd) {
	padding-top: 30px;
}
.rec-1 .video-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1200px;
	background-color: white;
	padding: 120px 4%;
	margin-top: 200px;
}
.rec-1 .video-wrap .movie {
	max-width: 80%;
	display: block;
	margin: auto;
}
.rec-1 .video-ttl {
	position: absolute;
	left: -30px;
	top: -20px;
	writing-mode: vertical-rl;
	color: #EB466E;
	font-size: 48px;
	letter-spacing: 10px;
}

.rec2-list {
	width: 100%;
	margin: 120px auto 200px;
}
.rec2-list > li {
	position: relative;
	margin-bottom: 250px;
	z-index: 1;
}
.rec2-list > li:last-child {
	margin-bottom: 0;
}
.rec2-list .txtarea {
	max-width: 1200px;
	margin: auto;
}
.rec2-list .txtarea .inner {
	width: 53%;
	padding-top: 40px;
}
.rec2-list .ttl {
	font-size: 42px;
	color: #EB466E;
	margin-bottom: 20px;
}
.rec2-list p {
	padding-bottom: 10px;
	line-height: 1.7;
}
.rec2-list .tag-list > li {
	position: relative;
	display: inline-block;
	margin-top: 20px;
	margin-right: 20px;
	border-radius: 50px;
	border: solid 1px #EB466E;
	color: #EB466E;
	padding: 10px 20px 10px 60px;
	font-size: 18px;
}
.rec2-list .tag-list > li img {
	position: absolute;
	left: 6px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.rec2-list .tag-list > li span {
	font-weight: 500;
}
.rec2-list .imgarea {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	max-width: 1500px;
	z-index: -1;
}
.rec2-list .imgarea img {
	display: block;
	width: 43.33%;
	border-radius: 18px;
	margin-left: auto;
}
.rec2-list .detail-link {
	position: relative;
	width: 250px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	border-radius: 50px;
	background-color: #EB466E;
	color: white;
	border: solid 1px #EB466E;
	padding: 10px 10px 10px 55px;
	font-size: 21px;
}
.rec2-list .detail-link:hover {
	opacity: 1;
	background-color: white;
	color: #EB466E;
}
.rec2-list .detail-link img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	margin: auto;
}
.rec2-list > li:nth-child(even) .txtarea .inner {
	margin-left: auto;
}
.rec2-list > li:nth-child(even) .imgarea img {
	margin-right: auto;
	margin-left: 0;
}
.rec-3 {
	padding-left: 0;
	padding-right: 0;
}
.staff-slider .slick-prev {
	left: 0;
	right: 80%;
}
.staff-slider .slick-next {
	left: 80%;
	right: 0;
}
.staff-slider .slick-prev,
.staff-slider .slick-next {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: solid 1px #EB466E;
	background-color: white;
	z-index: 50;
	opacity: 1;
	margin: auto;
	top: 35%;
}
.staff-slider .slick-prev:hover,
.staff-slider .slick-prev:focus,
.staff-slider .slick-next:hover,
.staff-slider .slick-next:focus {
	background: white;
}
.staff-slider .slick-prev::before,
.staff-slider .slick-next::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-right: 2px solid #EB466E;
	border-bottom: 2px solid #EB466E;
}
.staff-slider .slick-prev::before {
	transform: rotate(135deg);
	left: 10px;
}
.staff-slider .slick-next::before {
	transform: rotate(-45deg);
	right: 10px;
}

.staff-slider .slick-slide {
	text-align: center;
}
.staff-slider .slick-slide img {
	display: block;
	margin: auto;
}
.staff-slider .slick-slide .job {
	font-size: 21px;
	margin-top: 20px;
}
.staff-slider .slick-slide .name {
	font-size: 21px;
	margin-bottom: 10px;
}
.staff-slider .slick-slide a {
	position: relative;
	font-size: 18px;
	color: #EB466E;
	display: flex;
	align-items: center;
	justify-content: center;
}
.staff-slider .slick-slide a .arrow {
	position: relative;
	width: 30px;
	height: 30px;
	border: solid 1px #EB466E;
	border-radius: 50%;
	margin-left: 10px;
}
.staff-slider .slick-slide a .arrow::after {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 6px;
	margin: auto;
	border-right: 1px solid #EB466E;
	border-bottom: 1px solid #EB466E;
	transform: rotate(-45deg);
}
.staff-slider .slick-slide > div {
	padding: 5%;
}

@media screen and (max-width: 1260px) {
	.rec-1 .video-ttl {
		left: 0;
		font-size: 38px;
		line-height: 1.5;
	}
}
@media screen and (max-width: 1000px) {
	.rec1-ttl .en {
		font-size: 100px;
		letter-spacing: 1.8vw;
	}
	.rec1-ttl .jp {
		font-size: 34px;
	}
}
@media screen and (max-width: 900px) {
	.rec-1 {
		padding-bottom: 60px;
		background-size: contain;
	}
	.rec2-list {
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.rec2-list > li {
		margin-bottom: 0;
	}
	.rec2-list .txtarea {
		max-width: 600px;
	}
	.rec2-list .txtarea .inner {
		width: 100%;
	}
	.rec2-list .detail-link {
		margin-right: auto;
	}
	.rec2-list .imgarea {
		position: relative;
		order: 2;
		top: -70px;
		right: 0;
		left: auto;
	}
	.rec2-list .imgarea img {
		width: 50%;
	}
	.rec2-list > li:nth-child(even) .imgarea img {
		margin-left: auto;
		margin-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.rec1-ttl .en {
		font-size: 76px;
		letter-spacing: 1.5vw;
		margin-bottom: 10px;
	}
	.rec1-ttl .jp {
		font-size: 30px;
	}
	.rec-1 .video-ttl {
		position: absolute;
		writing-mode: unset;
		letter-spacing: 1px;
		font-size: 36px;
		top: 35px;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
		line-height: 1.2;
	}
	.rec-1 .video-ttl br {
		display: none;
	}
	.rec-1 .video-wrap {
		margin-top: 150px;
		padding-bottom: 50px;
	}
	.rec-1 .video-wrap .movie {
		max-width: 100%;
	}
	.rec2-list .ttl {
		font-size: 36px;
	}
	.rec2-list .tag-list > li {
		padding: 10px 10px 10px 55px;
		margin-right: 10px;
	}
	.rec2-list .detail-link {
		margin-top: 30px;
		height: 55px;
		width: 48%;
		max-width: 250px;
	}
	.rec2-list .detail-link img {
		width: 40px;
	}
	.staff-slider .slick-prev {
		top: -85px;
		left: 10px;
		right: auto;
	}
	.staff-slider .slick-next {
		top: -85px;
		left: auto;
		right: 10px;
	}
	.staff-slider .slick-slide .job,
	.staff-slider .slick-slide .name {
		font-size: 18px;
	}
	.staff-slider .slick-slide a {
		font-size: 17px;
	}
}
@media screen and (max-width: 480px) {
	.rec1-ttl .en {
		font-size: 58px;
		letter-spacing: 1.2vw;
		margin-bottom: 0;
	}
	.rec1-ttl .jp {
		font-size: 26px;
		letter-spacing: 0.3vw;
	}
	.rec-1 .video-wrap {
		flex-wrap: wrap;
		padding-top: 0;
		margin-top: 100px;
	}
	.rec-1 .video-ttl {
		font-size: 24px;
		top: 0;
		margin-bottom: 20px;
	}
	.rec2-list > li {
		margin-bottom: 30px;
	}
	.rec2-list .ttl {
		font-size: 30px;
	}
	.rec2-list .detail-link {
		font-size: 18px;
	}
	.rec2-list .tag-list > li {
		font-size: 17px;
		margin-top: 10px;
	}
	.rec2-list .imgarea {
		top: 0;
		margin-top: -20px;
	}
	.rec2-list .imgarea img {
		width: 75%;
		margin: auto !important;
		border-radius: 10px;
	}
	.rec2-list .detail-link {
		width: 100%;
	}
	.staff-slider .slick-prev,
	.staff-slider .slick-next {
		width: 50px;
		height: 50px;
	}
	.staff-slider .slick-prev::before,
	.staff-slider .slick-next::before {
		width: 16px;
		height: 16px;
	}
}

/**********************************************************
* 訪問看護事業所（採用）
**********************************************************/
.recs-top {
	position: relative;
	width: 100%;
	max-width: 1820px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}
.recs-top .txtarea {
	width: 62%;
	padding-left: 1rem;
	margin-left: auto;
	margin-right: auto;
}
.recs-top .txtarea .inner {
	max-width: 950px;
	width: 100%;
	margin-left: auto;
	margin-right: 0;
	padding-right: 4%;
}
.recs-top .txtarea .ttl {
	font-size: 58px;
	margin-bottom: 90px;
	letter-spacing: 4px;
	line-height: 1.2;
}
.recs-top .txtarea .txt {
	line-height: 1.8;
}
.recs-top .imgarea {
	width: 39%;
}
.recs-top .imgarea img {
	display: block;
	width: 100%;
}

.rec-schedule {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-left: 0;
	padding-right: 0;
}
.rec-schedule .txtarea {
	position: relative;
	width: 46.875%;
	background-color: #FFFAFC;
	border-radius: 0 30px 30px 0;
	padding-bottom: 120px;
	padding-left: 1rem;
}
.rec-schedule .txtarea .inner {
	/* max-width: 590px; */
	max-width: 610px;
	width: 100%;
	margin-left: auto;
	padding-top: 60px;
}
.rec-schedule .txtarea .ttl .jp {
	font-size: 42px;
	font-weight: 500;
	letter-spacing: 5px;
	color: #EB466E;
	padding-bottom: 10px;
}
.rec-schedule .txtarea .ttl .en {
	font-size: 16px;
	/* margin-bottom: 90px; */
}
.rec-schedule .txtarea .list {
	position: relative;
	max-width: 900px;
	width: 100%;
	margin-left: auto;
	z-index: 1;
	margin-top: 90px;
}
.rec-schedule .txtarea .list::before {
	position: absolute;
	content: '';
	left: 70px;
	top: 0;
	bottom: 0;
	margin: auto;
	border-right: 1px dashed #FCDCE5;
	z-index: -1;
}
.rec-schedule .txtarea .switch-sche {
	display: flex;
	justify-content: space-between;
	max-width: 520px;
	width: 100%;
	margin-top: 40px;
}
.rec-schedule .txtarea .list.hayalist,
.rec-schedule .txtarea .list.osolist {
	margin-top: 50px;
}
.rec-schedule .txtarea .list.hide {
	display: none;
}
.rec-schedule .txtarea .switch-sche button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48%;
	max-width: 250px;
	height: 60px;
	border: solid 1px #EB466E;
	border-radius: 20px;
	font-size: 21px;
	background-color: white;
	color: #EB466E;
}
.rec-schedule .txtarea .switch-sche button.active,
.rec-schedule .txtarea .switch-sche button:hover {
	background-color: #EB466E;
	color: white;
	opacity: 1;
}
.rec-schedule .imgarea {
	width: 45.833%;
	padding-top: 175px;
}
.rec-schedule .list {
	position: relative;
	padding-left: 10px;
}
.rec-schedule .list li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 50px;
}
.rec-schedule .list li:last-child {
	margin-bottom: 0;
}
.rec-schedule .list .time {
	width: 120px;
	height: 50px;
	color: #EB466E;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #EB466E;
	border-radius: 18px;
	background-color: #FFFAFC;
}
.rec-schedule .list .do {
	width: calc(100% - 170px);
}
.rec-schedule .imgarea img:last-of-type {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.rec-jobs .big-img {
	display: block;
	max-width: 1820px;
	width: 100%;
	margin: 0 auto 150px;
	border-radius: 17px;
}
.jobs-list {
	max-width: 1200px;
	margin: auto;
	padding-top: 80px;
	padding-bottom: 100px;
}
.jobs-list > li {
	margin-bottom: 50px;
	padding: 50px 4%;
	border-radius: 22px;
	box-shadow: 2px 2px 5px #FDF2F9;
}
.jobs-inList {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}
.jobs-inList > li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px;
	padding: 10px 30px 10px 90px;
	border: solid 1px #EB466E;
	border-radius: 40px;
	min-height: 80px;
	color: #EB466E;
}
.jobs-inList > li span {
	font-weight: 500;
}
.jobs-inList > li img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	margin: auto;
}
.detail-wrap {
	width: 100%;
	max-width: 1000px;
	max-height: 0;
	overflow: hidden;
	margin: auto;
	transition: 1s all;
}
.detail-wrap.active {
	max-height: 5000px;
}
.jobs-table {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 60px;
}
.jobs-table tr:first-child {
	border-top: dashed 1px #A7ACB1;
}
.jobs-table tr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: dashed 1px #A7ACB1;
}
.jobs-table th {
	width: 250px;
	padding: 20px 10px 25px;
	color: #EB466E;
	text-align: left;
	font-size: 21px;
}
.jobs-table td {
	width: calc(100% - 250px);
	padding: 20px 10px 25px;
	font-size: 21px;
	text-align: left;
}
.detail-wrap .entry-link {
	position: relative;
	width: 250px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 60px 10px 20px;
	color: white;
	background-color: #EB466E;
	border-radius: 50px;
	font-size: 21px;
	margin: 0 auto 50px;
}
.detail-wrap .entry-link img {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.jobs-list > li {
	text-align: center;
}
.jobs-list > li button {
	position: relative;
	color: #EB466E;
	font-size: 18px;
	background: none;
	border: none;
	cursor: pointer;
}
.jobs-list > li button span {
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
	border: solid 1px #EB466E;
	border-radius: 50%;
	top: 0;
	bottom: 0;
	margin: auto;
	margin-left: 5px;
}
.jobs-list > li button span::before {
	content: '';
	position: absolute;
	width: 12px;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	border-bottom: solid 1px #EB466E;
}
.jobs-list > li button span::after {
	content: '';
	position: absolute;
	width: 12px;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	border-bottom: solid 1px #EB466E;
	transform: rotate(90deg);
}
.jobs-list > li button.open span::after {
	transform: rotate(0);
}
.recs-qanda {
	margin-top: 90px;
}
.iwai-flex {
	max-width: 1470px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
}
.iwai {
	max-width: 820px;
	width: 100%;
	margin: 50px auto;
	text-align: center;
	padding: 60px 2% 45px;
	border-radius: 20px;
	border: solid 1px #EB466E;
}
.iwai.small {
	max-width: 620px;
}
.iwai.big {
	max-width: 770px;
	padding: 35px 2%;
}
.iwai .ttl {
	font-size: 28px;
	color: #EB466E;
	margin-bottom: 50px;
	font-weight: bold;
}
.iwai.big .ttl {
	margin-bottom: 30px;
}
.iwai .txt {
	max-width: 620px;
	margin: 0 auto 30px;
}
.iwai .txt2 {
	margin-top: 20px;
}
.iwai .label {
	/* width: 90px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center; */
	display: inline-block;
	padding: 5px 15px;
	color: #EB466E;
	margin: auto;
	border-radius: 15px;
	border: solid 1px #EB466E;
	font-size: 18px;
	font-weight: bold;
}
.iwai .supply {
	color: #EB466E;
}
.iwai .supply .inblock {
	margin-left: 10px;
	margin-right: 10px;
	font-weight: bold;
}
.iwai .supply .inblock span {
	font-size: 38px;
	font-weight: bold;
}
.rec-fixbox {
	display: none;
	position: fixed;
	width: 380px;
	/* height: 280px; */
	height: 190px;
	/* right: 3%;
	bottom: 3%; */
	right: 20px;
	bottom: 100px;
	border-radius: 15px;
	background-color: #F58CAA;
	padding: 25px 15px;
	box-shadow: 3px 3px 6px 2px #acacac;
	z-index: 100;
}
.rec-fixbox.open {
	display: block;
}
.rec-fixbox .ttl {
	color: white;
	text-align: center;
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 500;
}
.rec-fixbox a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 320px;
	height: 70px;
	padding: 10px 10px 10px 60px;
	font-size: 18px;
	border-radius: 10px;
	letter-spacing: 2px;
	margin: auto;
	box-shadow: 3px 3px 0 0 #D23D68;
}
.rec-fixbox a:hover {
	opacity: 1;
	transform: translateY(2px);
	box-shadow: 1px 1px 0 0 #D23D68;
}
.rec-fixbox a img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	margin: auto;
}
.rec-fixbox a span {
	font-weight: 500;
}
.rec-fixbox a.insta {
	background-color: #EB466E;
	color: white;
	margin-bottom: 15px;
}
.rec-fixbox a.line {
	background-color: white;
	color: #505A64;
}
.rec-fixbox .close-btn {
	cursor: pointer;
	position: absolute;
	width: 35px;
	height: 35px;
	background: white;
	border: none;
	border-radius: 50%;
	top: -12.5px;
	right: -12.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}
.rec-fixbox .close-btn:hover {
	opacity: 1;
}


.int-ttl {
	position: relative;
}
.int-ttl::before {
	content: '';
	position: absolute;
	left: -1.2rem;
	top: 5px;
	bottom: 10px;
	width: 5px;
	background-color: #EB466E;
}
.int-ttl .en {
	font-size: 18px;
	margin-bottom: 30px;
	line-height: 1;
}
.int-ttl .jp {
	font-size: 28px;
	line-height: 1.7;
}
.interview-slide .flex .left {
	width: 62%;
}
.interview-slide .flex .right {
	width: 30%;
}
.interview .w1200 {
	max-width: 1360px;
	padding-left: 80px;
	padding-right: 80px;
}
.interview .flex {
	position: relative;
}
.int-ques {
	color: #EB466E;
	margin-top: 45px;
	padding-bottom: 12px;
	margin-bottom: 20px;
	/* border-bottom: dotted 1px #CACDD0; */
	background-image : linear-gradient(to right, #CACDD0 2px, transparent 2px);
	background-size: 8px 2px;
	background-repeat: repeat-x;
	background-position: left bottom;
	font-weight: 500;
}
.interview p {
	line-height: 1.7;
}
.interview-slide {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}
.interview-slide .slick-prev {
	left: 0;
}
.interview-slide .slick-next {
	right: 0;
}
.interview-slide .slick-prev,
.interview-slide .slick-next {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: solid 1px #EB466E;
	background-color: white;
	z-index: 50;
	opacity: 1;
}
.interview-slide .slick-prev:hover,
.interview-slide .slick-prev:focus,
.interview-slide .slick-next:hover,
.interview-slide .slick-next:focus {
	background: white;
}
.interview-slide .slick-prev::before,
.interview-slide .slick-next::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-right: 2px solid #EB466E;
	border-bottom: 2px solid #EB466E;
}
.interview-slide .slick-prev::before {
	transform: rotate(135deg);
	left: 10px;
}
.interview-slide .slick-next::before {
	transform: rotate(-45deg);
	right: 10px;
}
.indent-list li {
	padding-left: 20px;
}

@media screen and (max-width: 1100px) {
	.recs-top .txtarea .ttl {
		font-size: 50px;
		margin-bottom: 70px;
		/* text-shadow: 3px 2px 0px white; */
		width: 61%;
	}
	.recs-top .txtarea {
		width: 100%;
	}
	.recs-top .txtarea .inner {
		padding-right: 1rem;
	}
	.recs-top .imgarea {
		position: absolute;
		right: 0;
		z-index: -1;
	}
}
@media screen and (max-width: 1000px) {
	.interview-slide .flex .left {
		width: 100%;
	}
	.interview-slide .flex .right {
		position: absolute;
		right: 0;
		top: 0;
		z-index: -1;
	}
}
@media screen and (max-width: 768px) {
	.recs-top .txtarea .ttl {
		font-size: 40px;
	}
	.recs-top .imgarea {
		width: 35%;
	}
	.recs-top .txtarea .txt br.pc {
		display: none;
	}
	.rec-fixbox {
		/* display: none; */
		display: block !important;
		position: static;
		width: 100%;
		height: auto;
		max-width: none;
		box-shadow: none;
		border-radius: 0;
		padding-bottom: 30px;
	}
	.rec-fixbox a {
		height: 60px;
		letter-spacing: 1px;
		padding-left: 55px;
	}
	.rec-fixbox a img {
		width: 40px;
		height: 40px;
	}
	.rec-fixbox .close-btn {
		display: none;
	}
	.nur-2 .white-wrap {
		padding: 40px 3% 20px;
	}
	.nur2-ttl {
		font-size: 30px;
	}
	.rec-schedule {
		flex-wrap: wrap;
	}
	.rec-schedule .txtarea {
		width: 100%;
		padding-bottom: 40px;
	}
	.rec-schedule .txtarea .inner {
		padding-top: 0;
		margin: auto;
	}
	.rec-schedule .txtarea .ttl .jp {
		font-size: 34px;
	}
	.rec-schedule .txtarea .list {
		margin-top: 30px;
		padding-left: 0;
	}
	.rec-schedule .list li {
		margin-bottom: 20px;
	}
	.rec-schedule .list .time {
		height: 35px;
	}
	.rec-schedule .imgarea {
		display: block;
		padding-top: 0;
		width: 100%;
	}
	.rec-schedule .imgarea img {
		display: block;
		width: 55%;
		margin: auto;
		border-radius: 10px;
	}
	.rec-schedule .imgarea img:last-of-type {
		margin-top: 20px;
	}
	.rec-jobs .big-img {
		border-radius: 0;
		width: 100%;
		margin-bottom: 70px;
		border-radius: 10px;
	}
	.jobs-list {
		padding-top: 0;
		padding-bottom: 20px;
	}
	.jobs-list > li {
		padding: 30px 3%;
	}
	.jobs-table tr {
		display: block;
		width: 100%;
	}
	.jobs-table th {
		display: block;
		width: 100%;
		padding-left: 0;
		padding-bottom: 0;
	}
	.jobs-table td {
		display: block;
		width: 100%;
		padding-top: 10px;
	}
	.rec-schedule .txtarea .inner {
		padding-right: 1rem;
	}
	.rec-schedule .txtarea
	.switch-sche button {
		font-size: 18px;
	}
	.iwai {
		padding: 40px 2%;
	}
	.iwai .ttl {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.iwai .supply .inblock span {
		font-size: 34px;
	}
	.interview-slide .flex .right {
		width: 150px;
	}
	.interview-slide .slick-prev,
	.interview-slide .slick-next {
		top: -75px;
	}
	.interview .w1200 {
		padding-left: 0;
		padding-right: 0;
	}
	.int-ttl {
		width: calc(99% - 150px);
		margin-left: 0;
		padding-left: 1rem;
	}
	.int-ttl::before {
		left: 0;
		bottom: 5px;
		width: 3px;
	}
	.int-ttl .jp {
		font-size: 24px;
		line-height: 1.5;
	}
}
@media screen and (max-width: 480px) {
	.rec-fixbox {
		padding-bottom: 120px;
	}
	.recs-top .txtarea .ttl {
		width: 100%;
		font-size: 28px;
		margin-bottom: 45px;
	}
	.recs-top .imgarea {
		width: 150px;
	}
	.nur2-ttl {
		font-size: 26px;
		margin-bottom: 15px;
	}
	.rec-schedule .txtarea .ttl .jp {
		font-size: 26px;
		padding-bottom: 0;
	}
	.iwai .ttl {
		font-size: 21px;
	}
	.iwai .supply .inblock span {
		font-size: 30px;
	}
	.jobs-table td {
		font-size: 18px;
	}
	.recs-qanda {
		margin-top: 0;
	}
	.int-ttl {
		width: calc(99% - 110px);
	}
	.int-ttl .jp {
		font-size: 21px;
	}
	.interview-slide .flex .right {
		width: 110px;
	}
	.interview-slide .slick-prev,
	.interview-slide .slick-next {
		width: 50px;
		height: 50px;
	}
	.interview-slide .slick-prev::before,
	.interview-slide .slick-next::before {
		width: 16px;
		height: 16px;
	}
	section.interview {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		padding-bottom: 0;
	}
	.rec-schedule .list .do {
		width: calc(100% - 140px);
	}
	.jobs-inList > li img {
		width: 50px;
	}
	.jobs-inList > li {
		min-height: 70px;
		padding: 10px 10px 10px 70px;
	}
}

/**********************************************************
* entry エントリー
**********************************************************/
.ent-1 {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}
.ent-lead {
	width: 100%;
	max-width: 1440px;
	text-align: left;
	padding-top: 80px;
	padding-bottom: 80px;
	margin: auto;
}
.entryform-wrap {
	width: 100%;
	background-color: #FDF2F9;
	border-radius: 200px 200px 0 0;
	padding-top: 100px;
	padding-bottom: 180px;
}
.entry-table {
	width: 100%;
}
.entry-table tr {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.entry-table tr:last-child {
	margin-bottom: 0;
}
.entry-table th {
	width: 220px;
	padding: 24px 10px 10px;
	text-align: left;
	font-size: 21px;
}
.entry-table tr td:first-of-type {
	width: 90px;
	padding: 20px 10px 10px;
	text-align: left;
}
.entry-table tr td:first-of-type span {
	width: 55px;
	height: 35px;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	color: #EB466E;
	border: solid 1px #EB466E;
}
.entry-table tr td:last-of-type {
	width: calc(96% - 310px);
}
.entry-table tr td select,
.entry-table tr td input,
.entry-table tr td textarea {
  font-family: "Zen Maru Gothic", sans-serif;
	font-size: 21px;
	width: 100%;
	border: solid 1px #E5E6E8;
	border-radius: 7px;
	padding: 18px 15px;
}
.wpcf7-form-control-wrap:has(select)::after {
	content: "";
	position: absolute;
	top: 14px;
	right: 24px;
	width: 12px;
	height: 12px;
	border-right: 2px solid #505A64;
	border-bottom: 2px solid #505A64;
	transform: rotate(45deg);
}
.wpcf7-form-control-wrap:has(select.is-empty)::after {
	border-right: 2px solid #8D949A;
	border-bottom: 2px solid #8D949A;
}
.entry-table tr td select {
	position: relative;
	-webkit-appearance: none;
	appearance: none;
	padding-right: 50px;
}
.entry-table tr td select.is-empty {
	color: #8D949A;
}
.entry-table tr td select option {
	color: #505A64;
}
::placeholder {
	color: #8D949A;
}
#entry .foot-entry {
	display: none;
}
.entryform-wrap form {
	width: 100%;
}

@media screen and (max-width: 1400px) {
	.entryform-wrap {
		border-radius: 100px 100px 0 0;
	}
}
@media screen and (max-width: 1300px) {
	.entryform-wrap {
		padding-top: 80px;
		padding-bottom: 100px;
	}
}
@media screen and (max-width: 1000px) {
	.foot-entry {
		height: 400px;
	}
	.entryform-wrap {
		padding-top: 60px;
		border-radius: 40px 40px 0 0;
	}
}
@media screen and (max-width: 768px) {
	.ent-lead {
		padding-top: 70px;
		padding-bottom: 50px;
	}
	.entry-table tr {
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
	}
	.entry-table th {
		display: block;
		width: auto;
		padding: 0;
	}
	.entry-table td {
		display: block;
	}
	.entry-table tr td:first-of-type {
		padding: 0;
	}
	.entry-table tr td:last-of-type {
		width: 100%;
		padding-top: 10px;
	}
	.foot-entry {
		padding-right: 0;
		background-position: center right 22%;
	}
}
@media screen and (max-width: 480px) {
	.foot-entry {
		height: 260px;
	}
	.foot-entry a {
		height: 80px;
	}
	.foot-entry a img {
		right: 20px;
		width: 60px;
		height: 60px;
	}
	.foot-entry a {
		font-size: 26px;
	}
	.entry-table th {
		font-size: 18px;
	}
	.entry-table tr td:first-of-type span {
		font-size: 16px;
		width: 50px;
		height: 26px;
	}
	.entry-table tr td select,
	.entry-table tr td input,
	.entry-table tr td textarea {
		font-size: 18px;
	}
	.wpcf7-form-control-wrap:has(select)::after {
		top: 7px;
	}
}

.sp-tellist {
	display: none;
}

@media screen and (max-width: 480px) {
	.sp-tellist {
		display: flex;
		justify-content: space-around;
		background-color: #f58caa;
		text-align: center;
		position: fixed;
		width: 100%;
		bottom: 0;
		z-index: 50;
	}
	.sp-tellist li {
		padding: 7px 0;
	}
	.sp-tellist a {
		color: white;
		font-size: 10px;
	}
	.sp-tellist a span {
		display: block;
	}
}



/**********************************************************
* フェードイン
**********************************************************/
.fade_in {
  opacity: 0;
}
.fade_in.view {
  animation-duration: 1.0s;
  opacity: 1;
}
.fade_in.view.normalIn { animation-name: fadein-Normal; }
.fade_in.view.rightIn { animation-name: fadein-Right; }
.fade_in.view.leftIn { animation-name: fadein-Left; }
.fade_in.view.upIn { animation-name: fadein-Up; }
.fade_in.view.downIn { animation-name: fadein-Down; }

@keyframes fadein-Normal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein-Up {
  from {
    opacity: 0;
    transform: translateY(75px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein-Right {
  from {
    opacity: 0;
    transform: translateX(-75px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein-Left {
  from {
    opacity: 0;
    transform: translateX(75px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein-Down {
  from {
    opacity: 0;
    transform: translateY(-75px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.grecaptcha-badge { visibility: hidden; }

/* body#entry .rec-fixbox,
body#contact .rec-fixbox {
	bottom: 170px;
} */
body#entry .grecaptcha-badge,
body#contact .grecaptcha-badge {
	visibility: visible;
	z-index: 100;
	bottom: 20px !important;
}
body#entry #page-top,
body#contact #page-top {
	right: 90px;
}

.navi_item.sp {
	display: none !important;
}

@media screen and (max-width: 768px) {
	.navi_item.sp {
		display: block !important;
	}
}

@media screen and (max-width: 480px) {	
	body#entry .grecaptcha-badge,
	body#contact .grecaptcha-badge {
		bottom: 85px !important;
	}

	body#entry #page-top,
	body#contact #page-top {
		right: 10px;
		bottom: 150px;
	}
}