@charset "utf-8";

/*
header,footer
  mobile,tablet: -1023px
  PC: 1024px-
main
  mobile: -767px
  tablet,PC: 768px-
*/

/* Font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&subset=japanese');

/* anime */
@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .8;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotateOut {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0);
  }
}

/* ALL */
html,
body {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 100%;
}
.lock {
  overflow:hidden;
}
#container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
#onecolumn,
.content {
  position: relative;
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
}
/* topback */
#topback {
  position: fixed;
  right: 2%;
  bottom: 2%;
  width: 60px;
  height: 60px;
  background: rgba(0, 141, 82, .8);
  z-index: 9999;
  cursor: pointer;
}
#topback::after {
  position: absolute;
  content: "";
  top: 23px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* header */
header {
  position: static;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 90px;
  background: #fff;
  border-top: 3px solid #008d52;
  border-bottom: 1px solid #ccc;
}
header img {
  display: block;
  width: 230px;
  margin: 5px auto 0;
}
/* foot */
footer {
  position: relative;
  bottom: 0;
  margin-top: auto;
  background: #fff;
  border-top: 1px solid #ccc;
  z-index: 10000;
}
/* table */
table.basic {
  width: 100%;
  border-collapse: collapse;
}
table.basic tr {
  border-top: 1px solid #ccc;
}
table.basic tr:last-child {
  border-bottom: 1px solid #ccc;
}
table.basic th,
table.basic td {
  font-size: 1em;
  line-height: 1.8;
  color: #333;
  padding: 2em 1em;
}
table.basic th {
  width: 25%;
  font-weight: 500;
  white-space:nowrap;
  text-align: left;
  padding: 1em;
  background: #eff8f4;
}
table.basic td {
  font-weight: 400;
  padding: 1em 1em 1em 1.5em;
  vertical-align: middle;
}
/* icon */
.linkb {
  display: inline-block;
  background: url(../images/icon/icon03.png);
  width: 18px;
  height: 17px;
  margin: 0 0 0 2px;
}
.pdficon {
  display: inline-block;
  background: url(../images/icon/pdf.png);
  width: 35px;
  height: 35px;
  margin: 0 0 0 3px;
  vertical-align: text-bottom;
}
/* btn anchornav */
a.btn-w,
a.btn-g,
a.btn-gb,
a.btn-ob,
a.btn-pdf,
ul.anchornav li a {
  display: block;
  position: relative;
  width: 70%;
  max-width: 380px;
  height: 70px;
  margin: 1% auto;
  font-size: 1.2em;
  font-weight: 400;
  text-align: center;
  line-height: 70px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
a.btn-w,
ul.anchornav li a {
  background: #fff;
  color: #333;
  border: solid 1px #333;
}
a.btn-g,
a.btn-pdf {
  color: #008d52;
  border: solid 1px #008d52;
}
a.btn-g {
  height: 45px;
  line-height: 45px;
}
a.btn-gb,
a.btn-ob {
  background: #008d52;
  color: #fff;
}
a.btn-ob {
  background: #ef6d40;
}
ul.anchornav {
  margin: 5% auto;
}
ul.anchornav li a {
  width: 100%;
}
a.btn-w::after,
a.btn-g::after,
a.btn-gb::after,
a.btn-ob::after,
a.btn-pdf::after,
ul.anchornav li a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 5%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.btn-g::after,
a.btn-pdf::after,
ul.anchornav li a::after {
  border-top: 2px solid #008d52;
  border-right: 2px solid #008d52;
}
a.btn-gb::after,
a.btn-ob::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
a.btn-pdf::before {
  position: absolute;
  display: inline-block;
  content: url(../images/icon/pdf.png);
  top: 10px;
  left: 5%;
  width: 35px;
  height: 35px;
}
ul.anchornav li a::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
a.btn-map {
  display: block;
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 45px;
  margin: 5% auto;
  color: #008d52;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  line-height: 45px;
  background: #fff;
  border: solid 1px #008d52;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
a.btn-map::after {
  position: absolute;
  content: url(../images/icon/icon03.png);
  top: 4px;
  right: 5%;
  width: 18px;
  height: 17px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
/* main style */
img.block {
  display: block;
  width: 100%;
}
ul.basic li,
ul.basic02 li,
ul.basic03 li {
  line-height: 1.2;
  padding: .5em 0 .5em 1em;
}
ul.basic li::before,
ul.basic02 li::before,
ul.basic03 li::before {
  display: block;
  position: relative;
  content: "";
  top: 1em;
  left: -1.2em;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #008d52;
}
ul.basic02 li::before {
  background: #333;
}
ul.basic03 li::before {
  background: #ef6d40;
}
ul.number {
  counter-reset: number 0;
  margin: 0;
}
ul.number li {
  margin: 0 0 0 3em;
}
ul.number li:before{
  counter-increment: number 1;
  content: "(" counter(number) ") ";
  margin: 0 0 0 -2em;
  font-size: .9em;
}
/* Box */
.box01 {
  width: 100%;
  padding: 3%;
  border: solid 1px #ccc;
}
.box02 {
  width: 100%;
  padding: 5%;
  background: #fdfaf5;
  border: solid 1px #ccc;
}
/* mobile */
@media all and (max-width: 767px) {
  /* display */
  .pc {
    display:none !important;
  }
  /* topback */
  #topback {
    width: 40px;
    height: 40px;
  }
  #topback::after {
    top: 16px;
    right: 15px;
    width: 10px;
    height: 10px;
  }
  /* table */
  table.basic,
  table.basic tbody,
  table.basic tr,
  table.basic th,
  table.basic td {
    display: block;
  }
  table.basic th {
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  /* btn */
  a.btn-w,
  a.btn-g,
  a.btn-gb,
  a.btn-ob,
  a.btn-pdf,
  ul.anchornav li a {
    width: 85%;
    height: 50px;
    line-height: 50px;
  }
  ul.anchornav li a {
    width: 100%;
    font-size: .9em;
  }
}
/* tablet,PC */
@media all and (min-width: 768px) {
  /* display */
  .mob {
    display:none !important;
  }
}
/* mobile,tablet */
@media all and (max-width: 1023px) {
  .pcv,
  #lp_foot {
    display:none !important;
  }
  /* footer */
  .copybloc {
    margin: 3% auto 0;
    text-align: center;
  }
  .copybloc img {
    width: 230px;
  }
  .copybloc ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .copybloc ul li a {
    color: #333;
    font-size: .6em;
    font-weight: 400;
  }
  .copybloc ul li:first-child {
    order: 4;
    width: 100%;
    color: #333;
    font-size: .7em;
    font-weight: 400;
    padding: .5em 0;
    border-top: 1px solid #ccc;
  }
  .copybloc ul li:nth-child(n+2) {
    flex-basis: 32%;
    padding: 1em 0;
  }
  .lp_foot_mov a.btn-g {
    margin: 1.5em auto;
    font-size: 1em;
  }
  .lp_foot_mov a.btn-g::after {
    top: 20px;
  }
  .copybloc.lp_foot_mov ul li:nth-child(n+2) {
    flex-basis: 49%;
    padding: 1em 0;
  }
}
/* PC */
@media all and (min-width: 1024px) {
  .mobv,
  .lp_foot_mov a.btn-g {
    display:none !important;
  }
  /* footer */
  #lp_foot {
    border-bottom: 1px solid #ccc;
  }
  .copybloc ul,
  #lp_foot ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 1% auto;
  }
  .copybloc ul li:first-child {
    margin-right: auto;
  }
  .copybloc ul li:first-child,
  .copybloc ul li a {
    color: #333;
    font-size: 1em;
    font-weight: 400;
  }
  .copybloc ul {
    margin: 2% auto;
  }
  .copybloc ul li:first-child,
  .copybloc ul li a {
    font-size: .8em;
  }
  .copybloc ul li:nth-child(n+2) a {
    display: block;
    position: relative;
    padding: 0 1.4em;
  }
  .copybloc ul li:nth-child(n+2) a::after {
    position: absolute;
    content: "";
    top: 25%;
    right: 8%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #008d52;
    border-right: 2px solid #008d52;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .copybloc ul li:nth-child(n+2) a::after {
    top: 25%;
    right: 5%;
  }
  #lp_foot ul {
    align-items: center;
  }
  #lp_foot ul li.logo {
    width: 230px;
  }
  #lp_foot ul li:last-child {
    width: 38%;
  }
  #lp_foot ul li a.btn-g {
    width: 100%;
    margin: 0;
  }
}
/* hover */
a.btn-w:hover::after,
a.btn-f:hover::after,
a.btn-g:hover::after,
a.btn-ob:hover::after,
a.btn-pdf:hover::after,
.copybloc ul li:nth-child(n+2):hover a::after,
a.btn-map:hover::after {
  right: 2%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
table.basic td a:hover {
  text-decoration: underline;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* style */
.mt4 {
  margin: 4% 0 0 !important;
}
.mt {
  margin: 5% 0 0 !important;
}
.mb {
  margin: 0 0 5% !important;
}
.mtb {
  margin: 5% 0 !important;
}
.mat {
  display: block;
  margin: 5% auto 0 !important;
}
.mab {
  display: block;
  margin: 0 auto 5% !important;
}
.tc {
  text-align: center !important;
}
.tr {
  text-align: right !important;
}
.twb {
  font-weight: 500 !important;
}
.tmin {
  font-size: .9em !important;
}
span.br::after {
  content: '\A\A';
  white-space: pre;
}
@media print {
  header {
    position: static;
  }
  #container{
    position: static;
    overflow-y: visible;
    overflow-x: visible;
  }
}

/* yokkaichi_op */
.l-mv {
  text-align: center;
  overflow: hidden;
}
.l-applyAnc {
  padding-top: 3%;
  background: #fcfbf2;
}
.l-applyAnc h2,
.l-tCard h2 {
  display: block;
    color: #008d52;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
.l-tCard h2 {
  text-align: left;
  margin-bottom: .1em;
}
.l-tCard p {
  margin-bottom: 3%;
}
.l-tCardImg {
  text-align: center;
  overflow: hidden;
}
.l-tCard {
  background: #fff;
  padding: 3% 0
}
.l-tCard figure {
  margin-bottom: 5%;
}
#yokkaichi_op_main_erea {
  overflow: hidden;
}
#yokkaichi_op_main_erea::before {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100vh;
  background: url(../lp/images/yokkaichi_op/back.jpg) center no-repeat;
  background-size: cover;
  z-index: -1;
}
#yokkaichi_op_main_erea section {
  margin: 10% 0;
}
#yokkaichi_op_sub_erea {
  position: relative;
  padding: 3% 0;
  background: #fdfdf3;
  z-index: 5;
}
#yokkaichi_op_main_erea h1 {
  display: block;
  color: #008d52;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#yokkaichi_op_main_erea h2 + h1 {
  margin: .8em 0 .5em;
}
#yokkaichi_op_main_erea h2 {
  color: #008d52;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
