@charset "UTF-8";
/*----------------------------------------------------------
 Reset
------------------------------------------------------------*/
body, div, section, article, aside, nav,
h1, h2, h3, h4, h5, h6,
span, time, figure, figcaption,
p, blockquote, pre, address, code,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, button,
table, tbody, thead, tfoot, tr, th, td {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  word-break: break-all;
}

header, main, aside, footer, section {
  display: block;
}

h1, h2, h3, h4, h5, h6, th, td, small {
  font-size: 100%;
}

ul, ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
select {
  vertical-align: middle;
}

em {
  font-style: normal;
}

button {
  background: none;
  border: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*----------------------------------------------------
	setting
----------------------------------------------------*/
/*
  mixin
*/
/*----------------------------------------------------
	basic
----------------------------------------------------*/
body {
  min-width: 1080px;
  color: #393939;
  font-size: 16px;
  font-size: 1rem;
  font-family: fot-tsukuardgothic-std, sans-serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  html, body {
    height: 100%;
  }
}

* {
  box-sizing: border-box;
}

a:link {
  color: #393939;
  text-decoration: none;
}
a:visited {
  color: #393939;
}
a:hover {
  color: #393939;
}
a:active {
  color: #393939;
}

br[data-show="sp"] {
  display: none;
}
@media screen and (max-width: 768px) {
  br[data-show="sp"] {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  br[data-show="pc"] {
    display: none;
  }
}

/*----------------------------------------------------
	layout
----------------------------------------------------*/
/*----------------------------------------------------
	header
----------------------------------------------------*/
.header {
  position: relative;
  width: 100%;
  padding: 4px 0 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 4px 0 0;
  padding-left: 60px;
}
.header__logo a {
  position: relative;
  display: block;
  text-align: center;
}
.header__logo img.logo_icon {
  width: 89px;
}
.header__logo img.logo_text {
  position: absolute;
  top: 0;
  left: 0;
}
.header-utility {
  width: 190px;
}
.header-utility li {
  margin-bottom: 4px;
}
.header-utility li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding-bottom: 3px;
  background: #f3665b;
  border-radius: 20px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  font-style: italic;
  line-height: 1;
  text-align: center;
}
.header-utility li a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 9px;
  background-image: url(../img/icon/mail.svg);
}
.header-utility li a[href^="tel"] {
  background: #08990f;
}
.header-utility li a[href^="tel"]:before {
  width: 16px;
  margin-right: 13px;
  background-image: url(../img/icon/tel.svg);
}
.header.-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}
.header.-fixed .header__logo img.logo_text {
  display: none;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0;
  }
  .header-inner {
    display: block;
    width: 100% !important;
    padding: 0 !important;
  }
  .header__logo, .header-utility {
    display: none;
  }
}

/*----------------------------------------------------
	nav
----------------------------------------------------*/
.nav {
  display: flex;
  padding-left: 190px;
  z-index: 1;
}
.nav-title {
  display: none;
}
.nav-list {
  display: flex;
  justify-content: space-between;
}
.nav-list > li {
  display: flex;
  align-items: center;
  margin: 0 10px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.nav-list > li > a {
  display: block;
  padding: 10px 20px;
  padding-top: calc(10px - (((25px * 1.5) - 25px) / 2));
  padding-bottom: calc(10px - (((25px * 1.5) - 25px) / 2));
  border-radius: 20px;
  transition: .5s;
}
.nav-list > li > a:hover {
  color: #fff;
  background: #393939;
}
.nav-list > li:last-child {
  display: none;
}
.nav-list > li .nav-submenu {
  position: absolute;
  top: 92px;
  left: 0;
  display: none;
  width: 100%;
  padding: 30px;
  background: #393939;
}
.nav-list > li .nav-submenu ul {
  display: flex;
  justify-content: center;
}
.nav-list > li .nav-submenu ul li {
  margin: 0 10px;
}
.nav-list > li .nav-submenu ul li .img {
  position: relative;
  width: 210px;
  height: 170px;
  margin-bottom: calc(26px - (((1rem * 1.5) - 1rem) / 2));
  overflow: hidden;
}
.nav-list > li .nav-submenu ul li .img:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 36px 0 0 36px;
  border-color: transparent transparent transparent #f3665b;
  z-index: 1;
}
.nav-list > li .nav-submenu ul li .img img {
  position: absolute;
  transition: .3s;
}
.nav-list > li .nav-submenu ul li span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.nav-list > li .nav-submenu ul li a {
  display: block;
  color: #fff;
  transition: .3s;
}
.nav-list > li .nav-submenu ul li a:hover {
  color: #f3665b;
}
.nav-list > li .nav-submenu ul li a:hover .img img {
  transform: scale(1.2);
  transform-origin: center;
}
.nav-list > li .nav-submenu ul li:nth-of-type(1) .img:after {
  border-color: transparent transparent transparent #f2cdca;
}
.nav-list > li .nav-submenu ul li:nth-of-type(3) .img:after {
  border-color: transparent transparent transparent #ff983d;
}
.nav-list > li .nav-submenu ul li:nth-of-type(4) .img:after {
  border-color: transparent transparent transparent #08990f;
}
.nav-list > li.hasMenu.-active > a {
  color: #fff;
  background: #393939;
}
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    transition: .3s;
  }
  .nav.-active {
    height: 100vh;
    background: #393939;
  }
  .nav-title {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    background: #393939;
    font-size: 0;
  }
  .nav-title span {
    position: absolute;
    left: calc(50% - 48.84% / 2);
    display: block;
    width: 48.84%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
  }
  .nav-title span:nth-of-type(1) {
    top: calc(29px / 2);
    top: 17px;
  }
  .nav-title span:nth-of-type(2) {
    top: calc(41px / 2);
    top: 24px;
  }
  .nav-title span:nth-of-type(3) {
    bottom: calc(29px / 2);
    bottom: 17px;
  }
  .nav-title.-active span:nth-of-type(1) {
    top: 28px;
    transform: rotate(45deg);
  }
  .nav-title.-active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-title.-active span:nth-of-type(3) {
    bottom: 20px;
    transform: rotate(-45deg);
  }
  .nav-list {
    display: none;
    width: 74.38%;
    margin: 43px auto 0;
    padding-top: 4.69%;
  }
  .nav-list > li {
    display: block;
    margin: 0;
    font-size: 16px;
    font-size: 1rem;
    font-size: clamp(14px, 1.1428571429vw, 16px);
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .nav-list > li {
    font-size: clamp(14px, 2.2857142857vw, 16px);
  }
}
@media screen and (max-width: 768px) {
  .nav-list > li:last-child {
    display: block;
  }
  .nav-list > li > a {
    padding: 5.63% 0;
    border-radius: 0px;
    text-align: center;
    color: #fff;
  }
  .nav-list > li .nav-submenu {
    position: static;
    display: none;
    width: 100%;
    padding: 0;
    border-top: 1px solid #fff;
  }
  .nav-list > li .nav-submenu ul {
    display: block;
  }
  .nav-list > li .nav-submenu ul li {
    margin: 0;
    border-bottom: 1px solid #fff;
  }
  .nav-list > li .nav-submenu ul li:last-child {
    border: 0;
  }
  .nav-list > li .nav-submenu ul li .img {
    flex-shrink: 0;
    position: relative;
    width: 44.12%;
    height: auto;
    margin: 0;
  }
  .nav-list > li .nav-submenu ul li .img:after {
    border-width: 18px 0 0 18px;
  }
  .nav-list > li .nav-submenu ul li .img img {
    position: static;
  }
  .nav-list > li .nav-submenu ul li span {
    display: flex;
    justify-content: center;
    width: calc(100% - 44.12%);
    font-size: 14px;
    font-size: 0.875rem;
    text-align: center;
  }
  .nav-list > li .nav-submenu ul li a {
    display: flex;
    align-items: center;
  }
  .nav-list > li .nav-submenu ul li a:hover .img img {
    transform: scale(1);
  }
  .nav-list > li.hasMenu > a {
    position: relative;
  }
  .nav-list > li.hasMenu > a:before {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #fff transparent transparent transparent;
  }
}

/*----------------------------------------------------
	main
----------------------------------------------------*/
.main {
  position: relative;
  z-index: 1;
  padding-top: 65px;
}
.main-contents {
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 50px;
  }
  .main-contents {
    padding: 50px 0 0;
  }
}

