@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 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #46433D;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #F5F4EC;
}

a {
  color: #46433D;
  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: #46433D;
  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*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.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: 1024px) {
  .toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    padding: 15px;
    right: 15px;
    text-align: center;
    top: calc(50% - 24px);
    z-index: 7;
  }

  .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: 30px;
    height: 2px;
    background-color: #45403B;
    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;
}

/* Hamburger menu */
@media screen and (max-width: 1024px) {
  .gnav {
    position: fixed;
    right: 0;
    top: 89px;
    width: 100%;
    height: calc(100vh - 80px);
    background: url(../img/common/noise-parts.png) repeat center center;
    background-color: #fff;
    z-index: 6;
    padding: 20px 15px;
    transform: translateX(100%);
    transition: all .6s;
  }

  .gnav.active {
    transform: translateX(0);
  }
}
 /***************************

 header

***************************/
header {
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding-left: 230px;
  padding-right: 50px;
}
header .logo {
  position: absolute;
  width: 200px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #EDC447;
  left: 0;
  top: 0;
  border-bottom-right-radius: 20px;
}
header.scrollMenu .logo {
  transition: all .4s;
  height: 100%;
  padding: 20px;
  text-align: center;
}
header.scrollMenu .logo img {
  width: 60%;
}

header .gnav {
  max-width: 1100px;
  width: 100%;
  padding: 35px 0;
  margin-left: auto;
}

