@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.u-clearfix {
  *zoom: 1;
}
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

table,
input, textarea, select, option {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
  max-width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  font-weight: 500;
}

a {
  color: #050505;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.5s !important;
  transition: all 0.5s !important;
}

a:hover,
a:hover img {
  opacity: 0.8 !important;
  filter: alpha(opacity=80) !important;
  -ms-filter: "alpha(opacity=80)" !important;
}

.u-pd70 {
  padding: 70px 0;
}
.u-bgcover {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-txtcenter {
  text-align: center;
}

.u-bg01 {
  background-color: rgba(136, 195, 161, 0.17);
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .u-df {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.u-df--jf {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-df--al {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-df-left, .u-df-right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .u-df-left, .u-df-right {
    width: 100%;
  }
}

.u-slheight .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.u-slheight .slick-slide {
  height: inherit !important;
}

.u-hover .u-bgcover {
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}

.u-hover .u-bgcover:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-hover:hover .u-bgcover:after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*------------------------------------------------------------
  effect（ページ遷移）
------------------------------------------------------------*/
.u-effect {
  position: relative;
}

.u-effect::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F9F9F9;
  background-image: url(../images/common/nav-logo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.u-effect.show::after {
  opacity: 1;
}

.u-effect.show article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  color: #000000;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

.l-container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1230px) and (min-width: 767px) {
  .l-container {
    width: 94%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 92%;
  }
}

section {
  position: relative;
}

section:not(:first-child) {
  overflow: hidden;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.l-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed;
  -webkit-transition: 500ms;
  transition: 500ms;
}
.l-header.is-fixed {
  background: rgba(234, 245, 239, 0.8);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.l-header.is-fixed .l-header__logo h1, .l-header.is-fixed .l-header__nav-list a {
  color: #000;
}
.l-header__logo{
  display: flex;
  align-items: center;
}
.l-header__logo img{
  max-width: 80px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .l-header__logo img{
    max-width: 70px;
    margin-right: 10px;
  }
}
.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.7% 2.5%;
}
@media screen and (max-width: 767px) {
  .l-header-inner {
    padding: 20px;
  }
}
.l-header__logo h1 {
  color: #fff;
  font-size: 30px;
}
@media screen and (max-width: 1230px) {
  .l-header__logo h1 {
    /* font-size: 2.5vw; */
  }
}
@media screen and (max-width: 1000px) and (min-width: 767px) {
  .l-header__logo h1 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo h1 {
    font-size: 2rem;
  }
}
.l-header__nav {
  width: calc(100% - 370px);
}
@media screen and (max-width: 1000px) and (min-width: 767px) {
  .l-header__nav {
    width: 72%;
  }
}
.l-header__nav-list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.l-header__nav-list li {
  text-align: center;
}
.l-header__nav-list li + li {
  padding-left: 4.3%;
}
.l-header__nav-list a {
  color: #fff;
  font-size: 14px;
}
.l-header__nav-list a span {
  display: block;
  font-size: 10px;
  font-family: "aller", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  .l-header__menu div {
    width: 30px;
    height: 20px;
    position: relative;
  }
  .l-header__menu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 20px;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .l-header__menu span:nth-child(1) {
    top: 0px;
  }
  .l-header__menu span:nth-child(2) {
    top: 9px;
  }
  .l-header__menu span:nth-child(3) {
    top: 18px;
  }
  .l-header__menu.on span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header__menu.on span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .l-header__menu.on span:nth-child(2)::before, .l-header__menu.on span:nth-child(2)::after {
    width: 0;
    height: 0;
  }
  .l-header__menu.on span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-header__nav {
    visibility: hidden;
    position: relative;
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .l-header__nav.open {
    visibility: visible;
    -webkit-transition: opacity 0.24s ease;
    transition: opacity 0.24s ease;
  }
  .l-header__nav.open .l-header__nav-wrap {
    visibility: visible;
    opacity: 1;
  }
  .l-header__nav.open .l-header__nav-list a {
    color: #000000;
  }
  .l-header__nav-wrap {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: hidden;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background-color: #EAF5EF;
  }
  .l-header__nav-list li {
    padding: 10px 0 !important;
    opacity: 0;
    -webkit-transform: translate3d(0, 3rem, 0);
            transform: translate3d(0, 3rem, 0);
    -webkit-transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .l-header__nav-list li.fade {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.l-footer {
  color: #fff;
  position: relative;
  background-color: #465F49;
}
.l-footer__back {
  top: -30px;
  right: -50px;
  position: absolute;
}
@media screen and (max-width: 1230px) and (min-width: 767px) {
  .l-footer__back {
    right: -10px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__back {
    right: -5px;
  }
}
.l-footer__inner {
  position: relative;
  padding: 70px 0 20px;
}
/* .l-footer__ttl {
  font-size: 22px;
  text-align: center;
} */
.l-footer__ttl {
  font-size: 22px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.l-footer__ttl img{
  max-width: 80px;
  margin-bottom: 10px;
}
.l-footer__list {
  top: 50px;
  right: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    position: unset;
    margin-top: 30px;
  }
}
.l-footer__list a {
  color: #fff;
  font-size: 12px;
  font-family: "ryo-gothic-plusn", sans-serif;
}
.l-footer__cpright {
  color: #BABABA;
  font-size: 10px;
  text-align: center;
  padding-top: 80px;
  font-family: "meiryo", sans-serif;
}

/*------------------------------------------------------------
    c-title
------------------------------------------------------------*/
.c-text01__ttl {
  font-size: 20px;
  margin-bottom: 23px;
}
.c-text01__txt {
  line-height: 1.7;
}

/*------------------------------------------------------------
    c-btn
------------------------------------------------------------*/
/*------------------------------------------------------------
    c-list
------------------------------------------------------------*/
.c-list01 li {
  padding: 10px 18px;
  background-color: #EFF4F1;
}
.c-list01 li + li {
  margin-top: 10px;
}

.c-list01 + .c-text01__txt {
  margin-top: 30px;
}

/*------------------------------------------------------------
    c-table
------------------------------------------------------------*/
/*------------------------------------------------------------
	c-other
------------------------------------------------------------*/
.slick-arrow {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  padding: 0;
  line-height: 0;
  outline: none;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #656565;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.slick-arrow:hover, .slick-arrow:focus {
  opacity: 0.8;
}

.slick-arrow.slick-disabled:before {
  opacity: 0.25;
}

.slick-arrow::before {
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  border: solid #050505;
  border-width: 0 2px 2px 0;
  padding: 3px;
}
.slick-prev {
  left: -19px;
}
@media screen and (max-width: 767px) {
  .slick-prev {
    left: -12px;
  }
}

.slick-next {
  right: -19px;
}
@media screen and (max-width: 767px) {
  .slick-next {
    right: -12px;
  }
}

.slick-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

.slick-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.slick-dots {
  z-index: 2;
  text-align: center;
  position: absolute;
}

.slick-dots li {
  position: relative;
  cursor: pointer;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  display: block;
  outline: none;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
}

.slick-dots li button:hover {
  outline: none;
}

.slick-dots li button:hover {
  background-color: #1746E3;
}

.slick-dots li.slick-active button {
  background-color: #1746E3;
}

/* section-mainvisual
------------------------------------------------------------*/
.s-mainvisual {
  color: #fff;
  height: 380px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .s-mainvisual {
    height: 320px;
  }
}
.s-mainvisual:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: rgba(77, 50, 30, 0.4);
}
.s-mainvisual__inner {
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-top: 16px;
}
.s-mainvisual__ttl {
  font-size: 42px;
  font-family: "circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .s-mainvisual__ttl {
    font-size: clamp(30px, 23.576px + 2.141vw, 40px);
  }
}
.s-mainvisual__desc {
  font-family: "Noto Sans JP", sans-serif;
}

/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 3.3% 8px;
  position: absolute;
  border-top: 1px solid #fff;
  font-family: "circe", sans-serif;
}
.c-breadcrumb li {
  z-index: 1;
  position: relative;
  display: inline-block;
}
.c-breadcrumb li a {
  color: #fff;
  font-size: 14px;
}
.c-breadcrumb li img {
  vertical-align: -2px;
}
.c-breadcrumb li:after {
  content: "";
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0 10px 0 7px;
}
.c-breadcrumb li:last-of-type:after {
  content: none;
}

/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
.p-top .s-visual, .p-top .s-visual__slider--item {
  height: 670px;
}
@media screen and (max-width: 767px) {
  .p-top .s-visual, .p-top .s-visual__slider--item {
    height: 630px;
  }
}
.p-top .s-visual:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: rgba(77, 50, 30, 0.43);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(77, 50, 30, 0.43)));
  background: linear-gradient(rgba(77, 50, 30, 0.43));
}
.p-top .s-visual__slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.p-top .s-visual__slider--item {
  overflow: hidden;
  position: relative;
  opacity: 1 !important;
}
.p-top .s-visual__slider--item span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: transparent no-repeat center center;
  background-size: cover;
  opacity: 0;
  -webkit-transform: scale(1.4, 1.4);
          transform: scale(1.4, 1.4);
  -webkit-transition: 0s;
  transition: 0s;
}
.p-top .s-visual__slider--item.slick-start span {
  opacity: 1;
  -webkit-transform: scale(1.4, 1.4);
          transform: scale(1.4, 1.4);
  -webkit-transition: ease 0s;
  transition: ease 0s;
}
.p-top .s-visual__slider--item.slick-active span {
  opacity: 1;
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: ease 12s;
  transition: ease 12s;
}
.p-top .s-visual__slider--item.slick-continue span {
  opacity: 0;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: ease 12s;
  transition: ease 12s;
}
.p-top .s-visual__title {
  top: 53%;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 1;
  text-align: center;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
  transition: filter 1.5s, opacity 1.5s, transform 1.5s;
  transition: filter 1.5s, opacity 1.5s, transform 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
}
.p-top .s-visual__title h1 {
  font-size: 37px;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .p-top .s-visual__title h1 {
    font-size: 3.5rem;
  }
}
.p-top .s-visual__title p {
  margin-top: 23px;
  letter-spacing: 1.5px;
}
.p-top .s-visual.is-show .s-visual__title {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 0.999;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.p-top .s-visual__scroll {
  left: 0;
  right: 0;
  width: 26px;
  height: 124px;
  bottom: -30px;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  overflow: hidden;
}
.p-top .s-visual__scroll:after, .p-top .s-visual__scroll:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 1px;
  margin: 0 auto;
}
.p-top .s-visual__scroll:after {
  background: #ccc;
  height: 72px;
  opacity: 0.5;
}
.p-top .s-visual__scroll:before {
  height: 30px;
  background: #372825;
  visibility: hidden;
  -webkit-animation: scrollDown 2s infinite linear;
  animation: scrollDown 2s infinite linear;
  z-index: 1;
}
@-webkit-keyframes scrollDown {
  0% {
    visibility: visible;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }
  100% {
    visibility: visible;
    -webkit-transform: translateY(300%);
    transform: translateY(300%);
  }
}
@keyframes scrollDown {
  0% {
    visibility: visible;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }
  100% {
    visibility: visible;
    -webkit-transform: translateY(300%);
    transform: translateY(300%);
  }
}
.p-top .s-aboutus__img {
  width: 32%;
  min-height: 212px;
  background: url(../images/top/taihi_1.png);
}
@media screen and (max-width: 767px) {
  .p-top .s-aboutus__img {
    width: 100%;
    height: 65vw;
    min-height: auto;
    max-height: 370px;
    margin: 0 0 45px;
  }
}
.p-top .s-aboutus__txt {
  width: 63%;
}
@media screen and (max-width: 767px) {
  .p-top .s-aboutus__txt {
    width: 100%;
  }
}
.p-top .s-facilities__img {
  margin: 53px 0 0 4%;
  min-height: 387px;
  background: url(../images/top/taihi_2.png);
}
@media screen and (max-width: 767px) {
  .p-top .s-facilities__img {
    width: 100%;
    height: 70vw;
    min-height: auto;
    max-height: 400px;
    margin: 40px 0 0;
  }
}
.p-top .s-sales__inner {
  padding: 50px 4% 20px;
  background-color: #EAF5EF;
}
.p-top .s-sales__contact {
  font-size: 18px;
  padding: 16px;
  margin-top: 30px;
  text-align: center;
  background-color: #F5FCF8;
}
.p-top .s-company {
  margin-top: 70px;
}
.p-top .s-company__box {
  padding-top: 25px;
}
.p-top .s-company__txt {
  width: 51%;
  padding: 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .s-company__txt {
    width: 100%;
  }
}
.p-top .s-company__img {
  width: 49%;
  padding-top: 39%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .s-company__img {
    width: 100%;
    padding-top: 80%;
  }
}

/*------------------------------------------------------------
p-policy
------------------------------------------------------------*/
.visual-policy {
  background-image: url(../images/policy/visual.jpg);
}

.p-policy .s-policy {
  line-height: 1.7;
  background-color: #EAF5EF;
}
.p-policy .s-policy__list--item {
  margin-top: 60px;
}
.p-policy .s-policy__list--ttl {
  padding-bottom: 23px;
  border-bottom: 1px solid #465F49;
}
.p-policy .s-policy__list--sub {
  counter-reset: decimal-counter;
}
.p-policy .s-policy__list--sub li {
  position: relative;
  padding-left: 45px;
  counter-increment: decimal-counter;
}
.p-policy .s-policy__list--sub li:before {
  content: "1-" counter(decimal-counter) ". ";
  top: 3px;
  left: 0;
  position: absolute;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.p-policy .s-policy__list--sub li + li {
  margin-top: 20px;
}
.p-policy .s-policy__list--sub li p + p {
  margin-top: 10px;
}
.p-policy .s-policy__list--sub2 {
  margin-top: 20px;
  counter-reset: decimal-counter2;
}
.p-policy .s-policy__list--sub2 li {
  position: relative;
  padding-left: 23px;
  counter-increment: decimal-counter2;
}
.p-policy .s-policy__list--sub2 li:before {
  content: counter(decimal-counter2) ". ";
  left: 0;
  position: absolute;
  font-weight: 600;
}
.p-policy .s-policy__list--sub2 li + li {
  margin-top: 8px;
}
.p-policy .s-policy__contact {
  padding: 3.5%;
  max-width: 490px;
  margin: 35px 0;
  border-radius: 30px;
  background-color: #F5FCF8;
}
@media screen and (max-width: 767px) {
  .p-policy .s-policy__contact {
    padding: 20px;
  }
}
.p-policy .s-policy__contact--ttl {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #465F49;
}