#yokkaichi_op_main_erea h2 span{
  padding: 0 1em;
  background: linear-gradient(transparent 65%,#FFF 65%);
}
#yokkaichi_op_main_erea h3,
.l-tCard h3 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin: 0 0 3%;
  border-bottom: solid 2px #008d52;
}
.l-tCard h3 {
  margin-bottom: 1%;
}
.l-tCard p,
#yokkaichi_op_main_erea p,
#yokkaichi_op_sub_erea p {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
#yokkaichi_op_main_erea #bloc_01 .yokkaichi_op_inner,
#yokkaichi_op_main_erea #bloc_03 .yokkaichi_op_inner {
  width: 100%;
  margin: 5% 0 0;
}
#yokkaichi_op_main_erea #bloc_02 .yokkaichi_op_inner,
#yokkaichi_op_main_erea #bloc_04 .yokkaichi_op_inner {
  width: 100%;
  margin: 5% 0;
}
#yokkaichi_op_main_erea .yokkaichi_op_inner h1 {
  margin: 0 0 1.3em;
}
#yokkaichi_op_main_erea .line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 10% 0;
  background: url(../lp/images/yokkaichi_op/line.svg);
}
#ac_delica {
  display: block;
  width: 85%;
  max-width: 700px;
}
#yokkaichi_op_main_erea section#bloc_05 h1 {
  text-align: center;
}
.l-appBadge {
  display: flex;
  align-items: center;
  margin-right: 4%;
}
.l-appBadge__google {
  width: 32%;
  max-width: 253px;
}
.l-appBadge__app {
  width: 24.6%;
  max-width: 193px;
}
.l-appBadge__google img,
.l-appBadge__app img {
  width: 100%;
}
#yokkaichi_op_sub_erea #yokkaichi_logo {
  display: block;
  margin: 2em 0 1em;
  padding: 0 0 1em;
  border-bottom: solid 2px #008d52;
}
#yokkaichi_op_sub_erea #yokkaichi_logo img {
  width: 90%;
  max-width: 400px;
}
@media all and (min-width: 481px) {
  .pc_none {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .l-applyAnc .anchornav li a {
    width: 85%;
  }
  .yokkaichi_op_inner div {
    margin: 0 0 5%;
  }
  .l-applyAnc h2,
  .l-tCard h2,
  #yokkaichi_op_main_erea h1 {
    font-size: 1.4rem;
  }
  #yokkaichi_op_main_erea h2 {
    font-size: 1.15rem;
  }
  #yokkaichi_op_main_erea h2 span{
    padding: 0 .5em;
  }
  #yokkaichi_op_main_erea h2 + h1 {
    margin: .4em 0 .2em;
  }
  #yokkaichi_op_main_erea h3,
  .l-tCard h3 {
    font-size: 1.1rem;
  }
  .l-tCard p,
  #yokkaichi_op_main_erea p,
  #yokkaichi_op_sub_erea p {
    font-size: .9rem;
  }
  #yokkaichi_op_main_erea .yokkaichi_op_inner h1 {
    margin: 0 0 .7em;
  }
  .l-appBadge__google {
    width: 44%;
  }
  .l-appBadge__app {
    width: 34.6%;
  }
  #yokkaichi_op_sub_erea a.btn-map {
    width: 90%;
  }
}
@media all and (min-width: 768px) {
  .yokkaichi_op_inner {
    display: flex;
    justify-content: space-between;
  }
  .yokkaichi_op_inner.fdr {
    flex-direction: row-reverse;
  }
  .yokkaichi_op_inner div {
    flex-basis: calc(96% / 2);
  }
  #yokkaichi_op_sub_erea a.btn-map {
    margin: 1em 0 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .l-applyAnc h2,
  .l-tCard h2,
  #yokkaichi_op_main_erea h1 {
    font-size: 2.2rem;
  }
  #yokkaichi_op_main_erea h2 {
    font-size: 2rem;
  }
}
@media all and (max-width: 1023px) {
  #yokkaichi_op_sub_erea {
    padding: 8% 0;
  }
}

