:root {
  --main_clr: #c8664b;
  --clr1: #393f3e;
  --clr2: #faf6e6;
  --clr3: #233b38;
  --f_main: "Signika", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  background-color: var(--clr2);
  font-family: var(--f_main);
  line-height: 1.5;
  font-size: 16px;
}

.inner {
  max-width: 1320px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

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

p:not(:last-child) {
  margin-bottom: 10px;
}

.btn {
  margin-top: 20px;
  display: table;
}
.btn.center {
  margin-left: auto;
  margin-right: auto;
}
.btn .wpcf7-submit,
.btn a,
.btn button {
  cursor: pointer;
  padding: 0 10px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr2);
  background-color: var(--main_clr);
  height: 42px;
  font-size: 20px;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s all;
}
.btn .wpcf7-submit:hover,
.btn a:hover,
.btn button:hover {
  background-color: var(--clr1);
}

#warpper {
  padding-top: 50px;
  overflow: hidden;
}

#header {
  position: fixed;
  background-color: var(--main_clr);
  top: 0;
  z-index: 19;
  left: 0;
  right: 0;
}
#header .header_top {
  position: relative;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .menu_box {
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 20px;
  top: 100%;
  left: 0;
}
#header .menu_box ul li {
  list-style-type: none;
}
#header .menu_box ul li:not(:last-child) {
  border-bottom: 1px solid var(--main_clr);
}
#header .menu_box ul li a {
  color: var(--main_clr);
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  transition: 0.3s all;
}
#header .logo {
  margin: 0 auto;
  padding: 0;
  line-height: 1;
}
#header .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .header_btn {
  position: absolute;
  right: 0;
  z-index: 1;
  text-decoration: none;
  padding-top: 7px;
  padding-right: 6px;
  padding-bottom: 7px;
  padding-left: 6px;
  background-color: var(--clr2);
  color: var(--main_clr);
  border-radius: 8px;
  line-height: 1;
}
#header .header_btn:hover {
  opacity: 1;
}
#header .btn_menu {
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 25px;
  cursor: pointer;
  margin: 0;
}
#header .btn_menu span {
  position: absolute;
  width: 100%;
  border-top: 3px solid var(--clr2);
  transition: 0.3s all;
}
#header .btn_menu span:nth-child(1) {
  top: 0;
}
#header .btn_menu span:nth-child(2), #header .btn_menu span:nth-child(3) {
  top: 11px;
}
#header .btn_menu span:nth-child(4) {
  top: 22px;
}
#header .btn_menu:hover span {
  border-top-color: #fff;
}
#header .btn_menu.active span:nth-child(2) {
  transform: rotate(45deg);
}
#header .btn_menu.active span:nth-child(3) {
  transform: rotate(-45deg);
}
#header .btn_menu.active span:nth-child(1), #header .btn_menu.active span:nth-child(4) {
  transform: scaleX(0);
}

#footer {
  background-color: #fff;
  padding: 40px 0;
}
#footer .ft_menu {
  width: 38%;
}
#footer .ft_menu ul {
  counter-reset: count;
}
#footer .ft_menu ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
  font-size: 2em;
  line-height: 1.5;
}
#footer .ft_menu ul li:not(:last-child) {
  margin-bottom: 0.25em;
}
#footer .ft_menu ul li::before {
  content: counter(count, decimal-leading-zero);
  counter-increment: count;
  line-height: 1;
  border-bottom: 1px solid var(--main_clr);
  font-size: 0.6em;
  font-weight: 400;
  color: var(--main_clr);
  display: block;
  float: left;
  margin-right: 0.75em;
  margin-top: -0.2em;
}
#footer .ft_menu ul li a {
  display: table;
  color: var(--main_clr);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}
#footer .ft_txt {
  width: 60%;
}
#footer .ft_list .item {
  width: 48%;
  margin-bottom: 10px;
}
#footer .ft_list .item a {
  text-decoration: none;
  color: inherit;
}
#footer .ft_list .item .ttl01 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--main_clr);
  margin-bottom: 0;
}
#footer .ft_list .item .ttl02 {
  display: flex;
  align-items: center;
  font-weight: 300;
  color: var(--clr1);
}
#footer .ft_list .item .ttl02::before {
  content: "";
  display: block;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--main_clr);
  mask-image: url(../images/ft_icon.png);
  width: 1.5em;
  height: 1.5em;
  margin-right: 5px;
}
#footer .ft_ttl01 {
  margin: 20px 0;
  font-weight: 300;
  color: var(--main_clr);
}
#footer .ft_ttl01 a {
  color: inherit;
  font-weight: 400;
}

