@charset "UTF-8";
.form-field {
  border-top: solid 1px #cccccc;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 960px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  border-bottom: solid 1px #cccccc;
}

@media screen and (max-width: 960px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 960px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 960px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 24px;
  color: #ffffff;
  font-size: 1.4rem;
}

.form-required {
  background: #ff0000;
}

.form-optional {
  background: #4491e2;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #eeeeee;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 56px;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999999;
}

select {
  background: url("/img/common/select.svg") center right 16px/14px 14px no-repeat #eeeeee;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  display: none;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #999999 #999999 transparent;
  transform: rotateZ(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  display: none;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  border-radius: 12px;
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #999999;
  border-radius: 50%;
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.form-send {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #999999;
  color: #ffffff;
  font-size: 1.8rem;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .form-send {
    height: 56px;
  }
}

.form-send input[type="submit"] {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #64c188;
  color: #64c188;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
  border: solid 1px #ff0000;
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(255, 174, 0, 0.08);
  color: #ff0000;
  border: solid 1px #ffae00;
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(255, 174, 0, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(255, 174, 0, 0.4);
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #ff0000;
  font-size: 1.4rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #ff0000;
  font-size: 1.4rem;
  background-color: rgba(255, 0, 0, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  text-align: center;
}

.recaptcha-txt a {
  color: #999999;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.front-page .hero {
  position: relative;
  background: url("/img/general/top/hero-img.jpg") center/cover no-repeat;
  width: 100%;
  height: 700px;
}

@media screen and (max-width: 1024px) {
  .front-page .hero {
    height: 470px;
  }
}

@media screen and (max-width: 960px) {
  .front-page .hero {
    height: 370px;
  }
}

@media screen and (max-width: 520px) {
  .front-page .hero {
    height: 250px;
  }
}

.front-page .hero .hero-catch {
  position: absolute;
  content: "";
  bottom: 256px;
  left: 72px;
  padding: 24px 1px 24px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  font-size: 4rem;
  /*width: 285px;
        height: 106px;*/
}

@media screen and (max-width: 1024px) {
  .front-page .hero .hero-catch {
    font-size: 2.8rem;
    bottom: 172px;
  }
}

@media screen and (max-width: 960px) {
  .front-page .hero .hero-catch {
    font-size: 2.4rem;
    bottom: 140px;
    left: 42px;
  }
}

@media screen and (max-width: 520px) {
  .front-page .hero .hero-catch {
    font-size: 2rem;
    padding: 16px 1px 16px 16px;
    bottom: 84px;
    left: 12px;
  }
}

.front-page .hero .hero-catch::before {
  content: "";
  position: absolute;
  top: 90px;
  left: -22px;
  background: url("/img/general/common/mv-deco-01.svg") no-repeat;
  width: 64px;
  height: 66px;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .front-page .hero .hero-catch::before {
    top: 64px;
  }
}

@media screen and (max-width: 520px) {
  .front-page .hero .hero-catch::before {
    display: none;
  }
}

.front-page .hero .hero-catch span {
  color: #ffae00;
}

.front-page .hero .hero-catch-secline {
  position: absolute;
  content: "";
  bottom: 140px;
  left: 72px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  font-size: 4rem;
  /*width: 484px;
        height: 106px;*/
}

@media screen and (max-width: 1024px) {
  .front-page .hero .hero-catch-secline {
    font-size: 2.8rem;
    bottom: 80px;
  }
}

@media screen and (max-width: 960px) {
  .front-page .hero .hero-catch-secline {
    font-size: 2.4rem;
    bottom: 50px;
    left: 42px;
  }
}

@media screen and (max-width: 520px) {
  .front-page .hero .hero-catch-secline {
    font-size: 2rem;
    padding: 16px;
    bottom: 20px;
    left: 12px;
  }
}

.front-page .hero .hero-catch-secline::before {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -8px;
  background: url("/img/general/common/mv-deco-02.svg") no-repeat;
  width: 40px;
  height: 44px;
}

@media screen and (max-width: 520px) {
  .front-page .hero .hero-catch-secline::before {
    right: -23px;
  }
}

.front-page .hero .hero-catch-secline span {
  color: #ffae00;
}

.front-page .hero .scrolldown {
  position: absolute;
  bottom: 0;
  left: 50px;
}

@media screen and (max-width: 960px) {
  .front-page .hero .scrolldown {
    left: 30px;
  }
}

@media screen and (max-width: 520px) {
  .front-page .hero .scrolldown {
    display: none;
  }
}

.front-page .hero .scrolldown span {
  position: absolute;
  left: -10px;
  bottom: 75px;
  color: #eee;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}

@media screen and (max-width: 960px) {
  .front-page .hero .scrolldown span {
    font-size: 1.2rem;
    left: -7px;
    bottom: 50px;
  }
}

.front-page .hero .scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 65px;
  background: #eee;
}

@media screen and (max-width: 960px) {
  .front-page .hero .scrolldown::after {
    height: 40px;
  }
}

.headline__main {
  font-size: 3.2rem;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .headline__main {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .headline__main {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 520px) {
  .headline__main {
    font-size: 2rem;
  }
}

.headline__sub {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: #ffae00;
}

@media screen and (max-width: 960px) {
  .headline__sub {
    font-size: 1.6rem;
  }
}

.link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 960px) {
  .link {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 520px) {
  .link {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.link-list__item {
  display: flex;
}

.link-list__item:hover {
  transform: translate(5px, 5px);
}

.link-list__item .link-dtl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  width: 216px;
  background: #64c188;
  border-radius: 2px;
  padding: 16px;
}

@media screen and (max-width: 960px) {
  .link-list__item .link-dtl {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .link-list__item .link-dtl {
    width: calc(100% - 120px);
    min-height: none;
  }
}

.link-list__item .link-dtl img {
  margin-bottom: 8px;
}

.link-list__item .link-dtl .ico-holiday,
.link-list__item .link-dtl .ico-visit,
.link-list__item .link-dtl .ico-cooperation {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

.link-list__item .link-dtl .link-list-txt {
  text-align: center;
  color: #ffffff;
}

.link-list__item .link-vsl {
  position: relative;
  border: solid 4px #64c188;
  max-width: 168px;
}

@media screen and (max-width: 768px) {
  .link-list__item .link-vsl {
    width: 150px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.link-list__item .link-vsl::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: -2px;
  width: 32px;
  height: 32px;
  background: #64c188;
  border-radius: 2px 0 2px 0;
}

.link-list__item .link-vsl::after {
  position: absolute;
  content: "";
  bottom: 9px;
  right: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #ffffff;
  border-right: 0;
}

.link-list__item .link-vsl img {
  width: 100%;
  height: 100%;
}

.--aqu .link-dtl {
  background: #6dbecc;
}

.--aqu .link-vsl {
  border: solid 4px #6dbecc;
}

.--aqu .link-vsl::before {
  background: #6dbecc;
}

.--orn .link-dtl {
  background: #ffae00;
}

.--orn .link-dtl .link-list-txt {
  letter-spacing: -0.8px;
}

.--orn .link-vsl {
  border: solid 4px #ffae00;
}

.--orn .link-vsl::before {
  background: #ffae00;
}

.headline__main {
  position: relative;
}

.headline__main::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url("/img/general/common/headline-deco.svg") no-repeat;
  width: 63px;
  height: 76px;
  z-index: -1;
}

.headline__main::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: calc(100% - 170px);
  height: 1px;
  background: #ffae00;
  z-index: -10;
}

@media screen and (max-width: 1024px) {
  .headline__main::after {
    width: calc(100% - 152px);
  }
}

@media screen and (max-width: 960px) {
  .headline__main::after {
    width: calc(100% - 143px);
  }
}

@media screen and (max-width: 768px) {
  .headline__main::after {
    width: calc(100% - 123px);
  }
}

@media screen and (max-width: 520px) {
  .headline__main::after {
    width: calc(100% - 111px);
  }
}

.news-list__item {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #cccccc;
  transition: .3s ease-out;
}

.news-list__item:last-child {
  padding-bottom: 32px;
  border-bottom: none;
}

.news-list__item:hover {
  text-decoration: underline;
  color: #ffae00;
}

.news-meta {
  margin-bottom: 8px;
}

.news-ttl {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .news-ttl {
    font-size: 1.6rem;
  }
}

.search .headline__main::after {
  width: calc(100% - 275px);
}

@media screen and (max-width: 1024px) {
  .search .headline__main::after {
    width: calc(100% - 261px);
  }
}

@media screen and (max-width: 960px) {
  .search .headline__main::after {
    width: calc(100% - 227px);
  }
}

@media screen and (max-width: 768px) {
  .search .headline__main::after {
    width: calc(100% - 198px);
  }
}

@media screen and (max-width: 520px) {
  .search .headline__main::after {
    width: calc(100% - 176px);
  }
}

.search-unit {
  display: flex;
  gap: 32px;
  max-height: 350px;
  height: 100%;
  overflow: hidden;
  padding: 5px;
}

@media screen and (max-width: 960px) {
  .search-unit {
    flex-direction: column;
    gap: 16px;
    max-height: 100%;
  }
}

.search-area {
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .search-area {
    margin: 0 auto;
  }
}

@media screen and (max-width: 960px) {
  .search-area .search-area-mask {
    width: 120%;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .search-area .search-area-mask {
    width: 125%;
    height: 100%;
  }
}

@media screen and (max-width: 520px) {
  .search-area .search-area-mask {
    width: 130%;
    height: 100%;
  }
}

.search-area .ibi-map {
  fill: #4491e2;
}

.search-area .ikeda-map {
  fill: #9ad340;
}

.search-area .ono-map {
  fill: #ffae00;
}

.search-area .ibi-hover:hover {
  filter: drop-shadow(0 0 4px #4491e2);
}

.search-area .ikeda-hover:hover {
  filter: drop-shadow(0 0 4px #9ad340);
}

.search-area .ono-hover:hover {
  filter: drop-shadow(0 0 4px #ffae00);
}

.search-btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 490px;
}

@media screen and (max-width: 960px) {
  .search-btn {
    gap: 12px;
    margin: 0 auto;
    max-width: 678px;
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .search-btn {
    grid-template-columns: repeat(1, 1fr);
  }
}

.search-btn__ibi, .search-btn__ono, .search-btn__ikeda, .search-btn__all {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  max-width: 233px;
  width: 100%;
  height: 100%;
  padding: 8px;
}

@media screen and (max-width: 960px) {
  .search-btn__ibi, .search-btn__ono, .search-btn__ikeda, .search-btn__all {
    width: 100%;
    max-width: none;
    padding: 16px;
  }
}

.search-btn__ibi::before, .search-btn__ono::before, .search-btn__ikeda::before, .search-btn__all::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 14px;
  height: 14px;
  border-radius: 2px;
}

.search-btn__ibi::after, .search-btn__ono::after, .search-btn__ikeda::after, .search-btn__all::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4px solid #ffffff;
  border-right: 0;
}

.search-btn__ibi p, .search-btn__ono p, .search-btn__ikeda p, .search-btn__all p {
  text-align: center;
}

.search-btn__ibi {
  border: 1px solid #4491e2;
  border-radius: 2px;
  transition: .3s ease-out;
}

.search-btn__ibi img {
  width: 57px;
  height: 59px;
  margin: 0 auto;
}

.search-btn__ibi:hover {
  transform: translate(5px, 5px);
}

.search-btn__ibi::before {
  background: #4491e2;
}

.search-btn__ikeda {
  border: 1px solid #9ad340;
  border-radius: 2px;
  transition: .3s ease-out;
}

.search-btn__ikeda img {
  width: 57px;
  height: 59px;
  margin: 0 auto;
}

.search-btn__ikeda:hover {
  transform: translate(5px, 5px);
}

.search-btn__ikeda::before {
  background: #9ad340;
}

.search-btn__ono {
  border: 1px solid #ffae00;
  border-radius: 2px;
  transition: .3s ease-out;
}

.search-btn__ono img {
  width: 52px;
  height: 52px;
  margin: 0 auto;
}

.search-btn__ono:hover {
  transform: translate(5px, 5px);
}

.search-btn__ono::before {
  background: #ffae00;
}

.search-btn__all {
  background: #ffae00;
  color: #ffffff;
  transition: .3s ease-out;
}

.search-btn__all p {
  color: #ffffff;
}

.search-btn__all img {
  width: 60px;
  height: 56px;
  margin: 0 auto;
}

.search-btn__all:hover {
  transform: translate(5px, 5px);
}

.search-btn__all::before {
  background: #ffffff;
}

.search-btn__all::after {
  border-left: 4px solid #ffae00;
}

.bnr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .bnr {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 520px) {
  .bnr {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.bnr img {
  width: 100%;
  height: 100%;
  transition: .3s ease-out;
}

.bnr img:hover {
  opacity: 0.5;
}

/*# sourceMappingURL=../../../maps/general/pages/top.css.map */