/* tadaoka_op */
.l-mv {
  text-align: center;
  overflow: hidden;
}
.l-tadaokaimg {
  text-align: center;
	padding-top: 3%;
}
.l-tadaoka {
  padding-block: 3%;
  background: #fcfbf2;
}
.l-tadaoka h2 {
  display: block;
    color: #B50005;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
#tadaoka_op_main_erea {
  overflow: hidden;
}
#tadaoka_op_main_erea::before {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100vh;
  background: url(../lp/images/tadaoka_op/back.jpg) center no-repeat;
  background-size: cover;
  z-index: -1;
}
#tadaoka_op_main_erea section {
  margin: 10% 0;
}
#tadaoka_op_main_erea section #bloc_05 {
  margin: 5% 0;
}
#tadaoka_op_sub_erea {
  position: relative;
  padding: 3% 0;
  background: #fdfdf3;
  z-index: 5;
}
#tadaoka_op_main_erea h1 {
  display: block;
  color: #007842;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
#tadaoka_op_main_erea h2 + h1 {
  margin: .8em 0 .5em;
}
#tadaoka_op_main_erea h2 {
  color: #007842;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
#tadaoka_op_main_erea h2 span {
  padding: 0 0.3em;
  background: linear-gradient(transparent 65%,#FFF 65%);
}
#tadaoka_op_main_erea h3 {
  color: #007842;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
	padding-top: 5%;
	text-align:center
}
#tadaoka_op_main_erea h4 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 3%;
  border-bottom: solid 2px #007842;
	padding-block:3%;
}
#tadaoka_op_main_erea #bloc_01 .tadaoka_op_inner,
#tadaoka_op_main_erea #bloc_03 .tadaoka_op_inner {
  width: 100%;
  margin: 5% 0 0;
}
  .tadaoka_op_inner.fdr {
    flex-direction: row-reverse;
  }
	.tadaoka_op_inner div {
    flex-basis: calc(96% / 2);
}
#tadaoka_op_main_erea p,
#tadaoka_op_sub_erea p {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
#tadaoka_op_main_erea #bloc_02 .tadaoka_op_inner,
#tadaoka_op_main_erea #bloc_04 .tadaoka_op_inner {
  width: 100%;
  margin: 5% 0;
}
#tadaoka_op_main_erea .tadaoka_op_inner h1 {
  margin: 0 0 1.3em;
}
#tadaoka_op_main_erea .line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 10% 0;
  background: url(../lp/images/tadaoka_op/line.svg);
}
#ac_delica {
  display: block;
  width: 85%;
  max-width: 700px;
}
.l-appBadge {
  display: flex;
  align-items: center;
  margin-right: 4%;
}
.l-appBadge__google {
  width: 32%;
  max-width: 253px;
}
.l-appBadge__app {
  width: 24.6%;
  max-width: 193px;
}
.l-appBadge__google img,
.l-appBadge__app img {
  width: 100%;
}
#tadaoka_op_sub_erea #tadaoka_logo {
  display: block;
  margin: 2em 0 1em;
  padding: 0 0 1em;
  border-bottom: solid 2px #007842;
}
#tadaoka_op_sub_erea #tadaoka_logo img {
  width: 90%;
  max-width: 400px;
}
@media all and (min-width: 481px) {
  .pc_none {
    display: none;
  }
}
@media all and (max-width: 767px) {
	.tadaoka_op_inner div {
    margin: 0 0 5%;
  }
	.l-tadaokaimg {
	padding-top: 5%;
	}
	.l-tadaoka {
  padding-block: 5%;
  }
  .l-tadaoka .anchornav li a {
    width: 85%;
  }
  .l-tadaoka h2,
  #tadaoka_op_main_erea h1 {
    font-size: 1.2rem;
  }
  #tadaoka_op_main_erea h2 {
    font-size: 1.15rem;
  }
  #tadaoka_op_main_erea h2 span{
    padding: 0 .5em;
  }
  #tadaoka_op_main_erea h2 + h1 {
    margin: .4em 0 .2em;
  }
	#tadaoka_op_main_erea h3 {
  font-size: 1.2rem;
	}
	#tadaoka_op_main_erea h4 {
  font-size: 1.2rem;
	}
	#tadaoka_op_main_erea .tadaoka_op_inner h1 {
    margin: 0 0 .7em;
  }
  .l-appBadge__google {
    width: 44%;
  }
  .l-appBadge__app {
    width: 34.6%;
  }
	#tadaoka_op_sub_erea a.btn-map {
    width: 90%;
  }
}
@media all and (min-width: 768px) {
	.tadaoka_op_inner {
    display: flex;
    justify-content: space-between;
  }
  .tadaoka_op_inner.fdr {
    flex-direction: row-reverse;
  }
	#tadaoka_op_sub_erea a.btn-map {
    margin: 1em 0 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
	#tadaoka_op_main_erea h2 {
    font-size: 2rem;
  }
}
@media all and (max-width: 1023px) {
	#tadaoka_op_sub_erea {
    padding: 8% 0;
  }
}