@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  color: #554F4D;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
  background: #F7F4EE;
}
body.home:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

a {
  color: #554F4D;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  color: #554F4D;
  text-decoration: none;
  opacity: 0.65;
}

a:active, a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, dd, dt, dl {
  margin: 0;
}

figcaption, figure, main,
article, aside, footer,
header, nav, section {
  display: block;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 .3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 .3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous, .pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul, .breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

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

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: .2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
 /***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 1300px) {
  .toggle {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    position: absolute;
    padding: 10px;
    right: 15px;
    text-align: center;
    top: 50%;
    translate: 0 -50%;
    z-index: 7;
    background: #4C945D;
    border-radius: 5px;
  }

  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .toggle__bar, .toggle__bar::before, .toggle__bar::after {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before, .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -8px;
  }

  .toggle__bar::after {
    top: 8px;
  }
}
.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

 /***************************

 header

***************************/
.header {
  position: relative;
  background-color: #fff;
  width: 95%;
  border-radius: 10px;
  padding: 10px 15px;
  position: fixed;
  top: 20px;
  left: 50%;
  translate: -50% 0;
  z-index: 999;
}

.home .header {
  position: relative;
  margin: 20px auto;
  translate: 0 0;
  top: auto;
  left: auto;
}

.under .header:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header .logo {
  line-height: 1;
}
.header .logo a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.header .logo span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: #4C945D;
  border-radius: 5px;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

@media screen and (min-width: 1025px) {
  .gnav {
    display: flex !important;
    align-items: center;
    height: inherit !important;
    gap: 25px;
  }
}
@media screen and (max-width: 1300px) {
  .gnav {
    position: fixed;
    right: 0;
    top: 80px;
    max-width: 100%;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    z-index: 6;
    padding: 20px 15px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
  }

  .gnav.active {
    opacity: 1;
    visibility: visible;
  }

  .header_inner {
    padding-right: 65px;
  }
}
.gnav-link-nav {
  display: flex !important;
  align-items: center;
  gap: 25px;
}
.gnav-link-nav .current a {
  color: #4C945D;
}
.gnav-link-nav a {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.gnav-addr-nav {
  display: flex !important;
  align-items: center;
  gap: 15px;
}
.gnav-addr-nav .tel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 180px;
  height: 55px;
  background: #FCF7E1;
  border-radius: 10px;
  font-weight: 600;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.gnav-addr-nav .tel i {
  color: #4C955D;
  font-size: 1.4rem;
}
.gnav-addr-nav .entry {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 55px;
  background: #FF8B17;
  border-radius: 10px;
  font-weight: 600;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.gnav-addr-nav .entry i {
  position: absolute;
  rotate: 45deg;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
}
.gnav-addr-nav .entry:hover i {
  translate: 5px -50%;
  transition: all .6s;
}

@media screen and (max-width: 1024px) {
  .gnav-link-nav {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 15px 25px;
  }
}
@media screen and (max-width: 470px) {
  .header .logo a {
    flex-direction: column;
    gap: 5px;
  }

  .header .logo img {
    width: 45vw;
  }

  .header .logo span {
    width: 100%;
    font-size: 1rem;
    height: 20px;
  }

  .gnav {
    top: 100px;
  }
}
@media screen and (max-width: 425px) {
  .gnav-link-nav,
  .gnav-addr-nav {
    flex-direction: column;
  }

  .gnav-addr-nav li {
    width: 100%;
  }

  .gnav-addr-nav .tel {
    width: 100%;
  }

  .gnav-addr-nav .entry {
    width: 100%;
  }
}
 /***************************

layout/footer.scss

***************************/
.footer {
  background: #4C945D;
  color: #fff;
  padding: 40px 0;
}

.under .footer {
  position: relative;
}
.under .footer:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

.footer_inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 30px;
}

.footer .add {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer .logo {
  line-height: 1;
}
.footer .logo a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.footer .logo span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #4C945D;
  background: #F7F4EE;
  border-radius: 5px;
}

.site_link a {
  /* font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif; */
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.site_link a span {
  border-bottom: 1px solid #fff;
}

.footer .copyright {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .footer .copyright {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }

  .footer_inner {
    justify-content: center;
    gap: 30px;
  }

  .footer .add {
    flex-direction: column;
  }
}
@media screen and (max-width: 470px) {
  .footer .logo a {
    flex-direction: column;
    gap: 5px;
  }

  .footer .logo span {
    width: 100%;
    font-size: 1rem;
    height: 20px;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.reddit-sans {
  font-family: "Reddit Sans", sans-serif;
}

.yugo {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semiBold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.exBold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.ls3 {
  letter-spacing: 0.03em;
}

.ls5 {
  letter-spacing: 0.05em;
}

.lh2 {
  line-height: 2;
}

.lh18 {
  line-height: 1.8;
}

.lh1 {
  line-height: 1;
}

.fz12 {
  font-size: 1.2rem;
}

.fz15 {
  font-size: 1.5rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz30 {
  font-size: clamp(22px, 3.9vw, 30px);
}

.col_red {
  color: #B73F3F;
}

.col_blue {
  color: #557F9F;
}

.col_orange {
  color: #FF8B17;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-entry {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 180px;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  background: #FF8B17;
  border-radius: 10px;
  font-family: "Reddit Sans", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.btn-entry i {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}
.btn-entry:hover {
  color: #fff;
}
.btn-entry:hover i {
  translate: 10px -50%;
  transition: all .6s;
}
.btn-entry:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

.btn-back {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 2rem;
  background: #666;
  color: #fff;
  border-radius: 10px;
}
.btn-back i {
  font-size: 1.6rem;
}
.btn-back:hover {
  color: #fff;
  opacity: 0.8;
}
.btn-back:hover i {
  translate: -10px 0;
  transition: all .6s;
}
.btn-back:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg__01 {
  position: relative;
  padding-left: 35px;
  font-size: clamp(28px, 4.4vw, 34px);
  letter-spacing: 0.03em;
}
.hdg__01:before {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 4px;
  left: 0;
  top: clamp(14px, 2.3vw, 18px);
}
.hdg__01.red:before {
  background: linear-gradient(315deg, #F3EFD8 -90%, #B74040 90%, #B74040);
}
.hdg__01.blue:before {
  background: linear-gradient(315deg, #F3EFD8 -90%, #5680A0 90%, #5680A0);
}
.hdg__01.purple:before {
  background: linear-gradient(315deg, #F3EFD8 -90%, #6F5B9B 90%, #6F5B9B);
}
.hdg__01.orange:before {
  background: linear-gradient(315deg, #F3EFD8 -90%, #FF8B17 90%, #FF8B17);
}

/***************************

object/project/top.scss

***************************/
.top01 {
  width: 95%;
  margin: 0 auto;
  display: flex;
  gap: 3%;
  padding-bottom: 30px;
}

.main-visual-wrap {
  width: 62%;
}

.main-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-visual:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #438552;
  opacity: 0.85;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 25px;
}
.main-visual .mv {
  width: 100%;
  border-radius: 25px;
}

.mv_loop_box_wrap {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 5%;
}

.mv_loop_box {
  width: 18%;
}
.mv_loop_box img {
  width: 100%;
}
.mv_loop_box img:last-child {
  margin-top: 20px;
}
.mv_loop_box.loop_down p {
  animation: Loopdown linear 35s infinite;
}
.mv_loop_box.loop_down p:last-child {
  margin-top: 20px;
}
.mv_loop_box.loop_up p {
  animation: Loopup linear 35s infinite;
}
.mv_loop_box.loop_up p:last-child {
  margin-top: 20px;
}

@keyframes Loopdown {
  0% {
    translate: 0 -100%;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes Loopup {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 -100%;
  }
}
.main-visual-under {
  width: 100%;
  margin-top: 15px;
}
.main-visual-under .mv_ttl {
  font-size: 5.3vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #4C935D;
}
.main-visual-under .mv_ttl span {
  font-weight: 300;
}
.main-visual-under .mv_sub_ttl {
  font-weight: 500;
  font-size: 2vw;
  color: #4C935D;
  letter-spacing: 0.01em;
}

.mv-side-wrap {
  width: 35%;
}
.mv-side-wrap div:not(:last-child) {
  margin-bottom: 15px;
}

.t-about {
  width: 100%;
  height: 31vw;
}
.t-about a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #F3EFD8 -30%, #E09EAA 30%, #E09EAA);
  border-radius: 25px;
  padding: 7%;
}
.t-about a i {
  position: absolute;
  right: 7%;
  bottom: 7%;
  font-size: 2.6vw;
  color: #fff;
  rotate: 45deg;
}
.t-about a:hover i {
  translate: 10px 0;
  transition: all .6s;
}
.t-about .mv_link_ttl {
  flex-direction: column;
  align-items: flex-start;
}
.t-about p {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 2;
  color: #fff;
}

.t-voice {
  width: 100%;
  height: 8vw;
}
.t-voice a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #F3EFD8 -30%, #5680A0 30%, #5680A0);
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 10px 7%;
}
.t-voice a i {
  position: absolute;
  right: 7%;
  top: 50%;
  translate: 0 -50%;
  font-size: 2.6vw;
  color: #fff;
  rotate: 45deg;
}
.t-voice a:hover i {
  translate: 10px -50%;
  transition: all .6s;
}

.t-guide {
  width: 100%;
  height: 8vw;
}
.t-guide a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #F3EFD8 -30%, #6F5B9B 30%, #6F5B9B);
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 10px 7%;
}
.t-guide a i {
  position: absolute;
  right: 7%;
  top: 50%;
  translate: 0 -50%;
  font-size: 2.6vw;
  color: #fff;
  rotate: 45deg;
}
.t-guide a:hover i {
  translate: 10px -50%;
  transition: all .6s;
}

.mv_link_ttl {
  display: flex;
  align-items: center;
  gap: 15px 20px;
  color: #fff;
}
.mv_link_ttl .mv_link_ttl__en {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 600;
  font-size: 4vw;
  line-height: 1;
}
.mv_link_ttl .mv_link_ttl__ja {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1024px) {
  .top01 {
    flex-direction: column;
    gap: 20px;
  }

  .main-visual-wrap,
  .mv-side-wrap {
    width: 100%;
  }

  .t-about {
    height: 320px;
  }

  .t-about a {
    padding: 40px;
  }

  .t-about a i {
    right: 40px;
  }

  .t-voice {
    height: 80px;
  }

  .t-voice a {
    padding: 10px 40px;
  }

  .t-voice a i {
    right: 40px;
  }

  .t-guide {
    height: 80px;
  }

  .t-guide a {
    padding: 10px 40px;
  }

  .t-guide a i {
    right: 40px;
  }

  .main-visual-under .mv_ttl {
    font-size: 7.8vw;
    text-align: center;
  }

  .main-visual-under .mv_sub_ttl {
    font-size: 2.9vw;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .mv_link_ttl .mv_link_ttl__en {
    font-size: 4rem;
  }

  .t-about a i,
  .t-voice a i,
  .t-guide a i {
    font-size: 3rem;
  }
}
@media screen and (max-width: 470px) {
  .mv_link_ttl .mv_link_ttl__ja {
    font-size: 1.3rem;
  }

  .t-about .mv_link_ttl {
    margin-bottom: 30px;
  }

  .t-about {
    height: auto;
  }

  .t-about p {
    font-size: 1.6rem;
  }

  .t-about a {
    padding: 30px 20px;
  }

  .t-voice a,
  .t-guide a {
    padding: 10px 20px;
  }

  .t-about a i,
  .t-voice a i,
  .t-guide a i {
    right: 20px;
  }
}
/***************************

object/project/subpage.scss

***************************/
.under .main {
  padding-top: 135px;
}
@media screen and (max-width: 1300px) {
  .under .main {
    padding-top: 115px;
  }
}

.subpage {
  width: 100%;
  margin-bottom: 20px;
}

.subpage_inner {
  position: relative;
  width: 95%;
  height: 240px;
  margin: 0 auto;
  border-radius: 25px;
  padding: 20px 5%;
  display: flex;
  align-items: center;
}
.subpage_inner:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

.about .subpage_inner {
  background: linear-gradient(315deg, #F3EFD8 -30%, #E09EAA 30%, #E09EAA);
}

.interview .subpage_inner {
  background: linear-gradient(315deg, #F3EFD8 -30%, #5680A0 30%, #5680A0);
}

.guide .subpage_inner {
  background: linear-gradient(315deg, #F3EFD8 -30%, #6F5B9B 30%, #6F5B9B);
}

.contact .subpage_inner {
  background: linear-gradient(315deg, #F3EFD8 -30%, #FF8B17 30%, #FF8B17);
}

.page-404 .subpage_inner {
  background: linear-gradient(315deg, #F3EFD8 -30%, #666 30%, #666);
}

.subpage_ttl {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.subpage_ttl .subpage_ttl__en {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 7.8vw, 60px);
  line-height: 1.5;
}
.subpage_ttl .subpage_ttl__ja {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .subpage_inner {
    height: 200px;
    padding: 20px 35px;
  }
}
.page_block_wrap {
  width: 95%;
  margin: 0 auto 60px;
  display: flex;
  gap: 30px;
}

.side_cont_block {
  position: relative;
  width: 370px;
}

.side_cont_box {
  position: sticky;
  top: 130px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 25px;
  padding: 30px;
}

.side_cont_ttl {
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #E09EAA;
  border-bottom: 2px solid #E6E8E1;
  padding-bottom: 3px;
  margin-bottom: 20px;
}
.side_cont_ttl:after {
  position: absolute;
  content: '';
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #E09EAA 30px, #fff 30px, #fff 35px);
  bottom: -2px;
  left: 0;
  z-index: 2;
}

.interview .side_cont_ttl {
  color: #5680A0;
}
.interview .side_cont_ttl:after {
  background: linear-gradient(90deg, #5680A0 30px, #fff 30px, #fff 35px);
}

.guide .side_cont_ttl {
  color: #6F5B9B;
}
.guide .side_cont_ttl:after {
  background: linear-gradient(90deg, #6F5B9B 30px, #fff 30px, #fff 35px);
}

.contact .side_cont_ttl {
  color: #F88410;
}
.contact .side_cont_ttl:after {
  background: linear-gradient(90deg, #F88410 30px, #fff 30px, #fff 35px);
}

.side_cont_list {
  width: 100%;
}
.side_cont_list li:not(:last-child) {
  margin-bottom: 10px;
}
.side_cont_list li.now a .num {
  border-color: #E09EAA;
}
.side_cont_list li a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.5rem;
}
.side_cont_list li a .num {
  width: 26px;
  height: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-family: "Reddit Sans", sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
  color: #E09EAA;
  border: 1px dashed transparent;
}
.side_cont_list li a p {
  width: calc(100% - 41px);
  font-weight: 500;
}

.interview .side_cont_list li a .num {
  color: #5680A0;
}

.interview .side_cont_list li.now a .num {
  border-color: #5680A0;
}

.guide .side_cont_list li a .num {
  color: #6F5B9B;
}

.guide .side_cont_list li.now a .num {
  border-color: #6F5B9B;
}

.contact .side_cont_list li a .num {
  color: #F88410;
}

.contact .side_cont_list li.now a .num {
  border-color: #F88410;
}

.main_cont_block {
  width: calc(100% - 400px);
  background: #fff;
  padding: 70px 20px;
  border-radius: 25px;
}

.main_cont_section {
  width: 100%;
}
.main_cont_section:not(:last-of-type) {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .main_cont_section:not(:last-of-type) {
    margin-bottom: 60px;
  }
}

.main_cont_wrap {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1501px) {
  .main_cont_wrap {
    max-width: 84%;
  }
}

@media screen and (max-width: 1024px) {
  .side_cont_block {
    width: 270px;
  }

  .main_cont_block {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 850px) {
  .page_block_wrap {
    flex-direction: column;
  }

  .side_cont_block {
    width: 100%;
  }

  .main_cont_block {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main_cont_block {
    padding-top: 50px;
  }
}
.section_404 {
  width: 95%;
  margin: 0 auto;
  padding: 50px 0;
}

/***************************

object/project/about.scss

***************************/
.about01 {
  width: 100%;
}

.about_message_gallery_item {
  padding: 0 5px;
}
.about_message_gallery_item img {
  border-radius: 15px;
}

.about_message_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px 20px;
  margin-top: 40px;
}

.about_message_ttl {
  width: 360px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.06em;
}

.about_message_text {
  max-width: 440px;
  width: calc(100% - 380px);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
}

.about_person_list {
  width: 100%;
  margin-top: 35px;
}

.about_person_list_box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: #FAF8F4;
  border: 1px dotted #B73F3F;
  border-radius: 15px;
}
.about_person_list_box:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}
.about_person_list_box:not(:last-child) {
  margin-bottom: 20px;
}
.about_person_list_box dt {
  width: 100px;
}
.about_person_list_box dd {
  width: calc(100% - 120px);
}

.about_feature_list {
  width: 100%;
  margin-top: 30px;
}

.about_feature_list_box {
  position: relative;
  width: 100%;
}
.about_feature_list_box:not(:last-child) {
  margin-bottom: 15px;
}
.about_feature_list_box dt {
  position: relative;
  min-height: 80px;
  color: #fff;
  border-radius: 13px;
  padding: 10px 45px 10px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 2.2rem;
  font-weight: 500;
}
.about_feature_list_box dt:before, .about_feature_list_box dt:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 4px;
  background: #fff;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  z-index: 2;
}
.about_feature_list_box dt:after {
  rotate: 90deg;
}
.about_feature_list_box dt.open:after {
  rotate: 180deg;
  transition: all .4s;
}
.about_feature_list_box dt .num {
  font-family: "Reddit Sans", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}
.about_feature_list_box dt:hover {
  cursor: pointer;
}
.about_feature_list_box.is-01 dt {
  background: #B73F3F;
}
.about_feature_list_box.is-02 dt {
  background: #358DC1;
}
.about_feature_list_box.is-03 dt {
  background: #E8A54A;
}
.about_feature_list_box.is-04 dt {
  background: #DA7C8A;
}
.about_feature_list_box dd {
  display: none;
  width: 100%;
  padding: 15px 0;
}
.about_feature_list_box dd .img {
  width: 100%;
  margin-bottom: 15px;
}
.about_feature_list_box dd .img img {
  width: 100%;
  border-radius: 13px;
}
.about_feature_list_box dd p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
}

.about_saka_ttl {
  text-align: center;
  margin-bottom: 40px;
}

.about_voice_list {
  width: 100%;
}

.about_voice_list_box {
  position: relative;
  width: 84%;
  background: #F6F4F0;
  border-radius: 200px;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 2;
}
.about_voice_list_box:not(:last-child):after {
  position: absolute;
  content: '';
  width: 30px;
  height: 100px;
  background: #F6F4F0;
  bottom: -70px;
  z-index: -1;
}
.about_voice_list_box:nth-child(odd):after {
  left: 50%;
  rotate: -45deg;
}
.about_voice_list_box:nth-child(even) {
  margin-left: auto;
}
.about_voice_list_box:nth-child(even):after {
  right: 50%;
  rotate: 45deg;
}
.about_voice_list_box:not(:last-child) {
  margin-bottom: 40px;
}
.about_voice_list_box .num-box {
  position: absolute;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/about/voice_flag_parts.png);
  background-size: 100% auto;
  z-index: 3;
  top: -20px;
  right: 75px;
  padding-top: 10px;
}
.about_voice_list_box .num-box span {
  color: #fff;
  font-family: "Reddit Sans", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
}
.about_voice_list_box .num-box span.num {
  font-size: 4.2rem;
  font-weight: 600;
}
@media screen and (max-width: 1500px) {
  .about_voice_list_box {
    max-width: 720px;
  }
}

.about_voice_list_box.is-01 {
  padding-left: clamp(50px, 6vw, 90px);
  padding-right: clamp(50px, 6vw, 90px);
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.about_voice_list_box.is-01 .text {
  width: 77%;
}

.about_voice_list_box.is-02 {
  padding-left: clamp(50px, 6vw, 90px);
  padding-right: clamp(40px, 5.3vw, 80px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.about_voice_list_box.is-02 .text {
  width: 53%;
}
.about_voice_list_box.is-02 .image img {
  border-radius: 20px;
}
.about_voice_list_box.is-02 .deco01 {
  position: absolute;
  top: 0;
  left: 30px;
  z-index: 2;
}
.about_voice_list_box.is-02 .deco02 {
  position: absolute;
  bottom: -15px;
  right: 100px;
  z-index: 2;
}

.about_voice_list_box.is-03 {
  padding-left: clamp(50px, 6vw, 90px);
  padding-right: 150px;
}
.about_voice_list_box.is-03 .num-box {
  right: 30px;
}
.about_voice_list_box.is-03 .text {
  width: 100%;
}
.about_voice_list_box.is-03 .deco01 {
  position: absolute;
  top: -20px;
  left: 70px;
  z-index: 2;
}
.about_voice_list_box.is-03 .deco02 {
  position: absolute;
  bottom: -15px;
  right: 30px;
  z-index: 2;
}

.about_voice_list_box.is-04 {
  padding-left: clamp(50px, 6vw, 90px);
  padding-right: 230px;
}
.about_voice_list_box.is-04 .num-box {
  top: -30px;
  right: 20px;
  z-index: 3;
}
.about_voice_list_box.is-04 .text {
  width: 100%;
}
.about_voice_list_box.is-04 .image {
  position: absolute;
  width: 200px;
  height: 200px;
  right: 30px;
  top: -20px;
  z-index: 2;
}
.about_voice_list_box.is-04 .image img {
  border-radius: 100%;
}

.about_voice_list_box.is-05 {
  padding-left: clamp(50px, 6vw, 90px);
  padding-right: clamp(50px, 6vw, 90px);
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.about_voice_list_box.is-05 .text {
  width: 62%;
}
.about_voice_list_box.is-05 .image {
  position: relative;
  z-index: 3;
}

.about_voice_list_box.is-06 {
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-radius: 30px;
}
.about_voice_list_box.is-06 .num-box {
  top: 20px;
  right: 20px;
}
.about_voice_list_box.is-06 .text {
  width: 52%;
}
.about_voice_list_box.is-06 .image img {
  border-radius: 20px;
}
.about_voice_list_box.is-06 .deco01 {
  position: absolute;
  bottom: 20px;
  right: 70px;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .about_voice_list_box.is-06 {
    max-width: 640px;
  }
}

.about_voice_list_box.is-07 {
  padding-left: clamp(50px, 6vw, 90px);
  padding-right: 50px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.about_voice_list_box.is-07 .text {
  width: 78%;
}
.about_voice_list_box.is-07 .image {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1500px) {
  .about_voice_list_box .text .fz30 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 1200px) {
  .about_message_box {
    flex-direction: column;
  }

  .about_message_ttl {
    width: 100%;
  }
  .about_message_ttl br {
    display: none;
  }

  .about_message_text {
    max-width: 100%;
    width: 100%;
  }

  .about_voice_list_box {
    width: 95%;
  }

  .about_voice_list_box:not(:last-child) {
    margin-bottom: 60px;
  }

  .about_voice_list_box:not(:last-child):after {
    height: 140px;
    bottom: -95px;
  }

  .about_voice_list_box.is-01 {
    flex-direction: column;
  }

  .about_voice_list_box.is-01 .text {
    width: 100%;
  }

  .about_voice_list_box.is-01 .image {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 85px;
  }

  .about_voice_list_box.is-02 {
    flex-direction: column;
  }

  .about_voice_list_box.is-02 .text {
    width: 100%;
  }

  .about_voice_list_box.is-03 {
    padding-right: 50px;
  }

  .about_voice_list_box.is-03 .deco02 {
    width: 85px;
    bottom: -20px;
    right: -20px;
  }

  .about_voice_list_box.is-04 {
    padding-right: 50px;
  }

  .about_voice_list_box.is-04 .image {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
  }

  .about_voice_list_box.is-04 .image img {
    border-radius: 20px;
  }

  .about_voice_list_box.is-05 {
    flex-direction: column;
  }

  .about_voice_list_box.is-05 .text {
    width: 100%;
  }

  .about_voice_list_box.is-05 .image {
    position: absolute;
    width: 105px;
    bottom: -20px;
    right: 30px;
  }

  .about_voice_list_box.is-06 {
    flex-direction: column;
  }

  .about_voice_list_box.is-06 .num-box {
    top: -20px;
  }

  .about_voice_list_box.is-06 .text {
    width: 100%;
  }

  .about_voice_list_box.is-06 .image {
    width: 100%;
    text-align: center;
  }

  .about_voice_list_box.is-06 .deco01 {
    right: 20px;
  }

  .about_voice_list_box.is-07 {
    flex-direction: column;
  }

  .about_voice_list_box.is-07 .text {
    width: 100%;
  }

  .about_voice_list_box.is-07 .image {
    position: absolute;
    width: 85px;
    bottom: -20px;
    right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .about_voice_list_box {
    border-radius: 30px;
  }

  .about_voice_list_box .text .fz30 {
    font-size: 25px;
  }

  .about_voice_list_box .num-box {
    width: 85px;
    height: 85px;
    right: 20px;
    top: -40px;
  }

  .about_voice_list_box .num-box span.num {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .about_voice_list_box.is-02 .deco01 {
    top: -20px;
    left: 10px;
  }

  .about_voice_list_box.is-02 .deco02 {
    right: 10px;
  }

  .about_voice_list_box.is-01,
  .about_voice_list_box.is-02,
  .about_voice_list_box.is-03,
  .about_voice_list_box.is-04,
  .about_voice_list_box.is-05,
  .about_voice_list_box.is-06,
  .about_voice_list_box.is-07 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about_voice_list_box.is-03 .deco02 {
    bottom: -30px;
  }
}
@media screen and (max-width: 600px) {
  .about_person_list_box {
    flex-direction: column;
  }

  .about_person_list_box dd {
    width: 100%;
  }

  .about_person_list_box dd h4 {
    text-align: center;
  }
}
/***************************

object/project/interview.scss

***************************/
.interview_ttl {
  position: relative;
  font-size: clamp(28px, 4.4vw, 34px);
  letter-spacing: 0.03em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 15px;
}
.interview_ttl .interview_ttl_icn {
  width: 84px;
}
.interview_ttl .interview_ttl_data {
  line-height: 1;
}
.interview_ttl .interview_ttl_post {
  display: inline-flex;
  align-items: center;
  height: clamp(24px, 3.5vw, 28px);
  padding: 0 10px;
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #557F9F;
  background: #EAF2F7;
  border: 1px solid #557F9F;
  border-radius: 5px;
  margin-bottom: 5px;
}
.interview_ttl .interview_ttl_post span {
  font-size: clamp(10px, 1.7vw, 13px);
  line-height: 1;
}
.interview_ttl .interview_ttl_company {
  font-size: clamp(17px, 2.6vw, 20px);
  letter-spacing: 0.03em;
}
.interview_ttl .interview_ttl_name {
  font-size: clamp(28px, 4.4vw, 34px);
  display: flex;
  align-items: center;
  line-height: 1;
}

@media screen and (max-width: 425px) {
  .interview_ttl {
    flex-direction: column;
    align-items: center;
  }
  .interview_ttl .interview_ttl_data {
    text-align: center;
  }
}

.interview_list {
  width: 100%;
  margin-top: 30px;
}

.interview_list_box {
  position: relative;
  width: 100%;
  gap: 20px;
  padding: 25px 30px;
  background: #FAF8F4;
  border: 1px dotted #5680A0;
  border-radius: 15px;
}
.interview_list_box:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}
.interview_list_box:not(:last-child) {
  margin-bottom: 20px;
}

/***************************

object/project/guide.scss

***************************/
.guide_list {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 25px;
}

.guide_list_block {
  width: 100%;
  display: flex;
}
.guide_list_block dt {
  width: 140px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6E5A9A;
  border-bottom: 1px solid #6F5B9B;
  padding: 20px 0;
}
.guide_list_block dd {
  width: calc(100% - 140px);
  border-bottom: 1px solid #E6E8E1;
  padding: 20px 10px;
}
.guide_list_block dd p {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.guide_list_block dd .symbol {
  position: relative;
  padding-left: 20px;
}
.guide_list_block dd .symbol:before {
  position: absolute;
  content: '';
  width: 13px;
  height: 13px;
  background: #6C5999;
  border-radius: 100%;
  left: 0;
  top: 7px;
}
.guide_list_block dd .link {
  color: #6C5999;
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .guide_list_block {
    flex-direction: column;
  }
  .guide_list_block:not(:last-child) {
    margin-bottom: 10px;
  }

  .guide_list_block dt {
    width: 100%;
    padding: 10px;
  }

  .guide_list_block dd {
    width: 100%;
    padding: 10px;
  }
}
/***************************

object/project/contact.scss

***************************/
.contact01 {
  width: 100%;
}
.contact01 .txt_eq {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 21px;
  background: #F88615;
  border-radius: 3px;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
}
.contact01 .txt_noeq {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 21px;
  background: #ccc;
  border-radius: 3px;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
}

.form_wrap {
  width: 100%;
  margin-top: 40px;
}

.contact_form {
  width: 100%;
  margin-bottom: 35px;
}

.contact_form_block {
  display: flex;
  background: linear-gradient(90deg, #F88615 140px, #E6E8E1 140px, #E6E8E1 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom left;

  &.va_top {
    align-items: flex-start;
  }
}

.contact_form_block dt {
  width: 265px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 2;
}

.contact_form_block dd {
  width: calc(100% - 265px);
  padding: 20px 0;
}

.select_work_box {
  position: relative;
  max-width: 410px;
  width: 100%;
}
.select_work_box:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 50px;
  background: #F88615;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  z-index: 3;
  right: -1px;
  top: 2px;
  pointer-events: none;
}
.select_work_box:after {
  position: absolute;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #fff;
  right: 9px;
  top: 50%;
  translate: 0 -50%;
  z-index: 5;
  pointer-events: none;
}

.contact_form select {
  max-width: 410px;
  width: 100%;
  height: 50px;
  border: 1px solid #F88615;
  border-radius: 8px;
  -webkit-appearance: none;
  appearance: none;
  padding: 15px 45px 15px 15px;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #524C4C;
}
.contact_form select:hover {
  cursor: pointer;
}

.contact_form select::-ms-expand {
  display: none;
}

.contact_form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 40px;
}

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

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

.form__radio .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  letter-spacing: 0.06em;
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
}

.form__checke .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  letter-spacing: 0.06em;
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
}

.form__radio .wpcf7-list-item .wpcf7-list-item-label::after,
.form__radio .wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all .3s;
}

.form__checke .wpcf7-list-item .wpcf7-list-item-label::after,
.form__checke .wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all .3s;
}

.form__radio .wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #E6E8E1;
  border-radius: 50%;
}

.form__checke .wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #E6E8E1;
  /* border-radius: 50%; */
}

.form__radio .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 5px;
  top: 50%;
  translate: 0 -50%;
  margin-top: 0;
  width: 12px;
  height: 12px;
  background: #F88615;
  border-radius: 100%;
  opacity: 0;
  z-index: 1;
  border: 0;
}

.form__checke .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 6px;
  top: 3px;
  /* translate: 0 -50%; */
  margin-top: 0;
  width: 7px;
  height: 12px;
  border-bottom: 3px solid #F88615;
  border-right: 3px solid #F88615;
  rotate: 45deg;
  /* background: #F88615; */
  /* border-radius: 100%; */
  opacity: 0;
  z-index: 1;
  /* border: 0; */
}

.form__radio .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

.form__checke .wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

.other_block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.other_block .wpcf7-list-item-label {
  white-space: nowrap;
}
.other_block input[type=text] {
  max-width: 500px;
  width: 100%;
}

.contact_form input[type=text],
.contact_form input[type=email],
.contact_form input[type=tel] {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #E6E8E1;
  border-radius: 8px;
  padding: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}

.contact_form textarea {
  width: 100%;
  height: 200px;
  background: #fff;
  border: 1px solid #E6E8E1;
  border-radius: 8px;
  padding: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}

.contact_form input[type=text]::placeholder,
.contact_form input[type=email]::placeholder,
.contact_form input[type=tel]::placeholder,
.contact_form textarea::placeholder {
  max-width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  color: #CDCDC5;
}

.contact_form .w_200 {
  max-width: 200px;
}

.privacy_wrap {
  text-align: center;
}
.privacy_wrap a {
  color: #FF8C19;
  border-bottom: 2px solid #FF8C19;
}

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

.privacy_wrap .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 35px;
  cursor: pointer;
  line-height: 1.6;
  letter-spacing: 0.08em;
  display: inline-block;
  font-weight: 600;
  font-size: 1.9rem;
}

.privacy_wrap .wpcf7-list-item .wpcf7-list-item-label::after,
.privacy_wrap .wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all .3s;
}

.privacy_wrap .wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #aaa;
  border-radius: 3px;
}

.privacy_wrap .wpcf7-list-item .wpcf7-list-item-label::before {
  opacity: 0;
  left: 3px;
  top: 40%;
  translate: 0 -50%;
  width: 15px;
  height: 8px;
  border-left: 2px solid #FF8B17;
  border-bottom: 2px solid #FF8B17;
  rotate: -45deg;
  z-index: 1;
}

.privacy_wrap input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

.form_submit {
  position: relative;
  max-width: 235px;
  width: 100%;
  margin: 35px auto 0;
}
.form_submit input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  border: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  background: #FF8B17;
  color: #fff;
  border-radius: 8px;
}
.form_submit input[type=submit]:hover {
  cursor: pointer;
}
.form_submit i {
  position: absolute;
  rotate: 45deg;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
  color: #fff;
  z-index: 4;
}
.form_submit:hover i {
  translate: 5px -50%;
  transition: all .6s;
}

@media screen and (max-width: 1024px) {
  .contact_form_block {
    flex-direction: column;
  }

  .contact_form_block dt {
    padding-bottom: 0;
  }

  .contact_form_block dd {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .contact_form_block dt {
    width: 100%;
    padding-top: 15px;
  }

  .contact_form_block dd {
    padding: 15px 0;
  }
}

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

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}

.wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
  display: block;
}