/* アクセス */
.l-access {
  position: relative;
  /*padding: 80px 0;*/
  background: #fff;
  overflow: hidden;
}
.l-access .contents {
  max-width: 700px;
}
.l-access__title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: calc(50px - (((40px * 2.6) - 40px) / 2));
  padding: 0;
  text-align: left;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.24em;
  font-weight: bold;
  text-align: center;
}
.l-access__title span {
  align-self: center;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  font-weight: normal;
}
.l-access__address {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: calc(57px - (((20px * 2.6) - 20px) / 2));
  padding-top: calc(16px - (((20px * 2.6) - 20px) / 2));
  padding-bottom: calc(16px - (((20px * 2.6) - 20px) / 2));
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.6;
}
.l-access__address:before, .l-access__address:after {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: #393939;
  border-radius: 2px;
}
.l-access__address:before {
  left: 0;
}
.l-access__address:after {
  right: 0;
}
.l-access .googlemap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.l-access .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 768px) {
  .l-access {
    padding: 40px 0 0;
    z-index: 10;
  }
  .l-access:before {
    top: -65%;
    right: 10%;
    width: calc(1247px / 2);
    height: calc(1247px / 2);
    background-size: contain;
  }
  .l-access .contents {
    padding: 0;
  }
  .l-access__title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(28px, 2.8571428571vw, 40px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .l-access__title {
    font-size: clamp(28px, 5.7142857143vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .l-access__title span {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(14px, 1.4285714286vw, 20px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .l-access__title span {
    font-size: clamp(14px, 2.8571428571vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .l-access__address {
    margin-bottom: 35px;
    padding: 0 15px;
    font-size: 22px;
    font-size: 1.375rem;
    font-size: clamp(15px, 1.5714285714vw, 22px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .l-access__address {
    font-size: clamp(15px, 3.1428571429vw, 22px);
  }
}
@media screen and (max-width: 768px) {
  .l-access__address:before, .l-access__address:after {
    display: none;
  }
  .l-access .googlemap {
    height: 200px;
  }
}

/* お問い合わせ */
.l-contact {
  position: relative;
  z-index: 10;
  background: #fff url(../img/share/bg_contact.png) right top no-repeat;
  background-size: cover;
  color: #fff;
}
.l-contact .contents {
  display: flex;
  padding: 0 190px;
  background: url(../img/share/img_contact.svg) left bottom no-repeat;
  background-size: 187px auto;
}
.l-contact-detail {
  width: 50%;
  padding-top: calc(64px - (((20px * 2.6) - 20px) / 2));
  padding-bottom: calc(130px - (((20px * 2.6) - 20px) / 2));
}
.l-contact-detail p {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 2.6;
}
.l-contact__title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: calc(64px - (((40px * 2.6) - 40px) / 2));
  padding: 0;
  color: #fff;
  text-align: left;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.24em;
  font-weight: bold;
  text-align: center;
}
.l-contact__title span {
  align-self: center;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  font-weight: normal;
}
.l-contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.l-contact-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 244px;
  height: 244px;
  border: 2px solid #fff;
  border-radius: 100%;
}
.l-contact-btn a:before {
  position: absolute;
  right: 0;
  bottom: 0px;
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: #393939;
  border-radius: 100%;
  z-index: 100;
  transition: .3s;
}
.l-contact-btn a:after {
  position: absolute;
  bottom: calc(30px - 18px / 2);
  right: calc(30px - 11px / 2);
  content: "";
  display: inline-block;
  width: 11px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
  transition: .3s;
}
.l-contact-btn a:hover .l-contact__btn {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}
.l-contact-btn a:hover:before, .l-contact-btn a:hover:after {
  transform: scale(1.2);
}
.l-contact__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 100%;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #f3665b;
  text-align: center;
  transition: .3s;
}
.l-contact__btn span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-contact__btn span:after {
  content: "";
  display: inline-block;
  width: 82px;
  height: 77px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 20px;
  background-image: url(../img/icon/mail2.svg);
}
@media screen and (max-width: 768px) {
  .l-contact .contents {
    flex-direction: column;
    align-items: center;
    padding: 0 15px 80px;
    background-size: 130px auto;
  }
  .l-contact-detail {
    width: auto;
    margin-bottom: 20px;
    padding-top: calc(40px - (((20px * 2.6) - 20px) / 2));
    padding-bottom: 0;
  }
  .l-contact-detail p {
    font-size: 16px;
    font-size: 1rem;
  }
  .l-contact__title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(28px, 2.8571428571vw, 40px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .l-contact__title {
    font-size: clamp(28px, 5.7142857143vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .l-contact__title span {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(14px, 1.4285714286vw, 20px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .l-contact__title span {
    font-size: clamp(14px, 2.8571428571vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .l-contact-btn {
    width: auto;
  }
  .l-contact-btn a {
    width: 200px;
    height: 200px;
  }
  .l-contact-btn a:before {
    width: 45px;
    height: 45px;
  }
  .l-contact-btn a:after {
    position: absolute;
    bottom: calc(22.5px - 18px / 2);
    right: calc(22.5px - 11px / 2);
    content: "";
    display: inline-block;
    width: 11px;
    height: 18px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .l-contact__btn {
    width: 180px;
    height: 180px;
  }
  .l-contact__btn span:after {
    content: "";
    display: inline-block;
    width: 57px;
    height: 54px;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
.footer {
  position: relative;
  z-index: 10;
  padding-top: 80px;
  background: url(../img/share/bg_footer.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.footer-inner {
  position: relative;
  z-index: 100;
  max-width: 1000px;
  display: grid;
  display: -ms-grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto 1fr;
  padding-bottom: 150px !important;
}
.footer-inner:after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 1000px;
  height: 12px;
  margin: 0 auto;
  background: url(../img/share/line.svg) center bottom no-repeat;
  background-size: cover;
}
.footer__catch {
  grid-column: 1 / 4;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  -ms-grid-row: 1;
  width: 100%;
  margin-bottom: 60px;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.18em;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}
.footer__catch span {
  display: block;
  margin-bottom: 36px;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1;
  text-shadow: 0px 3px #f3665b;
}
.footer__logo {
  grid-column: 1;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-row: 2;
  margin-bottom: 35px;
}
.footer__logo a {
  position: relative;
  display: block;
}
.footer__logo img.logo_icon {
  width: 106px;
}
.footer__logo img.logo_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
}
.footer__address {
  grid-column: 1;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-row: 3;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 2.5;
}
.footer-nav {
  grid-column: 2 / 4;
  grid-row: 2 / 4;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  -ms-grid-row: 2;
  -ms-grid-column-span: 2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 350px;
}
.footer-nav > li {
  margin-bottom: calc(40px - (((18px * 1.5) - 18px) / 2));
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}
.footer-nav > li a {
  position: relative;
  padding-left: 21px;
  transition: .3s;
}
.footer-nav > li a:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 7px;
  height: 10px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23393939%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: .3s;
}
.footer-nav > li a:hover {
  color: #e8584c;
}
.footer-nav > li a:hover:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 10px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23e8584c%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-nav > li span {
  padding-left: 21px;
}
.footer-nav > li ul {
  margin-top: calc(40px - (((1rem * 3) - 1rem) / 2));
  padding-left: 21px;
}
.footer-nav > li ul > li {
  font-size: 16px;
  font-size: 1rem;
  line-height: 3;
}
.footer .pagetop {
  position: fixed;
  right: 0;
  bottom: 100px;
  width: 78px;
  z-index: 100;
}
.footer .pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 90px 0 45px;
  background: #393939;
  border-radius: 30px 0 0 30px;
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.24em;
}
.footer .pagetop a:before, .footer .pagetop a:after {
  position: absolute;
  top: 30px;
  left: 50%;
}
.footer .pagetop a:before {
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 100%;
}
.footer .pagetop a:after {
  top: 39px;
  transform: translateX(-50%) rotate(-90deg);
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23393939%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.footer .copyright {
  position: relative;
  z-index: 99;
  width: 100%;
  padding: 16px;
  background: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.footer .copyright:before, .footer .copyright:after {
  position: absolute;
  top: -12px;
  left: 0;
  content: "";
  display: block;
  width: calc(100% - (50% - 500px));
  height: 12px;
  background: #f2cdca;
}
.footer .copyright:after {
  left: auto;
  right: 0;
  background: #08990f;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 25px;
    background-image: url(../img/share/bg_footer_sp.jpg);
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px !important;
    background: none;
  }
  .footer-inner:after {
    display: none;
  }
  .footer__catch {
    order: 2;
    margin-bottom: 15px;
    font-size: 30px;
    font-size: 1.875rem;
    font-size: clamp(21px, 2.1428571429vw, 30px);
    letter-spacing: 0.18em;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer__catch {
    font-size: clamp(21px, 4.2857142857vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .footer__catch span {
    margin-bottom: 18px;
    font-size: 40px;
    font-size: 2.5rem;
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(28px, 2.8571428571vw, 40px);
    letter-spacing: 0.12em;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer__catch span {
    font-size: clamp(28px, 5.7142857143vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    order: 1;
    margin-bottom: 17px;
  }
  .footer__logo a {
    position: relative;
    display: block;
    width: 28.91%;
    margin: 0 auto;
  }
  .footer__logo img.logo_icon {
    width: 173px;
    width: 93.51%;
  }
  .footer__logo img.logo_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .footer__address {
    order: 3;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2;
  }
  .footer-nav {
    display: none;
  }
  .footer .pagetop {
    right: 4.69%;
    bottom: 30px;
    width: 36px;
    height: 36px;
  }
  .footer .pagetop a {
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
  }
  .footer .pagetop a span {
    display: none;
  }
  .footer .pagetop a:before, .footer .pagetop a:after {
    top: 0;
    left: 0;
  }
  .footer .pagetop a:before {
    transform: translateX(0);
  }
  .footer .pagetop a:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .footer .copyright {
    padding: 10px;
    background: none;
    font-size: 12px;
    font-size: 0.75rem;
    text-align: center;
    color: #fff;
  }
  .footer .copyright:before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: url(../img/share/line.svg) center bottom no-repeat;
    background-size: cover;
  }
  .footer .copyright:after {
    display: none;
  }
}

/*----------------------------------------------------
	0.basic
----------------------------------------------------*/
.is-left {
  text-align: left;
}

.is-center {
  text-align: center;
}

.is-right {
  text-align: right;
}

.header-inner, .footer-inner, .contents, .mainvisual-inner, .facilities-detail, .products-header {
  width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .header-inner, .footer-inner, .contents, .mainvisual-inner, .facilities-detail, .products-header {
    width: auto;
    padding: 0 15px;
  }
}

.page-header {
  position: relative;
  margin-top: 130px;
  padding: 0 0 130px;
}
.page-header:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  max-width: calc(100% - (50% - (1080px / 2)));
  width: calc(100% - 20px);
  height: 578px;
  height: 65%;
  margin-left: 0;
  margin-right: auto;
  padding-right: 20px;
  background: #f6f6f6;
  z-index: -1;
}
.page-header-contents {
  display: flex;
  justify-content: space-between;
  max-width: calc(100% - (50% - (1080px / 2)));
  width: calc(100% - 20px);
  margin-right: 0;
  margin-left: auto;
  padding-left: 20px;
}
.page-header-contents__img--02{
  padding-bottom: 25px;
}
.page-header-contents__img img{
  width: 568px;
}
.page-header-contents-detail {
  margin-right: 70px;
}
.page-header-contents__lead {
  margin-bottom: 1em;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}
.page-header-contents__text {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.page-header-contents__text * {
  line-height: 2.6;
}
.page-header-contents__text *:last-child {
  margin-bottom: 0;
}
.page-header-contents__text--01{
  color: #08990f;
}
.textcenter{
  text-align: center;
}
.page-header-contents__img {
  flex-shrink: 0;
  width: calc(100vw / 2);
}
@media screen and (max-width: 768px) {
  .page-header {
    margin-top: 40px;
    padding: 0;
    background: none;
  }
  .page-header:before {
    display: none;
  }
  .page-header-contents {
    display: block;
    width: auto;
    padding: 30px 15px;
    background: #f2f2f2;
  }
  .page-header-contents-detail {
    margin: 0 0 30px;
  }
  .page-header-contents__lead {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .page-header-contents__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page-header-contents__text * {
    line-height: 1.8;
  }
  .page-header-contents__img {
    width: auto;
  }
}

/* タイトル */
.title-l1 {
  margin-bottom: 1em;
  font-size: 35px;
  font-size: 2.1875rem;
}
.title-l1-line {
  margin-bottom: 1em;
  font-size: 35px;
  font-size: 2.1875rem;
  border-bottom: 2px solid #000;
}

.title-l2, .title-l2-2, .top-news__title, .top-career__title {
  position: relative;
  margin-bottom: calc(65px - (((40px * 1.5) - 40px) / 2));
  padding-bottom: calc(27px - (((40px * 1.5) - 40px) / 2));
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.14em;
  font-weight: bold;
  text-align: center;
}
.title-l2 span, .title-l2-2 span, .top-news__title span, .top-career__title span {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  font-weight: normal;
}
.title-l2 span:nth-of-type(2), .title-l2-2 span:nth-of-type(2), .top-news__title span:nth-of-type(2), .top-career__title span:nth-of-type(2) {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.14em;
  font-weight: bold;
}
.title-l2:after, .title-l2-2:after, .top-news__title:after, .top-career__title:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 200px;
  height: 6px;
  margin: 0 auto;
  background: url(../img/share/line2.svg) no-repeat;
  background-size: cover;
}
.title-l2-2:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .title-l2, .title-l2-2, .top-news__title, .top-career__title {
    margin-bottom: 37.5px;
    padding-bottom: 14px;
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(28px, 2.8571428571vw, 40px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .title-l2, .title-l2-2, .top-news__title, .top-career__title {
    font-size: clamp(28px, 5.7142857143vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .title-l2 span, .title-l2-2 span, .top-news__title span, .top-career__title span {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(14px, 1.4285714286vw, 20px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .title-l2 span, .title-l2-2 span, .top-news__title span, .top-career__title span {
    font-size: clamp(14px, 2.8571428571vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .title-l2:after, .title-l2-2:after, .top-news__title:after, .top-career__title:after {
    width: 100px;
    height: 3px;
    background-size: contain;
  }
}

.title-l3 {
  margin-bottom: 1em;
  padding-left: 10px;
  border-left: 10px solid #000;
  line-height: 1.2;
  font-size: 28px;
  font-size: 1.75rem;
}

.title-l4 {
  margin-bottom: 1em;
  line-height: 1.2;
  font-size: 28px;
  font-size: 1.75rem;
}
.title-l4:before {
  position: relative;
  top: -5px;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #000;
  border-radius: 100px;
}

.title-l5 {
  margin-bottom: 1em;
  color: #666;
  font-size: 18px;
  font-size: 1.125rem;
}

.title-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 221px;
  height: 240px;
  margin: 0 auto 54px;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.02em;
  background: url(../img/share/balloon.svg) center no-repeat;
  background-size: contain;
  line-height: 1;
}
.title-boxz {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 221px;
  height: 240px;
  margin: 0 auto 54px;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.02em;
  background: url(../img/share/balloon.svg) center no-repeat;
  background-size: contain;
  line-height: 1;
}
.title-boxez {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 221px;
  height: 240px;
  margin: 0 auto 54px;
  font-size: 22px;
  letter-spacing: 0.02em;
  background: url(../img/share/balloon.svg) center no-repeat;
  background-size: contain;
  line-height: 1;
}
.title-box span {
  display: block;
  margin-top: calc(-1em - 24px);
  padding-bottom: calc(24px - (((20px * 1.5) - 20px) / 2));
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: normal;
}
.title-boxz span {
  display: block;
  margin-top: calc(-1em - 24px);
  padding-bottom: calc(24px - (((20px * 1.5) - 20px) / 2));
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: normal;
}
.title-boxez span {
  display: block;
  margin-top: calc(-1em - 24px);
  padding-bottom: calc(24px - (((20px * 1.5) - 20px) / 2));
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .title-box {
    width: auto;
    height: auto;
    padding: 80px 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-size: clamp(20px, 1.7142857143vw, 24px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .title-box {
    font-size: clamp(20px, 3.4285714286vw, 24px);
  }
    .title-boxz {
    font-size: clamp(20px, 3.4285714286vw, 24px);
  }  
  .title-boxez {
    font-size: clamp(20px, 3.4285714286vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  .title-box span {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(14px, 1.4285714286vw, 20px);
  }
  .title-boxz span {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(14px, 1.4285714286vw, 20px);
  }
  .title-boxez span {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(14px, 1.4285714286vw, 20px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .title-box span {
    font-size: clamp(14px, 2.8571428571vw, 20px);
  }
  .title-boxz span {
    font-size: clamp(14px, 2.8571428571vw, 20px);
  }
  .title-boxez span {
    font-size: clamp(14px, 2.8571428571vw, 20px);
  }
}

/* リスト */
.list-ul {
  margin-bottom: 2em;
}
.list-ul li {
  padding-left: 1em;
}
.list-ul li:before {
  content: "・";
  margin-left: -1em;
}

.list-ol {
  margin-bottom: 2em;
}
.list-ol li {
  counter-increment: entry-ol;
  margin-bottom: 10px;
  padding-left: 1em;
}
.list-ol li:before {
  content: counter(entry-ol);
  margin-right: .2em;
  margin-left: -.8em;
}

/* テキスト */
.text-lead {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .text-lead {
    padding: 0 15px;
    font-size: 18px;
    font-size: 1.125rem;
    font-size: clamp(14px, 1.2857142857vw, 18px);
    line-height: 2;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .text-lead {
    font-size: clamp(14px, 2.5714285714vw, 18px);
  }
}

.text-strong {
  font-weight: bold;
}

.text-emphasis {
  color: #f3665b;
}

/* box */
.box, .flow-section-detail {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 60px;
  background: #fff;
  border: 4px solid #393939;
  border-radius: 50px;
}
.box:last-child, .flow-section-detail:last-child {
  margin-bottom: 0;
}
.box-text {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
.box-text * {
  line-height: inherit;
}
.box__title {
  margin-bottom: calc(42px - (((24px * 1.5) - 24px) / 2));
  padding-bottom: calc(32px - (((24px * 1.5) - 24px) / 2));
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #393939;
}
.box__titles {
  margin-bottom: calc(42px - (((24px * 1.5) - 24px) / 2));
  padding-bottom: calc(32px - (((24px * 1.5) - 24px) / 2));
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #393939;
  max-width: 640px;
}
.box__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
.box__text * {
  line-height: inherit;
}
.box, .flow-section-detail {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 60px;
  background: #fff;
  border: 4px solid #393939;
  border-radius: 50px;
}
.box:last-child, .flow-section-detail:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .box, .flow-section-detail {
    padding: 30px;
    border-width: 2px;
    border-radius: 25px;
  }
  .box{
    padding: 30px;
    border-width: 2px;
    border-radius: 25px;
  }
  .box-text, .box__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .box__title {
    margin-bottom: calc(20px - (((18px * 1.5) - 18px) / 2));
    padding-bottom: calc(15px - (((18px * 1.5) - 18px) / 2));
    font-size: 18px;
    font-size: 1.125rem;
  }
  .box__titles {
    margin-bottom: calc(20px - (((18px * 1.5) - 18px) / 2));
    padding-bottom: calc(15px - (((18px * 1.5) - 18px) / 2));
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/* section */
.section {
  margin-bottom: 65px;
}
.section:last-child {
  margin-bottom: 0;
}
.section.-bg {
  margin: 120px 0;
  padding-bottom: 140px;
  background: #f2f2f2;
}
.section.-bg .title-box:first-child {
  transform: translateY(-50%);
  margin-bottom: -66px;
}
.section.-bg:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section.-bg {
    padding-bottom: 70px;
  }
}

.title-l2 + .section.-bg, .title-l2-2 + .section.-bg, .top-news__title + .section.-bg, .top-career__title + .section.-bg {
  margin-top: 160px;
}

.text-box {
  padding: 72px;
  padding-top: calc(72px - (((28px * 2) - 28px) / 2));
  padding-bottom: calc(72px - (((28px * 2) - 28px) / 2));
  background: #fff4f3;
  border-radius: 40px;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.12em;
  line-height: 2;
  text-align: center;
}
.text-box * {
  line-height: inherit;
}
@media screen and (max-width: 768px) {
  .text-box {
    padding: 40px 20px;
    padding-top: calc(40px - (((20px * 2) - 20px) / 2));
    padding-bottom: calc(40px - (((20px * 2) - 20px) / 2));
    border-radius: 20px;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    line-height: 1.8;
  }
}

/* table */
.table {
  border: 4px solid #393939;
}
.table tr {
  border-bottom: 3px solid #fff;
}
.table tr:last-child {
  border: 0;
}
.table th, .table td {
  padding: 50px 90px;
  padding-top: calc(50px - (((20px * 2) - 20px) / 2));
  padding-bottom: calc(50px - (((20px * 2) - 20px) / 2));
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}
.table th {
  width: 35.19%;
  background: #fff4f3;
  border-right: 3px solid #fff;
  font-weight: bold;
  text-align: center;
}
.table td {
  background: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .table {
    width: 100%;
    border-width: 2px;
  }
  .table tr, .table th, .table td {
    display: block;
    width: 100%;
  }
  .table tr {
    border: 0;
  }
  .table th, .table td {
    padding: 20px;
    padding-top: calc(20px - (((14px * 2) - 14px) / 2));
    padding-bottom: calc(20px - (((14px * 2) - 14px) / 2));
    font-size: 14px;
    font-size: 0.875rem;
    border-bottom: 2px solid #fff;
  }
  .table th {
    border-right: 0;
  }
}

/* lightbox */
a[data-lightbox] {
  position: relative;
  display: block;
}
a[data-lightbox]:after {
  position: absolute;
  right: 11px;
  bottom: 11px;
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/share/zoom.svg);
}

/* btn */
.btn {
  text-align: center;
}
.btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding-bottom: 3px;
  background: #f3665b;
  border-radius: 25px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #fff !important;
  line-height: 1;
  text-align: center;
}
.btn__link:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 18px;
  background-image: url(../img/icon/mail.svg);
}
.btn__link:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 18px;
}
@media screen and (max-width: 768px) {
  .btn__link {
    height: auto;
    padding-top: calc(5px - (((16px * 1.5) - 16px) / 2));
    padding-bottom: calc(5px - (((16px * 1.5) - 16px) / 2));
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5 !important;
  }
}

/*----------------------------------------------------
	トップページ
----------------------------------------------------*/
.page-top .header {
  position: fixed;
  top: 0;
  left: 0;
}
.page-top .header__logo {
  top: calc(50% + 10px);
  margin: 10px 0 0;
}
.page-top .header__logo img.logo_icon {
  width: 112px;
}
.page-top .header.-fixed .header__logo {
  top: 50%;
  margin: 4px 0;
  padding-left: 60px;
}
.page-top .header.-fixed .header__logo img.logo_icon {
  width: 89px;
}
.page-top .main {
  padding-top: 0;
}
.page-top .main-contents {
  position: relative;
  padding: 0;
  z-index: 10;
  background: #fff;
}
.page-top .l-access {
  position: relative;
  padding: 160px 0;
  z-index: 20;
}
.page-top .l-access .contents {
  position: relative;
  z-index: 2;
}
.page-top .l-access:before {
  position: absolute;
  top: -603px;
  right: 50%;
  content: "";
  display: block;
  width: 1247px;
  height: 1247px;
  background: url(../img/share/bg_access.svg) no-repeat;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .page-top .l-access {
    padding: 40px 0 0;
  }
  .page-top .l-access:before {
    top: auto;
    bottom: 8px;
    right: 0;
  }
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff,0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff,0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff,0 0 0 #fff;
  }
}
.mainvisual {
  position: relative;
  height: 900px;
  background: url(../img/top/mainvisual.jpg) center bottom no-repeat;
  background-size: auto 100%;
  background-size: cover;
  background-attachment: fixed;
  z-index: 2;
}
.mainvisual:before, .mainvisual:after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: calc((100% - 1120px) / 2);
  height: 12px;
  background: #f2cdca;
}
.mainvisual:after {
  left: auto;
  right: 0;
  background: #08990f;
}
.mainvisual-inner {
  position: relative;
  z-index: 2;
  height: 100%;
}
.mainvisual-inner:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: url(../img/share/line.svg) center top no-repeat;
  background-size: cover;
}
.mainvisual__logo {
  display: none;
}
.mainvisual__catch {
  display: none;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: 100%;
  font-size: 56px;
  font-size: 3.5rem;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: bold;
}
.mainvisual__catch span {
  opacity: 0;
}
.mainvisual__catch.glow {
  display: block;
}
.mainvisual__catch.glow span {
  animation: glow_anime_on 1s ease-out forwards;
}
.mainvisual__btn {
  position: absolute;
  bottom: 13px;
  left: calc(50% - 26px);
  transform: translateX(-50%);
  max-width: 800px;
  width: 100%;
}
.mainvisual__btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 210px;
  height: 210px;
}
.mainvisual__btn a:after {
  position: absolute;
  z-index: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 5px solid #f2cdca;
  background: #fff;
  border-radius: 100%;
  transition: .3s;
}
.mainvisual__btn a > span {
  position: absolute;
  z-index: 1;
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #f3665b;
}
.mainvisual__btn a > span span {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  font-weight: normal;
}
.mainvisual__btn a > span:after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 66px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin: 7px auto 0;
  background-image: url(../img/icon/mail2_2.svg);
}
.mainvisual__btn a img {
  position: absolute;
  z-index: 2;
  left: -15px;
  bottom: -26px;
}
.mainvisual__btn a:hover:after {
  transform: scale(1.15);
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    height: auto;
    padding-top: 123.44%;
    background: none;
  }
  .mainvisual-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .mainvisual-inner:before {
    height: 6px;
  }
  .mainvisual-inner:after {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    padding-top: 123.44%;
    background: url(../img/top/mainvisual.jpg) right 40% bottom no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .mainvisual__logo {
    position: absolute;
    display: block;
    top: 10.1%;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .mainvisual__logo img {
    max-width: 126px;
    width: 19.69%;
  }
  .mainvisual__catch {
    top: 27.78%;
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(28px, 2.8571428571vw, 40px);
    text-align: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .mainvisual__catch {
    font-size: clamp(28px, 5.7142857143vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__btn {
    left: 6.88%;
    transform: scale(0.65);
    transform-origin: left bottom;
  }
}
@media screen and (min-width: 600px) and (max-width: 768px) {
  .mainvisual {
    padding-top: 0;
    height: 100vh;
  }
  .mainvisual-inner:after {
    padding: 0;
    height: 100vh;
  }
  .mainvisual__btn {
    transform: scale(0.8);
  }
}

/* 事業案内 */
.top-business {
  position: relative;
  padding-bottom: 140px;
}
.top-business .contents {
  position: relative;
  padding-top: 87px;
  z-index: 1;
}
.top-business-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-business-list li {
  width: calc(100% / 2 - 16px);
  margin-bottom: 32px;
  text-align: center;
}
.top-business-list li a {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}
.top-business-list li a:hover .img:before {
  opacity: 1;
}
.top-business-list li a:hover .more {
  opacity: 1;
}
.top-business-list li .img {
  position: relative;
}
.top-business-list li .img:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.5);
  opacity: 0;
  transition: .5s;
}
.top-business-list li .title {
  position: relative;
  margin-top: -80px;
  padding: 30px 0 43px;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
}
.top-business-list li .title span {
  display: block;
  font-size: 38px;
  font-size: 2.375rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
}
.top-business-list li .title:before {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
}
.top-business-list li .title:after {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-business-list li .more {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 320px;
  width: 100%;
  padding-top: calc(20px - (((22px * 1.5) - 22px) / 2));
  padding-bottom: calc(20px - (((22px * 1.5) - 22px) / 2));
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  background: #393939;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: .5s;
}
.top-business-list li .more:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 13px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 24px;
  margin-left: -10px;
}
.top-business-list li.-smile .title {
  background: #f2cdca;
}
.top-business-list li.-smile .title:before {
  content: "";
  display: inline-block;
  width: 210px;
  height: 44px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20210.55%2044%22%20width%3D%22210px%22%20height%3D%2244px%22%3E%3Cpath%20fill%3D%22%23f2cdca%22%20fill-rule%3D%22evenodd%22%20class%3D%22cls-1%22%20d%3D%22M106.41%2C0c51.78%2C0%2C84%2C19.62%2C104.14%2C44H0C19.86%2C19.62%2C52.56%2C0%2C106.41%2C0Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
}
.top-business-list li.-smile .title:after {
  width: 36px;
  height: 36px;
  background-image: url(../img/top/icon_smile.svg);
}
.top-business-list li.-lifemore .title {
  background: #f3665b;
}
.top-business-list li.-lifemore .title:before {
  content: "";
  display: inline-block;
  width: 210px;
  height: 44px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20210.55%2044%22%20width%3D%22210px%22%20height%3D%2244px%22%3E%3Cpath%20fill%3D%22%23f3665b%22%20fill-rule%3D%22evenodd%22%20class%3D%22cls-1%22%20d%3D%22M106.41%2C0c51.78%2C0%2C84%2C19.62%2C104.14%2C44H0C19.86%2C19.62%2C52.56%2C0%2C106.41%2C0Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
}
.top-business-list li.-lifemore .title:after {
  width: 34px;
  height: 34px;
  background-image: url(../img/top/icon_lifemore.svg);
}
.top-business-list li.-kukurun .title {
  background: #ff983d;
}
.top-business-list li.-kukurun .title:before {
  content: "";
  display: inline-block;
  width: 210px;
  height: 44px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20210.55%2044%22%20width%3D%22210px%22%20height%3D%2244px%22%3E%3Cpath%20fill%3D%22%23ff983d%22%20fill-rule%3D%22evenodd%22%20class%3D%22cls-1%22%20d%3D%22M106.41%2C0c51.78%2C0%2C84%2C19.62%2C104.14%2C44H0C19.86%2C19.62%2C52.56%2C0%2C106.41%2C0Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
}
.top-business-list li.-kukurun .title:after {
  background-image: url(../img/top/icon_kukurun.svg);
}
.top-business-list li.-rashikuru .title {
  background: #08990f;
}
.top-business-list li.-rashikuru .title:before {
  content: "";
  display: inline-block;
  width: 210px;
  height: 44px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20210.55%2044%22%20width%3D%22210px%22%20height%3D%2244px%22%3E%3Cpath%20fill%3D%22%2308990f%22%20fill-rule%3D%22evenodd%22%20class%3D%22cls-1%22%20d%3D%22M106.41%2C0c51.78%2C0%2C84%2C19.62%2C104.14%2C44H0C19.86%2C19.62%2C52.56%2C0%2C106.41%2C0Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
}
.top-business-list li.-rashikuru .title:after {
  background-image: url(../img/top/icon_rashikuru.svg);
}
@media screen and (max-width: 768px) {
  .top-business {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
  .top-business:before {
    width: 100%;
    height: 6px;
    background: url(../img/share/line.svg) center top no-repeat;
    background-size: 100% auto;
  }
  .top-business:after {
    display: none;
  }
  .top-business .contents {
    padding-top: 40px;
    background: none;
  }
  .top-business-list {
    display: block;
    margin: 0 20px;
  }
  .top-business-list li {
    width: auto;
    margin-bottom: 20px;
  }
  .top-business-list li a {
    border-radius: 15px;
  }
  .top-business-list li .title {
    position: relative;
    margin-top: -65px;
    padding: 20px 0 25px;
    font-size: 21px;
    font-size: 1.3125rem;
    font-size: clamp(16px, 1.5vw, 21px);
    background-size: cover;
  }
  .top-business-list li .title:before {
    top: calc(-26% + 2px);
    width: 40.08% !important;
    height: 26% !important;
  }
  .top-business-list li .title:after {
    top: -10%;
    width: 21px;
    height: 21px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .top-business-list li .title {
    font-size: clamp(16px, 3vw, 21px);
  }
}
@media screen and (max-width: 768px) {
  .top-business-list li .title span {
    font-size: 26px;
    font-size: 1.625rem;
    font-size: clamp(22px, 1.8571428571vw, 26px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .top-business-list li .title span {
    font-size: clamp(22px, 3.7142857143vw, 26px);
  }
}
@media screen and (max-width: 768px) {
  .top-business-list li.-smile .title:after {
    width: 25px;
    height: 25px;
  }
  .top-business-list li.-lifemore .title:after {
    width: 24px;
    height: 24px;
  }
  .top-business-list li.-rashikuru .title:after {
    width: 15px;
    height: 15px;
  }
}
@media screen and (min-width: 600px) and (max-width: 768px) {
  .top-business-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top-business-list li {
    width: calc(100% / 2 - 16px);
  }
}

/* お知らせ */
.top-news {
  position: relative;
  margin-bottom: 0;
  padding: 70px 0 300px;
  background: #f2f2f2;
}
.top-news:before {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 210px;
  height: 44px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20210.55%2044%22%20width%3D%22210px%22%20height%3D%2244px%22%3E%3Cpath%20fill%3D%22%23f2f2f2%22%20fill-rule%3D%22evenodd%22%20class%3D%22cls-1%22%20d%3D%22M106.41%2C0c51.78%2C0%2C84%2C19.62%2C104.14%2C44H0C19.86%2C19.62%2C52.56%2C0%2C106.41%2C0Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.top-news .contents {
  max-width: 700px;
}
.top-news__title {
  letter-spacing: 0.12em;
}
.top-news__title:after {
  display: none;
}
.top-news-list li {
  display: flex;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid #393939;
  font-size: 18px;
  font-size: 1.125rem;
}
.top-news-list li .date {
  width: 8em;
  color: #f3665b;
}
.top-news-list li .text {
  position: relative;
  width: calc(100% - 8em);
  padding-right: 60px;
  transition: .3s;
}
.top-news-list li .text.multiple:after {
  position: absolute;
  top: -4px;
  right: 48px;
  content: "...";
}
.top-news-list li .text.multiple:before {
  position: absolute;
  top: .5em;
  right: 27px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #393939 transparent transparent transparent;
}
.top-news-list li .text.multiple.active:before {
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #393939 transparent;
}
.top-news-list li .text.multiple.active:after {
  content: "";
}
@media screen and (max-width: 768px) {
  .top-news {
    margin-bottom: 0;
    padding: 35px 0 70px;
  }
  .top-news-list li {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .top-news-list li .date {
    width: auto;
  }
  .top-news-list li .text {
    width: auto;
  }
}

/* 採用情報 */
.bg-career-img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/top/bg_career.jpg) center top no-repeat fixed;
  background-size: cover;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .bg-career-img {
    height: 90vh;
    background-position: right 47% top;
  }
	.bg-career-img::before {
content:"";
display:block;
position:absolute;
top:0;
left:0;
z-index:-1;
width:100%;
height:100vh;
background-repeat:no-repeat;
background-position:50% 100%;
background-image:url(../img/top/bg_career.jpg);
background-size:cover;
}
}

.top-career {
  position: relative;
  z-index: 11;
}
.top-career .contents {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.top-career__title {
  line-height: 1;
}
.top-career__title a {
  display: block;
  transition: .3s;
  width: 282px;
  height: 282px;
  margin: 0;
  padding: 0;
  transform: translateY(-64px);
  padding-top: calc(65px - (((20px * 1.5) - 20px) / 2));
  background: url(../img/top/title_career.svg) no-repeat;
  background-size: contain;
  letter-spacing: 0.12em;
}
.top-career__title a:hover {
  transform: translateY(-64px) scale(1.2);
  transform-origin: center;
}
.top-career__title span {
  margin-bottom: calc(15px - (((20px * 1.5) - 20px) / 2));
  line-height: 1;
}
.top-career__title:after {
  display: none;
}
.top-career__catch {
  margin-bottom: calc(60px - (((38px * 1.5) - 38px) / 2));
  font-size: 38px;
  font-size: 2.375rem;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: bold;
}
.top-career__catch span {
  color: #ffcbc7;
}
.top-career__text {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: calc(60px - (((38px * 1.5) - 38px) / 2));
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 2.6;
  color: #fff;
}
.top-career + .btn {
  position: relative;
  z-index: 99;
  text-align: center;
  transform: translateY(50%);
}
.top-career + .btn .btn__link {
  position: relative;
  display: block;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
  padding-top: calc(28px - (((24px * 1.5) - 24px) / 2));
  padding-bottom: calc(28px - (((24px * 1.5) - 24px) / 2));
  background: #393939;
  border-radius: 40px;
  font-family: 'Kiwi Maru', serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #fff;
  font-weight: normal;
  overflow: hidden;
}
.top-career + .btn .btn__link:before {
  position: relative;
  content: "";
  display: inline-block;
  width: 15px;
  height: 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 24px;
  z-index: 10;
}
.top-career + .btn .btn__link:after {
  position: absolute;
  top: -27px;
  right: 0;
  content: "";
  display: block;
  width: 66%;
  height: 300px;
  background: #232323;
  border-radius: 300px 0 0 0;
  transition: .3s;
}
.top-career + .btn .btn__link span {
  position: relative;
  z-index: 10;
}
.top-career + .btn .btn__link:hover:after {
  width: 150%;
}
@media screen and (max-width: 768px) {
  .top-career {
    background-size: auto 100%;
  }
  .top-career .contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px 50px;
  }
  .top-career__title {
    margin-right: auto;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .top-career__title a {
    width: 197px;
    height: 197px;
    transform: translateY(0);
    margin-left: 20px;
    margin-bottom: calc(15px - (((20px * 1.5) - 20px) / 2));
    padding-top: calc(40px - (((20px * 1.5) - 20px) / 2));
    font-size: 28px;
    font-size: 1.75rem;
  }
  .top-career__catch {
    margin-bottom: calc(35px - (((38px * 1.5) - 38px) / 2));
    font-size: 38px;
    font-size: 2.375rem;
    font-size: clamp(22px, 2.7142857143vw, 38px);
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .top-career__catch {
    font-size: clamp(22px, 5.4285714286vw, 38px);
  }
}
@media screen and (max-width: 768px) {
  .top-career__text {
    margin-bottom: calc(35px - (((38px * 1.5) - 38px) / 2));
    padding: 0 10px;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 2;
  }
  .top-career + .btn {
    width: 100%;
    transform: translateY(-100%);
  }
  .top-career + .btn .btn__link {
    max-width: calc(100% - 30px);
    padding-top: calc(20px - (((16px * 1.5) - 16px) / 2));
    padding-bottom: calc(20px - (((16px * 1.5) - 16px) / 2));
    font-size: 16px;
    font-size: 1rem;
  }
  .top-career + .btn .btn__link:before {
    width: 10.5px;
    height: 16.8px;
    margin-right: 16px;
  }
  .top-career + .btn .btn__link:after {
    position: absolute;
    top: -27px;
    right: 0;
    content: "";
    display: block;
    width: 66%;
    height: 300px;
    background: #232323;
    border-radius: 300px 0 0 0;
    transition: .3s;
  }
}

/*----------------------------------------------------
	よくあるご質問
----------------------------------------------------*/
.page-faq .main-contents {
  margin-top: 53px;
  padding-bottom: 137px;
  background: #fff4f3;
}
@media screen and (max-width: 768px) {
  .page-faq .main-contents {
    padding-bottom: 70px;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list dt {
  margin-bottom: 20px;
  padding-top: calc(40px - (((20px * 1.5) - 20px) / 2));
  padding-bottom: calc(40px - (((20px * 1.5) - 20px) / 2));
  padding-left: 85px;
  background: #fff;
  border: 4px solid #393939;
  border-radius: 40px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.faq-list dt:before {
  content: "Q.";
  margin-right: 1em;
}
.faq-list dd {
  margin-bottom: 60px;
  padding: 43px 85px;
  padding-top: calc(43px - (((20px * 2.5) - 20px) / 2));
  padding-bottom: calc(43px - (((20px * 2.5) - 20px) / 2));
  background: #f6f6f6;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  border-radius: 40px;
  line-height: 2.5;
  font-weight: bold;
}
.faq-list dd:before {
  content: "A.";
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .faq-list dt {
    margin-bottom: 20px;
    padding: 20px 30px;
    padding-top: calc(20px - (((20px * 1.5) - 20px) / 2));
    padding-bottom: calc(20px - (((20px * 1.5) - 20px) / 2));
    border: 2px solid #393939;
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(14px, 1.4285714286vw, 20px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .faq-list dt {
    font-size: clamp(14px, 2.8571428571vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .faq-list dd {
    margin-bottom: 30px;
    padding: 20px 30px;
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(14px, 1.4285714286vw, 20px);
    line-height: 2;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .faq-list dd {
    font-size: clamp(14px, 2.8571428571vw, 20px);
  }
}

/*----------------------------------------------------
	事業案内
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .page-products .main {
    padding-top: 0;
  }
}

.page-title {
  margin-bottom: 70px;
  padding: 170px 0;
  line-height: 1;
  text-align: center;
}
.page-title__att {
  margin-top: calc(65px - (((30px * 1.5) - 30px) / 2));
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-title {
    margin-bottom: 40px;
    padding: 60px 15px;
  }
  .page-title__att {
    margin-top: calc(30px - (((20px * 1.5) - 20px) / 2));
    font-size: 20px;
    font-size: 1.25rem;
    color: #fff;
  }
  .page-title__title img {
    height: 60px;
  }
}

/* らいふもあ */
.page-lifemore .page-title {
  background: #f3665b;
}
.page-lifemore .page-header:before {
  height: 65%;
}
.page-lifemore .page-header-contents-detail {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .page-lifemore .page-header-contents-detail {
    padding-top: 0;
  }
}

/* ご利用料金 */
/*.font22{
  font-size: 22px;
}*/
.table__ue{
  font-family: fot-tsukuardgothic-std, sans-serif;
  margin: auto;
  margin-bottom: 40px;
  width: 540px;
  font-size: 18px;
  font-size: 1.125rem;
}
.table__ue td{
  font-weight: normal;
}
.table__sita{
  font-family: fot-tsukuardgothic-std, sans-serif;
  margin: auto;
  width: 540px;
  font-size: 18px;
  font-size: 1.125rem;
}
.table__sita td{
  font-weight: normal;
}
.costs {
  letter-spacing: 0.12em;
  font-weight: bold;
  text-align: center;
}
.costs dt {
  margin-bottom: calc(36px - (((18px * 1.5) - 18px) / 2));
  font-size: 18px;
  font-size: 1.125rem;
}
.costs dd {
  margin-bottom: calc(80px - (((40px * 1.5) - 40px) / 2));
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}
.costs dd span {
  font-size: 30px;
  font-size: 1.875rem;
}
.costs dd:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .costs dt {
    margin-bottom: calc(18px - (((14px * 1.5) - 14px) / 2));
    font-size: 14px;
    font-size: 0.875rem;
  }
  .costs dd {
    margin-bottom: calc(40px - (((28px * 1.5) - 28px) / 2));
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(28px, 2.8571428571vw, 40px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .costs dd {
    font-size: clamp(28px, 5.7142857143vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .costs dd span {
    font-size: 30px;
    font-size: 1.875rem;
    font-size: clamp(20px, 2.1428571429vw, 30px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .costs dd span {
    font-size: clamp(20px, 4.2857142857vw, 30px);
  }
}

/* ご利用の流れ */
.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow .text-lead {
  margin-bottom: calc(100px - (((20px * 2) - 20px) / 2));
}
.flow-section {
  position: relative;
  margin-bottom: 100px;
}
.flow-section:after {
  position: absolute;
  left: 50%;
  bottom: -78px;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/share/arrow.svg);
}
.flow-section__title {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: calc(30px - (((28px * 1.5) - 28px) / 2));
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.12em;
}
.flow-section-detail {
  position: relative;
  padding-left: 140px;
  padding-right: 140px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
.flow-section-detail * {
  line-height: inherit;
}
.flow-section-detail .step {
  position: absolute;
  top: 27px;
  left: -90px;
  content: "";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  background: url(../img/share/step.svg) no-repeat;
  background-size: contain;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
.flow-section-detail .step span {
  display: block;
  margin-bottom: calc(5px - (((14px * 1.5) - 14px) / 2));
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.flow-section:last-child:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .flow .text-lead {
    margin-bottom: 30px;
  }
  .flow-section {
    width: 100%;
    margin-bottom: 50px;
  }
  .flow-section:after {
    bottom: -28px;
    width: 14px;
    height: 21px;
  }
  .flow-section__title {
    margin-bottom: calc(15px - (((20px * 1.5) - 20px) / 2));
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }
  .flow-section-detail {
    margin-left: 30px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .flow-section-detail .step {
    position: absolute;
    top: 0px;
    left: -35px;
    width: calc(125px / 2);
    height: calc(125px / 2);
    font-size: 20px;
    font-size: 1.25rem;
  }
  .flow-section-detail .step span {
    margin-bottom: calc(5px - (((14px * 1.5) - 14px) / 2));
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/* くくるん */
.page-kukurun .page-title {
  background: #ff983d;
}
.page-kukurun .page-header:before {
  height: 68%;
}
.page-kukurun .page-header-contents-detail {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .page-kukurun .page-header-contents-detail {
    padding-top: 0;
  }
}

.kukurun-flow {
  padding-top: 80px;
}
.kukurun-flow .contents:nth-of-type(1) {
  max-width: 1080px;
  margin-bottom: 77px;
  padding-bottom: 0;
  background: #fff4f3;
  border-radius: 60px;
}
.kukurun-flow .contents:nth-of-type(1) .title-box:first-child {
  position: relative;
  top: -80px;
  margin-bottom: -146px !important;
}
.kukurun-flow .contents.kukurun-costs .title-box {
  transform: translateY(0);
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .kukurun-flow {
    padding-top: 40px;
  }
  .kukurun-flow .contents {
    border-radius: 20px;
  }
  .kukurun-flow .contents:nth-of-type(1) {
    margin-bottom: 40px;
  }
  .kukurun-flow .contents:nth-of-type(1) .title-box:first-child {
    position: relative;
    top: -40px;
    margin-bottom: -106px !important;
  }
  .kukurun-flow .contents.kukurun-costs .title-box {
    margin-bottom: 27px;
  }
}

/* スマイル */
.page-smile .page-title {
  background: #f2cdca;
}
.page-smile .page-header-contents-detail {
  padding-top: 80px;
}
.logo05{
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: -60px;
  padding-bottom: 60px;
}
.itemlist{
}
@media screen and (max-width: 768px) {
  .page-smile .page-header-contents-detail {
    padding-top: 0;
  }
}

.feature {
  margin-top: 30px;
  margin-bottom: 230px;
}
.feature-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 105px -30px -60px;
}
.feature-list li {
  position: relative;
  width: calc(100% / 3 - 60px);
  margin: 0 30px 75px;
  padding: 85px 20px 60px;
  background: #f3665b url(../img/smile/bg_feature.svg) no-repeat;
  background-position: 1.12% -47.44%;
  border: 2px solid #fff;
  border-radius: 40px;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  color: #fff;
  text-align: center;
}
.feature-list li .num {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background: #e1554a;
  border: 4px solid #fff;
  border-radius: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.feature-list li .num span {
  display: block;
  margin-top: 5px;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: bold;
}
.feature-list li .img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 34px;
}
.feature-list li > span {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .feature {
    margin-top: 0;
    margin-bottom: 120px;
  }
  .feature-list {
    display: block;
    margin: 80px 0 -60px;
  }
  .feature-list li {
    width: auto;
    margin: 0 0 60px;
    padding: 85px 20px 30px;
    border-radius: 20px;
  }
  .feature-list li .num {
    width: 100px;
    height: 100px;
  }
  .feature-list li .img {
    height: 30px;
    margin-bottom: 34px;
  }
  .feature-list li .img img {
    transform: scale(0.7);
  }
  .feature-list li > span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.facilities-detail {
  display: flex;
  justify-content: center;
  max-width: 1090px;
  margin: 100px auto;
}
.facilities-detail dl {
  order: 2;
  width: 50%;
  padding: 0 30px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
}
.facilities-detail dl dt {
  margin-bottom: calc(50px - (((18px * 1.5) - 18px) / 2));
  font-weight: bold;
}
.facilities-detail dl dd {
  margin-bottom: calc(50px - (((18px * 1.5) - 18px) / 2));
}
.facilities-detail dl dd:last-child {
  margin-bottom: 0;
}
.facilities-detail .img {
  order: 1;
  width: 50%;
  text-align: center;
}
.facilities-detail .img a[data-lightbox] {
  display: inline-block;
}
.facilities-detail .img img {
  max-width: 540px;
}
.facilities-slider {
  position: relative;
  overflow: hidden;
}
.facilities-slider .slider {
  position: static;
  max-width: 338px;
}
.facilities-slider .slider .slick-list {
  overflow: visible;
}
.facilities-slider .slider .slick-slide {
  padding: 0 5px;
  text-align: center;
  line-height: 1;
}
.facilities-slider .slider .slick-slide img {
  margin-bottom: 30px;
}
.facilities-slider .slider .slick-slide span {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  font-weight: bold;
}
.facilities-slider .slick-arrow {
  position: absolute;
  top: 88px;
  width: 37px;
  height: 37px;
  background: #fff;
  border-radius: 100%;
  font-size: 0;
  z-index: 100;
}
.facilities-slider .slick-arrow:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23393939%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.facilities-slider .slick-arrow.slick-prev {
  left: calc((100% - 1090px) / 2);
}
.facilities-slider .slick-arrow.slick-prev:before {
  transform: rotate(180deg);
}
.facilities-slider .slick-arrow.slick-next {
  right: calc((100% - 1090px) / 2);
}
@media screen and (max-width: 768px) {
  .facilities-detail {
    flex-direction: column;
    margin: 0 auto 50px;
  }
  .facilities-detail dl {
    width: auto;
    padding: 0 20px;
    font-size: 16px;
    font-size: 1rem;
  }
  .facilities-detail dl dt {
    margin-bottom: calc(10px - (((16px * 1.5) - 16px) / 2));
  }
  .facilities-detail dl dd {
    margin-bottom: calc(30px - (((16px * 1.5) - 16px) / 2));
  }
  .facilities-detail dl dd:last-child {
    margin-bottom: 0;
  }
  .facilities-detail .img {
    order: 1;
    width: auto;
    margin-bottom: 40px;
  }
  .facilities-detail .img img {
    max-width: 100%;
  }
  .facilities-slider {
    position: relative;
    overflow: hidden;
  }
  .facilities-slider .slider {
    position: static;
    max-width: 100%;
  }
  .facilities-slider .slider .slick-list {
    overflow: auto;
  }
  .facilities-slider .slider .slick-slide {
    padding: 0 5px;
  }
  .facilities-slider .slider .slick-slide img {
    margin-bottom: 10px;
  }
  .facilities-slider .slider .slick-slide span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .facilities-slider .slick-arrow {
    position: absolute;
    top: 88px;
    width: 37px;
    height: 37px;
    background: #fff;
    border-radius: 100%;
    font-size: 0;
    z-index: 100;
  }
  .facilities-slider .slick-arrow:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 15px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23393939%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .facilities-slider .slick-arrow.slick-prev {
    left: calc((100% - 1090px) / 2);
  }
  .facilities-slider .slick-arrow.slick-prev:before {
    transform: rotate(180deg);
  }
  .facilities-slider .slick-arrow.slick-next {
    right: calc((100% - 1090px) / 2);
  }
}

.box-definision {
  font-size: 18px;
  font-size: 1.125rem;
}
.box-definision dt {
  margin-bottom: calc(10px - (((18px * 1.5) - 18px) / 2));
  padding-bottom: calc(10px - (((18px * 1.5) - 18px) / 2));
  border-bottom: 1px solid #393939;
  font-weight: bold;
}
.box-definision dd {
  margin-bottom: calc(60px - (((18px * 2.2) - 18px) / 2));
  line-height: 2.2;
}
.box-definision dd:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .box-definision {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .box-definision dd {
    margin-bottom: calc(30px - (((14px * 2.2) - 14px) / 2));
  }
}

.apply {
  margin-bottom: 150px;
  padding-top: 220px;
  width: 100%;
  overflow: hidden;
}
.apply-header {
  position: relative;
  max-width: 1090px;
  min-height: 340px;
  margin: 0 auto 180px;
  background-image: url(../img/smile/apply02.svg), url(../img/smile/apply03.svg);
  background-position: left top, right bottom;
  background-repeat: no-repeat;
}
.apply-header .text-lead {
  max-width: 670px;
}
.apply-header .text-lead p {
  line-height: 2.6;
}
.apply-header:before, .apply-header:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.apply-header:before {
  left: -247px;
  bottom: 0;
  width: 164px;
  height: 160px;
  background-image: url(../img/smile/apply01.svg);
}
.apply-header:after {
  top: 0;
  right: -247px;
  width: 225px;
  height: 206px;
  background-image: url(../img/smile/apply04.svg);
}
.apply .section.-bg {
  background: #f6f6f6;
}
@media screen and (max-width: 768px) {
  .apply {
    padding-top: 120px;
    margin-bottom: 70px;
  }
  .apply-header {
    min-height: unset;
    margin: 0 auto 100px;
    background: none;
  }
  .apply-header:before, .apply-header:after {
    display: none;
  }
}

.smile-costs .title-box:first-child {
  margin-bottom: -106px !important;
}
@media screen and (max-width: 768px) {
  .smile-costs .title-box:first-child {
    margin-bottom: -66px !important;
  }
}

.faq-note {
  margin-top: calc(90px - (((28px * 1.5) - 28px) / 2));
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  text-align: center;
  font-weight: bold;
}
.faq-note a {
  color: #f3665b;
  text-decoration: underline;
}
.faq-note a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .faq-note {
    margin-top: calc(40px - (((16px * 1.5) - 16px) / 2));
    font-size: 16px;
    font-size: 1rem;
  }
}

.smile-flow {
  padding-top: 130px;
}
.smile-flow .title-box {
  transform: translateY(-50%);
  margin-bottom: -66px;
}
.smile-flow .contents {
  max-width: 1080px;
  padding-bottom: 150px;
  background: #fff4f3;
  border-radius: 60px;
}
.smile-flow .flow-section__title {
  padding-left: 32px;
}
.smile-flow .flow-section-detail {
  padding-right: 60px;
  padding-left: 214px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.5;
}
.smile-flow .flow-section-detail p {
  margin-bottom: 1em;
}
.smile-flow .flow-section-detail a {
  color: #f3665b;
  text-decoration: underline;
  font-weight: bold;
}
.smile-flow .flow-section-detail a:hover {
  text-decoration: none;
}
.smile-flow .flow-section-detail .btn a {
  text-decoration: none;
}
.smile-flow .flow-section-detail .step img {
  position: absolute;
  top: 115px;
  left: 78px;
}
.smile-flow .flow-section__img {
  position: absolute;
  top: 140px;
  left: -10px;
}
.smile-flow .flow-section__img img {
  position: relative;
  z-index: 1;
}
.smile-flow .flow-section__img:before {
  position: absolute;
  left: 6px;
  top: 40px;
  content: "";
  display: inline-block;
  width: 4px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  background: #fff;
  z-index: 0;
}
.smile-flow .flow-section:nth-of-type(2) .flow-section-detail {
  padding-bottom: 120px;
}
.smile-flow .flow-section:nth-of-type(2) .flow-section__img {
  top: 182px;
  left: -110px;
}
.smile-flow .flow-section:nth-of-type(2) .flow-section__img:before {
  top: -17px;
  left: 106px;
}
.smile-flow .flow-section:nth-of-type(3) .flow-section__img {
  top: 163px;
  left: -110px;
}
.smile-flow .flow-section:nth-of-type(3) .flow-section__img:before {
  top: 0px;
  left: 106px;
}
.smile-flow .flow-section:nth-of-type(4) .flow-section-detail {
  padding-bottom: 200px;
}
.smile-flow .flow-section:nth-of-type(4) .flow-section__img {
  top: 153px;
  left: -20px;
}
.smile-flow .flow-section:nth-of-type(4) .flow-section__img:before {
  top: 18px;
  left: 16px;
}
.smile-flow .flow-section:nth-of-type(5) .flow-section-detail {
  padding-bottom: 85px;
}
.smile-flow .flow-section:nth-of-type(5) .flow-section__img {
  top: 175px;
  left: -102px;
}
.smile-flow .flow-section:nth-of-type(5) .flow-section__img:before {
  top: -10px;
  left: 98px;
}
@media screen and (max-width: 768px) {
  .smile-flow {
    padding: 0 15px;
  }
  .smile-flow .contents {
    border-radius: 20px;
  }
  .smile-flow .flow-section-detail {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px !important;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .smile-flow .flow-section__img {
    position: static;
    margin-left: auto;
  }
  .smile-flow .flow-section__img img {
    position: relative;
    z-index: 1;
    transform: translate(0.7);
  }
  .smile-flow .flow-section__img:before {
    display: none;
  }
  .smile-flow .flow-section:nth-of-type(1) .flow-section__img {
    width: calc(158px * .5);
    height: calc(237px * .5);
    margin-top: 1em;
  }
  .smile-flow .flow-section:nth-of-type(1) .flow-section__img img {
    transform: translate(0.5);
  }
  .smile-flow .flow-section:nth-of-type(2) .flow-section__img {
    width: calc(305px * .7);
    height: calc(185px * .7);
  }
  .smile-flow .flow-section:nth-of-type(3) .flow-section__img {
    width: calc(295px * .7);
    height: calc(180px * .7);
  }
  .smile-flow .flow-section:nth-of-type(4) .flow-section__img {
    width: calc(160px * .7);
    height: calc(226px * .7);
  }
  .smile-flow .flow-section:nth-of-type(5) .flow-section__img {
    width: calc(243px * .7);
    height: calc(221px * .7);
  }
}

.information {
  padding-bottom: 40px;
}
.information .title-l2, .information .title-l2-2, .information .top-news__title, .information .top-career__title {
  margin-bottom: calc(60px - (((40px * 1.5) - 40px) / 2));
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .information .title-l2, .information .title-l2-2, .information .top-news__title, .information .top-career__title {
    margin-bottom: calc(30px - (((28px * 1.5) - 28px) / 2));
  }
}

/* ラシクル */
.page-rashikuru .page-title {
  background: #08990f;
}
.page-rashikuru .page-header-contents-detail {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .page-rashikuru .page-header:before {
    display: none;
  }
  .page-rashikuru .page-header-contents-detail {
    padding-top: 0;
  }
}
/*html.smallfont{
  font-size: 5px;
}*/
.products-header {
  max-width: 1000px;
}
.products-lead {
  margin-bottom: calc(37px - (((18px * 1.5) - 18px) / 2));
  font-size: 18px;
  font-size: 1.125rem;
}
.products-lead__01 {
  margin-top: calc(37px - (((18px * 1.5) - 18px) / 2));
  margin-bottom: calc(37px - (((18px * 1.5) - 18px) / 2));
  font-size: 18px;
  font-size: 1.125rem;
}
.products-lead__02 {
  margin-top: calc(37px - (((18px * 1.5) - 18px) / 2));
  margin-bottom: calc(37px - (((18px * 1.5) - 18px) / 2));
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
}
.products-list li {
  width: calc(100% / 5);
  padding: 2px;
  border-right: 1px solid #b1b1b1;
  border-top: 1px solid #b1b1b1;
}
.products-list li:nth-of-type(1), .products-list li:nth-of-type(2), .products-list li:nth-of-type(3), .products-list li:nth-of-type(4), .products-list li:nth-of-type(5){
  padding-top: 0;
  border-top: 0;
}
.products-list li:nth-of-type(6), .products-list li:nth-of-type(7), .products-list li:nth-of-type(8), .products-list li:nth-of-type(9), .products-list li:nth-of-type(10) {
  padding-bottom: 0;
}
.products-list li:nth-child(5n) {
  border-right: 0;
  padding-right: 0;
}
/*.products .products-list .noline {
  border-right: none;
}*/
.products-list li:nth-last-of-type(n){
  border-right: none;
}
.products-list li:nth-of-type(1), .products-list li:nth-of-type(6) {
  padding-left: 0;
}
.products-list li a {
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f2f2f2;
  font-weight: bold;
  white-space: nowrap;
}
.products-list li a:after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23393939%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  margin-top: .2em;
}
.products-list li a .img {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  margin-right: 10px;
  border-radius: 100%;
  overflow: hidden;
}
.products-images {
  display: flex;
  flex-wrap: wrap;
  max-width: 690px;
  margin: 0 auto;
}
.buy{
  margin-top: 60px;
}
.buy-images {
  display: flex;
  flex-wrap: wrap;
  max-width: 162.5px;
  margin: 0;
}

.buy-item {
  display: flex;
  max-width: 690px;
  margin: 0 auto;
  justify-content: space-around;
}
/*.buy-item::after{
  display: block;
}*/
.buy-item p {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}
.products-images li {
  width: calc(100% / 4 - 10px);
  margin: 0 5px 25px;
}
.products .section {
  padding-top: 60px;
}
.products-section {
  margin-bottom: 80px;
}
.products-section .box, .products-section .flow-section-detail {
  max-width: 800px;
}
.products .title-box {
  transform: translateY(0) !important;
  margin-bottom: 14px !important;
}
.products .costs-att {
  margin-bottom: calc(37px - (((18px * 1.5) - 18px) / 2));
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  font-weight: bold;
  text-align: center;
}
.products .costs-text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.12em;
  line-height: 2;
  font-weight: bold;
  text-align: center;
}
.products .costs-text a {
  color: #f3665b;
  text-decoration: underline;
}
.products .costs-text a:hover {
  text-decoration: none;
}
.products .costs dt {
  margin-bottom: 0;
}
.products .costs dd {
  margin-bottom: 40px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .products-lead {
    margin-bottom: calc(20px - (((16px * 1.5) - 16px) / 2));
    font-size: 16px;
    font-size: 1rem;
    font-size: clamp(14px, 1.1428571429vw, 16px);
  }
    .products-lead__01 {
    margin-bottom: calc(20px - (((16px * 1.5) - 16px) / 2));
    font-size: 16px;
    font-size: 1rem;
    font-size: clamp(14px, 1.1428571429vw, 16px);
  }
  .products04{
    padding-bottom: 85px !important;
  }
      .products-lead__02 {
    margin-bottom: calc(20px - (((16px * 1.5) - 16px) / 2));
    font-size: 16px;
    font-size: 1rem;
    font-size: clamp(14px, 1.1428571429vw, 16px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .products-lead {
    font-size: clamp(14px, 2.2857142857vw, 16px);
  }
    .products-lead__01 {
    font-size: clamp(14px, 2.2857142857vw, 16px);
  }
      .products-lead__02 {
    font-size: clamp(14px, 2.2857142857vw, 16px);
  }
}
@media screen and (max-width: 768px) {
  .products-list li {
    width: calc(100% / 2);
    padding: 2px !important;
    border: 0;
    border-top: 1px solid #b1b1b1 !important;
  }
  .products-list li:nth-of-type(1), .products-list li:nth-of-type(2) {
    padding-top: 0 !important;
    border-top: 0 !important;
  }
  .products-list li:nth-last-of-type(1), .products-list li:nth-last-of-type(2) {
    padding-bottom: 0 !important;
  }
  
  .products-list li:nth-child(2n) {
    padding-right: 0 !important;
    border-left: 1px solid #b1b1b1;
  }
  .products-list li:nth-child(odd) {
    padding-left: 0 !important;
  }
  .products-list li a {
    position: relative;
    padding: 10px;
    height: 100%;
  }
  .products-list li a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .products-list li a .img {
    width: 50px;
    height: 50px;
    margin-right: 8px;
  }
  .products-images li {
    width: calc(100% / 4 - 5px);
    margin: 0 2.5px 10px;
  }
  .products-images li a[data-lightbox]:after {
    right: 5px;
    bottom: 5px;
    width: 14px;
    height: 14px;
  }
  .products .box, .products .flow-section-detail {
    margin-bottom: 20px;
  }
  .box{
    margin-bottom: 20px;
  }
  .buy-item {
    flex-wrap: wrap;
    text-align:left;
}
  .buy-item p {
    margin-top: 10px;
}
  .products .section {
    margin-top: 60px;
    padding-top: 30px;
  }
  .products-section {
    margin-bottom: 40px;
  }
  .products .costs-att {
    margin-bottom: calc(20px - (((16px * 1.5) - 16px) / 2));
    font-size: 14px;
    font-size: 0.875rem;
  }
  .products .costs-text {
    font-size: 16px;
    font-size: 1rem;
  }
  .products .costs dd {
    margin-bottom: 30px;
  }
}

/*----------------------------------------------------
	採用情報
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .page-career .page-header,
  .page-company .page-header {
    margin-top: 50px;
  }
  .page-career .page-header:before,
  .page-company .page-header:before {
    display: none;
  }
}

.personality .contents {
  position: relative;
}
.personality .contents:before, .personality .contents:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.personality .contents:before {
  top: 42px;
  left: 54px;
  width: 195px;
  height: 160px;
  background-image: url(../img/career/illust01.svg);
}
.personality .contents:after {
  top: 0;
  right: 115px;
  width: 118px;
  height: 243px;
  background-image: url(../img/career/illust02.svg);
}
.personality .text-box {
  display: flex;
  justify-content: center;
  padding-top: calc(118px - (((28px * 2.8) - 28px) / 2));
  line-height: 2.8;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .personality .contents {
    position: relative;
  }
  .personality .contents:before, .personality .contents:after {
    display: none;
  }
  .personality .text-box {
    padding-top: calc(40px - (((20px * 2) - 20px) / 2));
    font-size: 18px;
    font-size: 1.125rem;
    font-size: clamp(14px, 1.2857142857vw, 18px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .personality .text-box {
    font-size: clamp(14px, 2.5714285714vw, 18px);
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .personality .contents:before, .personality .contents:after {
    display: block;
    transform: scale(0.7);
  }
  .personality .contents:before {
    left: 10px;
  }
  .personality .contents:after {
    right: 10px;
  }
  .personality .text-box {
    padding-top: calc(60px - (((20px * 2) - 20px) / 2));
  }
}

.benefit,
.job {
  margin-top: 200px;
  padding-top: 0;
}
.benefit .contents,
.job .contents {
  background: #fff4f3;
  border-radius: 40px;
}
.benefit .title-box,
.job .title-box {
  transform: translateY(-140px);
  margin-bottom: -110px;
  text-align: center;
}
.benefit .text-box,
.job .text-box {
  padding-top: 0;
}
.benefit .text-box .box, .benefit .text-box .flow-section-detail,
.job .text-box .box,
.job .text-box .flow-section-detail {
  padding: 90px;
}
.benefit .text-box .list-ul,
.job .text-box .list-ul {
  margin: 0;
}
.benefit .text-box .list-ul li,
.job .text-box .list-ul li {
  margin-bottom: 30px;
  text-indent: 0;
  padding-left: 0;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: left;
}
.benefit .text-box .list-ul li:before,
.job .text-box .list-ul li:before {
  margin: 0;
}
.benefit .text-box .list-ul li strong,
.job .text-box .list-ul li strong {
  color: #f3665b;
}
.benefit .text-box .list-ul li:last-child,
.job .text-box .list-ul li:last-child {
  margin: 0;
}
.benefit .text-box .note,
.job .text-box .note {
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .benefit .contents,
  .job .contents {
    margin: 0 15px;
    border-radius: 20px;
  }
  .benefit .text-box .box, .benefit .text-box .flow-section-detail,
  .job .text-box .box,
  .job .text-box .flow-section-detail {
    margin-bottom: 20px;
    padding: 30px;
  }
  .box{
    margin-bottom: 20px;
    padding: 30px;
  }
  .benefit .text-box .list-ul li,
  .job .text-box .list-ul li {
    margin-bottom: 30px;
    font-size: 18px;
    font-size: 1.125rem;
    font-size: clamp(14px, 1.2857142857vw, 18px);
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .benefit .text-box .list-ul li,
  .job .text-box .list-ul li {
    font-size: clamp(14px, 2.5714285714vw, 18px);
  }
}
@media screen and (max-width: 768px) {
  .benefit .text-box .note,
  .job .text-box .note {
    font-size: 18px;
    font-size: 1.125rem;
    font-size: clamp(14px, 1.2857142857vw, 18px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .benefit .text-box .note,
  .job .text-box .note {
    font-size: clamp(14px, 2.5714285714vw, 18px);
  }
}

.job .contents {
  padding-bottom: 130px;
}
.job .box, .job .flow-section-detail {
  padding: 70px 130px;
}
.job .box__title {
  margin-bottom: calc(37px - (((20px * 1.5) - 20px) / 2));
  padding: 0;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  border: 0;
}
.job .box-text {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.job .box-text p {
  line-height: 2.5;
}
.job .box-text .text-contact {
  margin-top: 1em;
  font-weight: bold;
}
.job .box-text .text-contact a {
  color: #f3665b;
  text-decoration: underline;
}
.job .box-text .text-contact a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .job .contents {
    padding-bottom: 40px;
  }
  .job .box, .job .flow-section-detail {
    padding: 30px;
  }
  .job .box__title {
    margin-bottom: calc(20px - (((14px * 1.5) - 14px) / 2));
    font-size: 18px;
    font-size: 1.125rem;
    font-size: clamp(14px, 1.2857142857vw, 18px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .job .box__title {
    font-size: clamp(14px, 2.5714285714vw, 18px);
  }
}
@media screen and (max-width: 768px) {
  .job .box-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .job .box-text p {
    line-height: 2;
  }
}

.voice {
  padding-top: 70px;
  padding-bottom: 70px !important;
  background: #fff4f3 !important;
}
.voice-list {
  max-width: 860px;
  margin: 0 auto 62px;
}
.voice-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}
.voice-list li span {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 80px);
  height: 104px;
  padding: 0 60px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  background: #fff;
  border: 4px solid #393939;
  border-radius: 40px;
}
.voice-list li span:after {
  position: absolute;
  left: -30px;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/career/bg_voice_parts.svg);
}
.voice-list li:before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.414%22%20height%3D%2210.828%22%20viewBox%3D%220%200%206.414%2010.828%22%3E%3Cdefs%3E%3Cstyle%3E.a{fill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-width%3A2px%3B}%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20transform%3D%22translate%281.414%201.414%29%22%3E%3Cpath%20class%3D%22a%22%20d%3D%22M21%2C18l4%2C4-4%2C4%22%20transform%3D%22translate%28-21%20-18%29%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/career/voice_staff.svg);
}
.voice-list.-customer {
  margin-bottom: 0;
}
.voice-list.-customer li:before {
  background-image: url(../img/career/voice_customer.svg);
}
@media screen and (max-width: 768px) {
  .voice {
    margin-top: 70px !important;
    padding-bottom: 40px !important;
  }
  .voice-list li {
    margin-bottom: 20px;
  }
  .voice-list li span {
    width: calc(100% - 50px);
    height: auto;
    padding: 10px 20px;
    font-size: 14px;
    font-size: 0.875rem;
    border-radius: 20px;
    border-width: 1.5px;
  }
  .voice-list li span:after {
    left: -14.5px;
    width: 15px;
    height: 15px;
  }
  .voice-list li:before {
    width: 30px;
    height: 30px;
  }
}

/*----------------------------------------------------
	form
----------------------------------------------------*/
.page-form .main-contents {
  margin-top: 53px;
  padding: 76px 0 120px;
  background: #fff4f3;
}
@media screen and (max-width: 768px) {
  .page-form .main-contents {
    padding-bottom: 60px;
  }
}

.form {
  max-width: 800px;
  margin: 0 auto;
}
.form .btn {
  margin-top: 60px;
}
.form .btn input {
  display: block;
  width: 100%;
  padding: 60px;
  padding-top: calc(60px - (((40px * 1.5) - 40px) / 2));
  padding-bottom: calc(60px - (((40px * 1.5) - 40px) / 2));
  background: #f3665b;
  border-radius: 40px;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.14em;
  color: #fff;
  text-align: center;
  font-family: inherit;
  font-weight: bold;
  transition: .3s;
}
.form .btn input:hover {
  cursor: pointer;
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .form .btn {
    margin-top: 30px;
  }
  .form .btn input {
    padding: 20px;
    border-radius: 20px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.form-table {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.form-table dt {
  margin-bottom: calc(20px - (((20px * 1.5) - 20px) / 2));
  font-weight: bold;
}
.form-table dt .required {
  margin-left: 1em;
  font-size: 16px;
  font-size: 1rem;
  color: #f3665b;
}
.form-table dd {
  margin-bottom: calc(47px - (((1rem * 1.5) - 1rem) / 2));
}
.form-table .ex {
  display: block;
  margin-top: calc(20px - (((20px * 1.5) - 20px) / 2));
}
.form-table .att {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  color: #f3665b;
}
@media screen and (max-width: 768px) {
  .form-table {
    font-size: 16px;
    font-size: 1rem;
  }
  .form-table dt {
    margin-bottom: calc(15px - (((1rem * 1.5) - 1rem) / 2));
  }
  .form-table dt .required {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .form-table dd {
    margin-bottom: calc(30px - (((1rem * 1.5) - 1rem) / 2));
  }
}

.form-parts-item.-mail .att {
  margin-top: calc(37px - (((16px * 1.5) - 16px) / 2));
  margin-bottom: calc(23px - (((16px * 1.5) - 16px) / 2));
}
.form-parts-item.-tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.form-parts-group {
  display: flex;
}
.form-parts-group .form-parts-item {
  margin-right: 40px;
}
.form-parts-group .form-parts-item:last-child {
  margin-right: 0;
}
.form-parts--text, .form-parts--textarea, .form-parts--mail, .form-parts--tel {
  width: 360px;
  padding: 40px;
  padding-top: calc(40px - (((20px * 1.5) - 20px) / 2));
  padding-bottom: calc(40px - (((20px * 1.5) - 20px) / 2));
  background: #fff;
  border: 4px solid #393939;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: inherit;
}
.form-parts--textarea {
  width: 100%;
}
.form-parts--mail {
  width: 100%;
}
.form-parts--tel {
  width: 240px;
  appearance: textfield;
}
@media screen and (max-width: 768px) {
  .form-parts-group .form-parts-item {
    margin-right: 20px;
  }
  .form-parts--text, .form-parts--textarea, .form-parts--mail, .form-parts--tel {
    width: 100%;
    padding: 10px;
    border-width: 2px;
    font-size: 16px;
    font-size: 1rem;
  }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.privacy-policy {
  max-width: 800px;
  margin: 140px auto 0;
  padding: 63px 85px;
  padding-top: calc(63px - (((20px * 1.5) - 20px) / 2));
  padding-bottom: calc(63px - (((20px * 1.5) - 20px) / 2));
  font-size: 20px;
  font-size: 1.25rem;
  background: #f6f6f6;
  border-radius: 40px;
}
.privacy-policy dt {
  font-weight: bold;
}
.privacy-policy dd p {
  margin-bottom: 1em;
}
.privacy-policy dd .list-ul li {
  padding: 0;
}
.privacy-policy dd .list-ul li:before {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .privacy-policy {
    margin-top: 70px;
    padding: 20px 30px;
    border-radius: 20px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .privacy-policy dt {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=common.css.map */