.fixed_banner {
  position: fixed;
  z-index: 19;
  right: 15px;
  bottom: 15px;
  background: var(--main_clr);
  border-radius: 25px;
  padding: 10px 0;
}
.fixed_banner img {
  transition: 0.3s all;
}
.fixed_banner img:hover {
  transform: scale(1.05);
}

.ft_menu_small li {
  list-style-type: none;
  line-height: 1.5;
}
.ft_menu_small li:not(:last-child) {
  margin-bottom: 5px;
}
.ft_menu_small li a {
  display: table;
  text-decoration: none;
  color: var(--main_clr);
  line-height: 1.5;
}

.ft_social {
  display: flex;
  justify-content: center;
  align-self: center;
}
.ft_social li {
  margin: 0 5px;
  list-style-type: none;
}
.ft_social img {
  width: 48px;
  border-radius: 10px;
}

#header .menu_box ul li a::before {
  display: block;
  content: "";
  background: url(../images/menu_logo.png) no-repeat center/contain;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transform: scaleX(0);
  transition: 0.3s all;
  position: absolute;
  left: 10px;
}

#header .menu_box ul li.current-menu-item a,
#header .menu_box ul li.current_page_item a,
#header .menu_box ul li a:hover {
  display: flex;
  flex-grow: 1;
  padding-left: 35px;
}

#header .menu_box ul li.current_page_item a::before,
#header .menu_box ul li.current-menu-item a::before,
#header .menu_box ul li a:hover::before {
  transform: scaleX(1);
}

#header .menu_box ul li.book a {
  padding-left: 15px !important;
}

#header .menu_box ul li.book a::before {
  display: none !important;
}

