@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: #524746;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #524746;
  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: #524746;
  text-decoration: none;
  opacity: 0.65;
}

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

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

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

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

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

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

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

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

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

textarea {
  overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

/* 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: #535353;
}

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: #535353;
}

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 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #F59902;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #F59902;
  margin: 0 5px;
  width: 60px;
  height: 60px;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi a.extend,
.wp-pagenavi span.extend {
  color: #524746;
  border: none;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #F59902;
}
.wp-pagenavi a:hover {
  border: 1px solid #F59902;
}

@media screen and (max-width: 600px) {
  .wp-pagenavi a, .wp-pagenavi span {
    width: 45px;
    height: 45px;
  }
}
/* 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: 1320px) {
  .toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    width: 80px;
    height: 80px;
    background: #F59902;
    border-radius: 10px;
    padding: 13px;
    right: 10px;
    text-align: center;
    bottom: 50%;
    translate: 0 50%;
    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: 35px;
    height: 2px;
    background-color: #fff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

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

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

  .toggle__bar::after {
    top: 10px;
  }
}
@media screen and (max-width: 600px) {
  .toggle {
    bottom: 10px;
    translate: 0 0;
    width: 55px;
    height: 55px;
    border-radius: 6px;
  }

  .toggle__bar, .toggle__bar::before, .toggle__bar::after {
    width: 25px;
  }
}
.toggle.active .toggle__bar {
  background-color: transparent;
}

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

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

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

.fade.in {
  opacity: 1;
}

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

 header

***************************/
.header {
  position: fixed;
  border-top: 6px solid #F59902;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 20px 0;
}

.header_inner {
  width: 100%;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.gnav-wrapper {
  max-width: max-content;
  width: 100%;
  padding-top: 27px;
}

.gnav-t-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #535353;
  text-align: right;
  margin-bottom: 20px;
}

.gnav {
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px 30px;
}
.gnav li {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.gnav li a {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #1F1F1F;
}
.gnav li.current:after {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background: #F59902;
  left: 50%;
  bottom: -10px;
  translate: -50% 0;
}
.gnav li.current a {
  font-weight: 700;
  color: #F59902;
}

.main_nav {
  display: flex;
  align-items: center;
  gap: 15px 30px;
}

.h-tel {
  position: relative;
  max-width: max-content;
  width: 100%;
  height: 62px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #F59902;
  color: #fff;
  padding: 0 20px;
  font-size: 18px;
}
.h-tel .h-tel__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.h-tel .h-tel__num {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.h-tel:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  pointer-events: none;
  border-radius: 50px;
}

@media screen and (max-width: 1320px) {
  .header {
    padding: 10px 0;
  }

  .header_inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 15px;
    padding-right: 100px;
  }

  .header .logo {
    width: 180px;
  }

  .gnav-wrapper {
    padding-top: 0;
  }

  .gnav-t-text {
    margin-bottom: 0;
    text-align: left;
  }

  .gnav {
    display: none;
    position: fixed;
    left: 0;
    top: 112px;
    width: 100%;
    background: #F8F8F5;
    z-index: 6;
    padding: 40px 20px;
  }
  .gnav:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background: url(../img/common/texture.png);
    background-repeat: repeat;
    pointer-events: none;
  }

  .main_nav {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .h-tel {
    margin: 0 auto;
  }
}
@media screen and (max-width: 650px) {
  .h-tel[href^="tel:"] {
    text-decoration: none;
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .header_inner {
    padding: 0 15px;
    gap: 0;
  }

  .gnav {
    top: 82px;
  }

  .gnav-t-text {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  .h-tel {
    height: auto;
    padding: 10px;
    flex-direction: column;
  }
}
 /***************************

layout/footer.scss

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

.footer_contact {
  position: relative;
  width: calc(100% - 25px);
  background: #F59902;
  border-top-left-radius: 36px;
  margin-left: auto;
  padding: 90px 20px 80px;

  .hdg__01__en{
    color: #fff;
    border-color: #fff;
  }
  .hdg__01__ja{
    color: #fff;
  }
}
.footer_contact:before {
  position: absolute;
  content: '';
  width: 51px;
  height: 95px;
  background: url(../img/common/contact-deco-parts.png);
  left: 9.4vw;
  top: -60px;
  z-index: 2;
}

.footer_contact__inner {
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer_contact__text {
  max-width: 370px;
}
.footer_contact__text p {
  padding-left: 85px;
}

.footer_contact_link {
  position: relative;
  max-width: 815px;
  width: 100%;
  padding-top: 40px;
  display: flex;
  gap: 20px 40px;
}
.footer_contact_link:before {
  position: absolute;
  content: '';
  width: 32px;
  height: 36px;
  background: url(../img/common/deco-parts01.png);
  right: 40px;
  top: 4px;
  z-index: 2;
}

.tel-box {
  max-width: 430px;
  width: 100%;
}
.tel-box a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 205px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}
.tel-box a .tel {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: #F59902;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.tel-box a .tel i {
  font-size: 3rem;
}

.mail-box {
  max-width: 335px;
  width: 100%;
}
.mail-box a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 205px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(7, 131, 69, 0.25);
}
.mail-box a .poppins {
  color: #E7E7E7;
}
.mail-box a i {
  position: absolute;
  color: #F59902;
  right: 30px;
  bottom: 40px;
  z-index: 2;
}
.mail-box a:hover i {
  translate: 10px 0;
  transition: all .6s;
}

.footer_content {
  width: 100%;
  padding: 0 25px;
  padding-top: 60px;
}

.footer_inner {
  max-width: 1325px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}

.footer_inner .add {
  max-width: 435px;
  width: 100%;
}
.footer_inner .add .logo {
  margin-bottom: 40px;
}

.f-tel {
  position: relative;
  width: 100%;
  height: 62px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #F59902;
  color: #fff;
}
.f-tel .f-tel__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.f-tel .f-tel__num {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.f-tel:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  pointer-events: none;
  border-radius: 50px;
}

.footer_inner .representative {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 20px;
  color: #F59902;
  padding-left: 1em;
}
.footer_inner .representative a {
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #F59902;
}
.footer_inner .representative a span {
  font-size: 1.4rem;
}

.sub-nav {
  max-width: max-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 40px;
  padding-top: 50px;
}

.sub-nav__list li:not(.pearent) a {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.sub-nav__list li:not(:last-child) {
  margin-bottom: 5px;
}
.sub-nav__list .pearent {
  position: relative;
}
.sub-nav__list .pearent:not(:last-child) {
  margin-bottom: 15px;
}
.sub-nav__list .pearent:before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background: #F59902;
  border-radius: 100%;
  left: -13px;
  top: 50%;
  translate: 0 -50%;
}
.sub-nav__list .pearent a {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.sub-nav__bnr{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
  width: 100%;
  max-width: max-content;
}

.footer__end__content {
  max-width: 1325px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px 50px;
}
.footer__end__content .copyright {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #B9B9B9;
}

.footer__end__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__end__list a {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1200px) {
  .footer_contact__inner {
    flex-direction: column;
    gap: 0;
  }

  .footer_contact__text {
    max-width: 100%;
  }

  .footer_contact_link {
    margin: 0 auto;
  }

  .footer_contact__text p {
    padding-left: 0;
  }
}
@media screen and (max-width: 1135px) {
  .footer_inner {
    flex-direction: column;
  }

  .footer_inner .add {
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }

  .footer_inner .add .add_tel {
    max-width: 435px;
    width: 100%;
  }

  .sub-nav {
    max-width: 100%;
    justify-content: space-around;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact {
    padding: 50px 20px 40px;
  }

  .footer_contact_link {
    flex-direction: column;
  }

  .tel-box,
  .mail-box {
    max-width: 100%;
  }

  .tel-box a,
  .mail-box a {
    min-height: auto;
    padding: 30px 20px;
  }

  .footer_content {
    padding-top: 30px;
  }

  .footer_inner {
    padding-bottom: 40px;
  }

  .footer_inner .add {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer_inner .representative {
    padding: 0;
    text-align: center;
  }
}
@media screen and (max-width: 650px) {
  .tel-box a[href^="tel:"] {
    text-decoration: none;
    display: flex;
  }

  .f-tel[href^="tel:"] {
    text-decoration: none;
    display: flex;
  }

  .sub-nav {
    gap: 20px 30px;
  }

  .footer__end__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .sub-nav {
    flex-wrap: wrap;
    padding-left: 25px;
  }

  .sub-nav__list {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 450px) {
  .tel-box a .tel {
    font-size: 8.8vw;
  }

  .tel-box a .tel i {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 425px) {
  .f-tel {
    height: auto;
    padding: 10px;
    flex-direction: column;
  }
}
@media screen and (max-width: 320px) {
  .sub-nav__list {
    width: 100%;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.main {
  margin-top: 170px;
}

@media screen and (max-width: 1320px) {
  .main {
    margin-top: 113px;
  }
}
@media screen and (max-width: 600px) {
  .main {
    margin-top: 83px;
  }
}
.container_l {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

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

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

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

fonts

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

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

.lato {
  font-family: "Lato", sans-serif;
}

.italic {
  font-style: italic;
}

.thin {
  font-weight: 100;
}

.extralight {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.ls_20 {
  letter-spacing: 0.2em;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.fz22 {
  font-size: 2.2rem;
}

.fz20 {
  font-size: 2rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz15 {
  font-size: 1.5rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz13 {
  font-size: 1.3rem;
}

.ff-set {
  font-feature-settings: "palt";
}

.col_green {
  color: #F59902;
}

.col_white {
  color: #fff;
}

.txt_under {
  text-decoration: underline;
}

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

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-A {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 25px 50px;
  color: #fff;
  background: #F59902;
  border-radius: 80px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
.btn-A i {
  position: absolute;
  top: 50%;
  right: 35px;
  translate: 0 -50%;
  z-index: 2;
}
.btn-A.w275 {
  max-width: 275px;
}
.btn-A:hover {
  color: #fff;
}
.btn-A:hover i {
  translate: 10px -50%;
  transition: all .6s;
}

.btn-B {
  position: relative;
  display: block;
  max-width: 360px;
  width: 100%;
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
  color: #fff;
  background: #F59902;
  border-radius: 50px;
  padding: 10px 45px;
}
.btn-B:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  pointer-events: none;
}
.btn-B:after {
  position: absolute;
  content: '\f061';
  font-family: "FontAwesome";
  font-size: 2rem;
  top: 50%;
  right: 25px;
  color: #fff;
  translate: 0 -50%;
  z-index: 999;
  pointer-events: none;
}
.btn-B:hover {
  color: #fff;
}
.btn-B:hover:after {
  translate: 10px -50%;
  transition: all .6s;
}
.btn-B.btn-back:after {
  content: '\f060';
  right: inherit;
  left: 25px;
}
.btn-B.btn-back:hover:after {
  translate: -10px -50%;
}
.btn-B.bc-black {
  background: #535353;
}

.btn-center {
  margin: 0 auto;
}

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

hdg__

////////////////////////*/
.hdg__01 {
  display: flex;
  align-items: flex-end;
  gap: 15px 50px;
}

.hdg__01__en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #F59902;
  writing-mode: tb-rl;
  border-left: 2px solid #F59902;
}

.hdg__01__ja {
  font-size: 3.2rem;
  color: #F59902;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.hdg__02 {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  text-align: center;
}
.hdg__02 span {
  position: relative;
  display: inline-block;
  background: #FAF9F1;
  padding: 0 20px;
  z-index: 3;
}
.hdg__02:before {
  position: absolute;
  content: '';
  max-width: 640px;
  width: 100%;
  height: 2px;
  left: 50%;
  top: 50%;
  background: #F59902;
  translate: -50% -50%;
  z-index: 1;
}

.hdg__03 {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.08em;
  padding-left: 40px;
}
.hdg__03:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  background: #F59902;
  left: 0;
  top: 12px;
  z-index: 2;
  border-radius: 5px;
}

.hdg__04 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  padding-left: 15px;
  letter-spacing: 0.08em;
  border-left: 3px solid #F59902;
}