header .gnav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .gnav ul li {
  position: relative;
  padding-left: 25px;
}
header .gnav ul li:after {
  position: absolute;
  content: '\f107';
  width: 16px;
  height: 16px;
  font-family: "FontAwesome";
  font-size: 8px;
  text-align: center;
  line-height: 16px;
  background: #45413C;
  color: #fff;
  border-radius: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
header .gnav ul li a {
  position: relative;
  display: block;
  color: #45403B;
  font-weight: 600;
  letter-spacing: 0.03em;
}
header .gnav ul li a:after {
  position: absolute;
  content: '';
  width: 0;
  height: 2px;
  bottom: 0;
  background: #45403B;
  left: 50%;
  translate: -50% 0;
  transition: all .6s;
}
header .gnav ul li a:hover:after {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  header {
    padding-left: 180px;
    padding-right: 20px;
  }
  header .logo {
    width: 150px;
    height: 150px;
    padding: 0 20px;
  }

  header .gnav {
    padding: 20px 0;
  }

  header .gnav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 10px;
  }
}
@media screen and (max-width: 1024px) {
  header {
    padding-left: 0;
    padding-right: 0;
  }
  header .logo {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 15px 20px;
    border-radius: 0;
  }
  header .logo img {
    width: 73px;
  }
  header.scrollMenu .logo {
    padding: 15px 20px;
  }
  header.scrollMenu .logo img {
    width: 73px;
  }

  header .gnav {
    max-width: 375px;
    padding: 20px 30px;
  }

  header .gnav ul {
    display: block;
  }
  header .gnav ul li {
    padding: 5px 0 5px 25px;
  }
  header .gnav ul li a {
    display: inline-block;
  }

  header .gnav.active ul li {
    animation: openMenu .5s ease-in both;
    opacity: 0;
  }
  header .gnav.active ul li.delay1 {
    animation-delay: 0.3s;
  }
  header .gnav.active ul li.delay2 {
    animation-delay: 0.6s;
  }
  header .gnav.active ul li.delay3 {
    animation-delay: 0.9s;
  }
  header .gnav.active ul li.delay4 {
    animation-delay: 1.2s;
  }
  header .gnav.active ul li.delay5 {
    animation-delay: 1.5s;
  }
}
@keyframes openMenu {
  0% {
    translate: -50px 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
 /***************************

layout/footer.scss

***************************/
footer {
  background: none;
}
footer .copyright {
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #45423C;
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #A29B91;
  border-top-right-radius: 35px;
  border-top-left-radius: 35px;
}

.company-block {
  max-width: 1300px;
  width: 92%;
  margin: 0 auto -55px;
  position: relative;
  z-index: 2;
  padding: 45px 55px;
  display: flex;
  gap: 20px 55px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  border-radius: 10px;
}

.company-block .logo {
  max-width: 440px;
  width: 29vw;
}

.company-block p {
  letter-spacing: 0.02em;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .company-block {
    padding: 45px 35px;
    gap: 20px 35px;
  }
}
@media screen and (max-width: 1024px) {
  .company-block {
    flex-wrap: wrap;
  }

  .company-block .logo {
    max-width: 100%;
    width: 100%;
  }
  .company-block .logo img {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .company-block {
    padding: 25px 30px;
  }

  footer .copyright {
    padding-top: 80px;
    padding-bottom: 125px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
}
.fixed-sidebar {
  position: fixed;
  width: 110px;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 99;
}
.fixed-sidebar ul {
  width: 100%;
}
.fixed-sidebar ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 110px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.fixed-sidebar ul li a:hover {
  color: #fff;
}
.fixed-sidebar ul li a p {
  margin-top: 10px;
}
.fixed-sidebar ul li:first-child {
  margin-bottom: 2px;
}
.fixed-sidebar ul li:first-child a {
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #5FA9A9;
  border-top-left-radius: 15px;
}
.fixed-sidebar ul li:last-child a {
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #464646;
  border-bottom-left-radius: 15px;
}

@media screen and (max-width: 768px) {
  .fixed-sidebar {
    width: 100%;
    top: inherit;
    bottom: 0;
    translate: 0 0;
  }
  .fixed-sidebar ul {
    display: flex;
    gap: 0;
  }
  .fixed-sidebar ul li {
    width: 50%;
  }
  .fixed-sidebar ul li a {
    height: 100%;
    padding: 15px 10px;
  }
  .fixed-sidebar ul li a p {
    margin-top: 5px;
  }
  .fixed-sidebar ul li:first-child {
    margin-bottom: 0;
  }
  .fixed-sidebar ul li:last-child a {
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  max-width: 1110px;
  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

////////////////////////*/
.bold {
  font-weight: bold;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.ls_4 {
  letter-spacing: 0.04em;
}

.ls_2 {
  letter-spacing: 0.02em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_15 {
  line-height: 1.5;
}

.lh_1 {
  line-height: 1;
}

/*font-weight*/
.fw100 {
  font-weight: 100;
}

.fw200 {
  font-weight: 200;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}

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

.jost {
  font-family: "Jost", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.col_yellow {
  color: #E5BF45;
}

.col_blue {
  color: #5AA4A5;
}

.underline_yellow {
  position: relative;
  padding-bottom: 5px;
  background: linear-gradient(0deg, #EDC447 5px, transparent 5px);
}

.fz17 {
  font-size: 1.7rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz20 {
  font-size: 2rem;
}

.fz28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .fz28 {
    font-size: clamp(22px, 3.6vw, 28px);
  }
}

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

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-center {
  margin: 0 auto;
}

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

hdg__

////////////////////////*/
.hdg_01 {
  text-align: center;
}

.hdg_01_flag {
  position: relative;
  display: inline-block;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #434344;
  min-width: 165px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
}
.hdg_01_flag:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #434344;
  border-radius: 5px;
  bottom: -5px;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
  z-index: -1;
}

.hdg_01_ttl {
  font-size: 3.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .hdg_01_ttl {
    font-size: clamp(28px, 4.9vw, 38px);
  }
}

.hdg_02 {
  text-align: center;
}
.hdg_02 .hdg_02_ttl {
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding-left: 60px;
  padding-right: 60px;
}
.hdg_02 .hdg_02_ttl:before, .hdg_02 .hdg_02_ttl:after {
  position: absolute;
  display: inline-block;
  content: '';
  width: 5px;
  height: 105px;
  background: url(../img/top/line-parts.png);
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 500px) {
  .hdg_02 .hdg_02_ttl:before, .hdg_02 .hdg_02_ttl:after {
    height: 55px;
  }
}
.hdg_02 .hdg_02_ttl:before {
  rotate: -35deg;
  left: 0;
}
@media screen and (max-width: 768px) {
  .hdg_02 .hdg_02_ttl:before {
    left: 20px;
  }
}
@media screen and (max-width: 500px) {
  .hdg_02 .hdg_02_ttl:before {
    left: -5px;
    top: inherit;
    bottom: 0;
    translate: 0;
  }
}
.hdg_02 .hdg_02_ttl:after {
  rotate: 35deg;
  right: 0;
}
@media screen and (max-width: 768px) {
  .hdg_02 .hdg_02_ttl:after {
    right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .hdg_02 .hdg_02_ttl:after {
    right: -5px;
    top: inherit;
    bottom: 0;
    translate: 0;
  }
}
@media screen and (max-width: 768px) {
  .hdg_02 .hdg_02_ttl {
    font-size: clamp(25px, 4.9vw, 38px);
  }
}
@media screen and (max-width: 500px) {
  .hdg_02 .hdg_02_ttl {
    padding: 0;
  }
}

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

object/project/top.scss

***************************/
.top01 {
  width: 100%;
  padding-top: 150px;
  margin-bottom: 60px;
}

.main-visual {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1501px) {
  .main-visual {
    max-width: 1500px;
    margin: 0 auto;
  }
}

.main-visual-ttl {
  position: absolute;
  right: 62vw;
  top: 50%;
  translate: 0 -50%;
  padding-left: 4vw;
  z-index: 3;
}
@media screen and (min-width: 1501px) {
  .main-visual-ttl {
    left: 0;
    right: inherit;
  }
}

.main-visual-image {
  width: 67vw;
  margin-left: auto;
  border: 10px solid #fff;
  border-right: none;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: hidden;
}
.main-visual-image img {
  width: 100%;
}
@media screen and (min-width: 1501px) {
  .main-visual-image {
    width: 1010px;
    border-right: 10px solid #fff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .top01 {
    padding-top: 130px;
  }
}
@media screen and (max-width: 768px) {
  .main-visual-ttl {
    position: relative;
    right: 0;
    translate: 0;
    top: 0;
    padding: 0 20px;
    margin-bottom: -30px;
    text-align: center;
  }
  .main-visual-ttl img {
    max-width: 350px;
    width: 100%;
  }

  .main-visual-image {
    width: 97%;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
}
.top02 {
  width: 100%;
  margin-bottom: 100px;
}

.t-first-block {
  position: relative;
  max-width: 1340px;
  width: calc(100% - 30px);
  margin: 0 auto;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  border-radius: 35px;
  padding: 70px 20px 80px;
}
.t-first-block:after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  border-radius: 5px;
  bottom: -20px;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
}

@media screen and (max-width: 768px) {
  .top02 {
    margin-bottom: 50px;
  }

  .t-first-block {
    padding: 30px 20px 40px;
  }
}
.top03 {
  width: 100%;
  margin-bottom: 120px;
}

.t-about-block {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.aboutus-content {
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.aboutus-content-text {
  max-width: 470px;
  width: 100%;
}

.aboutus-content-text_ttl {
  font-size: 2.8rem;
  letter-spacing: 0.04em;
}
.aboutus-content-text_ttl .back-blue {
  display: inline-block;
  padding: 5px 15px;
  background: #5EA8A8;
  border-radius: 5px;
  color: #fff;
}
.aboutus-content-text_ttl .back-yellow {
  display: inline-block;
  padding: 5px 15px;
  background: #E8C046;
  border-radius: 5px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .aboutus-content-text_ttl {
    font-size: clamp(22px, 3.6vw, 28px);
  }
}

.aboutus-content-image {
  position: relative;
  max-width: 640px;
  width: 100%;
  padding: 45px 65px 0;
}
.aboutus-content-image:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 94%;
  background: #fff;
  border-radius: 160px;
  top: 0;
  left: 0;
  z-index: -1;
}

.aboutus-content-image-flag {
  position: absolute;
  width: 165px;
  padding: 15px 10px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #434344;
  border-radius: 5px;
  top: -20px;
  left: 50%;
  translate: -50% 0;
}
.aboutus-content-image-flag:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #434344;
  border-radius: 5px;
  bottom: -5px;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
}

.aboutus-content-image-inner {
  position: relative;
  width: 100%;
  padding: 15px;
}
.aboutus-content-image-inner:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 70%;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #5EA8A8;
  border-radius: 5px;
  top: 0;
  left: 0;
}
.aboutus-content-image-inner p, .aboutus-content-image-inner ul {
  position: relative;
  z-index: 3;
}
.aboutus-content-image-inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 5px 10px;
  margin-top: 10px;
}
.aboutus-content-image-inner ul li .flag {
  position: relative;
  display: inline-block;
  min-width: 85px;
  padding: 10px 5px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  color: #5AA2A2;
  border-radius: 5px;
}
.aboutus-content-image-inner ul li .flag:after {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background-color: #fff;
  bottom: -4px;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
  z-index: -1;
}
.aboutus-content-image-inner ul li .text {
  width: 80px;
  height: 80px;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  color: #5AA2A2;
  letter-spacing: 0.04em;
  background: #F4F3DD;
  border: 2px solid #5EA8A8;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
}

.t-feature-block {
  position: relative;
  max-width: 1080px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
.t-feature-block:after {
  position: absolute;
  content: '';
  width: 160px;
  height: 165px;
  background: url(../img/top/feature-box-parts.png) no-repeat;
  bottom: -20px;
  right: -45px;
}

.feature-box-flag {
  display: inline-block;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #fff;
  background: #434344;
  margin-left: 35px;
}

.feature-box {
  position: relative;
  display: flex;
  gap: 30px 45px;
  border-radius: 15px;
  background: #EDC447;
  padding: 35px 45px;
  box-shadow: 10px 10px 0 #E8E6D5;
}
.feature-box:before {
  position: absolute;
  content: '';
  width: 60px;
  height: 60px;
  background: url(../img/top/feature-clip.png) no-repeat;
  background-size: cover;
  left: -35px;
  top: -30px;
}

.feature-box-text {
  width: calc(100% - 325px);
}

.feature-box-logo {
  width: 280px;
  height: 250px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .top03 {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1024px) {
  .aboutus-content {
    flex-wrap: wrap;
  }

  .aboutus-content-text_ttl {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .feature-box {
    flex-wrap: wrap;
    padding: 35px 20px;
  }

  .feature-box-text {
    width: 100%;
  }

  .feature-box-logo {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }
}
@media screen and (max-width: 625px) {
  .aboutus-content-image {
    padding-bottom: 25px;
  }
  .aboutus-content-image:after {
    border-radius: 40px;
    height: 100%;
  }

  .aboutus-content-image-inner:after {
    height: 100%;
  }
  .aboutus-content-image-inner ul {
    flex-wrap: wrap;
    gap: 15px 10px;
  }
  .aboutus-content-image-inner ul li:nth-child(-n+2) {
    width: calc(50% - 10px);
  }
  .aboutus-content-image-inner ul li:nth-child(n+3) {
    width: calc(33% - 10px);
  }
  .aboutus-content-image-inner ul li .flag {
    width: 100%;
    font-size: 1.2rem;
  }
  .aboutus-content-image-inner ul li .text {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 500px) {
  .aboutus-content-image {
    padding: 45px 35px 25px;
  }
  .aboutus-content-image:after {
    border-radius: 30px;
    height: 100%;
  }

  .t-feature-block:after {
    width: 120px;
    height: 125px;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 450px) {
  .top03 {
    padding: 0 20px;
  }

  .feature-box-flag {
    display: block;
    width: calc(100% - 70px);
    margin: 0 auto;
  }

  .feature-box:before {
    width: 50px;
    height: 50px;
    background-size: 100% auto;
    left: -20px;
    top: -20px;
  }

  .t-feature-block:after {
    right: -25px;
    bottom: -35px;
  }

  .aboutus-content-image {
    padding: 45px 20px 25px;
  }
}
@media screen and (max-width: 320px) {
  .aboutus-content-image-inner ul li:nth-child(n+3) {
    width: calc(50% - 10px);
  }
}
.top04 {
  width: 100%;
  padding-top: 90px;
  padding-bottom: 40px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #EDE9DA;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}

@media screen and (max-width: 768px) {
  padding-top: 50px;
}
.top05 {
  width: 100%;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  padding-top: 90px;
  padding-bottom: 120px;
  border-radius: 35px;
  margin-top: -40px;
}

.t-service-block {
  width: 100%;
  margin-bottom: 120px;
}

.service-content {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  margin-top: 60px;
}

.service-content_item {
  width: 100%;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #E9C146;
  border-radius: 20px;
  padding: 45px 50px;
}
.service-content_item .image {
  text-align: center;
  margin-bottom: 20px;
}

.service-flow {
  width: 100%;
}

.service-flow_item {
  width: 100%;
  position: relative;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #F5F4EC;
  border-radius: 20px;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  gap: 20px 30px;
}
.service-flow_item:not(:last-child) {
  margin-bottom: 50px;
}
.service-flow_item:not(:last-child):after {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #F5F4EC;
  border-radius: 5px;
  bottom: -20px;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
}
.service-flow_item .num {
  position: absolute;
  top: -15px;
  left: 25px;
  z-index: 2;
}
.service-flow_item .icn {
  width: 120px;
}
.service-flow_item .text {
  width: calc(100% - 150px);
}
.service-flow_item .text h4 {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .top05 {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .t-service-block {
    margin-bottom: 60px;
  }

  .service-content {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .service-content_item {
    padding: 30px 25px;
  }

  .service-flow_item {
    padding: 30px 25px;
  }
  .service-flow_item:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .service-flow_item {
    flex-wrap: wrap;
  }

  .service-flow_item .icn {
    width: 100%;
    text-align: center;
  }

  .service-flow_item .text {
    width: 100%;
  }
}
.top06 {
  width: 100%;
  padding: 120px 0;
}

.contact-formWrap {
  max-width: 580px;
  width: 100%;
  margin: 50px auto 0;
}

.contact-form {
  width: 100%;
  margin-bottom: 40px;
}

.contact-form-block {
  width: 100%;
}
.contact-form-block:not(:last-child) {
  margin-bottom: 50px;
}
.contact-form-block dt {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-left: 55px;
  margin-bottom: 10px;
}
.contact-form-block dt:before {
  position: absolute;
  display: inline-block;
  width: 42px;
  content: '任意';
  font-size: 1.4rem;
  text-align: center;
  border-radius: 3px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #ccc;
  color: #fff;
  line-height: 1;
  padding: 5px 0;
  left: 0;
  top: 3px;
}
.contact-form-block dt.req:before {
  content: '必須';
  background-color: #E6BF45;
}
.contact-form-block input[type=text],
.contact-form-block input[type=email],
.contact-form-block input[type=tel] {
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  border-radius: 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  border: none;
}
.contact-form-block textarea {
  width: 100%;
  height: 290px;
  padding: 15px 20px;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  border-radius: 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  border: none;
}
.contact-form-block input::placeholder,
.contact-form-block textarea::placeholder {
  font-size: 1.8rem;
  color: #DEDFD4;
}

.privacy-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.privacy-check input[type=checkbox] {
  display: none;
}

.privacy-check .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding: 0 0 0 40px;
  cursor: pointer;
  line-height: 2;
  font-size: 2rem;
  line-height: 1.4;
}

.privacy-check .wpcf7-list-item-label {
  font-weight: 500;
  display: inline-block;
}

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

.privacy-check .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #F0EFE7;
  border-radius: 0;
}

.privacy-check .wpcf7-list-item-label::before {
  left: 5px;
  top: 3px;
  transform: rotate(-45deg);
  margin-top: 0;
  width: 20px;
  height: 10px;
  background: transparent;
  border-left: 3px solid #E0BA44;
  border-bottom: 3px solid #E0BA44;
  border-radius: 0;
  opacity: 0;
  z-index: 1;
  transition: all .6s;
}

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

.privacy-check .wpcf7-list-item-label {
  height: 30px;
}

.privacy-link {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.02em;
}
.privacy-link a {
  color: #E0BA44;
  text-decoration: underline;
}
.privacy-link a:hover {
  cursor: pointer;
}

.contact-submit {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: 45px auto 0;
}
.contact-submit:after {
  position: absolute;
  content: '\f105';
  font-family: "FontAwesome";
  width: 16px;
  height: 16px;
  font-size: 1rem;
  background: #fff;
  border-radius: 100%;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 25px;
  top: 50%;
  translate: 0 -50%;
}
.contact-submit input {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  background: #333;
  border: none;
  border-radius: 40px;
  padding: 25px 50px;
}
.contact-submit input:hover {
  cursor: pointer;
}

.privacy-content-block {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(70, 67, 61, 0.7);
  z-index: 999;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.privacy-content-block.show {
  opacity: 1;
}

.privacy-content-body {
  position: relative;
  max-width: 1000px;
  width: 100%;
  padding-top: 50px;
}

.privacy-content-close {
  position: absolute;
  content: '';
  width: 45px;
  height: 45px;
  font-size: 2.4rem;
  color: #fff;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #EDC447;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
}
.privacy-content-close:hover {
  cursor: pointer;
  opacity: 0.8;
}

.privacy-content-inner {
  width: 100%;
  max-height: 80svh;
  background: url(../img/common/noise-parts.png) repeat center center;
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .top06 {
    padding: 60px 0;
  }

  .contact-formWrap {
    margin-top: 30px;
  }

  .contact-form {
    margin-bottom: 25px;
  }

  .contact-form-block:not(:last-child) {
    margin-bottom: 30px;
  }

  .contact-submit {
    margin-top: 20px;
  }
}
.sp425 {
  display: none;
}
@media screen and (max-width: 425px) {
  .sp425 {
    display: block;
  }
}