.under #main {
  padding-bottom: 80px;
}
.under #main .inner ul {
  padding-left: 1em;
}
.under video {
  width: 100%;
  max-width: 100%;
  display: block;
}
.under .cat_title,
.under h1 {
  line-height: 1.2;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-right: 0;
  margin-left: 0;
  color: var(--main_clr);
  margin: 25px 0;
  border-left: 4px solid var(--main_clr);
}
.under .cat_title {
  font-size: 28px;
}
.under .about_list .about_item {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
  align-items: flex-start;
}
.under .about_list .about_item:not(:last-child) {
  margin-bottom: 40px;
}
.under .about_list .about_item figure {
  grid-row: 1/span 2;
}
.under .about_list .about_item figure img {
  border-radius: 30px;
  width: 100%;
  height: auto;
}
.under .about_list .about_item h2 {
  align-self: flex-end;
  margin-bottom: 10px;
}
.under .about_list .about_item p {
  text-align: justify;
  font-weight: 300;
}
@media only screen and (min-width: 769px) {
  .under .about_list .about_item:nth-child(even) figure {
    grid-column-start: 2;
  }
}
.under h3 {
  color: var(--main_clr);
  line-height: 1.2;
  margin-bottom: 0.35em;
  margin-top: 0.5em;
}
.under h3.border::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: var(--main_clr);
  margin-top: 0.5em;
}
.under h2,
.under h3,
.under h4,
.under h5,
.under h6 {
  color: var(--main_clr);
}
.under .under_gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -10px;
}
.under .under_gallery .slick-slider .slick-list,
.under .under_gallery .slick-slider .slick-track {
  padding: 0 !important;
}
.under .under_gallery .item {
  width: calc(33.3333333333% - 20px);
  margin: 0 10px;
  margin-bottom: 10px;
  background-color: #fff;
}
.under .under_gallery .item img {
  display: block;
}
.under .under_gallery .slick-arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  z-index: 1;
  transition: 0.3s all;
}
.under .under_gallery .slick-arrow:hover {
  opacity: 1;
}
.under .under_gallery .slick-arrow::before {
  opacity: 1;
}
.under .under_gallery .slick-prev {
  left: 10px;
}
.under .under_gallery .slick-prev::before {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="40" height="40" focusable="false"><path d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z"></path></svg>') no-repeat center/contain;
  inset: 0;
  position: absolute;
  background-size: 12px;
  transform: rotate(180deg);
}
.under .under_gallery .slick-next {
  right: 10px;
}
.under .under_gallery .slick-next::before {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="40" height="40" focusable="false"><path d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z"></path></svg>') no-repeat center/contain;
  inset: 0;
  position: absolute;
  background-size: 12px;
}
.under .under_gallery .ud_address {
  padding: 0.5em 1em 1em;
}
.under .under_gallery .ud_address p {
  line-height: 1.5;
}
.under .under_gallery .ud_address .ttl01 {
  color: var(--main_clr);
  font-size: 1.25em;
  margin-bottom: 0;
}
.under .under_gallery .ud_address .ttl02 {
  color: #808080;
  position: relative;
  display: flex;
  align-items: center;
}
.under .under_gallery .ud_address .ttl02::before {
  content: "";
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--main_clr);
  -webkit-mask-image: url(../images/ft_icon.png);
  mask-image: url(../images/ft_icon.png);
  width: 1.5em;
  height: 1.5em;
  margin-right: 5px;
}
.under .ud_menu_box {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.under .ud_menu_box .item {
  width: calc(20% - 20px);
  margin: 0 10px 20px;
}
.under .news_left {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  width: 65%;
}
.under .news_right {
  width: 30%;
}
.under .news_right .title_p {
  color: var(--main_clr);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.35em;
  margin-top: 0.5em;
  font-size: 30px;
}
.under .news_item {
  border-bottom: 1px solid var(--main_clr);
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.under .news_item .link {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.under .news_item img {
  border-radius: 10px;
  display: block;
}
.under .news_item figure {
  width: 40%;
}
.under .news_item .news_txt {
  width: 56%;
}
.under .news_item .ttl01 {
  font-size: 2em;
  color: var(--main_clr);
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  height: 2.7em;
  padding-top: 0.2em;
}
.under .news_item .date {
  line-height: 1;
  color: #808080;
  margin: 5px 0 20px;
}
.under .news_item .ttl02 {
  font-weight: 300;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.under .news_item .more {
  margin-top: 10px;
}
.under .news_item .more a {
  text-decoration: none;
  color: var(--main_clr);
  font-weight: 300;
}
.under .ud_search {
  margin-bottom: 40px;
}
.under .ud_search form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid var(--main_clr);
}
.under .ud_search form input {
  width: calc(100% - 50px);
  height: 100%;
  border: 0;
  border-radius: 5px;
  padding: 5px;
}
.under .ud_search form button {
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--main_clr);
  transition: 0.3s all;
}
.under .ud_search form button svg {
  fill: #fff;
}
.under .ud_search form button:hover {
  background-color: var(--clr3);
}
.under .news_spec {
  padding: 20px 20px 0;
  border-radius: 10px;
  background-color: #fff;
}
.under .news_spec .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.under .news_spec .item:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--main_clr);
}
.under .news_spec .item .link {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.under .news_spec .item img {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.under .news_spec .item figure {
  width: 80px;
  height: 80px;
}
.under .news_spec .item .news_txt {
  width: calc(100% - 90px);
}
.under .news_spec .item .ttl01 {
  font-size: 1.5em;
  color: var(--main_clr);
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  height: 2.7em;
  padding-top: 0.2em;
}
.under .news_spec .item .date {
  line-height: 1;
  color: #808080;
  margin: 5px 0 0;
}
.under.single .news_left {
  padding: 0;
}
.under .entry {
  padding: 20px;
}
.under .entry h1 {
  border: 0;
  line-height: 1.4;
  padding: 0;
  margin: 0 0 10px;
}
.under .under_img img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  height: min(55vw, 648px);
  border-radius: 20px 20px 0 0;
}
.under .content {
  margin-top: 25px;
  font-weight: 300;
  text-align: justify;
}
.under .content img {
  display: block;
  margin: 10px auto;
}

.page-id-216 .idx4_frm {
  margin: 20px 0 0;
  max-width: 800px;
  padding: 0;
}

.under .under_content ul,
.under .under_content ol {
  padding-left: 1.2em;
}
.under .under_content a {
  color: var(--main_clr);
}

.under_content {
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
}

#pagination {
  margin: 20px auto;
  display: flex;
  justify-content: center;
}
#pagination span,
#pagination a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border: 1px solid var(--main_clr);
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s all;
  margin: 0 4px;
  color: var(--main_clr);
}
#pagination span:hover, #pagination span.current,
#pagination a:hover,
#pagination a.current {
  color: #fff;
  background-color: var(--main_clr);
}
#pagination span:hover::before, #pagination span.current::before,
#pagination a:hover::before,
#pagination a.current::before {
  background-color: #fff !important;
}
#pagination .prev {
  position: relative;
}
#pagination .prev::before {
  content: "";
  position: absolute;
  inset: 0;
  mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg fill='%23000000' height='800px' width='800px' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 330 330' xml:space='preserve'%3E%3Cpath id='XMLID_222_' d='M250.606,154.389l-150-149.996c-5.857-5.858-15.355-5.858-21.213,0.001 c-5.857,5.858-5.857,15.355,0.001,21.213l139.393,139.39L79.393,304.394c-5.857,5.858-5.857,15.355,0.001,21.213 C82.322,328.536,86.161,330,90,330s7.678-1.464,10.607-4.394l149.999-150.004c2.814-2.813,4.394-6.628,4.394-10.606 C255,161.018,253.42,157.202,250.606,154.389z'/%3E%3C/svg%3E");
  background-color: var(--main_clr);
  mask-size: 50%;
  mask-position: center;
  transform: rotate(-180deg);
  transition: 0.3s all;
}
#pagination .next {
  position: relative;
}
#pagination .next::before {
  content: "";
  position: absolute;
  inset: 0;
  mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg fill='%23000000' height='800px' width='800px' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 330 330' xml:space='preserve'%3E%3Cpath id='XMLID_222_' d='M250.606,154.389l-150-149.996c-5.857-5.858-15.355-5.858-21.213,0.001 c-5.857,5.858-5.857,15.355,0.001,21.213l139.393,139.39L79.393,304.394c-5.857,5.858-5.857,15.355,0.001,21.213 C82.322,328.536,86.161,330,90,330s7.678-1.464,10.607-4.394l149.999-150.004c2.814-2.813,4.394-6.628,4.394-10.606 C255,161.018,253.42,157.202,250.606,154.389z'/%3E%3C/svg%3E");
  background-color: var(--main_clr);
  mask-size: 50%;
  mask-position: center;
  transition: 0.3s all;
}