@media screen and (max-width: 600px) {
  .hdg__01 {
    flex-direction: column;
    align-items: flex-start;
  }

  .hdg__01__en {
    writing-mode: rl-tb;
    border-left: none;
    border-bottom: 2px solid #F59902;
  }
}
@media screen and (max-width: 500px) {
  .hdg__02 {
    font-size: 2.8rem;
  }
}
/***************************

object/project/top.scss

***************************/
.mv {
  position: relative;
}
.mv:before {
  position: absolute;
  content: '';
  width: 32px;
  height: 36px;
  background: url(../img/common/deco-parts01.png);
  left: 50%;
  bottom: -15px;
  translate: -50% 0;
  z-index: 2;
}

.main-visual {
  width: 100%;
}
.main-visual .main-visual__item {
  padding: 0 4px;
}
.main-visual img {
  border-radius: 36px;
}

.main-visual-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 55px 7vw;
  z-index: 3;
  display: flex;
  align-items: flex-end;
}

.main-visual__hdg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.main-visual__hdg span {
  position: relative;
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 4.2rem;
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  background: #F59902;
  border-radius: 9px;
  padding: 5px 20px;
}
.main-visual__hdg span:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  pointer-events: none;
  border-radius: 9px;
}

.main-visual-flag {
  position: absolute;
  max-width: 585px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: -50px;
  right: 4vw;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .main-visual-inner {
    padding: 55px 4vw;
  }

  .main-visual-flag {
    width: 70vw;
  }
  .main-visual-flag li {
    width: 33%;
  }

  .main-visual__hdg span {
    font-size: clamp(28px, 5.2vw, 40px);
  }
}
@media screen and (max-width: 550px) {
  .mv:before {
    display: none;
  }

  .main-visual img {
    height: clamp(400px, 90vw, 500px);
    object-fit: cover;
  }

  .main-visual-inner {
    padding: 35px 4vw 17vw;
  }

  .main-visual-flag {
    width: 80vw;
    right: 50%;
    translate: 50% 0;
    bottom: -9vw;
  }
}
@media screen and (max-width: 375px) {
  .main-visual__hdg span {
    font-size: 6.7vw;
    padding: 5px 10px;
  }
}
.top01 {
  position: relative;
  width: 100%;
  padding-top: 100px;
  margin-bottom: 160px;
  background: url(../img/top/about-back.png) no-repeat;
  background-position: top -2.7vw left 6.7vw;
  background-size: 42vw auto;
}

