/*
Theme Name: makisr Theme

Version: 1.0
*/
@charset "UTF-8";

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

_mixin.scss

***************************/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoomImg {
  overflow: hidden;
  display: block;
  transition: 0.75s;
}

.zoomImg img {
  transform: scale(1);
  transition: 1.5s;
}

.zoomImg:hover {
  opacity: 1;
}

.zoomImg:hover img {
  transform: scale(1.2);
}

/*========= ページ読み込み時のフェードアニメーション ===============*/
.fadeInAnime {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeInAnime.animation {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
}

@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeUp {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp.animation {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0.1;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0.1;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeLeft.animation {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeRight.animation {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0.1;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0.1;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0.1;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0.1;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scaleUp {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  opacity: 0;
  transform: scale(0.8);
}

.scaleUp.animation {
  -webkit-animation-name: scaleUp;
  animation-name: scaleUp;
}

@-webkit-keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time01 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-time02 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-time03 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-time07 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay-time09 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.delay-time10 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-time12 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

/*========= ページ読み込み時のフェードアニメーション ===============*/
/***************************

_variables.scss

***************************/
.flexbox {
  display: flex;
}

.flexbox.col2>div {
  width: 50%;
}

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

  .flexbox.col2>div {
    flex: unset !important;
    width: 100% !important;
  }

  .flexbox.col2>div:not(:first-of-type) {
    margin-top: 30px;
  }
}

.flexbox.col48p>div {
  width: 48%;
}

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

  .flexbox.col48p>div {
    flex: unset !important;
    width: 100% !important;
  }

  .flexbox.col48p>div:not(:first-of-type) {
    margin-top: 30px;
  }
}

.line1 {
  line-height: 1;
}

.wrap {
  flex-wrap: wrap;
}

.spacebet {
  justify-content: space-between;
}

.flex-start {
  justify-content: flex-start;
}

.flex-center {
  justify-content: center;
}

.flex-end {
  justify-content: flex-end;
}

.flex-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

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

.align-end {
  align-items: flex-end;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

/* 画像配置 左 */
img.alignleft {
  text-align: left;
}

/* 画像配置 中央 */
img.aligncenter {
  display: block;
  margin: 1px auto;
}

/* 画像配置 右 */
img.alignright {
  display: block;
  margin: 1px 1px 1px auto;
}

.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0 !important;
}

.mt05e {
  margin-top: 0.5em;
}

.mt1e {
  margin-top: 1em;
}

.mt10 {
  margin-top: 10px;
}

@media screen and (max-width: 550px) {
  .mt10.sp0 {
    margin-top: 0;
  }
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

@media screen and (max-width: 550px) {
  .mt40.sp0 {
    margin-top: 0;
  }
}

.mt50 {
  margin-top: 50px;
}

@media screen and (max-width: 550px) {
  .mt50.sp0 {
    margin-top: 0;
  }
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

@media screen and (max-width: 550px) {
  .mt80 {
    margin-top: 50px;
  }
}

.mt90 {
  margin-top: 90px;
}

@media screen and (max-width: 550px) {
  .mt90 {
    margin-top: 80px;
  }
}

.mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 550px) {
  .mt100 {
    margin-top: 80px;
  }
}

.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;
}

@media screen and (max-width: 550px) {
  .mb90 {
    margin-bottom: 80px;
  }
}

.mb100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 550px) {
  .mb100 {
    margin-bottom: 80px;
  }
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

@media screen and (max-width: 550px) {
  .pt30.sp0 {
    padding-top: 0;
  }
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

@media screen and (max-width: 550px) {
  .pt50.sp0 {
    padding-top: 0;
  }
}

.pt60 {
  padding-top: 60px;
}

@media screen and (max-width: 550px) {
  .pt60.sp0 {
    padding-top: 0;
  }
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

@media screen and (max-width: 550px) {
  .pt90 {
    padding-top: 80px;
  }
}

.pt100 {
  padding-top: 100px;
}

@media screen and (max-width: 550px) {
  .pt100 {
    padding-top: 80px;
  }
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

@media screen and (max-width: 550px) {
  .pb90 {
    padding-bottom: 80px;
  }
}

.pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 550px) {
  .pb100 {
    padding-bottom: 80px;
  }
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

@media screen and (max-width: 550px) {
  .mid-t-left {
    text-align: left !important;
  }
}

.margin-auto {
  margin-right: auto;
  margin-left: auto;
}

.margin-r-auto {
  margin-right: auto;
}

.margin-l-auto {
  margin-left: auto;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz18 {
  font-size: 18px;
}

@media screen and (max-width: 550px) {
  .fz18 {
    font-size: 16px;
  }
}

.fz20 {
  font-size: 20px;
}

@media screen and (max-width: 550px) {
  .fz20 {
    font-size: 17px;
  }
}

.fz22 {
  font-size: 22px;
}

@media screen and (max-width: 550px) {
  .fz22 {
    font-size: 18px;
  }
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fz27 {
  font-size: 27px;
}

@media screen and (max-width: 550px) {
  .fz27 {
    font-size: 18px;
  }
}

.fz30 {
  font-size: 30px;
}

@media screen and (max-width: 550px) {
  .fz30 {
    font-size: 22px;
  }
}

.fz36 {
  font-size: 36px;
}

@media screen and (max-width: 550px) {
  .fz36 {
    font-size: 26px;
  }
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.line1 {
  line-height: 1;
}

.line12 {
  line-height: 1.2;
}

.line14 {
  line-height: 1.4;
}

.line16 {
  line-height: 1.6;
}

.line2 {
  line-height: 2;
}

.line18 {
  line-height: 1.8;
}

.line24 {
  line-height: 2.4;
}

.line26 {
  line-height: 2.6;
}

.letter006e {
  letter-spacing: 0.06em;
}

.letter008e {
  letter-spacing: 0.08em;
}

.w100p {
  width: 100%;
}

.w50p {
  width: 50%;
}

.w250 {
  width: 250px;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

.fit-content {
  width: -moz-fit-content;
  /* Firefox旧バージョン対応 */
  width: -webkit-fit-content;
  width: fit-content;
}

.underLine {
  border-bottom: 1px solid #463933;
}

.underLine-accent {
  border-bottom: 1px solid #DD591A;
}

.t-red {
  color: #FF0000;
}

.t-white {
  color: #fff;
}

.t-accent {
  color: #DD591A;
}

.hidden {
  overflow: hidden;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.radius19 {
  border-radius: 19px;
}

.radius30 {
  border-radius: 30px;
}

@media screen and (max-width: 550px) {
  .radius30 {
    border-radius: 20px;
  }
}

.radius39 {
  border-radius: 39px;
}

@media screen and (max-width: 768px) {
  .radius39 {
    border-radius: 30px;
  }
}

@media screen and (max-width: 550px) {
  .radius39 {
    border-radius: 20px;
  }
}

.radius50 {
  border-radius: 50px;
}

@media screen and (max-width: 768px) {
  .radius50 {
    border-radius: 30px;
  }
}

@media screen and (max-width: 550px) {
  .radius50 {
    border-radius: 20px;
  }
}

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

_common.scss

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

html {
  scroll-behavior: smooth;
}

body {
  word-break: break-word;
  color: #463933;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  line-height: 2;
  letter-spacing: 0.06em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #FDF7E8;
}

.subfont {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.12em;
}

.subfont-maru {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #463933;
}

a:hover,
button:hover {
  opacity: 0.7;
  transition: 0.15s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (max-width: 1024px) {
  .pc-img {
    display: none;
  }
}

.n-pc-img {
  display: none;
}

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

.tab-img {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-img {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .n-tab-img {
    display: none;
  }
}

.mid-img {
  display: none;
}

@media screen and (max-width: 550px) {
  .mid-img {
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .n-mid-img {
    display: none;
  }
}

.sp-img {
  display: none;
}

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

@media screen and (max-width: 428px) {
  .n-sp-img {
    display: none;
  }
}

.wrapper {
  width: 1320px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapperS {
  width: 1160px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapper1500 {
  width: 1500px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1024px) {
  .pc-br {
    display: none;
  }
}

.n-pc-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .n-pc-br {
    display: inline-block;
  }
}

.tab-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-br {
    display: inline-block;
  }
}

.mid-br {
  display: none;
}

@media screen and (max-width: 550px) {
  .mid-br {
    display: inline-block;
  }
}

@media screen and (max-width: 550px) {
  .n-mid-br {
    display: none;
  }
}

.sp-br {
  display: none;
}

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

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 480px;
  position: relative;
  border-radius: 30px;
  border: 1px solid #E4DCC5;
}

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

.c-mt110 {
  margin-top: 110px;
}

@media screen and (max-width: 550px) {
  .c-mt110 {
    margin-top: 60px;
  }
}

.c-mt125 {
  margin-top: 125px;
}

@media screen and (max-width: 550px) {
  .c-mt125 {
    margin-top: 80px;
  }
}

.c-mt120 {
  margin-top: 120px;
}

@media screen and (max-width: 550px) {
  .c-mt120 {
    margin-top: 80px;
  }
}

.c-mt145 {
  margin-top: 145px;
}

@media screen and (max-width: 550px) {
  .c-mt145 {
    margin-top: 80px;
  }
}

.c-mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 550px) {
  .c-mt100 {
    margin-top: 80px;
  }
}

.c-mt150 {
  margin-top: 150px;
}

@media screen and (max-width: 768px) {
  .c-mt150 {
    margin-top: 110px;
  }
}

@media screen and (max-width: 550px) {
  .c-mt150 {
    margin-top: 80px;
  }
}

.c-mb120 {
  margin-bottom: 120px;
}

@media screen and (max-width: 550px) {
  .c-mb120 {
    margin-bottom: 80px;
  }
}

.c-pt100 {
  padding-top: 100px;
}

@media screen and (max-width: 550px) {
  .c-pt100 {
    padding-top: 80px;
  }
}

.c-pt120 {
  padding-top: 120px;
}

@media screen and (max-width: 550px) {
  .c-pt120 {
    padding-top: 80px;
  }
}

.c-pt160 {
  padding-top: 160px;
}

@media screen and (max-width: 768px) {
  .c-pt160 {
    padding-top: 110px;
  }
}

@media screen and (max-width: 550px) {
  .c-pt160 {
    padding-top: 80px;
  }
}

.c-pt170 {
  padding-top: 170px;
}

@media screen and (max-width: 768px) {
  .c-pt170 {
    padding-top: 110px;
  }
}

@media screen and (max-width: 550px) {
  .c-pt170 {
    padding-top: 80px;
  }
}

.c-pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 550px) {
  .c-pb100 {
    padding-bottom: 80px;
  }
}

.c-pb120 {
  padding-bottom: 120px;
}

@media screen and (max-width: 550px) {
  .c-pb120 {
    padding-bottom: 80px;
  }
}

.c-pb150 {
  padding-bottom: 150px;
}

@media screen and (max-width: 550px) {
  .c-pb150 {
    padding-bottom: 80px;
  }
}

.c-pb180 {
  padding-bottom: 180px;
}

@media screen and (max-width: 550px) {
  .c-pb180 {
    padding-bottom: 120px;
  }
}

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #f6f6f6;
}

.bg-orange {
  background: #FBEECE;
}

.bg-l-orange {
  background: #FDF7E8;
}

.color-accent {
  color: #DD591A;
}

.color-white {
  color: #fff;
}

.letter006e {
  letter-spacing: 0.06em;
}

.btn-style01 {
  width: 100%;
  max-width: 500px;
  position: relative;
  display: block;
  color: #fff;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease-out;
  font-size: 22px;
  line-height: 96px;
  padding: 0 60px 0 45px;
  border: 2px solid #DD5B1D;
}

@media screen and (max-width: 550px) {
  .btn-style01 {
    padding-left: 25px;
    font-size: 18px;
    line-height: 88px;
  }
}

.btn-style01.small {
  font-size: 18px;
  line-height: 66px;
  padding: 0 50px 0 30px;
}

.btn-style01.small.vertical {
  font-size: 18px;
  width: 70px;
  padding: 40px 0 55px;
  writing-mode: vertical-lr;
  height: 270px;
}

.btn-style01.small.vertical::before {
  width: calc(100% + 4px);
  left: -2px;
  background: rgb(221, 90, 27);
  background: linear-gradient(201deg, rgb(221, 90, 27) 1%, rgb(233, 142, 23) 98%);
}

.btn-style01.small.vertical::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  top: unset;
  right: unset;
}

.btn-style01 span {
  position: relative;
}

.btn-style01::before {
  background: rgb(233, 142, 23);
  background: linear-gradient(201deg, rgb(233, 142, 23) 7%, rgb(221, 90, 27) 60%);
  content: "";
  height: calc(100% + 4px);
  left: -2px;
  position: absolute;
  top: -2px;
  transition: all 0.3s ease-out;
  width: calc(100% + 4px);
  border-radius: 100px;
}

.btn-style01:hover {
  color: #DD591A;
}

.btn-style01:hover::before {
  opacity: 0;
}

.btn-style01::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061";
  font-size: 18px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 550px) {
  .btn-style01::after {
    right: 20px;
  }
}

.btn-style01.small::after {
  right: 22px;
}

.btn-style02 {
  width: 100%;
  max-width: 500px;
  position: relative;
  display: block;
  color: #DD591A;
  background: rgb(221, 90, 27);
  background: linear-gradient(201deg, rgb(221, 90, 27) 1%, rgb(233, 142, 23) 98%);
  border-radius: 100px;
  transition: all 0.3s ease-out;
  font-size: 22px;
  line-height: 1;
}

.btn-style02 .btn-inner {
  position: relative;
  width: 100%;
  display: block;
  padding: 21px 60px 21px 45px;
  height: 100%;
}

@media screen and (max-width: 550px) {
  .btn-style02 .btn-inner {
    padding-left: 25px;
  }
}

.btn-style02::before {
  background-color: #fff;
  content: "";
  border: 2px solid #DD591A;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease-out;
  width: 100%;
  border-radius: 100px;
}

.btn-style02:hover {
  color: #fff !important;
}

.btn-style02:hover::before {
  opacity: 0;
}

.btn-style02 .mask-img {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 28px;
  aspect-ratio: 1/1;
  background-color: #DD591A;
  -webkit-mask-image: url("img/common/footer-tel_2x.png");
  mask-image: url("img/common/footer-tel.png");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  /*初期値はauto*/
}

@media screen and (max-width: 550px) {
  .btn-style02 .mask-img {
    right: 20px;
  }
}

.btn-style02:hover .mask-img {
  background-color: #fff;
}

.btn-style02 .subfont {
  font-size: 42px;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 550px) {
  .btn-style02 .subfont {
    font-size: 27px;
  }
}

.btn-style02 .time {
  display: block;
  margin-top: 3px;
}

.btn-style03 {
  font-size: 14px;
  position: relative;
  padding-right: 20px;
  transition: 0.2s;
}

.btn-style03:hover {
  opacity: 1;
  color: #DD591A;
}

.btn-style03 i {
  font-size: 11px;
  color: #DD591A;
  display: block;
  width: 18px;
  line-height: 16px;
  border: 1px solid #DD591A;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

.btn-style03:hover i {
  background-color: #DD591A;
  color: #fff;
}

.btn-style04 {
  /* width: 210px; */
  width: 230px;
  max-width: 100%;
  border-bottom: 2px dotted #463933;
  padding-bottom: 8px;
  position: relative;
  display: block;
  transition: 0.2s;
}

.btn-style04::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0d7";
  position: absolute;
  transition: 0.3s;
  top: 0;
  right: 0;
  font-size: 15px;
}

.btn-style04.two-line::after {
  top: 50%;
  transform: translateY(-50%);
}

.btn-style04:hover {
  color: #DD591A;
}

.btn-style05 {
  width: 100%;
  max-width: 600px;
  position: relative;
  display: block;
  color: #fff;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease-out;
  font-size: 22px;
  line-height: 86px;
  padding: 0 45px;
  border: 2px solid #DD5B1D;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .btn-style05 {
    padding: 0 25px;
    font-size: 18px;
    line-height: 78px;
  }
}

.btn-style05 span {
  position: relative;
}

.btn-style05::before {
  background: rgb(233, 142, 23);
  background: linear-gradient(201deg, rgb(233, 142, 23) 7%, rgb(221, 90, 27) 60%);
  content: "";
  height: calc(100% + 4px);
  left: -2px;
  position: absolute;
  top: -2px;
  transition: all 0.3s ease-out;
  width: calc(100% + 4px);
  border-radius: 100px;
}

.btn-style05:hover {
  color: #DD591A;
}

.btn-style05:hover::before {
  opacity: 0;
}

.btn-style05::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f060";
  font-size: 18px;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 550px) {
  .btn-style05::after {
    left: 20px;
  }
}

.table_style01 {
  display: flex;
  flex-wrap: wrap;
}

.table_style01 dt,
.table_style01 dd {
  padding: 21px 0;
  border-bottom: 1px solid #E4DCC5;
}

.table_style01 dt:first-of-type,
.table_style01 dd:first-of-type {
  border-top: 1px solid #E4DCC5;
}

.table_style01 dt {
  width: 195px;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .table_style01 dt {
    width: 100%;
    padding-right: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.table_style01 dd {
  width: calc(100% - 195px);
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .table_style01 dd:first-of-type {
    border-top: none;
  }
}

@media screen and (max-width: 768px) {
  .table_style01 dd {
    width: 100%;
    padding-top: 5px;
  }
}

.list-style01 li {
  position: relative;
  padding-left: 18px;
}

.list-style01 li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DD591A;
  position: absolute;
  left: 0;
  top: 12px;
}

.bottom-radius-box {
  position: relative;
}

.bottom-radius-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #FDF7E8;
  border-top-left-radius: 39px;
  border-top-right-radius: 39px;
}

.bottom-radius-box.dark::after {
  background: #FBEECE;
}

.ttl-style01 {
  font-size: 38px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-weight: 500;
  position: relative;
  padding-top: 25px;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .ttl-style01 {
    font-size: 30px;
  }
}

.ttl-style01::before {
  content: url(img/common/ttl-deco.png);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
}

.ttl-style01 .subfont {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.ttl-style02 {
  font-size: 38px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-weight: 500;
  position: relative;
  padding-right: 25px;
  width: -moz-fit-content;
  /* Firefox旧バージョン対応 */
  width: -webkit-fit-content;
  width: fit-content;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 550px) {
  .ttl-style02 {
    font-size: 30px;
  }
}

.ttl-style02::before {
  content: url(img/common/ttl-deco-vertical.png);
  position: absolute;
  right: -25px;
  top: 0;
}

.ttl-style02 .subfont {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-right: 10px;
}

.ttl-style03 {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
}

.ttl-style03 .subfont {
  color: #DD591A;
  display: block;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 600;
}

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

_header.scss

***************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 17px 40px;
}

@media screen and (max-width: 1024px) {
  .header {
    padding: 0 !important;
    padding-left: 20px !important;
  }
}

.header * {
  transition: 0.3s;
}

.hd__logo {
  max-width: 337px;
  width: 100%;
  line-height: 1;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .hd__logo {
    margin-right: 15px;
    position: relative;
    z-index: 9999;
    width: calc(100% - 100px);
  }
}

.gnav {
  margin-left: auto;
  max-width: 767px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .gnav {
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 73px);
    padding: 50px 30px;
    position: fixed;
    top: 73px;
    left: 0;
    top: -120%;
    transition: all 0.6s;
    overflow-y: scroll;

    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    justify-content: flex-end;
  }

  .gnav.open {
    top: 73px;
    z-index: 998;
  }
}

.gnav .head_tel {
  font-weight: 500;
  margin-left: auto;
  width: -moz-fit-content;
  /* Firefox旧バージョン対応 */
  width: -webkit-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1024px) {
  .gnav .head_tel {
    margin-right: auto;
  }
}

.gnav .head_tel a {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .gnav .head_tel a {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}

@media screen and (max-width: 1024px) {
  .gnav .head_tel a .fz13 {
    display: block;
    width: 100%;
  }
}

.gnav__list {
  display: flex;
  justify-content: space-between;
  line-height: 1;
}

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

.gnav__list li:not(:last-of-type).current a {
  color: #DD591A;
}

.gnav__list li:not(:last-of-type).current a::before {
  transform: scale(1, 1);
}

.gnav__list li:not(:last-of-type).current a .icon {
  display: none;
}

.gnav__list li:not(:last-of-type).current a .icon-hover {
  display: inline-block;
}

.gnav__list li a {
  display: block;
  position: relative;
  font-weight: 500;
}

.gnav__list li a .icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.gnav__list li:not(:last-of-type) a {
  padding-top: 36px;
  padding-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .gnav.open .gnav__list li:not(:last-of-type) a {
    margin-bottom: 15px;
    padding-top: 15px;
    padding-left: 50px;
  }
   .gnav.open .gnav__list li a{
    position: relative;
   }
   .gnav.open .gnav__list .icon,
    .gnav.open .gnav__list .icon-hover{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
   }

   .gnav.open .gnav__list li {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

   .gnav.open .gnav__list a {
    width: 100%;
  }

  .gnav.open .gnav__list li:last-of-type a span {
     padding: 23px 16px 23px;
     padding-left: 50px;
  }


}

.gnav__list li:not(:last-of-type) a::before {
  border-bottom: 2.5px dotted #DD591A;
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.gnav__list li:not(:last-of-type) a:hover::before {
  transform: scale(1, 1);
  transform-origin: center top;
}

.gnav__list li:not(:last-of-type) a:hover {
  color: #DD591A;
  opacity: 1;
}

.gnav__list li:not(:last-of-type) a:hover .icon {
  display: none;
}

.gnav__list li:not(:last-of-type) a .icon-hover {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.gnav__list li:not(:last-of-type) a:hover .icon-hover {
  display: inline-block;
}

.gnav__list li:last-of-type a {
  color: #fff;
  background: rgb(221, 90, 27);
  background: linear-gradient(201deg, rgb(221, 90, 27) 33%, rgb(222, 96, 27) 68%, rgb(233, 142, 23) 90%);
  border-radius: 20px;
  transition: 0.3s;
}

.gnav__list li:last-of-type a span {
  position: relative;
  padding: 57px 16px 23px;
  display: block;
  z-index: 1;
}

.gnav__list li:last-of-type a::after {
  background: rgb(233, 142, 23);
  background: linear-gradient(201deg, rgb(233, 142, 23) 7%, rgb(221, 90, 27) 60%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%;
  border-radius: 20px;
}

.gnav__list li:last-of-type a .icon {
  top: 22px;
}

.header.scroll {
  -webkit-animation: fadeIn 0.7s forwards;
  animation: fadeIn 0.7s forwards;
  padding: 0;
  padding-left: 40px;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .header .hd__logo .before {
    position: fixed;
    left: 0;
    top: 0;
    padding: 35px 40px 40px;
    background-color: #fff;
    border-bottom-right-radius: 15px;
  }

  .header.scroll .hd__logo {
    position: unset;
    position: static;
    padding: 0;
    background-color: transparent;
  }

  .header.scroll .header_inner {
    justify-content: space-between;
  }

  .hd__logo .after {
    display: none;
  }

  .header.scroll .hd__logo .after {
    display: block;
  }

  .header .hd__logo .before {
    display: block;
  }

  .header.scroll .hd__logo .before {
    display: none;
  }

  .header.scroll .head_tel {
    display: none;
  }

  .header.scroll .gnav__list li:not(:last-of-type) {
    padding-top: 13px;
  }

  .header.scroll .gnav__list li:last-of-type a {
    border-radius: 0px;
  }

  .header.scroll .gnav__list li:last-of-type a::after {
    border-radius: 0px;
  }
}

@media screen and (max-width: 1024px) {
  .header .hd__logo .before {
    display: none;
  }

  .header .hd__logo .after {
    padding: 12px 0;
  }
}

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

@media screen and (max-width: 1024px) {
  .toggle {
    cursor: pointer;
    display: inline-block;
    background: rgb(233, 142, 23);
    background: linear-gradient(201deg, rgb(233, 142, 23) 7%, rgb(221, 90, 27) 60%);
    border-radius: 100%;
    border: none;
    outline: none;
    /* position: absolute; */
    position: fixed;
    top: 0;
    right: 0;
    padding: 21px 15px;
    right: 20px;
    text-align: center;
    top: 8px;
    z-index: 7;
  }

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

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

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

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

  .toggle__bar::after {
    top: 10px;
  }

  .toggle__title {
    font-size: 10px;
    font-size: 1rem;
    display: block;
    padding-top: 5px;
    width: 4em;
    white-space: nowrap;
  }
}

.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  transform: translateY(10px) rotate(45deg);
}

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

@media screen and (max-width: 425px) {
  .under .toggle {
    padding: 16px 10px;
    top: 5px;
  }
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.gnav__toggle_wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.gnav__toggle_wrapper span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
}

.gnav__toggle_block.active .gnav__toggle_wrapper span {
  background-color: #fff;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.gnav__toggle_wrapper span:nth-of-type(1),
.gnav__toggle_wrapper span:nth-of-type(3) {
  height: 2px;
  background: #fff;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 550px) {

  .gnav__toggle_wrapper span:nth-of-type(1),
  .gnav__toggle_wrapper span:nth-of-type(3) {
    width: 80%;
  }
}

.gnav__toggle_wrapper span:nth-of-type(1) {
  top: 28px;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(1) {
    top: 19px;
  }
}

.gnav__toggle_wrapper span:nth-of-type(2) {
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(2) {
    font-size: 0.7rem;
    top: 25px;
  }
}

.gnav__toggle_wrapper span:nth-of-type(3) {
  top: 59px;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(3) {
    top: 46px;
  }
}

.gnav__toggle_block.active span:nth-of-type(1) {
  top: 39px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 70%;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_block.active span:nth-of-type(1) {
    top: 26px;
    left: 7px;
  }
}

.gnav__toggle_block.active span:nth-of-type(2) {
  opacity: 0;
}

.gnav__toggle_block.active span:nth-of-type(3) {
  top: 51px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 70%;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_block.active span:nth-of-type(3) {
    top: 38px;
    left: 7px;
  }
}

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

_under-common.scss

***************************/
.under_mv {
  position: relative;
  padding-top: 250px;
  z-index: 1;
  padding-bottom: 60px;
}

@media screen and (max-width: 550px) {
  .under_mv {
    padding-top: 130px;
  }
}

.under_mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(img/common/under-mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.under_mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #FDF7E8;
  border-top-left-radius: 39px;
  border-top-right-radius: 39px;
}

.under_mv .wrapper {
  position: relative;
}

.under_mv .main-ttl {
  color: #DD591A;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 550px) {
  .under_mv .main-ttl {
    font-size: 36px;
  }
}

.under_mv .main-ttl img {
  padding-right: 18px;
}

.under_mv .ttl-eng {
  position: absolute;
  left: 15px;
  bottom: -2px;
  z-index: -1;
}

.inside_link_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 15px 42px;
  width: 466px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.inside_link_list.col3 {
  /* width: 725px; */
  width: 770px;
}

.inside_link_list li {
  /* width: 227px; */
  width: 230px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.breadcrumb {
  margin-left: auto;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding-bottom: 15px;
}

@media screen and (max-width: 550px) {
  .breadcrumb {
    margin-top: 50px;
  }
}

.breadcrumb__list {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 600px;
}

.breadcrumb__list li:nth-of-type(n+2)::before {
  content: "/";
  padding-right: 7px;
}

.breadcrumb__list li a {
  font-size: 14px;
  display: inline;
  padding-right: 7px;
  font-weight: 400;
}

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

_top.scss

***************************/
.mv_sec {
  background: url(img/top/mv-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.mv_sec .imgbox img {
  position: absolute;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  z-index: 1;
  bottom: 127px;
  right: 15px;
}

@media screen and (max-width: 1280px) {
  .mv_sec .imgbox img {
    width: 56.6666666667vw;
    bottom: 7vw;
  }
}

@media screen and (max-width: 1024px) {
  .mv_sec .imgbox img {
    width: 55.3333333333vw;
    bottom: 3vw;
  }
}

@media screen and (max-width: 768px) {
  .mv_sec .imgbox img {
    left: 0;
    margin: 0 auto;
    right: 0;
  }
}

@media screen and (max-width: 550px) {
  .mv_sec .imgbox img {
    width: 80vw;
  }
}

.mv_sec .inner {
  width: 1365px;
  padding: 0 15px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 370px;
  padding-bottom: 290px;
}

@media screen and (max-width: 1280px) {
  .mv_sec .inner {
    padding-top: 27vw;
    padding-bottom: 12vw;
  }
}

@media screen and (max-width: 1024px) {
  .mv_sec .inner {
    padding-top: 20vw;
    padding-bottom: 8vw;
  }
}

@media screen and (max-width: 768px) {
  .mv_sec .inner {
    padding-bottom: 40vw;
  }
}

@media screen and (max-width: 550px) {
  .mv_sec .inner {
    padding-bottom: 57vw;
  }
}

.mv_sec .main-copy {
  flex: 0 0 444px;
  margin-right: 25px;
}

@media screen and (max-width: 1024px) {
  .mv_sec .main-copy {
    font-size: 30px;
    flex: 0 0 360px;
  }
}

@media screen and (max-width: 768px) {
  .mv_sec .main-copy {
    flex: unset;
    margin: 0 auto 40px;
  }
}

@media screen and (max-width: 550px) {
  .mv_sec .main-copy {
    margin-top: 50px;
    font-size: 27px;
  }
}

@-webkit-keyframes floating-y {
  0% {
    transform: translateY(-3%);
  }

  100% {
    transform: translateY(3%);
  }
}

@keyframes floating-y {
  0% {
    transform: translateY(-3%);
  }

  100% {
    transform: translateY(3%);
  }
}

.top_about {
  background: url(img/top/about-bg-deco.png) no-repeat;
  background-size: auto;
  background-position: left top 63px;
}

@media screen and (max-width: 768px) {
  .top_about {
    background-size: 150px auto;
    background-position: left -20px top 13px;
  }
}

.top_about .inner {
  width: 800px;
}

.top_about_link_list {
  width: 579px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 550px) {
  .top_about_link_list {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 550px) {
  .top_about_link_list li:nth-of-type(2) {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .top_about_link_list .btn-style01 {
    width: 250px !important;
    font-size: 17px;
  }
}

.top_office_img_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.top_office_img_box .ttl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.24em;
  padding: 0 20px;
  z-index: 1;
}

@media screen and (max-width: 550px) {
  .top_office_img_box .ttl {
    font-size: 18px;
  }
}

.top_office_img_box .imgbox {
  position: relative;
}

.top_office_img_box .imgbox::before {
  content: "";
  display: block;
  width: 186px;
  height: 235px;
  background: url(img/top/office-deco01.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 10px;
  top: -50px;
}

@media screen and (max-width: 768px) {
  .top_office_img_box .imgbox::before {
    width: 100px;
    height: 130px;
  }
}

.top_office_img_box .imgbox::after {
  content: "";
  display: block;
  width: 348px;
  height: 348px;
  background: url(img/top/about-bg-deco02.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: -108px;
  top: -275px;
}

@media screen and (max-width: 1024px) {
  .top_office_img_box .imgbox::after {
    width: 190px;
    height: 190px;
    right: -20px;
    top: -150px;
  }
}

@media screen and (max-width: 768px) {
  .top_office_img_box .imgbox::after {
    top: -70px;
    right: -40px;
    width: 160px;
    height: 160px;
  }
}

@media screen and (max-width: 550px) {
  .top_office_img_box .imgbox img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.top_service {
  background: url(img/top/service-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
}

.top_service .wrapper1500 {
  position: relative;
}

.top_service .wrapper1500::before {
  content: "";
  display: block;
  width: 186px;
  height: 235px;
  background: url(img/top/office-deco02.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 30px;
  top: -360px;
}

@media screen and (max-width: 768px) {
  .top_service .wrapper1500::before {
    width: 100px;
    height: 130px;
    top: -150px;
    right: 10px;
  }
}

.top_service .wrapper {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 75px;
}

@media screen and (max-width: 1280px) {
  .top_service .wrapper {
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .top_service .wrapper {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .top_service .left_side.n-tab {
    display: none;
  }
}

.top_service .left_side.tab {
  display: none;
}

@media screen and (max-width: 768px) {
  .top_service .left_side.tab {
    display: block;
  }
}

.top_service .btn-style01.tab {
  display: none;
}

@media screen and (max-width: 768px) {
  .top_service .btn-style01.tab {
    display: block;
  }
}

.top_service_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .top_service_list {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }
}

@media screen and (max-width: 550px) {
  .top_service_list {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 15px;
  }
}

.top_service_list>li {
  background-color: #fff;
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 428px) {
  .top_service_list>li {
    padding: 30px 12px;
  }
}

@media screen and (max-width: 428px) {
  .top_service_list>li img {
    max-height: 150px;
    width: auto;
  }
}

.top_service_list .sizeL {
  min-height: 530px;
}

@media screen and (max-width: 428px) {
  .top_service_list .sizeL {
    min-height: unset;
  }
}

.top_service_list .sizeL .li_inner {
  width: 100%;
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
}

.top_service_list .sizeL:first-of-type {
  grid-row: 1/3;
  grid-column: 1/3;
}

@media screen and (max-width: 1024px) {
  .top_service_list .sizeL:first-of-type {
    grid-row: 1/3;
    grid-column: 1/3;
  }
}

.top_service_list .sizeL:nth-of-type(2) {
  grid-row: 1/3;
  grid-column: 3/5;
}

@media screen and (max-width: 1024px) {
  .top_service_list .sizeL:nth-of-type(2) {
    grid-row: 3/5;
    grid-column: 1/3;
  }
}

.top_service_list .sizeS:last-of-type {
  grid-column: 1/5;
}

@media screen and (max-width: 1024px) {
  .top_service_list .sizeS:last-of-type {
    grid-column: 1/3;
  }
}

.top_service_list .sizeS {
  min-height: 255px;
}

@media screen and (max-width: 428px) {
  .top_service_list .sizeS {
    min-height: unset;
  }
}

.top_dx_wrap {
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .top_dx_wrap {
    flex-direction: column-reverse;
  }
}

.top_dx_wrap .content-box {
  width: 430px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .top_dx_wrap .content-box {
    width: 100%;
  }
}

.top_case {
  background: url(img/top/case-bg-head.jpg) no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 550px) {
  .top_case {
    padding-right: 0;
    padding-left: 0;
  }
}

.top_case .inner {
  background: url(img/top/case-deco02.png), url(img/top/case-deco01.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left 40px bottom 0, right 40px top;
}

@media screen and (max-width: 768px) {
  .top_case .inner {
    background-size: 200px auto;
  }
}

@media screen and (max-width: 550px) {
  .top_case .inner {
    background-size: 150px auto;
    background-position: left -40px bottom 0, right -40px top;
  }
}

.top_case_swiper {
  padding-top: 55px;
  margin-top: 55px;
}

.case_item {
  border-radius: 30px;
  background: #fff;
  padding: 262px 40px 30px;
  position: relative;
  width: 100%;
  max-width: 360px;
}

@media screen and (max-width: 550px) {
  .case_item {
    padding: 190px 15px 20px;
  }
}

.case_item .thum-box {
  text-align: center;
  position: absolute;
  margin-right: auto;
  margin-left: auto;
  top: -40px;
  left: 0;
  width: 100%;
}

.case_item .thum-box::after {
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 284px;
  height: 284px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

@media screen and (max-width: 550px) {
  .case_item .thum-box::after {
    width: 224px;
    height: 224px;
  }
}

.case_item .thum-box img {
  width: 260px !important;
  height: 260px !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
}

@media screen and (max-width: 550px) {
  .case_item .thum-box img {
    width: 200px !important;
    height: 200px !important;
  }
}

.case_item .ttl {
  line-height: 1.6;
}

@media screen and (max-width: 550px) {
  .case_item .ttl {
    font-size: 18px;
  }
}

.case_item .btn-style03 {
  margin-left: auto;
  width: -moz-fit-content;
  /* Firefox旧バージョン対応 */
  width: -webkit-fit-content;
  width: fit-content;
  display: block;
  margin-top: 30px;
}

.case_item .cat_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.case_item .cat_list li {
  background-color: #D15F27;
  color: #fff;
  line-height: 1.6;
  border-radius: 5px;
  font-size: 14px;
  padding: 0 6px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.top_news {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 70px;
  /* 251203 add */
  background: url(img/top/case-bg-head.jpg) no-repeat top /100% auto;
  display: block;
}

.top_news .inner {
  /* 251203 add */
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 70px;
}

@media screen and (max-width: 1024px) {

  .top_news,
  .top_news .inner {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {

  .top_news,
  .top_news .inner {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .top_news .news_list {
    margin-top: 40px;
  }
}

.news_list li {
  border-top: 1px solid #E4DCC5;
  line-height: 1.6;
}

.news_list li:last-of-type {
  border-bottom: 1px solid #E4DCC5;
}

.news_list li a {
  padding: 30px 50px 25px 0;
  position: relative;
  display: grid;
  grid-template-columns: 127px 1fr;
  gap: 0;
  align-items: center;
}

@media screen and (max-width: 550px) {
  .news_list li a {
    display: block;
  }
}

.news_list li a:hover {
  opacity: 1;
  background-color: #FBEECE;
}

.news_list li a::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061";
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #DD591A;
  transition: 0.2s;
}

.news_list li a:hover::after {
  right: 15px;
}

.news_list time {
  color: #E8D59B;
  font-weight: 600;
  padding-right: 30px;
  display: block;
  font-size: 14px;
}

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

_footer.scss

***************************/
.pagetop {
  opacity: 0;
  transition: 0.3s;
  font-size: 21px;
  width: 71px;
  line-height: 70px;
  border: 1px solid #463A33;
  border-radius: 50%;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .pagetop {
    width: 55px;
    line-height: 54px;
    font-size: 18px;
  }
}

.pagetop.show {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .pagetop.show {
    right: 15px;
  }
}

@media screen and (max-width: 550px) {
  .pagetop.show {
    bottom: 90px;
  }
}

.pagetop.show:hover {
  opacity: 1;
  background-color: #fff;
  color: #DD591A;
  border: 1px solid #DD591A;
}

.side_contact_btn {
  opacity: 0;
  transition: 0.3s;
  font-size: 18px;
  line-height: 60px;
  border-radius: 50px;
  writing-mode: vertical-lr;
  background-color: #EDB634;
  position: relative;
  padding-top: 47px;
  padding-bottom: 27px;
}

@media screen and (max-width: 550px) {
  .side_contact_btn {
    writing-mode: horizontal-tb;
    padding: 0 70px;
    padding-left: 100px;
  }
}

.side_contact_btn .icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
}

@media screen and (max-width: 550px) {
  .side_contact_btn .icon {
    left: 40px;
    top: 23px;
    transform: none;
  }
}

.side_contact_btn::after {
  content: "";
  display: block;
  width: 65px;
  height: 106px;
  background: url(img/common/side-illust_2x.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: -20px;
  bottom: -76px;
}

@media screen and (max-width: 550px) {
  .side_contact_btn::after {
    right: -19px;
    bottom: -13px;
    width: 50px;
    height: 80px;
  }
}

.side_contact_btn.show {
  position: fixed;
  right: 20px;
  top: 110px;
  z-index: 99;
  opacity: 1;
}

@media screen and (max-width: 550px) {
  .side_contact_btn.show {
    left: 0;
    right: 0;
    margin: auto;
    top: unset;
    bottom: 10px;
    width: -moz-fit-content;
    /* Firefox旧バージョン対応 */
    width: -webkit-fit-content;
    width: fit-content;
  }
}

.side_contact_btn.show:hover {
  opacity: 0.8;
}

.footer {
  background-color: #FDF7E8;
  padding-bottom: 140px;
  position: relative;
}

.footer::after {
  content: "";
  width: 100%;
  height: 450px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  background: url(img/common/footer-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 550px) {
  .footer::after {
    height: 75%;
    background-position: center;
  }
}

.footer .inner {
  background-color: #fff;
  border-radius: 30px;
  z-index: 1;
  position: relative;
  padding: 90px 90px 0;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1366px) {
  .footer .inner {
    padding: 50px 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .footer .inner {
    padding: 50px 15px 0;
  }
}

.footer .wrapper {
  max-width: 95%;
}

@media screen and (max-width: 550px) {
  .footer .wrapper {
    max-width: 97%;
  }
}

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

.footer_content a:hover {
  color: #DD591A;
  opacity: 1;
}

.footer_content .info {
  flex: 0 0 451px;
  padding-bottom: 80px;
}

@media screen and (max-width: 1280px) {
  .footer_content .info {
    flex: 0 0 380px;
  }
}

@media screen and (max-width: 1024px) {
  .footer_content .info {
    flex: unset;
    padding-bottom: 40px;
    width: -moz-fit-content;
    /* Firefox旧バージョン対応 */
    width: -webkit-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer_content .footer_nav {
  width: 100%;
  max-width: 391px;
  margin-top: 60px;
}

@media screen and (max-width: 550px) {
  .footer_content .footer_nav {
    margin-top: 30px;
  }
}

.footer_content .footer_nav li {
  padding: 0 10px 20px 0;
  position: relative;
  line-height: 1.2;
}

@media screen and (max-width: 550px) {
  .footer_content .footer_nav li {
    margin-right: 20px !important;
  }
}

.footer_content .footer_nav li:nth-of-type(1),
.footer_content .footer_nav li:nth-of-type(4) {
  width: 133px;
}

@media screen and (max-width: 428px) {

  .footer_content .footer_nav li:nth-of-type(1),
  .footer_content .footer_nav li:nth-of-type(4) {
    width: unset;
  }
}

.footer_content .footer_nav li:not(:nth-of-type(3n)) {
  margin-right: 30px;
}

@media screen and (max-width: 428px) {
  .footer_content .footer_nav li:nth-of-type(odd) {
    width: 133px;
  }
}

.footer_content .footer_nav li:hover a {
  color: #DD591A;
  opacity: 1;
}

.footer_link_list_wrap {
  position: relative;
  padding-left: 38px;
  flex: 1 1 auto;
  width: 100%;
  max-width: 540px;
  margin-left: 30px;
}

@media screen and (max-width: 1024px) {
  .footer_link_list_wrap {
    flex: unset;
    padding-bottom: 50px;
    max-width: 540px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 550px) {
  .footer_link_list_wrap {
    padding-left: 0;
    padding-bottom: 30px;
  }
}

.footer_link_list_wrap .msg {
  position: absolute;
  left: 0;
  top: 0;
  writing-mode: vertical-lr;
  color: #DD591A;
}

@media screen and (max-width: 550px) {
  .footer_link_list_wrap .msg {
    position: static;
    writing-mode: horizontal-tb;
    width: -moz-fit-content;
    /* Firefox旧バージョン対応 */
    width: -webkit-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 25px;
  }
}

.footer_link_list_wrap .btn-style01 {
  margin-top: 18px;
}

.footer_copy {
  padding: 10px 15px;
  border-top: 1px solid #E4DCC5;
  font-weight: 600;
  color: #BFA181;
  line-height: 1.2;
}

.ttl-style04 {
  color: #fff;
  background-color: #463933;
  font-size: 27px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 14px 48px;
  border-radius: 9px;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.1);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 550px) {
  .ttl-style04 {
    flex-direction: column;
    font-size: 24px;
  }
}

.ttl-style04.orange {
  background-color: #DD5B1C;
}

.ttl-style04 .ja {
  position: relative;
  padding-left: 46px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .ttl-style04 .ja {
    padding-left: 0;
    line-height: 1.4;
  }
}

.ttl-style04 .ja::before {
  content: url(img/common/dot.png);
  position: absolute;
  left: 18px;
  top: -3px;
}

@media screen and (max-width: 550px) {
  .ttl-style04 .ja::before {
    left: -23px;
  }
}

.ttl-style04 .subfont {
  font-size: 16px;
  font-weight: 600;
}

.layout-style01 {
  border-radius: 29px;
  border: 1px solid #463933;
  background-color: #fff;
  padding: 60px 65px;
  position: relative;
}

.layout-style01 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .layout-style01 {
    padding: 60px 30px 40px;
  }
}

@media screen and (max-width: 550px) {
  .layout-style01 {
    padding: 100px 15px 30px;
    border-radius: 20px;
  }
}

.layout-style01.orange {
  background-color: #FBEECE;
}

.layout-style01 .ttl-style04 {
  /* position: absolute;
  top: -30px;
  right: 0;
  left: 0; */
  margin: auto;
  margin-bottom: 30px;
}

.layout-style01_wrap {
  border-top: 1px dotted #463933;
  padding-top: 40px;
}

.layout-style01_wrap:first-child {
  border-top: none;
  padding-top: 0;
}

.layout-style02 {
  border: 1px solid #463933;
  background-color: #fff;
}

.layout-style02 .inner {
  padding: 40px;
  padding-top: 25px;
}

@media screen and (max-width: 550px) {
  .layout-style02 .inner {
    padding: 25px 15px;
  }
}

.layout-style02 .ttl {
  background-color: #463933;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-align: center;
  line-height: 63px;
}

.list-style02 li {
  padding: 20px 0;
  border-bottom: 1px solid #E4DCC5;
}

.list-style02 li:first-of-type {
  border-top: 1px solid #E4DCC5;
}

.box-style01 {
  border: 10px solid #FDF7E8;
  border-radius: 19px;
  padding: 30px 15px;
  text-align: center;
}

.box-style01 .price_box {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 400;
}

.box-style01 .price_box .bd {
  font-size: 16px;
  border: 1px solid #463933;
  border-radius: 4px;
  display: inline-block;
  margin-right: 12px;
  line-height: 28px;
  width: 44px;
  font-weight: 500;
}

.box-style01 .price_box .subfont {
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-right: 2px;
}

@media screen and (max-width: 550px) {
  .box-style01 .price_box .fz36 {
    font-size: 33px;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 20px;
  color: #BFA181;
  background-color: #FBEECE;
  margin: 0 7px 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  text-decoration: none;
  padding: 0;
  font-weight: 600;
  border: 0;
  border-radius: 6px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
  color: #fff;
  background-color: #D15F27;
  opacity: 1;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi span.nextpostslink {
  position: relative;
  background: none;
  border: none;
}

.wp-pagenavi a.nextpostslink:hover,
.wp-pagenavi span.nextpostslink:hover {
  color: #DD591A;
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi span.previouspostslink {
  position: relative;
  background: none;
  border: none;
}

.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi span.previouspostslink:hover {
  color: #DD591A;
}

.wp-pagenavi span.current {
  color: #fff;
  background-color: #D15F27;
}

.wp-pagenavi span.extend {
  background: none;
}

.wp-pagenavi .pages {
  display: none;
}

.under_news_detail .main-ttl {
  border-bottom: 1px solid #E4DCC5;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  line-height: 1.7;
  margin-bottom: 90px;
  margin-top: 20px;
}

@media screen and (max-width: 550px) {
  .under_news_detail .main-ttl {
    margin-bottom: 60px;
  }
}

.case_cat_list {
  justify-content: center;
  position: relative;
}

.case_cat_list li a {
  display: block;
  line-height: 50px;
  width: 150px;
  text-align: center;
  border-radius: 6px;
  background-color: #FBEECE;
  color: #BFA181;
  margin: 0 10px 10px;
}

.case_cat_list li a:hover {
  color: #fff;
  background-color: #DD591A;
}

.case_cat_list li.current a {
  color: #fff;
  background-color: #DD591A;
}

.under_case_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 80px 20px;
}

@media screen and (max-width: 1024px) {
  .under_case_list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.under_case_list>li {
  width: 100%;
  max-width: 417px;
  margin-right: auto;
  margin-left: auto;
}

.under_case_list::before {
  content: "";
  width: calc((100% - 75px) / 4);
  order: 1;
}

.under_case_list::after {
  content: "";
  width: calc((100% - 75px) / 4);
}

.detail_cat_list {
  display: flex;
  flex-wrap: wrap;
}

.detail_cat_list li {
  background-color: #D15F27;
  color: #fff;
  line-height: 1.6;
  border-radius: 5px;
  padding: 0 6px;
  margin-left: 10px;
}

.under_case_detail .case_num {
  font-weight: 600;
  line-height: 1;
  padding-right: 7px;
}

.under_case_detail .main-ttl {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  text-underline-offset: 10px;
}

.under_case_detail .consul-cont {
  position: relative;
  margin-bottom: 110px;
}

.under_case_detail .consul-cont::after {
  content: url(img/common/arrow.png);
  position: absolute;
  bottom: -66px;
  left: 50%;
  transform: translateX(-50%);
}

.under_case_detail .consul-cont .inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 45px;
}

@media screen and (max-width: 768px) {
  .under_case_detail .consul-cont .inner {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .under_case_detail .consul-cont .inner .thum-box {
    text-align: center;
    margin-bottom: 30px;
  }
}

.under_case_detail .consul-cont .inner .thum-box img {
  width: 240px;
  height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.under_case_detail .answer-cont .idea {
  border-top: 1px solid #E4DCC5;
}

.under_case_detail .answer-cont .ttl {
  margin-bottom: 5px;
}

.similar_case .under_case_list {
  gap: 80px 40px;
}

.similar_case .under_case_list>li {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.phone-box {
  padding: 57px 30px;
}

@media screen and (max-width: 550px) {
  .phone-box {
    padding: 45px 15px;
    text-align: center;
  }
}

.phone-box .inner {
  max-width: 100%;
  width: 900px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}

.phone-box .subfont {
  font-size: 55px;
  padding-left: 15px;
  padding-right: 60px;
  letter-spacing: 0.06em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .phone-box .subfont {
    font-size: 40px;
    padding-right: 0;
  }
}

@media screen and (max-width: 550px) {
  .phone-box .subfont {
    font-size: 35px;
  }
}

@media screen and (max-width: 550px) {
  .phone-box img {
    width: 30px;
  }
}

@media screen and (max-width: 768px) {
  .phone-box .fz18 {
    margin-top: 15px;
  }
}

.form_step_list {
  display: flex;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.form_step_list li {
  position: relative;
  background-color: #CCCCCC;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  line-height: 1.4;
  padding-top: 20px;
}

@media screen and (max-width: 550px) {
  .form_step_list li {
    width: 80px;
    height: 80px;
    padding-top: 15px;
  }
}

.form_step_list li+li {
  margin-left: 94px;
}

@media screen and (max-width: 550px) {
  .form_step_list li+li {
    margin-left: 45px;
  }
}

.form_step_list li:not(:first-of-type)::before {
  position: absolute;
  content: url(img/common/arrow-r-gray.png);
  left: -58px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 550px) {
  .form_step_list li:not(:first-of-type)::before {
    left: -35px;
  }
}

.form_step_list .done {
  background-color: #DD591A;
}

.form_step_list li.done:not(:first-of-type)::before {
  content: url(img/common/arrow-r.png);
}

.contact_thanks_sec .content-box {
  padding: 100px 140px;
}

@media screen and (max-width: 768px) {
  .contact_thanks_sec .content-box {
    padding: 60px 30px;
  }
}

.contact_thanks_sec .btn-style05_wrap {
  border-top: 1px solid #E4DCC5;
  width: 750px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.form_wrap {
  padding: 65px 90px 110px;
}

@media screen and (max-width: 1024px) {
  .form_wrap {
    padding: 45px 30px 60px;
  }
}

@media screen and (max-width: 550px) {
  .form_wrap {
    padding: 10px 15px 40px;
  }
}

@media screen and (max-width: 550px) {
  .form_wrap .btn-style01 {
    line-height: 66px !important;
  }
}

.p-contact__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid #E4DCC5;
  padding-bottom: 40px;
}

@media screen and (max-width: 550px) {
  .p-contact__form {
    padding: 0;
  }
}

.p-contact__form .form_item {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .p-contact__form .form_item {
    width: 100%;
  }
}

.p-contact__form .form_item.full {
  width: 100%;
}

.p-contact__form__dt {
  padding-right: 20px;
  font-size: 19.2px;
  margin-bottom: 7px;
  margin-top: 35px;
  position: relative;
  padding-left: 65px;
}

.p-contact__form__dd {
  font-weight: 400;
}

.must {
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  line-height: 23px;
  width: 54px;
  display: inline-block;
  text-align: center;
  background: #DD591A;
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 100px;
}

.p-contact__form__dd input,
.p-contact__form__dd textarea,
.p-contact__form__dd select {
  padding: 17px 25px;
  width: 100%;
  border: 1px solid #E4DCC5;
  background-color: #fff;
  border-radius: 14px;
}

.p-contact__form__dd input::-moz-placeholder,
.p-contact__form__dd textarea::-moz-placeholder,
.p-contact__form__dd select::-moz-placeholder {
  color: #A38B7F;
}

.p-contact__form__dd input::placeholder,
.p-contact__form__dd textarea::placeholder,
.p-contact__form__dd select::placeholder {
  color: #A38B7F;
}

textarea {
  height: 280px;
}

.contact__confirm {
  width: 362px;
  margin-right: auto;
  margin-left: auto;
  line-height: 81px;
  display: block;
  background-color: #D5ECC8;
  font-weight: bold;
  border-radius: 50px;
}

.mwform-radio-field {
  margin-right: 35px;
  padding: 0 0 13px;
}

.mwform-radio-field input[type=radio] {
  display: none;
}

.mwform-radio-field label {
  position: relative;
  display: inline-block;
  padding-left: 31px;
  cursor: pointer;
}

.mwform-radio-field input[type=radio]+span::before,
.mwform-radio-field span::after {
  position: absolute;
  content: "";
  top: 50%;
  border-radius: 100%;
  transition: all 0.2s;
}

.mwform-radio-field input[type=radio]+span::before {
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -11px;
  background: #fff;
  border: 1px solid #D8DEE2;
}

.mwform-radio-field input[type=radio]:checked+span::before {
  border: 1px solid #DD591A;
}

.mwform-radio-field input[type=radio]+span::after {
  opacity: 0;
  left: 3px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #DD591A;
}

.mwform-radio-field input[type=radio]:checked+span::after {
  opacity: 1;
}

.privacy__box {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  position: relative;
}

.privacy__box label {
  display: inline-block;
  padding: 3px;
  padding-left: 7px;
  cursor: pointer;
}

.privacy__box input[type=checkbox] {
  display: none;
}

.privacy__box input[type=checkbox]+span::before {
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #C7CDD1;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
  background-color: #fff;
  border-radius: 5px;
}

.privacy__box input[type=checkbox]:checked+span::before {
  background-color: #463933;
}

.privacy__box input[type=checkbox]+span::after {
  opacity: 0;
  left: 8px;
  width: 7px;
  height: 12px;
  margin-top: -8px;
  border-bottom: 2px solid #1F1F1F;
  border-right: 2px solid #1F1F1F;
  border-radius: 0;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  top: 52%;
  transition: all 0.2s;
}

.privacy__box input[type=checkbox]:checked+span::after {
  opacity: 1;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.privacy__txt {
  padding-left: 10px;
}

.privacy_content {
  border: 1px solid #ccc;
  padding: 40px 30px;
  overflow-y: scroll;
  height: 290px;
  width: 686px;
  max-width: 100%;
  border-radius: 15px;
  border: 1px solid #E4DCC5;
  background-color: #fff;
}

@media screen and (max-width: 550px) {
  .privacy_content {
    padding: 30px 15px;
  }
}

.under_about_msg {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px 65px;
  /* 251203 add */
  display: block;
}

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

@media screen and (max-width: 550px) {
  .under_about_msg .imgbox {
    text-align: center;
    margin-bottom: 40px;
  }
}

.layout-style01.intro-cont .list-style02.career li {
  position: relative;
  padding-left: 72px;
}

.layout-style01.intro-cont .list-style02 li .subfont {
  position: absolute;
  left: 0;
  top: 22px;
  font-weight: 600;
}

.philo_list li {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 550px) {
  .philo_list li {
    flex-direction: column;
  }
}

.philo_list .ttl_wrap {
  flex: 0 0 150px;
  margin-right: 65px;
}

@media screen and (max-width: 550px) {
  .philo_list .ttl_wrap {
    flex: unset;
    margin-bottom: 25px;
  }
}

.philo_list .ttl {
  position: relative;
  color: #DD591A;
  border-bottom: 2px solid #DD591A;
  font-size: 27px;
  padding-left: 36px;
  line-height: 1;
  padding-bottom: 15px;
  margin-top: 5px;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.philo_list .ttl .subfont {
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
}

.philo_list .txt {
  font-weight: 400;
}

.about_logo {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 60px;
}

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

.about_logo .logo_box {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 15px;
  width: 390px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .about_logo .logo_box {
    margin-bottom: 30px;
  }
}

.top_dx_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px 20px;
  width: 517px;
  max-width: 50%;
  margin-right: 25px;
}

@media screen and (max-width: 768px) {
  .top_dx_list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
  }
}

.top_dx_list li {
  text-align: center;
}

@media screen and (max-width: 550px) {
  .under_service_contract .layout-style01 {
    padding: 120px 15px 30px;
  }
}

.basic_cont_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .basic_cont_list {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin-right: auto;
    margin-left: auto;
  }
}

.basic_cont_list li {
  width: 370px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.basic_cont_list .imgbox {
  background-color: #FBEECE;
  min-height: 247px;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 550px) {
  .basic_cont_list .imgbox {
    min-height: 200px;
    padding: 30px;
  }
}

.service_option_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px 60px;
}

@media screen and (max-width: 1280px) {
  .service_option_list {
    gap: 20px;
  }
}

@media screen and (max-width: 550px) {
  .service_option_list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-right: auto;
    margin-left: auto;
  }
}

.service_option_list>li {
  margin-top: 60px;
}

@media screen and (max-width: 550px) {
  .service_option_list>li {
    margin-top: 80px;
  }
}

.service_option_list li .msg-img {
  position: absolute;
  right: 10px;
  top: -35px;
}

@media screen and (max-width: 1280px) {
  .service_option_list li .msg-img {
    top: -50px;
  }
}

@media screen and (max-width: 550px) {
  .service_option_list li .msg-img {
    top: -70px;
  }
}

.service_option_list .layout-style02 {
  min-height: 462px;
}

@media screen and (max-width: 550px) {
  .service_option_list .layout-style02 {
    min-height: unset;
  }
}

.service_option_list .box-style01 {
  padding: 20px 15px 10px;
}

.service_option_list .price_box .fz30 {
  letter-spacing: 0.06em;
}

.other_service_box {
  border-radius: 100px;
  padding: 19px;
}

.other_service_box .fz20 {
  margin-bottom: 5px;
}

.service_dx_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.service_dx_list .link_box {
  border: 1px dotted #463933;
}

.service_dx_list .link_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 181px;
  padding: 25px;
}

.service_dx_list .link_box a::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f35d";
  font-size: 12px;
  right: 17px;
  top: 17px;
  color: #DD591A;
}

.service_dx_msg {
  border-radius: 100px;
  padding: 19px 200px;
  background: #FBEECE url(img/service/support.png) no-repeat;
  background-position: right 100px bottom;
}

@media screen and (max-width: 1280px) {
  .service_dx_msg {
    background-position: right 20px bottom;
    padding: 19px 140px;
    padding-left: 80px;
  }
}

@media screen and (max-width: 550px) {
  .service_dx_msg {
    padding: 40px 35px;
    padding-bottom: 120px;
    border-radius: 50px;
    background-position: right 40px bottom;
    text-align: left;
  }
}

.table-style01_wrap {
  border-radius: 19px;
}

.table-style01_table {
  vertical-align: middle;
  width: 1170px !important;
  max-width: 100%;
  border-collapse: collapse;
  border-radius: 19px;
}

@media screen and (max-width: 1024px) {
  .table-style01_table {
    width: 900px !important;
    max-width: unset;
  }
}

.table-style01_table::before {
  content: "";
  display: block;
  width: 1170px !important;
  max-width: 100%;
  height: 100%;
  border: 2px solid #DD591D;
  border-radius: 19px;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .table-style01_table::before {
    width: 900px !important;
    max-width: unset;
  }
}

.table-style01_table td p {
  font-weight: 400;
}

.table-style01_table .subfont {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.table-style01_table .subfont.fz50 {
  font-size: 50px;
  line-height: 1;
}

.table-style01_table th {
  background-color: #DD591D;
  justify-content: center;
  color: #fff;
  padding: 14px;
  font-weight: 500;
}

.table-style01_table th:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.table-style01_table td {
  border: 1px solid #463933;
  padding: 0 20px;
  text-align: center;
}

.table-style01_table td:first-of-type {
  border-left: none;
}

.table-style01_table td:last-of-type {
  border-right: none;
}

.table-style01_table td.orange {
  text-align: left;
  background-color: #FBEECE;
}

.table-style01_table tr:nth-of-type(2) td {
  border-top: none;
}

.table-style01_table tr:last-of-type td {
  border-bottom: none;
}

.service_bottom .ttl {
  -webkit-text-decoration: underline dotted 3px;
  text-decoration: underline dotted 3px;
  text-underline-offset: 18px;
  letter-spacing: 0.06em;
}

.service_bottom .footer_link_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 40px;
  width: 1040px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.service_bottom .btn-style02::before {
  background-color: #FBEECE;
}

/* 240717 */
.swiper {
  padding-top: 55px !important;
}

.swiper-slide.case_item {
  max-width: 360px !important;
}

.wp-pagenavi .pages {
  display: none;
}

.btn-mail {
  position: relative;
}

.wpcf7-submit.has-spinner,
.wpcf7-previous {
  position: absolute;
  z-index: 100;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;

  top: 0;
  left: 0;
  color: transparent;
}

/* 260116 */
.grecaptcha-badge {
  bottom: 110px !important;
}

@media screen and (max-width: 550px) {
  .grecaptcha-badge {
    bottom: 10px !important;
  }
}

.wpcf7-spinner {
  display: none;
}

/*# sourceMappingURL=style.css.map */