.home h1 {
  color: var(--main_clr);
}
.home #key {
  height: 740px;
  position: relative;
  overflow: hidden;
}
.home #key video {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101%;
  height: 101%;
  object-fit: cover;
}
.home #key .key_text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home #key .key_text .inner {
  width: 100%;
}
.home #key .key_text .h2_ttl,
.home #key .key_text p {
  line-height: 1;
  color: var(--clr2);
}
.home #key .key_text .h2_ttl {
  text-transform: uppercase;
  font-size: 3em;
}
.home #key .key_text p {
  font-size: 1.25em;
}
.home .h2_ttl {
  line-height: 1.2;
  color: var(--main_clr);
  text-transform: uppercase;
}
.home .h2_ttl.center {
  text-align: center;
}
.home .h2_ttl.icon::after {
  content: "";
  display: block;
  margin: 0 auto;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/h3_icon.png);
  background-color: var(--main_clr);
  width: 24px;
  height: 24px;
}

.idx1 {
  padding: 1em 0;
  --w: 484px;
}
.idx1 .idx1_txt {
  max-width: var(--w);
  align-self: center;
  padding: 0 40px;
}
.idx1 .idx1_bg {
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  padding-top: 17px;
  padding-bottom: 10px;
  overflow: hidden;
}
.idx1 .idx1_ttl {
  margin-top: 1em;
  font-weight: 300;
  text-align: justify;
}
.idx1 .idx1_slider {
  width: calc(100% - var(--w));
}
.idx1 .idx1_slider .slick-slide > div {
  display: block;
}
.idx1 .idx1_slider img {
  border-radius: 20px;
  width: calc(100% - 1em);
  margin: 0 auto;
  object-position: top center;
  object-fit: cover;
  display: block;
}
.idx1 .idx1_slider figure {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.idx2 {
  padding: 1em 0;
}
.idx2 h2 {
  text-align: center;
  color: var(--main_clr);
}
.idx2 .idx2_list {
  margin-top: 1.25em;
}
.idx2 .idx2_list .item {
  width: calc(33.3333333333% - 1em);
  margin-bottom: 2em;
}
.idx2 .idx2_list .item img {
  display: block;
  border-radius: 20px;
  height: 410.66px;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .idx2 .idx2_list .item img {
    height: 30.6vw;
  }
}
.idx2 .idx2_list .item .ttl01 {
  font-size: 2em;
  color: var(--main_clr);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0.5em 0 0.1em;
}
.idx2 .idx2_list .item .ttl02 {
  font-weight: 300;
}
.idx2 .btn {
  margin-top: 0px;
}

.idx3 {
  --w: 500px;
}
.idx3 .idx1_txt {
  order: 1;
}
.idx3 h2 {
  color: #fff;
}
.idx3 .idx1_slider .idx3_item {
  background-color: var(--main_clr);
  border-radius: 20px;
  padding: 20px 20px 0;
  width: calc(100% - 1em);
  margin-left: auto;
  margin-right: auto;
}
.idx3 .idx1_slider .idx3_item .idx3_item {
  overflow: hidden;
}
.idx3 .idx1_slider .idx3_item figure {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-left: -20px;
  margin-right: -20px;
}
.idx3 .idx1_slider .idx3_item figure img {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  margin: 0 auto;
  object-position: top center;
  object-fit: cover;
  display: block;
}
.idx3 .idx1_slider .idx3_item h3 {
  color: var(--clr2);
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
  height: 2.75em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-top: 0.2em;
}
.idx3 .idx1_slider .idx3_item .ttl {
  margin: 1em 0;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.idx3 .idx1_slider .view_more {
  margin-bottom: 20px;
}
.idx3 .idx1_slider .view_more a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s all;
  display: flex;
  align-items: center;
}
.idx3 .idx1_slider .view_more a:hover {
  color: #fff;
}
.idx3 .idx1_slider .view_more a::after {
  content: "";
  display: block;
  background: url(../images/idx3_arr.png) no-repeat center/contain;
  width: 42px;
  height: 12px;
  margin-left: 5px;
}

.idx4 {
  padding: 100px 0;
  background: url(../images/idx4_bg.jpg) no-repeat center/cover;
  --w: 500px;
}
.idx4 h1 {
  color: #fff;
}
.idx4 .idx4_txt {
  order: 1;
  width: calc(100% - var(--w));
  align-self: center;
  padding-left: 2em;
}
.idx4 .idx4_p {
  line-height: 1.2;
  font-size: 2.625em;
  color: #fff;
  margin-bottom: 0.25em;
}
.idx4 h3 {
  color: #fff;
}
.idx4 .fblock.fblock02 .frm_group {
  width: 49%;
}
.idx4 .fblock.fblock03 .frm_group:nth-child(1) {
  width: 23.5%;
}
.idx4 .fblock.fblock03 .frm_group:nth-child(2) {
  width: 23.5%;
}
.idx4 .fblock.fblock03 .frm_group:nth-child(3) {
  width: 49%;
}

.idx4_frm {
  width: var(--w);
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}

.frm_group {
  margin-bottom: 20px;
}
.frm_group label {
  line-height: 1;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  color: var(--main_clr);
  font-weight: 500;
}
.frm_group .form-control {
  display: block;
  width: 100%;
  border: 0;
  border: 1px solid var(--clr1);
  border-radius: 5px;
  padding: 5px 0.5em;
  min-height: 40px;
  -webkit-appearance: none;
  color: var(--clr1);
}
.frm_group .form-control::placeholder {
  font-size: 12px;
}
.frm_group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center right;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 5px;
}

.slick-arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  z-index: 1;
  transition: 0.3s all;
}

.slick-arrow:hover {
  opacity: 1;
  background: #ccc;
}

.slick-arrow::before {
  opacity: 1;
}

.slick-prev {
  left: 10px;
}

.slick-prev::before {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="40" height="40" focusable="false"><path d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z"></path></svg>') no-repeat center/contain;
  inset: 0;
  position: absolute;
  background-size: 12px;
  transform: rotate(180deg);
}

.slick-next {
  right: 10px;
}

.slick-next::before {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="40" height="40" focusable="false"><path d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z"></path></svg>') no-repeat center/contain;
  inset: 0;
  position: absolute;
  background-size: 12px;
}

@media only screen and (min-width: 769px) {
  .admin-bar #header {
    top: 32px;
  }
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: 700;
  line-height: 1.3;
}

body h1 {
  font-size: 32px;
}

body h2 {
  font-size: 28px;
}

body h3 {
  font-size: 22px;
}

body h4 {
  font-size: 18px;
}

body h5 {
  font-size: 16px;
}

body h6 {
  font-size: 14px;
}