.t-news-wrap {
  position: relative;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto 80px;
}
.t-news-wrap a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 0;
  width: 100%;
  padding: 35px 40px;
  background: #F59902;
  border-radius: 80px;
  color: #fff;
}
.t-news-wrap a:hover {
  opacity: 1;
}
.t-news-wrap a:hover .title span {
  background-size: 100% 1px;
  transition: all .6s;
}
.t-news-wrap a:hover i {
  translate: 10px 0;
  transition: all .6s;
}

.t-news-box-ttl {
  width: 170px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.t-news-box-inner {
  width: calc(100% - 170px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-news-data {
  display: flex;
  align-items: center;
  gap: 20px;
}
.t-news-data .day {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}
.t-news-data .title {
  letter-spacing: 0.05em;
}
.t-news-data .title span {
  background: linear-gradient(0deg, #fff 1px, transparent 1px);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 0 1px;
}

.t-about {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 50px 10%;
}

.t-about_image {
  position: relative;
  width: 55%;
  padding-left: 10%;
  padding-bottom: 5.7vw;
}

.t-about_image img {
  border-radius: 15px;
}

.t-about_text {
  max-width: 345px;
  width: 100%;
}

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

.t-about__ttl__en {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #F59902;
  margin-bottom: 30px;
}
.t-about__ttl__en span {
  border-bottom: 2px solid #F59902;
}

.t-about__ttl__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #F59902;
  writing-mode: tb-rl;
  text-align: left;
  margin: 0 auto 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .t-about_image {
    padding-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .top01 {
    margin-bottom: 80px;
    background-size: 60vw auto;
    background-position: top -2.7vw left -20px;
  }

  .t-news-wrap {
    margin-bottom: 40px;
  }

  .t-news-wrap a {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 40px;
    gap: 5px;
  }

  .t-news-box-ttl,
  .t-news-box-inner {
    width: 100%;
  }

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

  .t-about_image {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .t-about_text {
    max-width: 100%;
  }

  .t-about__ttl__ja {
    writing-mode: rl-tb;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .top01 {
    padding-top: 80px;
  }

  .t-news-data {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .t-about {
    gap: 30px;
  }

  .t-about__ttl__en {
    margin-bottom: 10px;
  }

  .t-about__ttl__ja {
    font-size: 2.5rem;
  }
}
.top02 {
  position: relative;
  width: 100%;
  padding: 0 20px;
  padding-top: 120px;
}
.top02:before {
  position: absolute;
  content: '';
  width: 90%;
  height: calc(100% - 150px);
  border-top-right-radius: 36px;
  border-bottom-right-radius: 36px;
  background: #F6F6F6;
  left: 0;
  top: 0;
  z-index: -1;
}

.t-service__head {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto 70px;
  display: flex;
  align-items: flex-end;
  gap: 50px;
}

.t-service-wrap {
  max-width: 1385px;
  width: 100%;
  margin: 0 auto;
}

.t-service__cont {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-bottom: 110px;
}

.t-service__point {
  /* width: 61vw; */
  display: flex;
  gap: 30px;
  counter-reset: point;
}

.t-service__point__block {
  width: calc(100% - 15px);
  counter-increment: point;
}
.t-service__point__block .image {
  margin-bottom: 20px;
  position: relative;
  &:before{
    content: counter(point, decimal-leading-zero);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #F59902;
    font-size: min(85px, 6.5vw);
    position: absolute;
    top: -.6em;
    left: 20px;
    z-index: 1;
  }
}
.t-service__point__block .image img {
  width: 100%;
  border-radius: 20px;
}

.border_bottom {
  border-bottom: 1px solid;
}

.t-service__link {
  width: 29vw;
}

.t-service__link__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 15vw;
  min-height: 140px;
  background: #F59902;
  border-radius: 20px;
  padding: 20px 55px 20px 50px;
  color: #fff;
}
.t-service__link__item i {
  position: absolute;
  top: 50%;
  right: 35px;
  translate: 0 -50%;
}
.t-service__link__item:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  pointer-events: none;
  border-radius: 20px;
}
.t-service__link__item:hover {
  color: #fff;
}
.t-service__link__item:hover i {
  translate: 10px -50%;
  transition: all .6s;
}

.t-service__other {
  position: relative;
  width: 100%;
  border-radius: 24px;
  background: #F59902;
  padding: 60px;
}
.t-service__other:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  pointer-events: none;
  border-radius: 20px;
}
.t-service__other:after {
  position: absolute;
  content: '';
  width: 71px;
  height: 70px;
  background: url(../img/top/service-deco-parts.png);
  left: -35px;
  bottom: 20px;
  z-index: 10;
}

.t-service__other__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.t-service__other__list_item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 80px;
  background: #fff;
  padding-left: 55px;
  border-radius: 80px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #F59902;
}
.t-service__other__list_item:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #F59902;
  left: 30px;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  border-radius: 10px;
}
.t-service__other__boss{
  background: #fff;
  padding: 20px 25px;
  border-radius: 9px;
}

@media screen and (max-width: 1460px) {
  .t-service__other:after {
    left: -15px;
    bottom: -35px;
  }
}
@media screen and (max-width: 1024px) {
  .t-service__cont {
    flex-direction: column;
  }

  .t-service__point {
    width: 100%;
  }

  .t-service__link {
    width: 100%;
  }

  .t-service__other {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .top02 {
    padding-top: 60px;
  }

  .t-service__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .t-service__link__item {
    padding: 20px 30px 20px 25px;
  }

  .t-service__cont {
    margin-bottom: 60px;
  }

  .t-service__other {
    padding: 30px;
  }

  .t-service__other__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .t-service__point {
    flex-direction: column;
  }

  .t-service__point__block {
    width: 100%;
  }
  .t-service__point__block .image {
    &:before{
      font-size: min(85px, 14vw);
      left: min(20px, 3.3vw);
    }
  }

  .t-service__other__list {
    grid-template-columns: 100%;
    gap: 10px;
  }

  .t-service__other__list_item {
    min-height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.top03 {
  position: relative;
  width: 100%;
  padding-bottom: 160px;
  background: url(../img/top/area-deco-parts.png);
  background-repeat: no-repeat;
  background-position: right -5.7vw bottom -3.3vw;
  background-size: 25.5vw 29.8vw;
  margin-top: 120px;
}

.t-area-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.t-area__cont {
  width: 780px;
  padding: 0 7vw;
}

.t-area__ttl {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.t-area__ttl__en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #F59902;
  letter-spacing: 0.2em;
  border-bottom: 2px solid #F59902;
}

.t-area__ttl__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #F59902;
}

.t-area__map {
  position: relative;
}
.t-area__map:before {
  position: absolute;
  content: '';
  width: 108px;
  height: 103px;
  max-height: 350px;
  background: url(../img/top/map_deco.png) no-repeat center / contain;
  right: -33px;
  bottom: -42px;
  z-index: 999;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .top03 {
    padding-bottom: 80px;
    background-size: 30vw auto;
  }

  .t-area-wrap {
    flex-direction: column-reverse;
  }

  .t-area__cont {
    position: relative;
    width: 100%;
    padding-top: 50px;
    z-index: 10;
  }

  .t-area__map {
    z-index: 5;
    padding: 0 20px;
  }

  .t-area__map img {
    translate: 0;
  }
}
@media screen and (max-width: 768px) {
  .top03 {
    background-size: 40vw auto;
    margin-top: 50px;
  }
}
@media screen and (max-width: 500px) {
  .t-area__cont {
    padding-top: 30px;
  }

  .t-area__ttl {
    margin-bottom: 20px;
    gap: 5px;
  }

  .t-area__ttl__ja {
    font-size: 2.5rem;
  }
  .t-area__ttl__ja br {
    display: none;
  }
}

.t-flow{
  background: #fff;
  max-width: 1080px;
  padding: 45px 65px;
  border-radius: 15px;
  margin: 0 auto 75px;
}
.t-flow__hdg{
  color: #F59902;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  margin-bottom: 20px;
}
.t-flow__list{
  counter-reset: flow;
}
.t-flow__list__item{
  counter-increment: flow;
  position: relative;
  padding-left: 70px;
  padding-top: 10px;
  &:before{
    content: counter(flow);
    width: 56px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 28px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/top/flow_num.png) no-repeat center / contain;
    color: #fff;
  }
  &:nth-of-type(n+2){
    margin-top: 25px;
  }
  &:not(:last-of-type){
    &:after{
      content: "";
      width: 3px;
      height: 100%;
      background: url(../img/top/line_dot.png);
      position: absolute;
      bottom: -40px;
      left: 27px;
    }
  }
}
.t-flow__list__item__hdg{
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .t-flow{
    padding: 35px 20px;
  }

}

.t-company__flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.t-company__flex__left{
  width: 40%;
}
.t-company__flex__right{
  width: 57.4%;
}

.t-forHospital,
.t-company,
.t-faq{
  margin-bottom: 80px;
}

@media screen and (max-width: 600px) {
  .t-company__flex__left{
    width: 100%;
  }
  .t-company__flex__right{
    width: 100%;
  }
  .t-forHospital,
  .t-company,
  .t-faq{
    margin-bottom: 40px;
  }
}

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

object/project/subpage.scss

***************************/
.subpage {
  width: 100%;
  margin-bottom: 80px;
  background: linear-gradient(180deg, transparent 210px, #F6F6F6 210px);
}

.subpage_wrap {
  position: relative;
  width: 95%;
  height: 400px;
  background: #F59902;
  margin-left: auto;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.subpage_wrap:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  pointer-events: none;
}
.subpage_wrap:after {
  position: absolute;
  content: '';
  width: 527px;
  height: 361px;
  right: -20px;
  bottom: 0;
  z-index: 999;
  background: url(../img/subpage/subpage-ttl-back.png) no-repeat;
  background-repeat: repeat;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.subpage__inner {
  width: 100%;
  padding: 0 6.6vw;
}

.page-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.page-ttl__en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #fff;
  border-bottom: 2px solid #fff;
}

.page-ttl__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 4.2rem;
  letter-spacing: 0.03em;
  color: #fff;
}

.bread-list {
  max-width: 1320px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 25px;
  padding: 35px 20px;
  margin: 0 auto;
}
.bread-list li {
  position: relative;
}
.bread-list li:not(:last-child):after {
  position: absolute;
  content: '\f061';
  font-family: "FontAwesome";
  font-size: 10px;
  right: -15px;
  top: 50%;
  translate: 0 -50%;
}
.bread-list li:not(:last-child) a {
  color: #F59902;
  text-decoration: underline;
}
.bread-list li:last-child a {
  pointer-events: none;
}
.bread-list li a {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .subpage {
    background: linear-gradient(180deg, transparent 170px, #F6F6F6 170px);
  }

  .subpage_wrap {
    height: 340px;
  }

  .subpage_wrap:after {
    width: 52vw;
    height: 35vw;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 768px) {
  .subpage {
    background: linear-gradient(180deg, transparent 17vw, #F6F6F6 17vw);
  }

  .subpage_wrap {
    height: 36.5vw;
    min-height: 200px;
  }

  .page-ttl {
    gap: 15px;
  }

  .page-ttl__en {
    font-size: 1.7rem;
  }

  .page-ttl__ja {
    font-size: 2.8rem;
  }

  .bread-list {
    padding: 20px;
  }
}
.c-section {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 120px;
}

.c-section-wrap {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  background: #FAF9F1;
  border-radius: 36px;
  padding: 60px 4.7vw;
}

@media screen and (max-width: 768px) {
  .c-section-wrap {
    padding: 40px 20px;
  }

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

  .c-section:last-child {
    margin-bottom: 100px;
  }
}
.base_flexbox_style01 {
  width: 100%;
  display: flex;
  gap: 50px;
}

.base_flexbox__left {
  width: calc(40% - 25px);
}

.base_flexbox__right {
  width: calc(60% - 25px);
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .base_flexbox_style01 {
    flex-wrap: wrap;
    gap: 30px;
  }
  .base_flexbox__left {
    width: 100%;
  }
  .base_flexbox__right {
    width: 100%;
  }
  .base_flexbox__left:has(img) {
    text-align: center;
  }
}

.base_ul__style01 {
  width: 100%;
}
.base_ul__style01 li {
  position: relative;
  padding-left: 25px;
}
.base_ul__style01 li:not(:last-child) {
  margin-bottom: 5px;
}
.base_ul__style01 li:before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background: #F59902;
  left: 0;
  top: 6px;
  border-radius: 100%;
}

.base_ul__style02 {
  width: 100%;
}
.base_ul__style02 li {
  position: relative;
  padding-left: 25px;
}
.base_ul__style02 li:not(:last-child) {
  margin-bottom: 5px;
}
.base_ul__style02 li:before {
  position: absolute;
  content: '';
  width: 14px;
  height: 2px;
  background: #F59902;
  left: 0;
  top: 11px;
  border-radius: 100%;
}

.base_dl__style01 {
  width: 100%;
}
.base_dl__style01 div {
  position: relative;
  border-bottom: 2px solid #eee;
  display: flex;
}
.base_dl__style01 div:before {
  position: absolute;
  content: '';
  width: 150px;
  height: 2px;
  background: #F59902;
  left: 0;
  bottom: -2px;
  z-index: 2;
}
.base_dl__style01 div dt {
  padding: 15px 0;
  width: 150px;
}
.base_dl__style01 div dd {
  width: calc(100% - 150px);
  padding: 15px 0;
}

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

object/project/news.scss

***************************/
.news-list {
  width: 100%;
  margin-bottom: 80px;
}

.news-list-block {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
.news-list-block a {
  position: relative;
  display: flex;
  padding-right: 55px;
}
.news-list-block a i {
  position: absolute;
  top: 50%;
  right: 35px;
  translate: 0 -50%;
}
.news-list-block a:hover i {
  translate: 10px -50%;
  transition: all .6s;
  color: #F59902;
}
.news-list-block .day {
  width: 130px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  color: #999;
}
.news-list-block .ttl {
  width: calc(100% - 130px);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.news-list-block .ttl span {
  background: linear-gradient(0deg, #F59902 1px, transparent 1px);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 0 1px;
}
.news-list-block:hover .ttl {
  color: #F59902;
}
.news-list-block:hover .ttl span {
  background-size: 100% 1px;
  transition: all .6s;
}

@media screen and (max-width: 768px) {
  .news-list {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .news-list-block {
    padding: 10px 0;
  }

  .news-list-block a {
    flex-direction: column;
    padding-right: 35px;
  }

  .news-list-block a i {
    right: 15px;
  }

  .news-list-block .day {
    width: 100%;
  }

  .news-list-block .ttl {
    width: 100%;
    font-size: 1.6rem;
  }
}
.news-detail_head {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: 2px solid #F59902;
}
.news-detail_head .day {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 20px;
}
.news-detail_head .ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}

.news-detail_editor {
  padding-bottom: 80px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .news-detail_head .day {
    margin-bottom: 5px;
  }

  .news-detail_head .ttl {
    font-size: 2.2rem;
  }

  .news-detail_head {
    margin-bottom: 30px;
  }

  .news-detail_editor {
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
}
/***************************

object/project/contact.scss

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

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

.contact_form_block {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
.contact_form_block dt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact_form_block dt span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #F59902;
  width: 50px;
  height: 23px;
  border: 1px solid #F59902;
  border-radius: 23px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.contact_form input[type=text],
.contact_form input[type=email],
.contact_form input[type=tel],
.contact_form input[type=url],
.contact_form input[type=password],
.contact_form input[type=number],
.contact_form select {
  width: 100%;
  height: 45px;
  padding: 5px 20px;
}

.contact_form textarea {
  width: 100%;
  height: 200px;
  padding: 5px 20px;
}

.zip-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.zip-box .zip-text {
  font-size: 1.5rem;
}

.zip_form {
  max-width: 350px;
}

.submit_wrap {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.submit_wrap:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: url(../img/common/texture.png);
  background-repeat: repeat;
  pointer-events: none;
}
.submit_wrap:after {
  position: absolute;
  content: '\f054';
  font-family: "FontAwesome";
  font-size: 1.6rem;
  color: #fff;
  top: 50%;
  right: 35px;
  translate: 0 -50%;
}
.submit_wrap:hover:after {
  translate: 10px -50%;
  transition: all .6s;
}

.submit-btn {
  width: 100%;
  min-height: 70px;
  border: 0;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F59902;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
}
.submit-btn:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: all .6s;
}

@media screen and (max-width: 768px) {
  .contact_form {
    margin-bottom: 50px;
  }
}
span.wpcf7-spinner {
  display: none;
}
